:root {
  --by-max-w: 1280px;
  --by-gutter: 24px;
}

.by-container {
  max-width: var(--by-max-w);
  margin: 0 auto;
  padding: 0 var(--by-gutter);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi-Regular", sans-serif;
  color: #00152b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

html,
body {
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---- NAV (identical to home/explore/how-it-works) ---- */
.by-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 249, 253, 0.98);
  backdrop-filter: blur(10px);
}

.admin-bar .by-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .by-header {
    top: 46px;
  }
}

.by-nav-inner {
  max-width: var(--by-max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.by-nav-logo img {
  height: 36px;
}

.by-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.by-nav-links ul {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.by-nav-links a {
  font-size: 15px;
  font-family: "Satoshi-Bold", sans-serif !important;
  color: #00152b;
  transition: color 0.15s;
  letter-spacing: -0.48px;
}

.by-nav-links a:hover,
.by-nav-links a.active,
.by-nav-links .current-menu-item a {
  color: #078e45;
}

.by-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.by-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.by-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #00152b;
  border-radius: 2px;
  transition: all 0.2s;
}

/* ---- BUTTONS (identical to home/explore/how-it-works) ---- */
.by-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Satoshi-Bold", sans-serif !important;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}

.by-btn-green {
  background: #078e45;
  color: #fff;
}

.by-btn-green:hover {
  background: #066b35;
}

.by-btn-outline {
  background: transparent;
  color: #00152b;
  border: 1.5px solid #00152b;
}

.by-btn-outline:hover {
  background: #00152b;
  color: #fff;
}

.by-btn-ghost {
  background: transparent;
  color: #374151;
  border: 1.5px solid #e5e7eb;
}

.by-btn-ghost:hover {
  border-color: #00152b;
  color: #00152b;
}

.by-btn-lg {
  padding: 13px 26px;
  font-size: 15px;
}

/* ---- HERO ---- */
.pricing-hero {
  background: #fff;
  padding: 64px 0 20px;
  text-align: center;
}

.pricing-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pricing-hero-inner h1 {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.92px;
  color: #00152b;
}

.pricing-hero-inner p {
  margin-top: 8px;
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.54px;
  color: #00152b;
}

/* ---- PLANS ---- */
.pricing-plans {
  padding: 40px 0 56px;
}

.pricing-plans-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card--featured {
  border: 2px solid #078e45;
  box-shadow: 0 12px 32px rgba(7, 142, 69, 0.14);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #078e45;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 22px;
  letter-spacing: -0.66px;
  color: #00152b;
  text-align: center;
}

.pricing-price {
  margin-top: 14px;
  font-family: "Satoshi-Black", sans-serif !important;
  font-size: 35px;
  letter-spacing: -1.05px;
  color: #078e45;
  text-align: center;
  letter-spacing: -1px;
}

.pricing-price span {
  font-size: 15px;
  font-weight: 600;
  color: #00152b;
  letter-spacing: normal;
}

.pricing-price span.pricing-price-currency {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #078e45;
  vertical-align: top;
  position: relative;
  top: 4px;
}

.pricing-sub {
  margin-top: 6px;
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 15px;
  color: #00152b;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.45px;
}

.pricing-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.48px;
  color: #00152b;
}

.pricing-card .pricing-features li {
  font-family: "Satoshi-Medium", sans-serif !important;
}

.pricing-card .pricing-features li span {
  font-family: "Satoshi-Medium", sans-serif !important;
}

.pricing-feature-tick {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.pricing-btn {
  margin-top: 24px;
  width: 100%;
}

.pricing-card .by-btn-outline {
  border-color: #078e45;
  color: #078e45;
}

.pricing-card .by-btn-outline:hover {
  background: #078e45;
  color: #fff;
}

.pricing-caption {
  margin-top: 14px;
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 15px;
  color: #00152b;
  text-align: center;
  line-height: 1.5;
  text-wrap: balance;
  letter-spacing: -0.45px;
}

.pricing-trust {
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-trust-item {
  font-family: "Satoshi-Bold", sans-serif !important;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #00152b;
  letter-spacing: -0.54px;
}

.pricing-trust-item img {
  /* width: 20px;
    height: 20px; */
  flex-shrink: 0;
}

/* ---- COMPARISON ---- */
.pricing-compare {
  padding: 32px 0 56px;
}

.pricing-compare h2 {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 48px;
  letter-spacing: -1.92px;
  color: #00152b;
}

.pricing-compare-sub {
  margin-top: 8px;
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 18px;
  letter-spacing: -0.54px;
  color: #00152b;
}

.pricing-compare-inner {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: stretch;
}

/* Table */
.pricing-compare-scroll {
  overflow-x: auto;
  background: transparent;
  -webkit-overflow-scrolling: touch;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}

.pricing-compare-table td {
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 15px;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 11px 10px;
  text-align: center;
  border-bottom: 1px solid #ecedef;
  vertical-align: middle;
}

.pricing-compare-table thead th {
  font-family: "Satoshi-Bold", sans-serif !important;
  padding-top: 16px;
  padding-bottom: 14px;
  font-size: 16px;
  color: #00152b;
  border-bottom: 1px solid #ecedef;
  letter-spacing: -0.48px;
}

.pricing-compare-table thead th.pct-feature-col {
  border: none;
}

.pricing-compare-table thead th small {
  display: block;
  margin-top: 3px;
  font-size: 11.5px;
  font-weight: 500;
  color: #00152b;
}

.pct-feature-col {
  width: 240px;
}

.pct-brand-col {
  background: transparent;
}

/* Boxed columns — each data column gets its own bordered, rounded card
   running from the header cell (or, for the feature-label column, from
   the first row) down to the last row cell. */
.pricing-compare-table th.pct-col,
.pricing-compare-table td.pct-col,
.pricing-compare-table td.pct-feature {
  background: #ffffff;
  border-left: 1.5px solid #ecedef;
  border-right: 1.5px solid #ecedef;
}

.pricing-compare-table thead th.pct-col {
  border-top: 1.5px solid #ecedef;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.pricing-compare-table tbody tr:first-child td.pct-feature {
  border-top: 1.5px solid #ecedef;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.pricing-compare-table tbody tr:last-child td.pct-col,
.pricing-compare-table tbody tr:last-child td.pct-feature {
  border-bottom: 1.5px solid #ecedef;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.pct-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pct-brand-logo {
  height: 22px;
  width: auto;
  margin: 0 auto;
}

.pricing-compare-table thead th.pct-brand-col small {
  color: #078e45;
  opacity: 0.85;
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.pct-feature {
  text-align: left !important;
  font-size: 13.5px;
  color: #00152b;
  white-space: nowrap;
  padding-left: 20px;
}

.pricing-compare-table td img {
  width: 12px;
  height: 12px;
  margin: 0 auto;
}

.pct-text {
  font-size: 13px;
  font-weight: 700;
  color: #00152b;
}

.pct-text-yes {
  color: #078e45;
}

.pct-text-no {
  color: #00152b;
}

/* Why BookedYou panel */
.pricing-why {
  background: #fff;
  border: 1px solid #ecedef;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-why h3 {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 22px;
  color: #00152b;
  letter-spacing: -0.66px;
}

.pricing-why-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  flex: 1;
}

.pricing-why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-why-list img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.pricing-why-list span {
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 16px;
  color: #00152b;
  letter-spacing: -0.48px;
}

.pricing-why-btn {
  margin-top: 24px;
  width: 100%;
}

.pricing-why-caption {
  display: block;
  margin-top: 18px;
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.42px;
  color: #00152b;
  text-align: center;
  transition: color 0.15s;
}

.pricing-why-caption:hover {
  color: #078e45;
}

/* ---- FOOTER BANNER (same as home/explore/how-it-works) ---- */
.by-footer-banner {
  max-width: 1800px;
  margin: 0 auto;
  background: transparent linear-gradient(270deg, #7037d6 0%, #04553c 100%) 0%
    0% no-repeat padding-box;
  border-radius: 20px 20px 0 0;
  padding: 24px 32px;
  box-sizing: border-box;
  width: calc(100% - 48px);
}

.by-footer-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.by-footer-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.by-footer-banner-text strong {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.66px;
}

.by-footer-banner-text span {
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.48px;
}

.by-footer-banner-perks {
  display: flex;
  align-items: center;
}

.by-footer-perk {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.by-footer-perk:last-child {
  border-right: none;
  padding-right: 0;
}

.by-footer-perk:first-child {
  padding-left: 0;
}

.by-footer-perk img {
  width: 14px;
  height: 20px;
}

.by-footer-perk strong {
  font-family: "Satoshi-Bold", sans-serif !important;
  display: block;
  font-size: 16px;
  letter-spacing: -0.48px;
  color: #fff;
}

.by-footer-perk span {
  font-family: "Satoshi-Medium", sans-serif !important;
  display: block;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.48px;
}

.by-nav-links a.by-nav-login-mobile {
  display: none;
}

@media (max-width: 400px) {
  .by-nav-links a.by-nav-login-mobile {
    display: inline-flex;
    justify-content: center;
    margin: 8px 24px 4px;
    width: calc(100% - 48px);
    padding: 10px 20px;
    font-size: 15px;
  }

  .by-nav-actions > a[href*="login"] {
    display: none;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .by-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    z-index: 200;
  }

  .by-nav-links.open {
    display: flex;
  }

  .by-nav-links ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .by-nav-links a {
    padding: 12px 24px;
    font-size: 15px;
    display: block;
  }

  .by-hamburger {
    display: flex;
  }

  .pricing-hero-inner h1 {
    font-size: 34px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-trust {
    gap: 24px;
  }

  .pricing-compare-inner {
    grid-template-columns: 1fr;
  }

  .pricing-why {
    max-width: 420px;
    margin: 0 auto;
    height: auto;
  }

  .pct-feature-col,
  .pct-feature {
    width: 200px;
  }

  .pricing-compare-table {
    min-width: 640px;
  }
}

@media (max-width: 768px) {

    .by-nav-actions {
    gap: 6px;
  }

  .by-nav-actions .by-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  .pricing-hero {
    padding: 40px 0 20px;
  }

  .pricing-hero-inner h1 {
    font-size: 28px;
  }

  .pricing-compare h2 {
    font-size: 26px;
  }

  .by-footer-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .by-footer-banner-perks {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .by-footer-perk {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    width: 100%;
  }

  .by-footer-perk:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .by-footer-perk:first-child {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .pricing-hero-inner h1 {
    font-size: 24px;
  }

  .pricing-trust {
    gap: 16px 24px;
  }

  .pricing-compare h2 {
    font-size: 22px;
  }

  .pricing-compare-table {
    min-width: 560px;
  }

  .pct-feature-col,
  .pct-feature {
    width: 160px;
  }

  .pricing-compare-table th,
  .pricing-compare-table td {
    padding: 9px 8px;
  }

  .pct-feature {
    padding-left: 14px;
    font-size: 12.5px;
    white-space: normal;
  }
}
.by-mobile-cta-bar {
  display: none;
}

@media (max-width: 500px) {
  .by-nav-actions .by-btn {
    display: none;
  }

  .by-mobile-cta-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(0, 21, 43, 0.06);
    z-index: 999;
  }

  .by-mobile-cta-bar .by-btn {
    flex: 1;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body {
      padding-bottom: 85px !important;
  }
}