

: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(2rem, 3.5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 2.3vw, 2.1rem); }
h3 { font-size: 1.18rem; }
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); }
/* Large premium CTA (e.g. "Join Now") with a lift + arrow nudge on hover. */
.btn-cta { padding: 17px 40px; font-size: 1.05rem; font-weight: 700; border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(240, 78, 35, .55); }
.btn-cta svg { width: 19px; height: 19px; transition: transform .2s var(--ease); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(240, 78, 35, .6); }
.btn-cta:hover svg { transform: translateX(4px); }
.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;
  /* backdrop-filter intentionally removed: it creates a new CSS containing block
     for position:fixed children (the drawer), which breaks its viewport anchoring
     when the sticky header scrolls. Solid white achieves the same opaque look. */
  z-index: 9999;
  background: #fff;
  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: 7px;
  right: 7px;
  height: 2.5px;
  border-radius: 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(1.8rem, 3.5vw, 3rem);
  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: 72vh;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-full .container {
  padding-top: 110px;
  padding-bottom: 110px;
  width: 100%;
}
.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.2rem, 4.8vw, 3.9rem);
  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: compact, content-driven, no empty gap ---- */
  .hero-full {
    padding: 0;
    min-height: auto;
  }
  .hero-full .container {
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .hero-full__scroll { display: none; }

  /* H1: remove forced <br> on narrow screens, tighten size */
  .hero-full h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); margin-bottom: 14px; }
  .hero-full h1 br { display: none; }

  /* Sub-heading: tighter */
  .hero-full__sub { font-size: .95rem; margin-bottom: 24px; max-width: 100%; }

  /* CTA buttons: side by side on one line, sharing the width evenly. */
  .hero-full .btn-row { flex-direction: row; gap: 10px; flex-wrap: nowrap; }
  .hero-full .btn-row .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    padding: 13px 12px;
    font-size: .92rem;
    white-space: nowrap;
  }

  /* Business hero: clean dark navy on mobile, no orange bleed */
  .hero-full--biz {
    background-image:
      linear-gradient(175deg, rgba(8, 22, 42, .94) 0%, rgba(15, 42, 71, .90) 100%),
      url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=80');
  }
  /* Member hero: keep warm orange but richer, not washed out on portrait */
  .hero-full--user {
    background-image:
      linear-gradient(175deg, rgba(210, 60, 20, .90) 0%, rgba(190, 50, 15, .85) 100%),
      url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2000&q=80');
  }

  /* Feature cards: 2×2 grid instead of 4 stacked */
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 20px 16px; }
  .feature-card__icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
  .feature-card__icon svg { width: 22px; height: 22px; }
  .feature-card h3 { font-size: .92rem; margin-bottom: 6px; }
  .feature-card p { font-size: .83rem; }
}

.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(2rem, 3.6vw, 3.2rem); 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;
}

/* ── Browse Experiences section (user.php) ──────────────────────────────── */
.bx-head { text-align: center; max-width: 940px; margin: 0 auto 52px; }
.bx-h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 800; line-height: 1.15;
          letter-spacing: -.025em; color: var(--navy); margin: 14px 0 22px; }
.bx-accent { color: var(--orange); }
.bx-sub { font-size: 1rem; line-height: 1.72; color: #5b6b82; max-width: 680px; margin: 0 auto; }

.bx-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 36px; }

.bx-card { display: flex; flex-direction: column; border-radius: 18px; overflow: visible;
           background: #fff; box-shadow: 0 2px 8px rgba(12,42,77,.06), 0 14px 36px -18px rgba(12,42,77,.13);
           border: 1px solid #E8ECF4; text-decoration: none; color: inherit;
           transition: transform .22s, box-shadow .22s; }
.bx-card:hover { transform: translateY(-5px);
                 box-shadow: 0 6px 20px rgba(12,42,77,.1), 0 24px 48px -18px rgba(12,42,77,.2); }

.bx-card__img { height: 190px; border-radius: 18px 18px 0 0; overflow: hidden; flex-shrink: 0; }
.bx-card__img img { width: 100%; height: 100%; object-fit: cover; display: block;
                     transition: transform .45s ease; }
.bx-card:hover .bx-card__img img { transform: scale(1.07); }

.bx-card__icon { width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
                  background: var(--navy); border: 3px solid var(--orange);
                  display: flex; align-items: center; justify-content: center;
                  margin: -25px 0 0 20px; position: relative; z-index: 1;
                  box-shadow: 0 4px 14px rgba(12,42,77,.3); color: #fff; }
.bx-card__icon svg { width: 21px; height: 21px; }

.bx-card__body { padding: 14px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.bx-card__body h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy);
                     letter-spacing: -.012em; margin: 0 0 10px; }
.bx-card__body p { font-size: .875rem; line-height: 1.65; color: #5c6b80; margin: 0; flex: 1; }

.bx-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .875rem;
                  font-weight: 700; color: var(--navy); margin-top: 18px; text-decoration: none; }
.bx-card__link svg { width: 15px; height: 15px; color: var(--orange); transition: transform .18s; }
.bx-card:hover .bx-card__link svg { transform: translateX(4px); }

.bx-strip { display: grid; grid-template-columns: repeat(4, 1fr);
             background: #fff; border-radius: 16px; border: 1px solid #E8ECF4;
             box-shadow: 0 2px 8px rgba(12,42,77,.05), 0 8px 24px -14px rgba(12,42,77,.1); }
.bx-strip__item { display: flex; align-items: center; gap: 14px;
                   padding: 20px 24px; position: relative; }
.bx-strip__item + .bx-strip__item::before { content: ''; position: absolute; left: 0;
                                              top: 18%; height: 64%; width: 1px; background: #E8ECF4; }
.bx-strip__ic { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
                 background: var(--navy); display: flex; align-items: center;
                 justify-content: center; color: #fff; }
.bx-strip__ic svg { width: 18px; height: 18px; }
.bx-strip__text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); }
.bx-strip__text span { font-size: .8rem; color: #7c8898; }

/* ── Why Grows section (user.php) ───────────────────────────────────────── */
.wy-head { text-align: center; max-width: 880px; margin: 0 auto 44px; }
.wy-h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 800; line-height: 1.15;
          letter-spacing: -.025em; color: var(--navy); margin: 14px 0 0; }
.wy-accent { color: var(--orange); }
.wy-divider { display: flex; align-items: center; justify-content: center; gap: 8px;
               margin: 20px 0 22px; }
.wy-divider > span { display: block; height: 2px; width: 40px; background: var(--orange);
                      border-radius: 2px; }
.wy-dot { width: 8px !important; height: 8px !important; border-radius: 50%; flex-shrink: 0; }
.wy-sub { font-size: 1rem; line-height: 1.72; color: #5b6b82; max-width: 600px; margin: 0 auto; }

.wy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }

.wy-card { background: #fff; border-radius: 16px; border: 1px solid #E8ECF4;
           box-shadow: 0 2px 6px rgba(12,42,77,.05), 0 10px 30px -16px rgba(12,42,77,.12);
           padding: 30px 24px 28px; display: flex; flex-direction: column; gap: 16px; }
.wy-card__ic { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
                background: rgba(240,78,35,.09); display: flex; align-items: center;
                justify-content: center; color: var(--orange); }
.wy-card__ic svg { width: 28px; height: 28px; }
.wy-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy);
               letter-spacing: -.01em; margin: 0; }
.wy-card p { font-size: .875rem; line-height: 1.65; color: #5c6b80; margin: 0; }

.wy-strip { display: grid; grid-template-columns: repeat(4, 1fr);
             background: #fff; border-radius: 16px; border: 1px solid #E8ECF4;
             box-shadow: 0 2px 8px rgba(12,42,77,.05), 0 8px 24px -14px rgba(12,42,77,.1); }
.wy-strip__item { display: flex; align-items: center; gap: 14px;
                   padding: 22px 22px; position: relative; }
.wy-strip__item + .wy-strip__item::before { content: ''; position: absolute; left: 0;
                                              top: 15%; height: 70%; width: 2px;
                                              background: var(--orange); }
.wy-strip__ic { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
                 background: var(--navy); display: flex; align-items: center;
                 justify-content: center; color: #fff; }
.wy-strip__ic svg { width: 20px; height: 20px; }
.wy-strip__text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); }
.wy-strip__text span { display: block; font-size: .8rem; color: #7c8898; margin-top: 2px; }

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
/* Single-column (no media) variant — centred, wider, premium. */
.band--solo {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.band--solo .band__list { display: inline-block; text-align: left; margin-top: 26px; }
.band--solo .band__cta { margin-top: 34px; }
.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; font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; }
.section-navy .band__text h2 { color: var(--white); }
.band__subhead { color: var(--navy); font-size: 1.15rem; font-weight: 700; margin: 26px 0 10px; }
.section-navy .band__subhead { 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: 160px;
  position: relative;
}
.testimonial__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.testimonial__body { padding: 20px 36px 20px 0; }
.testimonial__body .eyebrow { display: inline-block; margin-bottom: 10px; }
.testimonial__quote {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 16px;
  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; }
/* Limited-time free promo — original price shown struck through */
.package__price--struck { margin-bottom: 2px; }
.package__price--struck .amount {
  font-size: 1.9rem; color: var(--muted); opacity: .7; font-weight: 800;
  text-decoration: line-through; text-decoration-color: #e5484d; text-decoration-thickness: 3px;
}
.package__price--struck .period { text-decoration: line-through; text-decoration-color: #e5484d; opacity: .7; }
.pkg-free { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 6px 0 2px; }
.pkg-free strong {
  font-size: 2.9rem; font-weight: 900; color: #0f7a3d; letter-spacing: -1px; line-height: 1;
  background: linear-gradient(180deg, transparent 58%, #bff3d4 58%); padding: 0 6px; border-radius: 3px;
}
.pkg-free span {
  font-size: .72rem; font-weight: 800; color: #15924b; text-transform: uppercase; letter-spacing: .06em;
  background: #e7f8ef; border: 1px solid #bdebcf; border-radius: 999px; padding: 4px 10px;
}
.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.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  color: var(--navy);
}
.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); font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; }
.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; }
}

/* ============================================================
   Premium mobile navigation drawer (<=1100px).
   Right-side slide-in panel + dark scrim + body scroll lock.
   Desktop (>=1101px) is completely unaffected. The scrim element
   is injected once by js/script.js; body.nav-open locks scroll.
   Uses CSS transforms (not width/left) so the slide is GPU-driven
   with no layout shift or flicker.
   ============================================================ */
/* Drawer header row: logo + X. Hidden on desktop (it's inside the flex nav bar).
   Only rendered visually inside the mobile drawer panel. */
.drawer-header-row { display: none; }

/* Drawer footer CTA: hidden on desktop. */
.drawer-footer { display: none; }

/* nav-only-mobile items (e.g. Home) are hidden on desktop.
   MUST appear BEFORE the @media block so the display:block inside
   the query properly overrides this via source order. */
.nav-only-mobile { display: none; }

.nav-scrim {
  position: fixed; inset: 0;
  /* Below site-header (9999) so the drawer inside it remains clickable. */
  z-index: 9998;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.nav-scrim.open { opacity: 1; visibility: visible; }

@media (max-width: 1100px) {
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; position: relative; z-index: 60; }
  /* Drawer has its own close button (.drawer-close); hide the burger while open
     so the bars-to-X animation doesn't render a second cross over it. */
  .nav-burger.open { display: none; }

  /* Drawer panel — lives inside site-header stacking context (z-9999 globally)
     so it always renders above the scrim (z-9998). Closes via: X, scrim tap,
     any link tap, Escape, resize. */
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: min(320px, 85vw);
    height: 100dvh;
    max-height: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 0;
    border-top: 3px solid var(--orange);
    box-shadow: -6px 0 40px rgba(15, 42, 71, .18), -1px 0 0 rgba(15, 42, 71, .06);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    z-index: 60;
    pointer-events: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; pointer-events: auto; }

  /* ---- Drawer header: minimal close-button row ---- */
  .nav-links .drawer-header-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    min-height: 52px;
    background: transparent;
    border-bottom: 1px solid rgba(15, 42, 71, .07);
    margin-bottom: 4px;
    flex-shrink: 0;
  }

  /* ---- X close button: dark on white ---- */
  .drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--navy);
    transition: background .2s;
  }
  .drawer-close:hover,
  .drawer-close:focus-visible {
    background: rgba(15, 42, 71, .07);
    outline: none;
  }
  .drawer-close svg { display: block; flex-shrink: 0; }

  /* ---- Drawer nav links ---- */
  .nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 14px 20px;
    margin: 2px 10px;
    border: 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--navy);
    pointer-events: auto;
    cursor: pointer;
    transition: background .15s, color .15s, transform .15s;
    text-decoration: none;
  }
  /* Suppress desktop underline animation inside drawer */
  .nav-links a::after { display: none !important; }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(15, 42, 71, .06);
    color: var(--orange);
    transform: none;
    outline: none;
  }
  .nav-links a:active { color: var(--orange); }

  /* ---- Drawer footer: Login CTA ---- */
  .drawer-footer {
    margin-top: auto;
    padding: 16px 20px 32px;
    border-top: 1px solid rgba(15, 42, 71, .09);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .drawer-cta-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    background: var(--orange) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.02em !important;
    margin: 0 !important;
    transform: none !important;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 16px -4px rgba(240, 78, 35, .45);
    transition: background .2s, box-shadow .2s;
  }
  .drawer-cta-btn:hover {
    background: var(--orange-dark, #d4651a) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px -4px rgba(240, 78, 35, .55) !important;
    transform: none !important;
  }
  .drawer-cta-btn::after { display: none !important; }
  /* Copyright is shown in the page footer only, not inside the mobile drawer. */
  .drawer-copy { display: none; }

  /* Mobile header: Login pill hidden globally (override per page via body class). */
  .nav-cta { margin-left: auto; }
  .nav-cta .btn { display: none; }

  /* Items that should appear ONLY inside the mobile drawer. */
  .nav-only-mobile { display: block; }
  /* Hide the inline nav-login link (replaced by drawer-footer CTA) */
  .nav-only-mobile:has(.nav-login) { display: none; }
}

/* ============================================================
   HOMEPAGE HEADER  (body.home / index.php only)
   Header is a sibling of .split-hero so split-hero's
   overflow:hidden can never clip the nav, drawer, or burger.

   Both desktop and mobile use an overlay header on the dark hero:
   · Desktop (>1100px):  position:absolute, fully transparent.
   · Mobile (≤1100px):   position:fixed, dark glass panel.

   body.home scopes every rule to index.php only.
   ============================================================ */

/* ---- Desktop (>1100px): transparent overlay — matches approved screenshot.
     Logo top-left, nav+login clustered top-right. No bar, no background. ---- */
@media (min-width: 1101px) {
  body.home .home-header {
    position: absolute;
    top: 24px;
    left: 0; right: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  /* Full-width flex: logo stays left, nav+login pushed right via margin-left:auto.
     No max-width — the overlay spans the full hero edge-to-edge. */
  body.home .home-header .nav {
    display: flex !important;
    align-items: center;
    max-width: none !important;
    padding: 0 32px !important;
    margin: 0 !important;
    gap: 0;
  }

  /* Logo: no pseudo-element bleed */
  body.home .home-header .nav > a {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
  }
  body.home .home-header .nav > a::before,
  body.home .home-header .nav > a::after { display: none !important; content: none !important; }
  body.home .home-header .logo-img { height: 40px; width: auto; }

  /* Nav-links: margin-left:auto pushes this and the CTA to the far right */
  body.home .home-header .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
  }

  /* CTA: immediately right of the last nav link */
  body.home .home-header .nav-cta {
    display: flex;
    align-items: center;
    margin-left: 24px;
  }

  /* Nav links: white, 600, orange underline on hover */
  body.home .home-header .nav-links a {
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 0;
    padding: 4px 0;
    white-space: nowrap;
  }
  body.home .home-header .nav-links a:hover,
  body.home .home-header .nav-links a:focus-visible { color: rgba(255, 255, 255, .80); }
  body.home .home-header .nav-links a::after { background: var(--orange); }

  /* Login: orange pill */
  body.home .home-header .nav-cta .btn-primary {
    padding: 9px 22px;
    border-radius: 22px;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.2;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  body.home .home-header .nav-cta .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(240, 78, 35, .36);
  }

  body.home .split-hero { margin-top: 0; }
}

/* ---- Mobile / tablet (≤1100px): glass blur overlay header ---- */
@media (max-width: 1100px) {
  body.home .home-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
  }
  /* Nav row */
  body.home .home-header .nav {
    min-height: 68px;
    padding: 12px 18px !important;
    gap: 12px;
  }
  /* Login pill: 42px, balanced */
  body.home .nav-cta .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 42px !important;
    padding: 0 20px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
  }
  /* Burger: 42×42px, white lines visible through glass */
  body.home .home-header .nav-burger { width: 42px; height: 42px; }
  body.home .home-header .nav-burger span { background: var(--navy); }
  /* Push split-hero below the fixed glass header */
  body.home .split-hero { margin-top: 68px; }
  /* Each panel fills half the remaining viewport — eliminates the bottom white gap */
  body.home .split-hero__side { min-height: calc((100vh - 68px) / 2); }
}

/* ---- Member + Business pages (≤1100px): compact Login pill in mobile header. ---- */
@media (max-width: 1100px) {
  body.page-member .nav-cta .btn,
  body.page-business .nav-cta .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    padding: 0 18px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
  }
  body.page-member .nav,
  body.page-business .nav {
    min-height: 72px;
    padding: 14px 18px !important;
    gap: 12px;
  }
}

@media (max-width: 1100px) and (prefers-reduced-motion: reduce) {
  .nav-links { transition: none; }
  .nav-scrim { transition: 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; }
  /* The nav links now live inside the hamburger drawer (handled by the global
     .nav-links drawer rules), so the old "hide all but Login" hack is removed. */
}

@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; }

/* ============================================================================
   Final responsive hardening - tablets & small phones.
   The page-level components above already stack at their own breakpoints; this
   block tightens shared gutters/spacing and guards against overflow on the
   narrowest devices. Layout-only - no visual change on desktop.
   ========================================================================== */

/* Tablet portrait - a touch less section breathing room. */
@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .section-title { margin-bottom: 48px; }
  .pricing-wrap { padding: 44px 30px; }
}

/* Phones - tighter gutters, smaller stat numbers, stacked CTAs are easy to tap. */
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-tight { padding: 44px 0; }
  .testimonial__quote { font-size: 1.15rem; }
  .testimonial__body { padding: 26px 24px 30px; }
  .hero-full__chips { gap: 10px; }
  .pricing2__faq { grid-template-columns: 1fr; }
}

/* Small phones (≤400px) - minimal gutters; keep everything inside the viewport. */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .package { padding: 30px 20px; }
  .package__price .amount { font-size: 2.5rem; }
  .pricing2__amount { font-size: 2.4rem; }
}

/* Category cards - the 4:5 ratio turns into huge tall blocks once they go
   single-column. Make them shorter on tablet/phone so less of the photo is
   cropped and the section doesn't feel endless. */
@media (max-width: 760px) {
  .cat-card { aspect-ratio: 16 / 11; }
}
@media (max-width: 480px) {
  .cat-card { aspect-ratio: 3 / 2; }
}

/* Stat blocks - clear vertical spacing when they stack one-per-row on phones
   (otherwise the number + label pairs crowd together). Overrides the earlier
   ≤600 gap because this rule comes later in the cascade. */
@media (max-width: 480px) {
  .pricing-stats { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .stats { gap: 28px; }
}

/* Photos inside fixed-ratio frames never spill past their box (belt-and-braces
   with the global img rule). Scene photos centre; people/portrait frames bias
   slightly upward so faces stay in shot when the box is short on mobile. */
.cat-card img,
.band__media img { object-position: center; }
.testimonial__media img,
.v-hero__media img { object-position: center 28%; }

/* ============================================================================
   RESPONSIVE DESIGN SYSTEM - shared safety net (public marketing site)
   ----------------------------------------------------------------------------
   Standard breakpoints used across the project (max-width, mobile-down):
     480px  - small / medium phones
     640px  - large phones
     768px  - tablet portrait
     1024px - tablet landscape / small laptop
     1100px - nav drawer threshold
     1200px - desktop content max
   Older component queries above use a few extra values; new work should stick
   to the set above. This block is layout-only and never alters the desktop
   design - it only guards the narrow end.
   ========================================================================== */

/* Media never overflows its container, keeps aspect ratio. (img already handled
   globally; this extends the guarantee to every embedded media type.) */
img, svg, video, canvas, iframe, picture { max-width: 100%; }
video, canvas, iframe { height: auto; }

/* Drop-in responsive table wrapper: keeps wide tables inside the viewport with
   a contained horizontal scroll instead of breaking the page layout. */
.table-wrap, .table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.table-wrap > table, .table-responsive > table { min-width: max-content; }

/* Decorative blur blobs / pseudo-glows add no content but enlarge the paint
   canvas on phones - hide them on small screens (overflow-x:clip already guards
   scroll; this also saves paint cost / CLS). */
@media (max-width: 640px) {
  .v-hero__blob,
  .pricing-side--card::before,
  .pricing-side--card::after { display: none !important; }
}

/* Touch-target floor: every interactive control is at least ~44px tall on
   phones so taps land reliably (Apple HIG / WCAG 2.5.5). Width/look unchanged. */
@media (max-width: 640px) {
  .btn,
  .nav-cta .btn,
  .btn-ghost,
  .nav-links a,
  button[type="submit"] { min-height: 44px; }
  .nav-cta .btn { font-size: .9rem; }
}

/* Long unbroken strings (emails, URLs, codes) wrap instead of forcing the page
   wider on the narrowest phones. */
@media (max-width: 480px) {
  p, li, td, th, dd, dt, .container { overflow-wrap: break-word; }
}

/* Browse Experiences – responsive */
@media (max-width: 1100px) {
  .bx-grid { grid-template-columns: repeat(2, 1fr); }
  .bx-strip { grid-template-columns: repeat(2, 1fr); }
  .bx-strip__item:nth-child(3)::before { display: none; }
  .bx-strip__item:nth-child(3),
  .bx-strip__item:nth-child(4) { border-top: 1px solid #E8ECF4; }
}
@media (max-width: 600px) {
  .bx-grid { grid-template-columns: 1fr; }
  .bx-strip { grid-template-columns: 1fr; }
  .bx-strip__item::before { display: none !important; }
  .bx-strip__item:nth-child(3),
  .bx-strip__item:nth-child(4) { border-top: none; }
  .bx-strip__item + .bx-strip__item { border-top: 1px solid #E8ECF4; }
}

/* Why Grows – responsive */
@media (max-width: 1100px) {
  .wy-grid { grid-template-columns: repeat(2, 1fr); }
  .wy-strip { grid-template-columns: repeat(2, 1fr); }
  .wy-strip__item:nth-child(3)::before { display: none; }
  .wy-strip__item:nth-child(3),
  .wy-strip__item:nth-child(4) { border-top: 1px solid #E8ECF4; }
}
@media (max-width: 600px) {
  .wy-grid { grid-template-columns: 1fr; }
  .wy-strip { grid-template-columns: 1fr; }
  .wy-strip__item::before { display: none !important; }
  .wy-strip__item:nth-child(3),
  .wy-strip__item:nth-child(4) { border-top: none; }
  .wy-strip__item + .wy-strip__item { border-top: 1px solid #E8ECF4; }
}

/* =====================================================
   wp-* Why Partner section (business.php only)
   ===================================================== */
.wp-head { text-align: center; max-width: 980px; margin: 0 auto 52px; }
.wp-h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 800; line-height: 1.18; letter-spacing: -.025em; color: var(--navy); margin: 14px 0 18px; }
.wp-accent { color: var(--orange); }
.wp-sub { font-size: 1rem; line-height: 1.72; color: #5b6b82; max-width: 640px; margin: 0 auto; }

.wp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 40px; }
.wp-card { background: #fff; border-radius: 18px; border: 1px solid #E8ECF4; box-shadow: 0 2px 18px rgba(12,42,77,.07); padding: 32px 22px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.wp-card__icon { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.wp-card__icon svg { width: 36px; height: 36px; color: #fff; stroke: #fff; }
.wp-card__num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .02em; margin-bottom: 14px; flex-shrink: 0; }
.wp-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1.3; margin: 0; }
.wp-card__divider { display: block; width: 36px; height: 3px; background: var(--orange); border-radius: 2px; margin: 10px auto 14px; flex-shrink: 0; }
.wp-card p { font-size: .875rem; line-height: 1.72; color: #5c6b80; margin: 0; }

.wp-purpose { display: flex; align-items: center; gap: 32px; background: #fff; border-radius: 20px; border: 1px solid #E8ECF4; box-shadow: 0 2px 22px rgba(12,42,77,.08); padding: 36px 44px; }
.wp-purpose__icon { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.wp-purpose__icon--navy { background: var(--navy); }
.wp-purpose__icon--orange { background: rgba(240,78,35,.09); border: 2px solid rgba(240,78,35,.4); }
.wp-purpose__icon svg { width: 32px; height: 32px; }
.wp-purpose__icon--navy svg { color: #fff; stroke: #fff; }
.wp-purpose__icon--orange svg { color: var(--orange); stroke: var(--orange); }
.wp-purpose__body { flex: 1; }
.wp-purpose__body h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.3; }
.wp-purpose__divider { display: block; width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 12px 0 16px; }
.wp-purpose__body p { font-size: .9rem; line-height: 1.75; color: #5c6b80; margin: 0; max-width: 560px; }

/* Why Partner – responsive */
@media (max-width: 1100px) {
  .wp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .wp-grid { grid-template-columns: 1fr; }
  .wp-purpose { flex-direction: column; text-align: center; padding: 28px 22px; gap: 20px; }
  .wp-purpose__divider { margin: 12px auto 16px; }
  .wp-purpose__body p { max-width: 100%; }
}

/* =====================================================
   biz-pillar-* Why Partner redesign (business.php)
   ===================================================== */
.biz-pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }

.biz-pillar {
  position: relative;
  background: #fff;
  border: 1px solid rgba(12,42,77,.1);
  border-radius: 18px;
  padding: 2rem 1.6rem 1.85rem;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.biz-pillar:hover { box-shadow: 0 14px 44px rgba(12,42,77,.12); transform: translateY(-3px); }

.biz-pillar__num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(12,42,77,.055);
  user-select: none;
  pointer-events: none;
}

.biz-pillar__icon {
  width: 46px;
  height: 46px;
  background: rgba(240,78,35,.1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--orange);
}
.biz-pillar__icon svg { width: 22px; height: 22px; }

.biz-pillar h3 { font-size: 1.02rem; font-weight: 800; color: var(--navy); line-height: 1.3; margin: 0 0 .7rem; }
.biz-pillar p { font-size: .875rem; line-height: 1.72; color: #5c6b80; margin: 0; }

/* Purpose strip */
.biz-purpose-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--navy);
  border-radius: 20px;
  padding: 2rem 2.5rem;
}
.biz-purpose-strip__icon {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.biz-purpose-strip__icon svg { width: 26px; height: 26px; }
.biz-purpose-strip__body { flex: 1; min-width: 0; }
.biz-purpose-strip__body strong { display: block; font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: .35rem; }
.biz-purpose-strip__body p { font-size: .9rem; line-height: 1.65; color: rgba(255,255,255,.7); margin: 0; }
.biz-purpose-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--orange);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s, transform .2s;
}
.biz-purpose-strip__btn:hover { opacity: .88; transform: translateX(2px); }

@media (max-width: 1100px) {
  .biz-pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .biz-pillar-grid { grid-template-columns: 1fr; }
  .biz-purpose-strip { flex-direction: column; text-align: center; padding: 1.75rem 1.5rem; gap: 1.25rem; }
}

/* =====================================================
   wyr-* Who You'll Reach section (business.php only)
   ===================================================== */
.wyr-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.wyr-h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 800; line-height: 1.18; letter-spacing: -.025em; color: var(--navy); margin: 14px 0 18px; }
.wyr-accent { color: var(--orange); }
.wyr-divider { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 20px; }
.wyr-divider > span { display: block; height: 2px; width: 40px; background: var(--orange); border-radius: 2px; }
.wyr-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.wyr-sub { font-size: 1rem; line-height: 1.72; color: #5b6b82; max-width: 640px; margin: 0 auto; }

.wyr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 40px; }
.wyr-card { background: #fff; border-radius: 18px; border: 1px solid #E8ECF4; box-shadow: 0 2px 18px rgba(12,42,77,.07); padding: 32px 22px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.wyr-card__icon { width: 78px; height: 78px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.wyr-card__icon svg { width: 34px; height: 34px; color: #fff; stroke: #fff; }
.wyr-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1.3; margin: 0; }
.wyr-card__divider { display: block; width: 36px; height: 3px; background: var(--orange); border-radius: 2px; margin: 10px auto 14px; flex-shrink: 0; }
.wyr-card p { font-size: .875rem; line-height: 1.72; color: #5c6b80; margin: 0; }

.wyr-cta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #163d6a 100%);
  border-radius: 20px;
  padding: 2.25rem 2.75rem;
  position: relative;
  overflow: hidden;
}
.wyr-cta::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 48px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.wyr-cta__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
}
.wyr-cta__icon svg { width: 24px; height: 24px; }
.wyr-cta__body { flex: 1; min-width: 0; }
.wyr-cta__body h3 { font-size: 1.3rem; font-weight: 800; line-height: 1.28; margin: 0 0 .65rem; color: #fff; }
.wyr-cta__body h3 span { display: block; }
.wyr-cta__orange { color: var(--orange); }
.wyr-cta__body p { font-size: .9rem; line-height: 1.65; color: rgba(255,255,255,.62); margin: 0; }
.wyr-cta__action { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wyr-cta__btn { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; font-weight: 700; font-size: .92rem; padding: .8rem 1.6rem; border-radius: 100px; text-decoration: none; white-space: nowrap; transition: opacity .18s, transform .18s; }
.wyr-cta__btn:hover { opacity: .88; transform: translateX(2px); }
.wyr-cta__btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.wyr-cta__note { font-size: .76rem; color: rgba(255,255,255,.38); line-height: 1.4; text-align: right; }

/* Who You'll Reach – responsive */
@media (max-width: 1100px) {
  .wyr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .wyr-cta { flex-direction: column; text-align: center; padding: 2rem 1.75rem; gap: 1.5rem; }
  .wyr-cta__action { align-items: center; }
  .wyr-cta__note { text-align: center; }
}
@media (max-width: 600px) {
  .wyr-grid { grid-template-columns: 1fr; }
}
