

:root {
  --navy: #0F2A47;
  --navy-dark: #0A1E33;
  --orange: #F04E23;
  --orange-dark: #D43F18;
  --cream: #FBEAD0;
  --cream-soft: #FFF6E6;
  --white: #ffffff;
  --text: #15212F;
  --muted: #6B7280;
  --border: #E5E7EB;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(15, 42, 71, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 42, 71, 0.10);
  --shadow-lg: 0 25px 60px rgba(15, 42, 71, 0.18);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
/* overflow-x: clip prevents horizontal scrolling without creating a scroll
   container - so the sticky .site-header keeps working. Guards against
   decorative/off-canvas elements pushing the page wider than the viewport. */
html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 2.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: #374151; }

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;        /* never wider than its container */
  object-fit: contain;    /* never crop / squash - always show the whole mark */
  user-select: none;
  -webkit-user-drag: none;
}
.logo-img--sm  { height: 44px; }
.logo-img--lg  { height: 78px; }
.logo-img--xl  { height: 100px; }

.footer-about .logo-img { margin-bottom: 4px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 12px 24px rgba(240, 78, 35, .35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); box-shadow: 0 12px 24px rgba(15, 42, 71, .3); }
.btn-outline-light { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-outline-orange { border-color: var(--orange); color: var(--orange); background: transparent; }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }
.btn-ghost { background: transparent; color: var(--navy); padding: 10px 16px; }
.btn-ghost:hover { color: var(--orange); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(170%) blur(12px);
  border-bottom: 1px solid rgba(15, 42, 71, .06);
}
.nav {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 10px 24px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  transition: color .2s;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .btn { padding: 9px 22px; line-height: 1.2; font-size: .9rem; }

.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--navy);
  transition: transform .25s, opacity .2s, top .25s;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-cream { background: var(--cream-soft); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy p { color: rgba(255, 255, 255, .8); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { color: var(--muted); font-size: 1.1rem; }

.split-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  overflow: hidden;
}
.split-hero__side {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  transition: flex .6s var(--ease);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background video fills the side; the poster image shows until the video loads */
.split-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* Gradient tint over the video keeps the text readable */
.split-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.split-hero__side--user .split-hero__overlay {
  background: linear-gradient(135deg, rgba(240, 78, 35, .38), rgba(212, 63, 24, .48)),
              linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55));
}
.split-hero__side--business .split-hero__overlay {
  background: linear-gradient(135deg, rgba(15, 42, 71, .38), rgba(10, 30, 51, .50)),
              linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55));
}

.split-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 460px;
  transform: translateY(0);
  transition: transform .5s var(--ease);
}
.split-hero__side h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
  font-weight: 800;
}
.split-hero__side p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 30px;
}
.split-hero__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 2px solid rgba(255, 255, 255, .35);
}
.split-hero__icon svg { width: 38px; height: 38px; stroke: var(--white); }

.split-hero__side:hover { flex: 1.15; }
.split-hero__side:hover .split-hero__inner { transform: translateY(-6px); }

.split-hero__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, .2);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  transition: left .6s var(--ease);
}
.split-hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: 1px;
  color: var(--navy);
  text-align: center;
  transition: left .6s var(--ease), transform .4s var(--ease);
  line-height: 1;
}
.split-hero__mark small {
  display: block;
  font-size: .55rem;
  letter-spacing: 1.5px;
  margin-top: 3px;
  color: var(--navy);
}

.shape {
  position: absolute;
  opacity: .25;
  pointer-events: none;
}
.shape--circle { border-radius: 50%; border: 2px solid var(--white); }
.shape--ring   { border-radius: 50%; border: 2px solid var(--cream); }
.shape--tri {
  width: 0; height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid var(--white);
  opacity: .2;
}

.split-hero__topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
}
.split-hero__topbar .nav-links a { color: var(--white); }
.split-hero__topbar .nav-links a:hover { color: var(--cream); }

/* Login pill in the navbar - matches the site's primary (orange) button. */
.nav-links a.nav-login {
  background: var(--orange);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 16px -6px rgba(240, 78, 35, .5);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nav-links a.nav-login:hover {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 12px 24px -8px rgba(240, 78, 35, .55);
  transform: translateY(-1px);
}
.nav-links a.nav-login::after { display: none !important; }

.hero-full {
  position: relative;
  min-height: 78vh;
  padding: 140px 0 120px;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-full--user {
  background-image:
    linear-gradient(120deg, rgba(240, 78, 35, .82) 0%, rgba(212, 63, 24, .72) 60%, rgba(15, 42, 71, .55) 100%),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2000&q=80');
}
.hero-full--biz {
  background-image:
    linear-gradient(120deg, rgba(15, 42, 71, .88) 0%, rgba(10, 30, 51, .78) 55%, rgba(240, 78, 35, .55) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=80');
}

.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.18), transparent 55%);
  pointer-events: none;
}

.hero-full__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-full .eyebrow {
  color: var(--cream);
  margin-bottom: 18px;
}
.hero-full h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero-full__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, .92);
  max-width: 580px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-full .btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-full__chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.hero-full__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
}
.hero-full__chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream);
  flex: none;
}
.hero-full--biz .hero-full__chip .dot { background: var(--orange); }

.hero-full__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-full__scroll::after {
  content: '';
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.5);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.4); opacity: .4; }
  50%      { transform: scaleY(1);  opacity: 1;  }
}

@media (max-width: 760px) {
  .hero-full { padding: 110px 0 90px; min-height: 70vh; }
  .hero-full__scroll { display: none; }
}

.v-hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
}
.v-hero--cream { background: var(--cream-soft); }
.v-hero--navy  { background: var(--navy); color: var(--white); }
.v-hero--navy h1, .v-hero--navy .v-hero__sub { color: var(--white); }
.v-hero--navy p { color: rgba(255, 255, 255, .85); }

.v-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.v-hero__text h1 { font-size: clamp(2.2rem, 4vw, 3.7rem); margin-bottom: 18px; }
.v-hero__text .v-hero__sub { font-size: 1.15rem; max-width: 520px; margin-bottom: 30px; color: var(--muted); }
.v-hero--navy .v-hero__text .v-hero__sub { color: rgba(255,255,255,.82); }
.v-hero__text .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.v-hero__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.v-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.v-hero__media--user::after,
.v-hero__media--biz::after {
  content: '';
  position: absolute; inset: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.v-hero__media--user::after { background: linear-gradient(160deg, rgba(240,78,35,.30), rgba(240,78,35,.55)); }
.v-hero__media--biz::after  { background: linear-gradient(160deg, rgba(15,42,71,.35), rgba(15,42,71,.55)); }

.v-hero__sticker {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  min-width: 180px;
}
.v-hero__sticker--tl { top: 24px; left: -28px; }
.v-hero__sticker--br { bottom: 28px; right: -28px; }
.v-hero__sticker .ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  font-size: 1.2rem;
}
.v-hero__sticker strong { display: block; font-size: 1.05rem; color: var(--navy); line-height: 1.1; }
.v-hero__sticker span { font-size: .78rem; color: var(--muted); }

.v-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.v-hero__blob--orange { background: var(--orange); width: 320px; height: 320px; top: -80px; left: -60px; }
.v-hero__blob--cream  { background: var(--cream); width: 380px; height: 380px; bottom: -100px; right: -80px; opacity: .6; }
.v-hero__blob--navy   { background: #1F4870; width: 380px; height: 380px; bottom: -100px; right: -80px; opacity: .55; }
.v-hero .container { position: relative; z-index: 1; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  cursor: pointer;
  isolation: isolate;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15,42,71,.85) 100%);
  z-index: 1;
}
.cat-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px 22px;
  color: var(--white);
  z-index: 2;
}
.cat-card__count {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}
.cat-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0;
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.band--reverse .band__media { order: 2; }
.band__media {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-md);
}
.band__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band__text h2 { color: var(--navy); margin-bottom: 14px; }
.section-navy .band__text h2 { color: var(--white); }
.band__list { list-style: none; padding: 0; margin: 22px 0 0; }
.band__list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  color: var(--text);
}
.section-navy .band__list li { color: rgba(255,255,255,.88); }
.band__list li::before {
  content: '';
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  margin-top: 1px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat__num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .3px;
}
.section-navy .stat__label { color: rgba(255,255,255,.7); }

.testimonial {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.testimonial__media {
  height: 100%;
  min-height: 360px;
  position: relative;
}
.testimonial__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial__body { padding: 44px 52px 44px 0; }
.testimonial__body .eyebrow { display: inline-block; margin-bottom: 18px; }
.testimonial__quote {
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 26px;
  padding-left: 0;
}
.testimonial__quote::before {
  content: '\201C';            /* curly left quote, sits above the text - no overlap */
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.4rem;
  line-height: 0.5;
  color: var(--orange);
  margin-bottom: 12px;
}
.testimonial__author { font-weight: 700; color: var(--navy); }
.testimonial__role { color: var(--muted); font-size: .9rem; }

.page-hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--white) 100%);
  text-align: center;
}
.page-hero--orange {
  background: linear-gradient(135deg, var(--orange) 0%, #FF6A3D 100%);
  color: var(--white);
}
.page-hero--navy {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3B5C 100%);
  color: var(--white);
}
.page-hero--orange p, .page-hero--navy p { color: rgba(255, 255, 255, .92); }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p.lead { font-size: 1.15rem; max-width: 640px; margin: 0 auto 32px; }
.page-hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 28px; height: 28px; stroke: var(--orange); }
.feature-card h3 { margin-bottom: 8px; color: var(--navy); }
.feature-card p { color: var(--muted); margin: 0; font-size: .96rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step { position: relative; padding-top: 60px; text-align: left; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
}
.step h3 { color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }

.package-wrap {
  display: flex;
  justify-content: center;
}
.package {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 460px;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.package::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
}
.package__badge {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.package h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; }
.package__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 8px;
}
.package__price .amount { font-size: 3rem; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.package__price .period { color: var(--muted); font-size: 1rem; }
.package__sub { color: var(--muted); margin-bottom: 28px; font-size: .95rem; }
.package ul { list-style: none; padding: 0; margin: 0 0 32px; }
.package li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: var(--text);
  font-size: .98rem;
  border-bottom: 1px dashed var(--border);
}
.package li:last-child { border-bottom: 0; }
.package li::before {
  content: '';
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  margin-top: 1px;
}
.package .btn { width: 100%; }

.pricing-wrap {
  position: relative;
  background:
    radial-gradient(circle at 12% 15%, rgba(240, 78, 35, .08), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(15, 42, 71, .08), transparent 45%),
    var(--cream-soft);
  border-radius: 28px;
  padding: 70px 64px;
  overflow: hidden;
}
.pricing-wrap--navy {
  background:
    radial-gradient(circle at 12% 15%, rgba(240, 78, 35, .25), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(255, 255, 255, .06), transparent 45%),
    var(--navy);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pricing-side .eyebrow { color: var(--orange); margin-bottom: 14px; }
.pricing-wrap--navy .pricing-side .eyebrow { color: var(--cream); }
.pricing-side h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
  color: var(--navy);
  line-height: 1.1;
}
.pricing-wrap--navy .pricing-side h2 { color: var(--white); }
.pricing-side > p.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.pricing-wrap--navy .pricing-side > p.lead { color: rgba(255, 255, 255, .78); }

.pricing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid rgba(15, 42, 71, .12);
  border-bottom: 1px solid rgba(15, 42, 71, .12);
  margin-bottom: 32px;
}
.pricing-wrap--navy .pricing-stats {
  border-color: rgba(255, 255, 255, .15);
}
.p-stat__num {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.p-stat__label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}
.pricing-wrap--navy .p-stat__label { color: rgba(255, 255, 255, .7); }

.pricing-quote {
  background: var(--white);
  border-left: 3px solid var(--orange);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
}
.pricing-wrap--navy .pricing-quote {
  background: rgba(255, 255, 255, .06);
  border-left-color: var(--orange);
}
.pricing-quote p {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.5;
}
.pricing-wrap--navy .pricing-quote p { color: var(--white); }
.pricing-quote span {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}
.pricing-wrap--navy .pricing-quote span { color: rgba(255, 255, 255, .65); }

.package--featured {
  max-width: none;
  margin: 0;
  transform: translateY(-4px);
}
.package--featured::after {
  content: 'Best Value';
  position: absolute;
  top: 18px; right: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 6px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pricing-side--card { position: relative; }
.pricing-side--card::before {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  background: var(--orange);
  border-radius: 50%;
  top: -28px; left: -28px;
  opacity: .15;
  filter: blur(8px);
  z-index: 0;
}
.pricing-side--card::after {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  background: var(--navy);
  border-radius: 50%;
  bottom: -40px; right: -40px;
  opacity: .12;
  filter: blur(12px);
  z-index: 0;
}
.pricing-wrap--navy .pricing-side--card::before { background: var(--cream); opacity: .25; }
.pricing-wrap--navy .pricing-side--card::after { background: var(--orange); opacity: .25; }

@media (max-width: 900px) {
  .pricing-wrap { padding: 50px 28px; border-radius: 22px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 44px; }
  .pricing-stats { gap: 12px; padding: 22px 0; }
  .package--featured { transform: none; }
}

@media (max-width: 480px) {
  .pricing-stats { grid-template-columns: 1fr; gap: 18px; text-align: left; }
}

.cta-strip {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); }
.cta-strip p { color: rgba(255, 255, 255, .85); max-width: 580px; margin: 0 auto 28px; }

.auth {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.auth__visual {
  flex: 1;
  color: var(--white);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(160deg, rgba(15, 42, 71, .88), rgba(10, 30, 51, .96)),
    url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1600&q=80');
  transition: background-image .35s var(--ease);
}
.auth__visual--orange {
  background-image:
    linear-gradient(160deg, rgba(240, 78, 35, .85), rgba(212, 63, 24, .95)),
    url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1600&q=80');
}
.auth__visual h2 {
  font-size: 2.3rem;
  color: var(--white);
  max-width: 380px;
}
.auth__visual p { color: rgba(255, 255, 255, .88); max-width: 380px; }
.auth__visual .shape { opacity: .15; }

.auth__form-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  background: var(--white);
}
.auth__form {
  width: 100%;
  max-width: 420px;
}
.auth__form .logo { margin-bottom: 36px; }
.auth__form h1 { font-size: 2rem; margin-bottom: 8px; }
.auth__form .sub { color: var(--muted); margin-bottom: 28px; }

.role-toggle {
  display: flex;
  background: var(--cream-soft);
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.role-toggle button {
  flex: 1;
  padding: 10px 12px;
  background: transparent;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--muted);
  transition: background .25s, color .25s;
}
.role-toggle button.active { background: var(--navy); color: var(--white); }
.role-toggle button.active.user-active { background: var(--orange); }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 78, 35, .12);
}
.auth__form .btn { width: 100%; margin-top: 10px; }
.auth__meta {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  margin: -8px 0 18px;
}
.auth__meta a { color: var(--orange); font-weight: 600; }
.auth__alt { text-align: center; margin-top: 22px; font-size: .92rem; color: var(--muted); }
.auth__alt a { color: var(--navy); font-weight: 700; }

.offers-hero {
  padding: 60px 0 40px;
  background: var(--cream-soft);
}
.offers-hero h1 { color: var(--navy); margin-bottom: 6px; }
.offers-hero p { color: var(--muted); margin: 0; }

.offers-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}
.chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover, .chip.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px 0 90px;
}
.offer {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.offer__img {
  height: 160px;
  background: linear-gradient(135deg, var(--orange), #FF7A4A);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  font-weight: 900;
}
.offer__img.navy { background: linear-gradient(135deg, var(--navy), #1F4870); }
.offer__img.cream { background: linear-gradient(135deg, var(--cream), #F5D9A8); color: var(--navy); }
.offer__discount {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--white);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .5px;
}
.offer__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.offer__cat {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}
.offer h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.offer p { color: var(--muted); font-size: .9rem; margin: 0 0 16px; flex: 1; }
.offer .btn { margin-top: auto; padding: 10px 18px; font-size: .85rem; }

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  padding: 60px 0 30px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer h4 {
  color: var(--white);
  font-size: .9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, .7); font-size: .92rem; transition: color .2s; }
.site-footer a:hover { color: var(--orange); }
.site-footer .footer-about p { color: rgba(255, 255, 255, .65); font-size: .92rem; margin: 18px 0 0; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

@media (max-width: 960px) {
  .v-hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .v-hero__media { max-width: 480px; margin: 0 auto; aspect-ratio: 5/4; }
  .v-hero__sticker--tl { left: 12px; top: 12px; }
  .v-hero__sticker--br { right: 12px; bottom: 12px; }
  .band { grid-template-columns: 1fr; gap: 36px; }
  .band--reverse .band__media { order: 0; }
  /* minmax(0,1fr) lets the column shrink to the card width - a plain 1fr keeps
     its min-content (driven by the media's 16/9 aspect-ratio) and overflowed. */
  .testimonial { grid-template-columns: minmax(0, 1fr); }
  .testimonial__media { min-height: 0; height: auto; width: 100%; aspect-ratio: 16 / 9; }
  .testimonial__body { padding: 30px 32px 36px; }
}

@media (max-width: 900px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth { flex-direction: column; }
  .auth__visual { padding: 50px 30px; min-height: 240px; }
  .auth__form-wrap { padding: 40px 20px; }
  /* Pricing block had no stacking rule - kept 2 cols + 70px gap and overflowed
     on small phones. Stack it so the copy and the plan card sit full-width. */
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-wrap { padding: 50px 30px; }
}

@media (max-width: 1100px) {
  .nav-burger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { margin-left: auto; }
  .nav-cta .btn:not(.btn-primary):not(.btn-navy) { display: none; }
}

@media (max-width: 760px) {
  .split-hero {
    height: auto;
    min-height: unset;
    flex-direction: column;
  }
  .split-hero__side { padding: 80px 30px; }
  .split-hero__side:hover { flex: 1; }
  .split-hero__divider { display: none; }
  .split-hero__mark {
    position: relative;
    top: auto; left: auto;
    transform: none;
    margin: -45px auto;
    width: 80px; height: 80px;
  }
  .split-hero__topbar { padding: 18px 20px; }
  .split-hero__topbar .nav-links { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .package { padding: 36px 28px; }
  .auth__visual { display: none; }
}

/* ============================================================
   Responsive hardening - header / logo / mobile nav
   Keeps the logo whole and the header from overflowing on phones.
   (Layout-only; no visual redesign.)
   ============================================================ */

/* The logo wrapper must never be squeezed by the flex row. */
.site-header .nav > a,
.split-hero__topbar > a { flex: 0 0 auto; min-width: 0; max-width: 60%; }

/* Tablet / small laptop - give the row room before the burger appears. */
@media (max-width: 1100px) {
  .nav { gap: 16px; padding: 10px 20px !important; }
  .nav-cta { gap: 10px; }
}

/* Phones - compact header, smaller logo, nothing overflowing. */
@media (max-width: 600px) {
  .nav { padding: 10px 14px !important; gap: 10px; }
  .logo-img { height: 36px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 8px 14px; font-size: .82rem; }
  .split-hero__topbar { padding: 16px 16px; }
  .pricing-wrap { padding: 40px 18px; }
  .pricing-stats { gap: 10px; }
}

/* Small phones (iPhone SE / 320–400px) - tighten further so even the longer
   "Become a Partner" CTA + burger fit without horizontal overflow. */
@media (max-width: 400px) {
  .nav { padding: 8px 10px !important; gap: 8px; }
  .logo-img { height: 32px; }
  .nav-cta .btn { padding: 7px 11px; font-size: .78rem; }
}

/* ============================================================================
   Detailed pricing (toggle) - premium 2-column card on For Members & For
   Business pages (#pricing-section). One term visible at a time; left = price +
   CTA + best-for, right = what-you-get + after-joining; a 3-up FAQ row below.
   Brand tokens only.
   ========================================================================== */
html { scroll-behavior: smooth; }
#pricing-section { scroll-margin-top: 90px; }   /* clear the sticky header */

.pricing2 { max-width: 1040px; margin: 0 auto; }
.pricing2__card {
  position: relative;
  display: grid; grid-template-columns: 1fr 0.82fr;   /* details | pricing */
  background: var(--white); border: 1px solid var(--border); border-radius: 24px; overflow: hidden;
  box-shadow: 0 36px 72px -34px rgba(15,42,71,.42), 0 10px 26px -18px rgba(15,42,71,.18);
}
.pricing2__card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 100%); }
/* Pricing column sits on the RIGHT; details on the LEFT. Visual order is set
   with `order` (which grid auto-placement honours) so both stay in row 1 and
   the markup order - and the toggle JS - is unchanged. */
.pricing2__main  { order: 2; padding: 40px 36px; display: flex; flex-direction: column; border-left: 1px solid var(--border); }
.pricing2__aside { order: 1; padding: 40px 36px; background: linear-gradient(180deg, #FBFAF7 0%, #F6F8FB 100%);
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }

.pricing2__badge { align-self: flex-start; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy); background: var(--cream); padding: 5px 12px; border-radius: 999px; }
.pricing2__name { font-size: 1.6rem; line-height: 1.1; margin: 14px 0 4px; color: var(--navy); }
.pricing2__desc { color: var(--muted); font-size: .94rem; line-height: 1.5; margin: 0 0 20px; }

/* segmented toggle with sliding pill */
.pricing2__toggle { position: relative; display: grid; grid-template-columns: 1fr 1fr; padding: 4px;
  background: rgba(15,42,71,.06); border: 1px solid var(--border); border-radius: 999px; margin-bottom: 22px; }
.pricing2__pill { position: absolute; top: 4px; left: 4px; width: calc(50% - 4px); height: calc(100% - 8px);
  background: var(--white); border-radius: 999px; box-shadow: 0 4px 12px -4px rgba(15,42,71,.30);
  transition: transform .26s cubic-bezier(.4,0,.2,1); }
.pricing2__toggle.is-6month .pricing2__pill { transform: translateX(100%); }
.pricing2__opt { position: relative; z-index: 1; -webkit-appearance: none; appearance: none; background: none; border: 0;
  cursor: pointer; padding: 9px 6px; font-size: 13.5px; font-weight: 700; color: #5b6779; border-radius: 999px;
  font-family: inherit; transition: color .2s; }
.pricing2__opt.is-active { color: var(--navy); }
.pricing2__opt:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

.pricing2__priceblock { transition: opacity .16s ease; }
.pricing2__price { display: flex; align-items: baseline; gap: 6px; }
.pricing2__amount { font-size: 3.1rem; font-weight: 800; letter-spacing: -.02em; color: var(--navy); line-height: 1; }
.pricing2__period { font-size: 1rem; font-weight: 600; color: var(--muted); }
.pricing2__equivs { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 12px; }
.pricing2__equiv-item { font-size: .9rem; color: var(--muted); font-weight: 500; }
.pricing2__equiv-item b { color: var(--navy); font-weight: 800; }
.pricing2__billing { margin: 10px 0 0; font-size: .82rem; color: var(--muted); }

.pricing2__cta { width: 100%; margin-top: 22px; padding: 15px; font-size: 1rem; }
.pricing2__note { text-align: center; margin: 12px 0 0; font-size: .8rem; color: var(--muted); }

.pricing2__callout { margin-top: auto; display: flex; align-items: flex-start; gap: 12px; padding: 15px 16px;
  border: 1px solid var(--border); border-radius: 14px; background: rgba(15,42,71,.035); }
.pricing2__callout-ic { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(240,78,35,.12); color: var(--orange); }
.pricing2__callout-ic svg { width: 18px; height: 18px; }
.pricing2__callout-tx strong { display: block; font-size: .88rem; color: var(--navy); }
.pricing2__callout-tx span { display: block; font-size: .82rem; color: var(--muted); line-height: 1.45; margin-top: 2px; }
.pricing2__mini-h { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  color: var(--muted); margin: 0 0 12px; }
.pricing2__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pricing2__tags span { font-size: .8rem; font-weight: 600; color: var(--navy); background: rgba(15,42,71,.05);
  border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; }

.pricing2__feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pricing2__feats li { position: relative; padding-left: 28px; font-size: .92rem; color: var(--navy); line-height: 1.45; }
.pricing2__feats li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 999px;
  background: rgba(240,78,35,.12); color: var(--orange); font-size: 11px; font-weight: 900; display: grid; place-items: center; line-height: 1; }

.pricing2__steps { list-style: none; counter-reset: pstep; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pricing2__steps li { position: relative; counter-increment: pstep; padding-left: 34px; font-size: .92rem; color: var(--navy); line-height: 1.45; }
.pricing2__steps li::before { content: counter(pstep); position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 999px;
  background: var(--navy); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; }

/* FAQ row below the card */
.pricing2__faq { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.pricing2__faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.pricing2__q { font-size: .92rem; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.pricing2__a { font-size: .86rem; color: var(--muted); line-height: 1.5; margin: 0; }

@media (max-width: 860px) {
  .pricing2__card { grid-template-columns: 1fr; }
  /* Stack in natural order - pricing (main) on top, details below. */
  .pricing2__main  { grid-column: auto; order: 1; border-left: 0; border-bottom: 1px solid var(--border); }
  .pricing2__aside { grid-column: auto; order: 2; }
}
@media (max-width: 560px) {
  .pricing2__main, .pricing2__aside { padding: 28px 22px; }
  .pricing2__amount { font-size: 2.7rem; }
}

/* Restored package card with a single-term toggle (replaces stacked plan boxes).
   Reuses the .pricing2__toggle / __priceblock / __cta hooks so the toggle JS
   works unchanged; the rest is the original .package styling. */
.package .pricing2__toggle { margin: 10px 0 20px; }
.package .pricing2__priceblock { margin-bottom: 22px; }
.pkg-equiv { margin-top: 6px; font-size: 13.5px; color: #5b6779; font-weight: 600; }
