/* ============================================================
   LAVORO LASER — Premium Design System
   Brand: Cyan #29ABE2 · Magenta #E8186D · White
   Aesthetic: Apple-level luxury — clean, minimal, confident
   Font: Inter (modern sans-serif throughout)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Brand Colors */
  --cyan:           #29ABE2;
  --cyan-dark:      #1a8fc0;
  --cyan-deeper:    #0f6e96;
  --cyan-light:     #e8f6fc;
  --cyan-mid:       #b8e4f5;

  --magenta:        #E8186D;
  --magenta-dark:   #c0104f;
  --magenta-light:  #fce8f1;

  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #FAFAFA;
  --surface:        #F5F5F7;   /* Apple-style light gray */
  --surface-2:      #EBEBED;

  /* Text */
  --text-dark:      #1D1D1F;   /* Apple's near-black */
  --text-body:      #3D3D3F;
  --text-muted:     #6E6E73;   /* Apple's secondary text */
  --text-light:     #A1A1A6;

  /* Borders */
  --border:         #D2D2D7;
  --border-light:   #E8E8ED;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.13);
  --shadow-xl:  0 40px 80px rgba(0,0,0,0.16);
  --shadow-cyan: 0 8px 32px rgba(41,171,226,0.25);
  --shadow-mag:  0 8px 32px rgba(232,24,109,0.22);

  /* Radii */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 100px;

  /* Motion */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t:      all 0.3s var(--ease);
  --t-slow: all 0.55s var(--ease);

  /* Typography */
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --nav-h:      76px;
  --max-w:      1200px;
  --max-w-wide: 1400px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--f-body); color: var(--text-body); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── WRAPPERS ── */
.wrap       { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.wrap-wide  { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--magenta);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 48px;
  position: relative;
  z-index: 1001;
  line-height: 1.4;
}
.ann-bar a { color: var(--white); font-weight: 700; }
.ann-bar a:hover { text-decoration: underline; }
.ann-bar-x {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1rem; line-height: 1;
  transition: var(--t);
}
.ann-bar-x:hover { color: var(--white); }

/* ── NAVIGATION ── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 32px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 62px; width: auto; display: block;
  /* Nav is white background — logo renders perfectly */
  background: transparent;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 8px 12px;
  font-size: 1rem; font-weight: 500;
  color: var(--text-dark); transition: var(--t);
  white-space: nowrap; border-radius: var(--r-xs);
}
.nav-item > a:hover { color: var(--magenta); }
.nav-item > a.active { color: var(--magenta); font-weight: 600; }
.nav-chevron { font-size: 0.55rem; margin-left: 3px; opacity: 0.6; }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--t); z-index: 200;
  overflow: hidden;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 11px 18px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
  transition: var(--t);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--magenta); background: var(--magenta-light); padding-left: 22px; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  font-size: 0.8rem; font-weight: 600;
  color: var(--cyan-dark); white-space: nowrap;
}
.nav-phone:hover { color: var(--magenta); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: var(--mobile-menu-top, var(--nav-h)); left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 32px 32px;
  opacity: 0; pointer-events: none;
  transform: translateY(-10px); transition: var(--t); z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu a {
  display: block; padding: 13px 0;
  font-size: 1rem; font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  transition: var(--t);
}
.mobile-menu a:hover { color: var(--magenta); padding-left: 6px; }
.mobile-menu-section-label {
  display: block; padding: 10px 0 4px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan);
  border-bottom: 1px solid var(--border-light);
  margin-top: 4px;
}
.mobile-menu-sub {
  padding-left: 14px !important;
  font-size: 0.95rem !important;
  color: var(--text-body) !important;
}
.mobile-menu-sub:hover { color: var(--magenta) !important; padding-left: 20px !important; }
.mobile-menu-cta { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* ── BUTTONS ── */
@keyframes btn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,24,109,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(232,24,109,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,24,109,0); }
}
@keyframes btn-pulse-cyan {
  0%   { box-shadow: 0 0 0 0 rgba(41,171,226,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(41,171,226,0); }
  100% { box-shadow: 0 0 0 0 rgba(41,171,226,0); }
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap; line-height: 1;
  position: relative;
}
.btn i { transition: transform 0.25s ease; }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
  background: var(--magenta); color: var(--white);
  border-color: var(--magenta);
  box-shadow: 0 4px 18px rgba(232,24,109,0.38), 0 2px 6px rgba(232,24,109,0.2);
  animation: btn-pulse 2.8s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--magenta-dark); border-color: var(--magenta-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(232,24,109,0.45), 0 4px 12px rgba(232,24,109,0.3);
  animation: none;
}
.btn-cyan {
  background: var(--cyan); color: var(--white);
  border-color: var(--cyan);
  box-shadow: 0 4px 18px rgba(41,171,226,0.38), 0 2px 6px rgba(41,171,226,0.2);
  animation: btn-pulse-cyan 2.8s ease-in-out infinite;
}
.btn-cyan:hover {
  background: var(--cyan-dark); border-color: var(--cyan-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(41,171,226,0.45);
  animation: none;
}
.btn-outline {
  background: transparent; color: var(--magenta);
  border-color: var(--magenta);
  box-shadow: inset 0 0 0 0 var(--magenta);
}
.btn-outline:hover {
  background: var(--magenta); color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(232,24,109,0.3);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--magenta);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255,255,255,0.2);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white); border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px) scale(1.03);
}
.btn-sm  { padding: 9px 20px; font-size: 0.72rem; }
.btn-lg  { padding: 17px 38px; font-size: 0.9rem; letter-spacing: 0.04em; }
.btn-xl  { padding: 20px 48px; font-size: 0.95rem; font-weight: 800; }

/* ── DIVIDER ── */
.divider {
  width: 48px; height: 3px;
  background: var(--magenta);
  border-radius: 2px; margin: 0 auto 20px;
}
.divider-left { margin-left: 0; }
.divider-cyan { background: var(--cyan); }

/* ── OVERLINE ── */
.overline {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--magenta); display: block; margin-bottom: 10px;
}
.overline-cyan { color: var(--cyan); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--text-dark);
  letter-spacing: -0.03em; line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem; color: var(--text-muted);
  margin-top: 14px; line-height: 1.7;
  max-width: 540px;
}
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ── HERO ── */
.hero {
  position: relative; width: 100%;
  min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  /* Lighter gradient so the photo shows clearly */
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.08) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%; padding: 120px 0 80px;
}
.hero-col { max-width: 600px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 32px; height: 2px;
  background: var(--cyan); border-radius: 2px; flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--cyan);
}
.hero-heading {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-heading em {
  font-style: normal; color: var(--magenta);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 480px; line-height: 1.7;
  margin-bottom: 32px; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Hero rating card */
.hero-rating-card {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: 10px 20px;
}
.hero-rating-stars { color: var(--magenta); font-size: 0.75rem; letter-spacing: 1px; }
.hero-rating-text { font-size: 0.82rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-rating-text strong { color: var(--white); }

/* Hero scroll cue */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; color: rgba(255,255,255,0.5);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 1;
  animation: heroScroll 2.2s ease-in-out infinite;
}
@keyframes heroScroll { 0%,100%{transform:translateX(-50%) translateY(0);opacity:.5} 50%{transform:translateX(-50%) translateY(6px);opacity:1} }

/* ── TICKER TAPE ── */
.ticker-wrap {
  background: var(--text-dark); overflow: hidden;
  padding: 14px 0; border-bottom: 2px solid var(--magenta);
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 32px; white-space: nowrap;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
}
.ticker-item i { color: var(--magenta); font-size: 0.65rem; }
.ticker-dot { color: var(--cyan); font-size: 0.5rem; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.trust-items {
  display: flex; align-items: center;
  justify-content: center; gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 24px; font-size: 0.78rem;
  font-weight: 600; color: var(--text-muted);
  border-right: 1px solid var(--border-light);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--magenta); font-size: 0.75rem; }

/* ══════════════════════════════════════════════════════════
   TREATMENT SECTION — Carved-Out Full-Width Sections
   ══════════════════════════════════════════════════════════ */

/* Intro header */
.tx-intro-section {
  background: var(--text-dark);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.tx-intro-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(41,171,226,0.14) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(232,24,109,0.1) 0%, transparent 60%);
}
.tx-intro-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.tx-intro-inner .overline { color: var(--cyan); }
.tx-intro-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.04em; line-height: 1.05;
  margin: 12px 0 20px;
}
.tx-intro-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 40px;
}
.tx-quick-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.tx-qn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r-full);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tx-qn-pill i { font-size: 0.7rem; color: var(--cyan); transition: all 0.22s ease; }
.tx-qn-pill:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(232,24,109,0.4);
}
.tx-qn-pill:hover i { color: var(--white); transform: scale(1.2); }
/* Hint label above quick nav pills */
.tx-nav-hint {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.tx-nav-hint i {
  color: var(--cyan);
  font-size: 0.72rem;
  animation: wiggle 2.5s ease-in-out infinite;
}

/* ── Individual Treatment Card Sections ── */
.tcard {
  background: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.tcard:last-of-type { border-bottom: none; }
.tcard-alt {
  background: var(--surface);
}
.tcard-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* alternating layout handled by HTML order */

/* Photo side */
.tcard-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.tcard-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s var(--ease);
}
.tcard:hover .tcard-photo img { transform: scale(1.03); }
.tcard-photo-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(10,10,20,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 10px 20px; border-radius: var(--r-full);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}
.tcard-photo-badge i { color: var(--cyan); }

/* Content side */
.tcard-content {
  display: flex; flex-direction: column; gap: 0;
}
.tcard-num {
  display: inline-block;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.2em; color: var(--magenta);
  margin-bottom: 6px;
}
.tcard-content .overline { margin-bottom: 6px; }
.tcard-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 20px;
}
.tcard-lead {
  font-size: 1.05rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.65;
  margin-bottom: 14px;
}
.tcard-body {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 28px;
}
.tcard-body strong { color: var(--text-dark); font-weight: 700; }

/* Stats bar */
.tcard-stats {
  display: flex; gap: 0;
  border-top: 1.5px solid var(--border-light);
  border-bottom: 1.5px solid var(--border-light);
  margin-bottom: 28px;
}
.tcard-stat {
  flex: 1; padding: 18px 12px; text-align: center;
  border-right: 1.5px solid var(--border-light);
}
.tcard-stat:last-child { border-right: none; }
.tcard-stat-val {
  display: block;
  font-size: 1.25rem; font-weight: 900;
  color: var(--cyan-dark); line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.tcard-stat-lbl {
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-light);
}

/* Check list */
.tcard-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.tcard-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; color: var(--text-body); line-height: 1.5;
}
.tcard-list li i {
  color: var(--magenta); font-size: 0.72rem;
  margin-top: 4px; flex-shrink: 0;
}

/* CTA actions wrapper */
.tcard-actions-wrap {
  border-top: 1.5px solid var(--border-light);
  padding-top: 24px;
  margin-top: 4px;
}
.tcard-actions-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tcard-actions-label i {
  font-size: 0.7rem;
  color: var(--magenta);
  animation: wiggle 2s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%            { transform: rotate(-15deg); }
  96%            { transform: rotate(10deg); }
}
.tcard-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.tcard-actions .btn-primary {
  min-width: 210px;
  justify-content: center;
  font-size: 0.85rem;
  padding: 18px 36px;
}
.tcard-actions .btn-outline {
  min-width: 180px;
  justify-content: center;
  font-size: 0.85rem;
  padding: 17px 32px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tcard { padding: 64px 0; }
  .tcard-inner { grid-template-columns: 1fr; gap: 40px; }
  .tcard-inner.tcard-img-right .tcard-content { order: -1; }
  .tcard-photo img { height: 320px; }
  .tx-intro-section { padding: 72px 0 52px; }
  .tx-quick-nav { gap: 8px; }
  .tx-qn-pill { font-size: 0.72rem; padding: 8px 14px; }
}

/* ── STORY SPLIT ── */
.story-split {
  display: grid; grid-template-columns: 1fr 1fr;
}
.story-image {
  position: relative; min-height: 600px; overflow: hidden;
}
.story-image img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.story-image-frame {
  position: absolute; inset: 24px;
  border: 1.5px solid rgba(41,171,226,0.35);
  border-radius: var(--r-sm); pointer-events: none;
}
.story-copy {
  background: var(--surface);
  padding: 80px 72px; display: flex;
  flex-direction: column; justify-content: center;
}
.story-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.story-stat {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 22px 20px;
}
.story-stat-n {
  font-size: 2rem; font-weight: 800;
  color: var(--magenta); line-height: 1; margin-bottom: 5px;
}
.story-stat-l {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── RESULTS GALLERY ── */
.results-section { background: var(--surface); }
.results-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: var(--r-full);
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); background: var(--white);
  border: 1.5px solid var(--border); transition: var(--t);
  cursor: pointer; font-family: var(--f-body);
}
.filter-btn:hover { border-color: var(--magenta); color: var(--magenta); }
.filter-btn.active {
  background: var(--magenta); color: var(--white);
  border-color: var(--magenta); box-shadow: var(--shadow-mag);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.result-tile {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-md); overflow: hidden;
  cursor: pointer; background: var(--surface-2);
}
.result-tile img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s var(--ease);
}
.result-tile:hover img { transform: scale(1.05); }
.result-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 55%);
  opacity: 0; transition: var(--t);
}
.result-tile:hover .result-tile-overlay { opacity: 1; }
.result-tile-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; transform: translateY(8px); opacity: 0;
  transition: var(--t);
}
.result-tile:hover .result-tile-info { transform: translateY(0); opacity: 1; }
.result-tile-tag {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 4px;
}
.result-tile-label { font-size: 0.88rem; font-weight: 700; color: var(--white); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--text-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: var(--t);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(41,171,226,0.2);
  transform: translateY(-4px);
}
.testimonial-card.featured {
  background: rgba(41,171,226,0.08);
  border-color: rgba(41,171,226,0.25);
}
.testimonial-stars { color: var(--magenta); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.92rem; color: rgba(255,255,255,0.78);
  line-height: 1.75; margin-bottom: 20px;
  font-style: italic; font-weight: 300;
}
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.testimonial-source { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ── PROCESS STEPS ── */
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.process-grid::before {
  content: ''; position: absolute;
  top: 24px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(to right, var(--magenta), var(--cyan));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--magenta); color: var(--white);
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-mag);
}
.process-step h3 {
  font-size: 0.92rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── SPECIALS ── */
.specials-section { background: var(--cyan-light); border-top: 2px solid var(--cyan-mid); border-bottom: 2px solid var(--cyan-mid); }
.specials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.special-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 32px 28px; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: var(--t);
}
.special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.special-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(to right, var(--magenta), var(--cyan));
}
.special-tag {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--magenta); margin-bottom: 10px; display: block;
}
.special-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.special-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.special-price { font-size: 1.5rem; font-weight: 800; color: var(--magenta); }
.special-price-orig { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; margin-left: 8px; }

/* ── CTA BANNER ── */
/* ── OLD CTA BANNER (kept for other pages) ── */
.cta-banner {
  background: var(--surface);
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(41,171,226,0.08) 0%, transparent 70%);
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,24,109,0.06) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.03em;
  line-height: 1.2; margin-bottom: 16px;
}
.cta-banner p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── OFFER BANNER (homepage) ── */
.offer-banner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 520px;
  overflow: hidden;
}

/* LEFT visual panel */
.offer-banner-visual {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0f2044 40%, #1a1040 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.offer-banner-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(41,171,226,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(232,24,109,0.18) 0%, transparent 50%);
}
.offer-glow {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45;
}
.offer-glow-1 {
  width: 280px; height: 280px;
  background: var(--cyan);
  top: -60px; left: -60px;
}
.offer-glow-2 {
  width: 240px; height: 240px;
  background: var(--magenta);
  bottom: -40px; right: -40px;
}

/* Big floating $500 badge */
.offer-badge-float {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border: 2px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 12px rgba(41,171,226,0.08),
    0 0 0 28px rgba(41,171,226,0.04),
    0 24px 60px rgba(0,0,0,0.4);
  animation: offerPulse 3s ease-in-out infinite;
}
@keyframes offerPulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(41,171,226,0.08), 0 0 0 28px rgba(41,171,226,0.04), 0 24px 60px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 0 16px rgba(41,171,226,0.14), 0 0 0 36px rgba(41,171,226,0.06), 0 24px 60px rgba(0,0,0,0.4); }
}
.offer-badge-amount {
  font-size: 4rem; font-weight: 900; color: #fff;
  letter-spacing: -0.04em; line-height: 1;
}
.offer-badge-label {
  font-size: 1.3rem; font-weight: 800;
  color: var(--cyan); letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 2px;
}
.offer-badge-sub {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 8px;
}

/* RIGHT content panel */
.offer-banner-content {
  background: #0f1f3d;
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.offer-banner-content::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--cyan));
}

/* Urgency bar */
.offer-urgency-bar {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,24,109,0.12);
  border: 1px solid rgba(232,24,109,0.3);
  color: #ff6eb0;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 24px; width: fit-content;
}
.offer-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff6eb0;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.2; }
}

/* Headline */
.offer-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 18px;
}
.offer-headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), #7dd6f5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub text */
.offer-subtext {
  font-size: 1rem; color: rgba(255,255,255,0.68);
  line-height: 1.75; margin-bottom: 28px;
  max-width: 460px;
}

/* Checkmarks */
.offer-checks {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
}
.offer-checks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.offer-checks li i {
  color: var(--cyan); font-size: 0.85rem; flex-shrink: 0;
}

/* CTA buttons */
.offer-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px;
}
.btn-offer-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--magenta) 0%, #c4155e 100%);
  color: #fff; font-size: 1rem; font-weight: 700;
  padding: 16px 30px; border-radius: 50px;
  text-decoration: none; letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(232,24,109,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-offer-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,24,109,0.5);
}
.btn-offer-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1rem; font-weight: 600;
  padding: 16px 28px; border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-offer-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

/* Fine print */
.offer-fine {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .offer-banner {
    grid-template-columns: 1fr;
  }
  .offer-banner-visual {
    min-height: 220px;
    padding: 40px 20px;
  }
  .offer-badge-float {
    width: 160px; height: 160px;
  }
  .offer-badge-amount { font-size: 3rem; }
  .offer-banner-content {
    padding: 48px 32px;
  }
  .offer-checks {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .offer-banner-content { padding: 40px 24px; }
  .offer-ctas { flex-direction: column; }
  .btn-offer-primary, .btn-offer-secondary { justify-content: center; }
}

/* ── PARTNERS ── */
/* ── AS SEEN ON / PARTNERS ── */
.partners-section {
  background: var(--white);
  text-align: center;
  padding: 56px 0 60px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.partners-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.partners-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.partners-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  white-space: nowrap;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.partner-divider {
  width: 1px;
  height: 56px;
  background: var(--border-light);
  margin: 0 40px;
  flex-shrink: 0;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
  transition: transform 0.25s var(--ease);
}
.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: background 0.25s var(--ease);
}
.partner-item img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.80;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
  filter: saturate(0.6) contrast(0.9);
}
.partner-item:hover .partner-logo-wrap {
  background: var(--surface);
}
.partner-item:hover img {
  opacity: 1;
  transform: scale(1.05);
  filter: saturate(1) contrast(1);
}
.partner-show-name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.partner-item:hover .partner-show-name {
  opacity: 1;
}
@media (max-width: 768px) {
  .partner-divider { display: none; }
  .partners-row { gap: 24px; }
  .partner-item { margin: 8px 16px; }
  .partner-show-name { opacity: 0.7; }
}

/* ── FOOTER ── */
footer {
  background: #111318; color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: inline-block;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 52px; width: auto;
  display: block;
}
.footer-tagline {
  font-size: 0.85rem; line-height: 1.75;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.82rem;
  transition: var(--t);
}
.footer-social a:hover { background: var(--magenta); color: var(--white); }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--white); margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: var(--t);
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 12px;
  font-size: 0.84rem; color: rgba(255,255,255,0.5);
  align-items: flex-start; line-height: 1.55;
}
.footer-contact-item i { color: var(--cyan); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: var(--t); }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.3); transition: var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--cyan-deeper) 100%);
  padding: 80px 0 72px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(41,171,226,0.18) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ── FORM ── */
.form-wrap {
  background: var(--white); border-radius: var(--r-xl);
  padding: 48px 44px; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row.full { grid-template-columns: 1fr; }
.f-field { margin-bottom: 16px; }
.f-label {
  display: block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 7px;
}
.f-input {
  width: 100%; padding: 13px 16px;
  font-family: var(--f-body); font-size: 0.9rem;
  color: var(--text-dark); background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  transition: var(--t); outline: none; line-height: 1;
}
.f-input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(41,171,226,0.12); }
.f-input::placeholder { color: var(--text-light); }
textarea.f-input { min-height: 120px; resize: vertical; line-height: 1.6; }
select.f-input { appearance: none; cursor: pointer; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.wide { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-cta .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .wrap, .wrap-wide { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .story-split { grid-template-columns: 1fr; }
  .story-image { min-height: 340px; }
  .story-copy { padding: 48px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: span 1; aspect-ratio: 4/5; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-wrap { padding: 32px 22px; }
  .form-row, .form-row.cols-3 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-heading { font-size: 2.2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 6px 12px; font-size: 0.72rem; }
}

/* ═══════════════════════════════════════════════════════════
   CONVERSION UPGRADES — Concern Selector, Hero v2, Sticky CTA
   ═══════════════════════════════════════════════════════════ */

/* ── Hero v2 upgrades ── */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(10,20,40,0.78) 0%,
    rgba(10,20,40,0.52) 55%,
    rgba(10,20,40,0.25) 100%
  );
}
.hero-content { position: relative; z-index: 2; }



/* Concern rotator */
.hero-concern-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.hero-concern-label {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.hero-concern-rotator {
  position: relative; min-width: 220px; height: 1.5em;
  overflow: hidden; display: inline-block;
}
.hr-item {
  position: absolute; top: 0; left: 0;
  font-size: 0.9rem; font-weight: 700;
  color: var(--cyan);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}
.hr-item.active { opacity: 1; transform: translateY(0); }

/* CTA primary pulse on hero */
.hero-cta-main {
  animation: btn-pulse 2.5s ease-in-out infinite;
  position: relative;
}

/* Social proof row */
.hero-social-proof {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 6px;
}
.hero-rating-card {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  padding: 10px 16px;
  width: fit-content;
}
.hero-avatars { display: flex; }
.ha {
  width: 28px; height: 28px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
  background: var(--cyan-mid); margin-left: -8px;
}
.ha:first-child { margin-left: 0; }
.ha-1 { background: linear-gradient(135deg,#b8e4f5,#29ABE2); }
.ha-2 { background: linear-gradient(135deg,#f5b8d5,#E8186D); }
.ha-3 { background: linear-gradient(135deg,#d5f5b8,#22c55e); }
.hero-rating-stars { font-size: 0.85rem; color: #FFD700; }
.hero-rating-text { font-size: 0.78rem; color: rgba(255,255,255,0.82); }

.hero-badges-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-mini-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-full);
  padding: 5px 13px;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.hero-mini-badge i { color: var(--cyan); font-size: 0.68rem; }

/* ── Concern Section ── */
.concern-section {
  background: var(--off-white);
  padding: 96px 0 112px;
}
.concern-header {
  text-align: center; margin-bottom: 64px;
}
.concern-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.04em; line-height: 1.1;
  margin: 8px 0 16px;
}
.concern-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

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

/* Each concern card */
.concern-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.concern-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.concern-card:hover::before,
.concern-card.cc-open::before { transform: scaleX(1); }
.concern-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 48px rgba(41,171,226,0.14);
  transform: translateY(-4px);
}
.concern-card.cc-open {
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(41,171,226,0.18);
  transform: translateY(-4px);
  grid-column: span 2;
}

.cc-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: transform 0.3s var(--ease);
}
.concern-card:hover .cc-icon-wrap { transform: scale(1.08) rotate(-3deg); }

.cc-title {
  font-size: 1.05rem; font-weight: 800;
  color: var(--text-dark); margin-bottom: 8px;
  line-height: 1.25; letter-spacing: -0.02em;
}
.cc-desc {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 14px;
}
.cc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.cc-tags span {
  background: var(--surface); color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 10px;
}

.cc-expand-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--cyan); letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.cc-expand-hint i { transition: transform 0.3s var(--ease); font-size: 0.6rem; }
.concern-card.cc-open .cc-expand-hint i { transform: rotate(180deg); }
.concern-card:hover .cc-expand-hint { gap: 9px; }

/* Expanded panel */
.cc-panel {
  max-height: 0; overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: max-height 0.45s var(--ease), opacity 0.35s ease;
  margin-top: 0;
}
.concern-card.cc-open .cc-panel {
  max-height: 1000px; opacity: 1;
  pointer-events: all;
  margin-top: 20px;
}
.cc-panel-intro {
  font-size: 0.88rem; color: var(--text-body);
  line-height: 1.65; margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1.5px solid var(--border-light);
}

/* Treatment links inside panel */
.cc-treatments {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 18px;
}
.cc-tx {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.22s var(--ease);
}
.cc-tx:hover {
  background: var(--cyan-light);
  border-color: var(--cyan);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.cc-tx-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--cyan);
  flex-shrink: 0;
}
.cc-tx-body {
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.cc-tx-body strong {
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-dark); display: block;
}
.cc-tx-body span {
  font-size: 0.76rem; color: var(--text-muted);
  line-height: 1.4; display: block;
}
.cc-tx-arrow {
  font-size: 0.65rem; color: var(--cyan);
  opacity: 0; transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.cc-tx:hover .cc-tx-arrow { opacity: 1; transform: translateX(3px); }

/* Quote inside panel */
.cc-quote {
  background: linear-gradient(135deg, var(--cyan-light), rgba(232,24,109,0.06));
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.cc-quote i { color: var(--cyan); font-size: 0.8rem; margin-bottom: 6px; display: block; opacity: 0.6; }
.cc-quote p { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; margin: 0; font-style: italic; }
.cc-quote em { font-style: normal; font-weight: 700; color: var(--text-dark); }

.cc-cta { width: 100%; justify-content: center; }

/* "Not sure" card variant */
.concern-card-cta {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a2a4a 100%);
  border-color: transparent;
  cursor: default;
}
.concern-card-cta .cc-title { color: var(--white); }
.concern-card-cta .cc-desc { color: rgba(255,255,255,0.65); }
.concern-card-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10,20,40,0.25);
}
.concern-card-cta:hover::before { transform: scaleX(1); }
.cc-cta-actions { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 16px; }
.cc-cta-actions .btn { justify-content: center; }
.cc-availability {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cc-availability .availability-dot {
  width: 7px; height: 7px;
  background: #22c55e; border-radius: 50%;
  flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}

/* ── Homepage Treatment Tab Switcher ── */
.tx-tab-section {
  background: var(--off-white);
  padding: 80px 0 96px;
}
.tx-tab-header {
  text-align: center; margin-bottom: 40px;
}
.tx-tab-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--text-dark);
  letter-spacing: -.03em; margin: 8px 0 14px;
}
.tx-tab-header p {
  font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto;
}
.tx-tab-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 32px;
}
.tx-tab-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 20px; border-radius: 50px;
  background: var(--white); border: 2px solid var(--border-light);
  font-size: .86rem; font-weight: 700; color: var(--text-muted);
  cursor: pointer; transition: all .2s var(--ease);
  white-space: nowrap;
}
.tx-tab-pill i { font-size: .82rem; }
.tx-tab-pill:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.tx-tab-pill.active { background: var(--cyan); border-color: var(--cyan); color: #fff; box-shadow: 0 6px 20px rgba(41,171,226,.3); }

.tx-tab-panels { position: relative; }
.tx-tab-panel {
  background: var(--white);
  border: 2px solid var(--cyan);
  border-radius: 20px;
  padding: 44px 48px;
  animation: tabFadeIn .25s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tx-tab-inner { max-width: 700px; }
.tx-tab-body .overline { color: var(--cyan); }
.tx-tab-body h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--text-dark);
  letter-spacing: -.03em; margin: 8px 0 16px;
}
.tx-tab-body p { font-size: .97rem; color: var(--text-body); line-height: 1.7; margin-bottom: 24px; }
.tx-tab-stats {
  display: flex; gap: 32px; margin-bottom: 28px; flex-wrap: wrap;
}
.tx-tab-stats div { display: flex; flex-direction: column; gap: 4px; }
.tx-tab-stats span { font-size: 1.5rem; font-weight: 900; color: var(--cyan); letter-spacing: -.02em; }
.tx-tab-stats small { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.tx-tab-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .tx-tab-panel { padding: 28px 22px; }
  .tx-tab-stats { gap: 20px; }
  .tx-tab-stats span { font-size: 1.2rem; }
}
@media (max-width: 500px) {
  .tx-tab-pill { padding: 9px 14px; font-size: .78rem; }
}

/* ── Concern Pill Switcher (new compact layout) ── */
.concern-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.concern-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.concern-pill i { font-size: 0.85rem; }
.concern-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41,171,226,0.15);
}
.concern-pill.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
  box-shadow: 0 6px 20px rgba(41,171,226,0.3);
}

/* Single swappable concern panel */
.concern-panel-wrap {
  margin-bottom: 28px;
}
.concern-panel {
  display: none;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  animation: cpFadeIn 0.25s ease;
}
.concern-panel.active { display: block; }
@keyframes cpFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cc-panel-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.cc-panel-left .cc-icon-wrap { margin-bottom: 14px; }
.cc-panel-left .cc-title { font-size: 1.2rem; margin-bottom: 10px; }
.cc-panel-left .cc-panel-intro {
  font-size: 0.9rem; color: var(--text-body);
  line-height: 1.65; margin-bottom: 16px;
}
.cc-panel-right {
  display: flex; flex-direction: column; gap: 20px;
}
.cc-panel-right .cc-quote {
  background: linear-gradient(135deg, var(--cyan-light), rgba(232,24,109,0.06));
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 18px;
}
.cc-panel-right .cc-quote i { color: var(--cyan); font-size: 0.8rem; margin-bottom: 6px; display: block; opacity: 0.6; }
.cc-panel-right .cc-quote p { font-size: 0.84rem; color: var(--text-body); line-height: 1.6; margin: 0 0 8px; font-style: italic; }
.cc-panel-right .cc-quote span { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); }
.cc-panel-right .cc-cta { width: 100%; justify-content: center; }

/* Not sure strip */
.concern-not-sure {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a2a4a 100%);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  color: #fff;
}
.concern-not-sure > i {
  font-size: 1.6rem; color: var(--cyan); flex-shrink: 0;
}
.concern-not-sure > div:first-of-type {
  flex: 1; min-width: 200px;
}
.concern-not-sure strong {
  display: block; font-size: 1rem; font-weight: 800; margin-bottom: 4px;
}
.concern-not-sure span {
  font-size: 0.84rem; color: rgba(255,255,255,0.65);
}
.concern-not-sure-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cc-panel-inner { grid-template-columns: 1fr; gap: 24px; }
  .concern-panel { padding: 24px 22px; }
}
@media (max-width: 600px) {
  .concern-pill { padding: 10px 16px; font-size: 0.8rem; }
  .concern-not-sure { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ── Social Proof Band ── */
.social-proof-band {
  background: var(--text-dark);
  padding: 48px 0;
}
.spb-inner {
  display: grid;
  grid-template-columns: 180px 1px 1fr 1px auto;
  gap: 40px; align-items: center;
}
.spb-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.12);
  justify-self: center;
}
.spb-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; color: var(--cyan);
  display: block; line-height: 1;
  letter-spacing: -0.04em;
}
.spb-plus { font-size: 60%; vertical-align: super; }
.spb-lbl {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px; display: block;
}
.spb-quote-icon {
  color: var(--cyan); font-size: 0.9rem;
  opacity: 0.5; margin-bottom: 8px; display: block;
}
.spb-quote p {
  font-size: 0.9rem; color: rgba(255,255,255,0.82);
  line-height: 1.65; font-style: italic; margin: 0 0 8px;
}
.spb-quote span {
  font-size: 0.72rem; color: rgba(255,255,255,0.42);
  display: flex; align-items: center; gap: 4px;
}
.spb-cta {
  text-align: center;
}
.spb-cta p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.55; }
.spb-cta p span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── How It Works — new version ── */
.how-section {
  background: var(--white);
  padding: 100px 0;
}
.how-header {
  text-align: center; margin-bottom: 40px;
}
.how-header .overline { justify-content: center; display: flex; margin-bottom: 10px; }
.how-header h2 {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.04em; margin-bottom: 12px; line-height: 1.1;
}
.how-header p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.65;
}
.how-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative; margin-bottom: 64px;
}
.how-steps::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  z-index: 0;
}
.how-step {
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}
.how-step-connector { display: none; }
.how-step-num {
  font-size: 0.6rem; font-weight: 900;
  letter-spacing: 0.15em; color: var(--text-light);
  text-transform: uppercase; margin-bottom: 6px;
}
.how-step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--cyan);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative; z-index: 2;
}
.how-step:hover .how-step-icon {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-cyan);
  border-color: transparent;
}
.how-step h3 {
  font-size: 1rem; font-weight: 800;
  color: var(--text-dark); margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.how-step p {
  font-size: 0.84rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 12px;
}
.how-step-time {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--cyan-light);
  color: var(--cyan-dark);
  border: 1px solid var(--cyan-mid);
  border-radius: var(--r-full);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px;
}
.how-step-time i { font-size: 0.6rem; }

/* ══ PATIENT JOURNEY SECTION ══ */
.journey-section {
  margin: 0 0 72px;
}

/* ── Journey steps bar (above image) ── */
.journey-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.journey-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-full);
  padding: 9px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
  position: relative;
}
.journey-step-pill i { font-size: 0.9rem; color: var(--text-light); }
.journey-step-pill--active {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(232,24,109,0.22);
}
.journey-step-pill--active i { color: rgba(255,255,255,0.85); }
.journey-pill-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}
.journey-step-pill--active .journey-pill-num {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}
.journey-pill-arrow {
  color: var(--text-light);
  font-size: 0.7rem;
  opacity: 0.5;
}

/* ── Journey image wrapper ── */
.journey-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.16);
  max-height: 520px;
}
.journey-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.7s var(--ease);
}
.journey-img-wrap:hover img {
  transform: scale(1.025);
}
/* Gradient overlay */
.journey-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,20,40,0.08) 0%,
    rgba(15,20,40,0.02) 50%,
    rgba(15,20,40,0.45) 100%
  );
  pointer-events: none;
}

/* ── Quote overlay (bottom-left) ── */
.journey-quote-overlay {
  position: absolute;
  bottom: 58px;
  left: 32px;
  z-index: 10;
  max-width: 360px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-lg);
  padding: 18px 22px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border-left: 3px solid var(--magenta);
}
.journey-quote-icon {
  font-size: 1.1rem;
  color: var(--magenta);
  opacity: 0.7;
  margin-bottom: 6px;
  display: block;
}
.journey-quote-overlay p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.55;
  margin: 0 0 6px;
  font-style: italic;
}
.journey-quote-attr {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── HOW SECTION — Consultation Image Banner (legacy) ── */
.how-consult-img {
  position: relative;
  margin: 0 0 72px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 480px;
}
.how-consult-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.how-consult-img:hover img {
  transform: scale(1.02);
}
/* Subtle gradient overlay — just enough for badge legibility, lets the image shine */
.how-consult-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 20, 40, 0.18) 0%,
    rgba(15, 20, 40, 0.04) 40%,
    rgba(15, 20, 40, 0.32) 100%
  );
  pointer-events: none;
}
/* Floating badges */
.how-img-badge {
  position: absolute;
  top: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-full);
  padding: 10px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  border: 1px solid rgba(255,255,255,0.9);
  animation: badgeFadeIn 0.7s var(--ease) both;
}
.how-img-badge--left { left: 28px; }
.how-img-badge--right { right: 28px; }
.how-img-badge i {
  font-size: 1.1rem;
}
.how-img-badge--left i { color: #29ABE2; }
.how-img-badge--right i { color: #E8186D; }
.how-img-badge em {
  color: #E8186D;
  font-style: normal;
  font-weight: 800;
}
/* Bottom ribbon */
.how-img-ribbon {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 10;
  background: rgba(15, 20, 40, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.how-img-ribbon i {
  color: #29ABE2;
  margin-right: 4px;
}
@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .how-consult-img { border-radius: var(--r-md); margin-bottom: 48px; max-height: 320px; }
  .how-consult-img img { height: 320px; }
  .how-img-badge { font-size: 0.7rem; padding: 8px 14px; gap: 7px; }
  .how-img-badge--left { top: 16px; left: 12px; }
  .how-img-badge--right { top: 16px; right: 12px; }
  .how-img-ribbon { font-size: 0.7rem; padding: 10px 16px; }

  /* journey section responsive */
  .journey-steps-bar { gap: 6px; }
  .journey-step-pill { font-size: 0.7rem; padding: 7px 13px; gap: 6px; }
  .journey-step-pill i { font-size: 0.78rem; }
  .journey-img-wrap { border-radius: var(--r-md); max-height: 340px; }
  .journey-img-wrap img { height: 340px; }
  .journey-quote-overlay { max-width: 260px; padding: 13px 15px 10px; left: 14px; bottom: 50px; }
  .journey-quote-overlay p { font-size: 0.74rem; }
}
@media (max-width: 480px) {
  .how-img-badge--right { display: none; }
  .how-consult-img img { height: 260px; }
  .how-consult-img { max-height: 260px; }

  /* journey section mobile */
  .journey-steps-bar { gap: 4px; }
  .journey-step-pill { font-size: 0.65rem; padding: 6px 10px; }
  .journey-pill-arrow { display: none; }
  .journey-img-wrap { max-height: 280px; }
  .journey-img-wrap img { height: 280px; object-position: center 20%; }
  .journey-quote-overlay { display: none; }
  .how-img-badge--right { display: none; }
}

.how-cta {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.how-cta > .btn-primary { margin-top: 0; }
.how-cta .btn-primary, .how-cta .btn-outline { min-width: 280px; justify-content: center; }

/* ── CTA Banner upgrades ── */
.cta-banner-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-full);
  padding: 7px 18px;
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}


/* ── Sticky Mobile CTA Bar ── */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  display: grid; grid-template-columns: 1fr 2fr;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  /* Desktop: hidden always */
}
.sticky-cta-bar.visible { transform: translateY(0); }

.sticky-cta-call {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  background: var(--text-dark);
  color: var(--white);
  padding: 14px 10px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: background 0.2s;
}
.sticky-cta-call:hover { background: #1a2a4a; }
.sticky-cta-call i { font-size: 1.1rem; margin-bottom: 2px; color: var(--cyan); }

.sticky-cta-book {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--magenta);
  color: var(--white);
  padding: 14px 20px;
  font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none;
  animation: btn-pulse 2.8s ease-in-out infinite;
  transition: background 0.2s;
}
.sticky-cta-book:hover { background: var(--magenta-dark); animation: none; }
.sticky-cta-book i { font-size: 1rem; }

/* Only show sticky bar on mobile/tablet */
@media (min-width: 769px) {
  .sticky-cta-bar { display: none !important; }
}
/* On mobile, give page breathing room at bottom when bar is visible */
@media (max-width: 768px) {
  body.has-sticky-cta footer { padding-bottom: 70px; }
}

/* ═══════════════════════════════════════════════════════════
   BEFORE & AFTER GALLERY — Shared styles used on treatment pages
   and results.html
   ═══════════════════════════════════════════════════════════ */

/* ── BA Section wrapper ── */
.ba-section {
  padding: 96px 0 112px;
  background: var(--off-white);
}
.ba-section.dark {
  background: var(--text-dark);
}
.ba-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.ba-section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.04em; line-height: 1.1;
  margin: 10px 0 14px;
}
.ba-section.dark .ba-section-header h2 { color: var(--white); }
.ba-section-header p {
  font-size: 1rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.ba-section.dark .ba-section-header p { color: rgba(255,255,255,0.6); }

/* ── BA grid (3 col default on treatment pages, 2 mini col for homepage teaser) ── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ── BA Card ── */
.ba-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-light);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.ba-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--cyan);
}
.ba-card.hidden { display: none; }

/* ── Comparison slider container ── */
.ba-slider-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1f2e;
  user-select: none;
}
.ba-before-img,
.ba-after-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ba-after-img {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}

/* ── Divider line + handle ── */
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 3px;
  background: var(--white);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  z-index: 5; cursor: ew-resize;
  border: 2px solid rgba(41,171,226,0.4);
}
.ba-handle i { color: var(--cyan); font-size: 0.85rem; }
.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute; top: 50%; width: 8px; height: 8px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform-origin: center;
}
.ba-handle::before { right: 8px; transform: translateY(-50%) rotate(45deg); }
.ba-handle::after  { left: 8px;  transform: translateY(-50%) rotate(-135deg); }

/* ── Before / After labels ── */
.ba-label-before,
.ba-label-after {
  position: absolute; bottom: 12px; z-index: 6;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-full);
}
.ba-label-before { left: 12px; }
.ba-label-after  { right: 12px; }

/* ── Placeholder state (no real photo yet) ── */
.ba-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #1a1f2e;
  gap: 12px; padding: 20px; text-align: center;
}
.ba-placeholder-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px dashed rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: rgba(255,255,255,0.35);
}
.ba-placeholder-title {
  font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.55); line-height: 1.4;
}
.ba-placeholder-sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.28);
  line-height: 1.5;
}
.ba-placeholder-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(41,171,226,0.15);
  border: 1px solid rgba(41,171,226,0.3);
  border-radius: var(--r-full);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); padding: 4px 12px;
}

/* ── Card meta info ── */
.ba-meta {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.ba-meta-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}
.ba-treatment-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cyan-light); color: var(--cyan-dark);
  border: 1px solid var(--cyan-mid);
  border-radius: var(--r-full);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px;
}
.ba-treatment-badge i { font-size: 0.58rem; }
.ba-treatment-badge.magenta {
  background: var(--magenta-light); color: var(--magenta);
  border-color: rgba(232,24,109,0.25);
}
.ba-timeframe {
  font-size: 0.68rem; color: var(--text-light);
  font-weight: 600; white-space: nowrap;
}
.ba-title {
  font-size: 0.95rem; font-weight: 800;
  color: var(--text-dark); line-height: 1.3;
  letter-spacing: -0.02em;
}
.ba-desc {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.55;
}
.ba-cta-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}
.ba-expand-btn {
  font-size: 0.7rem; font-weight: 700;
  color: var(--cyan); letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.ba-expand-btn i { font-size: 0.6rem; transition: transform 0.2s; }
.ba-card:hover .ba-expand-btn i { transform: translateX(3px); }
.ba-disclaimer-text {
  font-size: 0.62rem; color: var(--text-light);
  font-style: italic;
}

/* ── Teaser "see all" CTA row ── */
.ba-see-all {
  text-align: center;
  margin-top: 48px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.ba-see-all p {
  font-size: 0.82rem; color: var(--text-muted);
  font-style: italic;
}
.ba-see-all.dark-bg p { color: rgba(255,255,255,0.5); }

/* ── Homepage BA teaser ── */
.ba-teaser-section {
  padding: 96px 0 112px;
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.ba-teaser-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(41,171,226,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(232,24,109,0.07) 0%, transparent 60%);
}
.ba-teaser-inner { position: relative; z-index: 1; }
.ba-teaser-header {
  text-align: center; margin-bottom: 56px;
}
.ba-teaser-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.04em; line-height: 1.1;
  margin: 10px 0 14px;
}
.ba-teaser-header p {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* Teaser cards in dark context */
.ba-teaser-section .ba-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.ba-teaser-section .ba-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--cyan);
}
.ba-teaser-section .ba-title { color: var(--white); }
.ba-teaser-section .ba-desc  { color: rgba(255,255,255,0.55); }
.ba-teaser-section .ba-cta-row { border-top-color: rgba(255,255,255,0.1); }
.ba-teaser-section .ba-disclaimer-text { color: rgba(255,255,255,0.3); }

/* ── Shared slider JS init hint ── */
.ba-drag-hint {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: var(--text-muted);
  font-style: italic;
}
.ba-drag-hint i { color: var(--cyan); font-size: 0.68rem; }

/* ── Responsive BA ── */
@media (max-width: 1200px) {
  /* 4-col teaser → 2 col */
  .ba-teaser-section .ba-grid[style*="repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 960px) {
  .ba-grid { grid-template-columns: repeat(2,1fr); }
  .ba-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-section { padding: 64px 0 80px; }
  .ba-teaser-section { padding: 64px 0 80px; }
  .ba-teaser-section .ba-grid[style*="repeat(4"] { grid-template-columns: 1fr !important; }
}

/* ── Responsive: concern grid ── */
@media (max-width: 1200px) {
  .concern-grid { grid-template-columns: repeat(3, 1fr); }
  .concern-card.cc-open { grid-column: span 2; }
  .spb-inner { grid-template-columns: 1fr; gap: 24px; }
  .spb-divider { display: none; }
  .spb-inner { text-align: center; }
  .spb-quote span { justify-content: center; }
}
@media (max-width: 900px) {
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .concern-card.cc-open { grid-column: span 2; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-steps::before { display: none; }
}
@media (max-width: 600px) {
  .concern-grid { grid-template-columns: 1fr; }
  .concern-card.cc-open { grid-column: span 1; }
  
  .hero-concern-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-section { padding: 64px 0; }
  .concern-section { padding: 64px 0 80px; }
}

/* ═══════════════════════════════════════════════════════════
   CONVERSION ENGINE — Quiz, Exit Popup, Text Button,
   Payment Estimator, Booking Widget, Video Section
   ═══════════════════════════════════════════════════════════ */

/* ── Modal base (shared by quiz + exit popup) ── */
.modal-open { overflow: hidden; }

.conv-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,20,40,0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.conv-modal.open { opacity: 1; pointer-events: all; }
.conv-modal-inner {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%; max-width: 600px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease);
  position: relative;
}
.conv-modal.open .conv-modal-inner { transform: translateY(0) scale(1); }
.conv-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted);
  transition: all 0.2s; z-index: 10;
}
.conv-modal-close:hover { background: var(--magenta); color: var(--white); border-color: var(--magenta); }

/* ────────────────────────────
   QUIZ MODAL
   ──────────────────────────── */
.quiz-modal-header {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a3060 100%);
  padding: 32px 32px 24px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  text-align: center;
}
.quiz-modal-header .quiz-modal-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(41,171,226,0.2); border: 2px solid rgba(41,171,226,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--cyan); margin: 0 auto 16px;
}
.quiz-modal-header h2 {
  font-size: 1.3rem; font-weight: 900; color: var(--white);
  letter-spacing: -0.03em; margin-bottom: 6px;
}
.quiz-modal-header p { font-size: 0.84rem; color: rgba(255,255,255,0.6); }

.quiz-body { padding: 28px 32px 32px; }

/* Progress bar */
.quiz-progress-wrap {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.quiz-progress-bar {
  flex: 1; height: 4px; background: var(--border-light);
  border-radius: 2px; overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}
.quiz-step-label { font-size: 0.7rem; font-weight: 700; color: var(--text-light); white-space: nowrap; }

.quiz-question-emoji { font-size: 2rem; margin-bottom: 8px; }
.quiz-question {
  font-size: 1.25rem; font-weight: 800; color: var(--text-dark);
  letter-spacing: -0.03em; margin-bottom: 6px; line-height: 1.2;
}
.quiz-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }

/* Options grid */
.quiz-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 20px;
}
.quiz-option {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; padding: 14px 16px;
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--r-md); cursor: pointer;
  transition: all 0.22s var(--ease); text-align: left;
}
.quiz-option:hover {
  border-color: var(--cyan); background: var(--cyan-light);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.quiz-option.selected {
  border-color: var(--cyan); background: var(--cyan-light);
  transform: scale(0.98);
}
.quiz-opt-emoji { font-size: 1.3rem; }
.quiz-opt-label { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.quiz-opt-desc  { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

.quiz-back-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.78rem; color: var(--text-muted); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  padding: 0; transition: color 0.2s;
}
.quiz-back-btn:hover { color: var(--cyan); }

/* Result screen */
.quiz-result {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 14px;
}
.quiz-result-icon {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.quiz-result-badge {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full);
}
.quiz-result-title {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  margin: 0; text-transform: uppercase; letter-spacing: 0.06em;
}
.quiz-result-treatment {
  font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 900;
  color: var(--text-dark); letter-spacing: -0.03em;
  line-height: 1.1; margin: 0;
}
.quiz-result-tagline {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
  max-width: 420px;
}
.quiz-result-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; width: 100%;
  background: var(--surface); border-radius: var(--r-md);
  border: 1px solid var(--border-light); overflow: hidden;
  margin: 4px 0;
}
.quiz-result-stat {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 14px 10px;
  border-right: 1px solid var(--border-light);
}
.quiz-result-stat:last-child { border-right: none; }
.quiz-stat-val { font-size: 0.85rem; font-weight: 800; color: var(--text-dark); }
.quiz-stat-lbl { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.quiz-result-cta { display: flex; flex-direction: column; gap: 10px; width: 100%; margin-top: 4px; }
.quiz-result-cta .btn { justify-content: center; }
.quiz-restart-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.75rem; color: var(--text-light); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  margin-top: 4px; padding: 0; transition: color 0.2s;
}
.quiz-restart-btn:hover { color: var(--cyan); }

/* Quiz entry section on homepage */
.quiz-entry-section {
  padding: 80px 0 96px;
  background: linear-gradient(135deg, var(--text-dark) 0%, #0a1628 60%, #1a0a28 100%);
  position: relative; overflow: hidden;
}
.quiz-entry-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(41,171,226,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 30%, rgba(232,24,109,0.10) 0%, transparent 55%);
}
.quiz-entry-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.quiz-entry-copy .overline { color: var(--cyan); margin-bottom: 12px; display: block; }
.quiz-entry-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 16px;
}
.quiz-entry-copy p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.quiz-proof-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.quiz-proof-row .proof-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); background: var(--cyan-mid); margin-left: -8px; }
.quiz-proof-row .proof-avatar:first-child { margin-left: 0; }
.quiz-proof-row .proof-text { font-size: 0.76rem; color: rgba(255,255,255,0.55); }
.quiz-proof-row .proof-text strong { color: rgba(255,255,255,0.85); }

/* Quiz card (right side) */
.quiz-entry-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
}
.quiz-entry-card h3 {
  font-size: 1rem; font-weight: 800; color: var(--white);
  margin-bottom: 6px; letter-spacing: -0.02em;
}
.quiz-entry-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.6; }
.quiz-preview-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.quiz-preview-opt {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 12px 16px;
  font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.quiz-preview-opt:hover { background: rgba(41,171,226,0.15); border-color: rgba(41,171,226,0.4); color: var(--white); }
.quiz-preview-opt .qp-emoji { font-size: 1.1rem; }
.quiz-entry-cta { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .quiz-entry-inner { grid-template-columns: 1fr; gap: 40px; }
  .quiz-options { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-body { padding: 20px 20px 28px; }
  .quiz-modal-header { padding: 24px 20px 20px; }
  .quiz-result-stats { grid-template-columns: 1fr; }
  .quiz-result-stat { border-right: none; border-bottom: 1px solid var(--border-light); }
  .quiz-result-stat:last-child { border-bottom: none; }
  .quiz-entry-card { padding: 24px 20px; }
}

/* ────────────────────────────
   EXIT-INTENT POPUP
   ──────────────────────────── */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(10,20,40,0.88); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.exit-popup-overlay.open { opacity: 1; pointer-events: all; }
.exit-popup-box {
  background: var(--white); border-radius: var(--r-xl);
  width: 100%; max-width: 520px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease);
  overflow: hidden; position: relative;
}
.exit-popup-overlay.open .exit-popup-box { transform: scale(1) translateY(0); }

.exit-popup-top {
  background: linear-gradient(135deg, var(--magenta) 0%, #b01057 100%);
  padding: 36px 36px 28px; text-align: center; position: relative;
}
.exit-popup-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--r-full); padding: 6px 18px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 14px;
}
.exit-popup-top h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 10px;
}
.exit-popup-top p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.exit-popup-close-btn {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none;
  color: var(--white); cursor: pointer; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.exit-popup-close-btn:hover { background: rgba(255,255,255,0.35); }

.exit-popup-body { padding: 28px 36px 32px; }
.exit-popup-features {
  display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.exit-popup-feat {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; color: var(--text-dark);
}
.exit-popup-feat i { color: var(--cyan); font-size: 0.7rem; }

.exit-popup-form { display: flex; flex-direction: column; gap: 10px; }
.exit-popup-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.exit-popup-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  font-size: 0.9rem; font-family: var(--font);
  color: var(--text-dark); background: var(--surface);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.exit-popup-input:focus { outline: none; border-color: var(--cyan); background: var(--white); }
.exit-popup-submit {
  width: 100%; padding: 15px; font-size: 0.95rem; font-weight: 800;
  background: var(--magenta); color: var(--white); border: none;
  border-radius: var(--r-md); cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.exit-popup-submit:hover { background: var(--magenta-dark); transform: translateY(-1px); }
.exit-popup-no {
  text-align: center; margin-top: 10px;
  font-size: 0.72rem; color: var(--text-light); cursor: pointer;
  transition: color 0.2s;
}
.exit-popup-no:hover { color: var(--text-muted); }

.exit-popup-success {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 8px;
  padding: 8px 0;
}
.exit-popup-success h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin: 0; }
.exit-popup-success p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 540px) {
  .exit-popup-body { padding: 20px 20px 24px; }
  .exit-popup-form-row { grid-template-columns: 1fr; }
  .exit-popup-top { padding: 28px 20px 20px; }
}

/* ────────────────────────────
   SEND US A TEXT — FLOATING BUTTON
   ──────────────────────────── */
.text-us-btn {
  position: fixed;
  bottom: 96px; right: 18px;
  z-index: 980;
  display: flex; align-items: center; gap: 10px;
  background: #1a8f47;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--r-full);
  padding: 11px 20px 11px 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), 0 0 0 0 rgba(37,211,102,0.5);
  opacity: 0; transform: translateX(120px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.2s, background 0.2s;
  animation: none;
  white-space: nowrap;
  max-width: 220px;
}
.text-us-btn.visible {
  opacity: 1; transform: translateX(0);
  animation: tub-pulse 3.2s ease-in-out infinite;
}
@keyframes tub-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(0,0,0,0.22), 0 0 0 0 rgba(37,211,102,0.45); }
  55%     { box-shadow: 0 4px 24px rgba(0,0,0,0.22), 0 0 0 10px rgba(37,211,102,0); }
}
.text-us-btn:hover {
  background: #158038;
  transform: translateX(-3px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.28);
}
.text-us-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.text-us-copy {
  display: flex; flex-direction: column;
}
.text-us-label {
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.01em; line-height: 1;
  color: #fff;
}
.text-us-sub { display: none; }
/* Mobile: sits above sticky CTA bar, slightly smaller */
@media (max-width: 768px) {
  .text-us-btn {
    bottom: 80px; right: 12px;
    padding: 9px 16px 9px 11px;
    gap: 8px;
  }
  .text-us-icon { width: 30px; height: 30px; font-size: 0.9rem; }
  .text-us-label { font-size: 0.88rem; }
}
/* Desktop: sits lower since no sticky bar */
@media (min-width: 769px) {
  .text-us-btn { bottom: 30px; }
}
/* Legacy .text-us-tip — hidden, replaced by inline copy */
.text-us-tip { display: none; }

/* ────────────────────────────
   CARECREDIT PAYMENT ESTIMATOR
   ──────────────────────────── */
.cc-estimator-section {
  background: var(--surface);
  padding: 72px 0 88px;
  border-top: 1px solid var(--border-light);
}
.cc-estimator-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.03em; margin-bottom: 12px;
}
.cc-estimator-section .section-lead {
  font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.7;
}
.cc-estimator-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  max-width: 900px;
}
.cc-estimator {
  background: var(--white); border-radius: var(--r-xl);
  border: 1.5px solid var(--border-light);
  padding: 32px 30px;
  box-shadow: var(--shadow-md);
}
.cc-estimator-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 10px;
  display: block;
}
.cc-price-display {
  font-size: clamp(2.2rem,5vw,3rem);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 6px;
}
.cc-slider {
  width: 100%; -webkit-appearance: none;
  height: 6px; border-radius: 3px;
  background: linear-gradient(to right, var(--cyan) 0%, var(--cyan) 50%, var(--border-light) 50%);
  outline: none; margin: 14px 0 6px;
  cursor: pointer;
}
.cc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--cyan);
  box-shadow: 0 2px 8px rgba(41,171,226,0.35);
  cursor: pointer;
}
.cc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--cyan); cursor: pointer;
}
.cc-range-labels {
  display: flex; justify-content: space-between;
  font-size: 0.68rem; color: var(--text-light); font-weight: 600;
}
.cc-divider { height: 1px; background: var(--border-light); margin: 20px 0; }
.cc-plans {
  display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
}
.cc-plan-btn {
  flex: 1; min-width: 60px; padding: 8px 6px;
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--r-sm); font-size: 0.72rem; font-weight: 700;
  color: var(--text-muted); cursor: pointer; text-align: center;
  transition: all 0.2s;
}
.cc-plan-btn:hover { border-color: var(--cyan); color: var(--cyan-dark); }
.cc-plan-btn.active { background: var(--cyan-light); border-color: var(--cyan); color: var(--cyan-dark); }
.cc-mo-display {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px;
}
.cc-mo-amount {
  font-size: 2rem; font-weight: 900; color: var(--magenta);
  letter-spacing: -0.04em;
}
.cc-mo-label { font-size: 0.8rem; color: var(--text-muted); }
.cc-disclaimer-note {
  font-size: 0.65rem; color: var(--text-light);
  font-style: italic; margin-top: 6px; line-height: 1.5;
}
.cc-apply-btn { width: 100%; justify-content: center; margin-top: 14px; }

.cc-estimator-copy p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.cc-trust-items { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.cc-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-body);
}
.cc-trust-item i { color: var(--cyan); width: 16px; flex-shrink: 0; }

@media (max-width: 800px) {
  .cc-estimator-wrap { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ────────────────────────────
   BOOKING WIDGET
   ──────────────────────────── */
.booking-section {
  padding: 96px 0 112px;
  background: var(--off-white);
}
.booking-section-header {
  text-align: center; margin-bottom: 52px;
}
.booking-section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.04em; line-height: 1.1; margin: 10px 0 14px;
}
.booking-section-header p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

.booking-widget {
  background: var(--white); border-radius: var(--r-xl);
  border: 1.5px solid var(--border-light);
  overflow: hidden; box-shadow: var(--shadow-lg);
  max-width: 860px; margin: 0 auto;
}
.bw-header {
  background: linear-gradient(135deg, var(--text-dark), #1a3060);
  padding: 24px 32px;
  display: flex; align-items: center; gap: 16px;
}
.bw-header-icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: rgba(41,171,226,0.2); border: 1px solid rgba(41,171,226,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--cyan); flex-shrink: 0;
}
.bw-header h3 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.bw-header p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; }

.bw-body { padding: 28px 32px 32px; }

.bw-step-label {
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--cyan); margin-bottom: 12px; display: block;
}
.bw-cal-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.bw-day {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 12px; min-width: 52px;
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--r-md); cursor: pointer;
  transition: all 0.2s var(--ease);
}
.bw-day:hover { border-color: var(--cyan); background: var(--cyan-light); }
.bw-day.active { background: var(--cyan); border-color: var(--cyan); }
.bw-day.active .bw-day-name,
.bw-day.active .bw-day-num { color: var(--white); }
.bw-day.half-day { border-style: dashed; }
.bw-day-name { font-size: 0.62rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.bw-day-num  { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-top: 2px; }

.bw-step-2,
.bw-step-3 { display: none; }

.bw-times {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.bw-time {
  padding: 9px 16px;
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--r-md); font-size: 0.82rem; font-weight: 700;
  color: var(--text-dark); cursor: pointer; transition: all 0.2s;
}
.bw-time:hover { border-color: var(--cyan); background: var(--cyan-light); }
.bw-time.active { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.bw-time.taken { background: var(--surface); color: var(--text-light); cursor: not-allowed; text-decoration: line-through; opacity: 0.5; }

.bw-selected-slot {
  background: var(--cyan-light); border: 1px solid var(--cyan-mid);
  border-radius: var(--r-md); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--cyan-dark);
  margin-bottom: 20px;
}
.bw-selected-slot i { color: var(--cyan); }
.bw-form { display: flex; flex-direction: column; gap: 12px; }
.bw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bw-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md); font-size: 0.9rem; font-family: var(--font);
  color: var(--text-dark); background: var(--surface);
  box-sizing: border-box; transition: border-color 0.2s;
}
.bw-input:focus { outline: none; border-color: var(--cyan); background: var(--white); }
.bw-submit {
  width: 100%; padding: 15px; font-size: 0.95rem; font-weight: 800;
  background: var(--magenta); color: var(--white); border: none;
  border-radius: var(--r-md); cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.bw-submit:hover { background: var(--magenta-dark); transform: translateY(-1px); }
.bw-fine-print {
  font-size: 0.68rem; color: var(--text-light); text-align: center;
  line-height: 1.5;
}

.bw-success {
  display: none; flex-direction: column;
  align-items: center; text-align: center; gap: 12px;
  padding: 16px 0;
}
.bw-success-icon { font-size: 3rem; }
.bw-success h3 { font-size: 1.3rem; font-weight: 900; color: var(--text-dark); letter-spacing: -0.02em; }
.bw-success p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; max-width: 400px; }
.bw-success-details {
  background: var(--cyan-light); border: 1px solid var(--cyan-mid);
  border-radius: var(--r-md); padding: 14px 24px;
  font-size: 0.88rem; font-weight: 700; color: var(--cyan-dark);
  display: flex; align-items: center; gap: 10px;
}

@media (max-width: 600px) {
  .bw-body { padding: 20px 18px 24px; }
  .bw-header { padding: 18px 20px; }
  .bw-form-row { grid-template-columns: 1fr; }
  .booking-section { padding: 64px 0 80px; }
}

/* ────────────────────────────
   TESTIMONIAL VIDEO SECTION
   ──────────────────────────── */
.video-section {
  padding: 96px 0 112px;
  background: var(--text-dark);
  position: relative; overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(41,171,226,0.08) 0%, transparent 55%);
}
.video-section-inner { position: relative; z-index: 1; }
.video-section-header { text-align: center; margin-bottom: 56px; }
.video-section-header h2 {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.04em; margin: 10px 0 14px;
}
.video-section-header p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

.video-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 24px; align-items: start;
}
.video-main { position: relative; }
.video-embed-wrap {
  position: relative; padding-bottom: 56.25%; /* 16:9 */
  height: 0; overflow: hidden; border-radius: var(--r-xl);
  background: #0a1628;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.video-embed-wrap iframe,
.video-embed-wrap video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
/* Placeholder when no video yet */
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 24px; text-align: center;
}
.video-play-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(41,171,226,0.15);
  border: 2px solid rgba(41,171,226,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--cyan);
  cursor: pointer; transition: all 0.25s;
  animation: play-pulse 2.5s ease-in-out infinite;
}
@keyframes play-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(41,171,226,0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(41,171,226,0); }
}
.video-play-ring:hover { background: var(--cyan); color: var(--white); }
.video-placeholder h4 { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.7); margin: 0; }
.video-placeholder p  { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin: 0; line-height: 1.5; }
.video-placeholder-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(41,171,226,0.12); border: 1px solid rgba(41,171,226,0.25);
  border-radius: var(--r-full); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); padding: 4px 12px;
}
.video-caption {
  margin-top: 14px; display: flex; align-items: center; gap: 10px;
}
.video-caption-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg,var(--cyan-mid),var(--cyan));
  flex-shrink: 0;
}
.video-caption-text strong { font-size: 0.85rem; color: var(--white); display: block; }
.video-caption-text span { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* Side video stack */
.video-stack { display: flex; flex-direction: column; gap: 16px; }
.video-thumb-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 16px;
  display: flex; gap: 14px; align-items: center;
  cursor: pointer; transition: all 0.22s var(--ease);
}
.video-thumb-card:hover {
  background: rgba(41,171,226,0.1);
  border-color: rgba(41,171,226,0.3);
  transform: translateX(4px);
}
.video-thumb {
  width: 72px; height: 52px; border-radius: var(--r-sm);
  background: #0a1628; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; position: relative;
}
.video-thumb-play {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(41,171,226,0.3); border: 1px solid rgba(41,171,226,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--cyan);
}
.video-thumb-meta strong {
  font-size: 0.84rem; font-weight: 700;
  color: rgba(255,255,255,0.85); display: block; margin-bottom: 4px;
}
.video-thumb-meta span { font-size: 0.72rem; color: rgba(255,255,255,0.42); }
.video-thumb-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--cyan-light); color: var(--cyan-dark);
  border: 1px solid var(--cyan-mid);
  border-radius: var(--r-full); font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; margin-top: 4px;
}
.video-add-cta {
  background: rgba(232,24,109,0.1); border: 1.5px dashed rgba(232,24,109,0.3);
  border-radius: var(--r-lg); padding: 20px 18px;
  text-align: center; cursor: pointer; transition: all 0.2s;
}
.video-add-cta:hover { background: rgba(232,24,109,0.15); border-color: rgba(232,24,109,0.5); }
.video-add-cta p {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  margin: 8px 0 12px; line-height: 1.5;
}
.video-add-cta strong { font-size: 0.82rem; color: var(--magenta); display: block; margin-bottom: 4px; }

.video-cta-row {
  text-align: center; margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.video-cta-row p { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-style: italic; }

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-stack { flex-direction: row; flex-wrap: wrap; }
  .video-thumb-card { flex: 1; min-width: 200px; }
  .video-section { padding: 64px 0 80px; }
}
@media (max-width: 560px) {
  .video-stack { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════
   EMAIL CAPTURE — Newsletter Strip & Lead Magnet
   ════════════════════════════════════════════════════════════ */

/* ── Full-width strip (homepage + treatment pages) ── */
.email-capture-strip {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 55%, #1a0a28 100%);
  padding: 56px 0 64px;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.email-capture-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(41,171,226,0.10) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 40%, rgba(232,24,109,0.08) 0%, transparent 55%);
}
.ecs-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.ecs-copy .overline { color: var(--cyan); display: block; margin-bottom: 10px; }
.ecs-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 12px;
}
.ecs-copy p {
  font-size: 0.92rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 0; max-width: 420px;
}
.ecs-guide-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(41,171,226,0.12); border: 1.5px solid rgba(41,171,226,0.25);
  border-radius: var(--r-lg); padding: 12px 18px;
  margin-top: 20px;
}
.ecs-guide-icon {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white); flex-shrink: 0;
}
.ecs-guide-text strong { display: block; font-size: 0.82rem; font-weight: 800; color: var(--white); }
.ecs-guide-text span   { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* ── Form card ── */
.ecs-form-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}
.ecs-form-card h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.ecs-form-card p {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 20px; line-height: 1.6;
}
.ecs-form { display: flex; flex-direction: column; gap: 10px; }
.ecs-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  color: var(--white); font-size: 0.9rem; font-family: var(--font);
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.ecs-input::placeholder { color: rgba(255,255,255,0.35); }
.ecs-input:focus { outline: none; border-color: var(--cyan); background: rgba(255,255,255,0.10); }
.ecs-submit {
  width: 100%; padding: 14px;
  background: var(--cyan); color: var(--white);
  border: none; border-radius: var(--r-md);
  font-size: 0.92rem; font-weight: 800; letter-spacing: 0.01em;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ecs-submit:hover { background: var(--cyan-dark); transform: translateY(-1px); }
.ecs-privacy {
  font-size: 0.65rem; color: rgba(255,255,255,0.35);
  text-align: center; margin-top: 4px; line-height: 1.5;
}
.ecs-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; padding: 8px 0;
}
.ecs-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(34,197,94,0.15); border: 2px solid rgba(34,197,94,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #22c55e;
}
.ecs-success h4 { font-size: 1rem; font-weight: 800; color: var(--white); margin: 0; }
.ecs-success p  { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }

/* ── Perks checklist ── */
.ecs-perks {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}
.ecs-perk {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.73rem; font-weight: 600; color: rgba(255,255,255,0.65);
}
.ecs-perk i { color: #22c55e; font-size: 0.65rem; }

@media (max-width: 860px) {
  .ecs-inner { grid-template-columns: 1fr; gap: 36px; }
  .ecs-copy p { max-width: 100%; }
}
@media (max-width: 480px) {
  .ecs-form-card { padding: 24px 18px; }
  .email-capture-strip { padding: 44px 0 52px; }
}

/* ────────────────────────────
   MEN'S PAGE — hero badge override
   ──────────────────────────── */
.mens-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,171,226,0.15); border: 1.5px solid rgba(41,171,226,0.4);
  border-radius: var(--r-full); padding: 8px 20px;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 24px;
}
.mens-stat-bar {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 32px;
}
.mens-stat {
  padding: 18px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.mens-stat:last-child { border-right: none; }
.mens-stat-val { font-size: 1.4rem; font-weight: 900; color: var(--cyan); display: block; letter-spacing: -0.03em; }
.mens-stat-lbl { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }


/* ════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION — Comprehensive Pass
   Breakpoints: 1024px · 768px · 600px · 480px · 375px
   ════════════════════════════════════════════════════════════ */

/* ── Global touch & tap improvements ── */
@media (hover: none) {
  /* Remove hover-only states that break on touch devices */
  .btn:hover { transform: none; }
  .concern-card:hover { transform: none; }
  .service-card:hover { transform: none; }
  .result-tile:hover img { transform: none; }
  .testimonial-card:hover { transform: none; }
  .special-card:hover { transform: none; }
  /* Show info overlays statically on touch */
  .result-tile-overlay { opacity: 0.75; }
  .result-tile-info { opacity: 1; transform: translateY(0); }
  .partner-show-name { opacity: 0.8; }
}

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {
  .wrap, .wrap-wide { padding: 0 24px; }

  /* Hero */
  .hero-heading { font-size: clamp(2rem, 5vw, 3rem); }

  /* Concern grid: 2×3 on tablet */
  .concern-grid { grid-template-columns: repeat(3, 1fr); }

  /* SPB inner */
  .spb-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .spb-divider { display: none; }

  /* How steps */
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-steps::before { display: none; }

  /* Quiz entry */
  .quiz-entry-inner { grid-template-columns: 1fr; gap: 36px; }

  /* Video section */
  .video-grid { grid-template-columns: 1fr; }
  .video-stack { flex-direction: row; flex-wrap: wrap; }
  .video-thumb-card { flex: 1; min-width: 180px; }

  /* Email capture */
  .ecs-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── 768px — Tablet portrait / large phones ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* ─ Layout ─ */
  .wrap, .wrap-wide { padding: 0 18px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 48px 0; }

  /* ─ Announcement bar ─ */
  .ann-bar {
    font-size: 0.72rem;
    padding: 8px 40px;
    line-height: 1.5;
  }

  /* ─ Navigation ─ */
  .nav-links { display: none; }
  .nav-cta .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 18px; gap: 12px; }
  .nav-logo img { height: 48px; }

  /* ─ Mobile menu ─ */
  .mobile-menu { padding: 20px 18px 28px; }
  .mobile-menu a { font-size: 1rem; padding: 14px 0; }
  .mobile-menu-cta { gap: 10px; }
  .mobile-menu-cta .btn { flex: 1; justify-content: center; text-align: center; }

  /* ─ Hero ─ */
  .hero { min-height: 100svh; }
  .hero-content { padding: 90px 0 80px; }
  .hero-col { max-width: 100%; }
  .hero-eyebrow { font-size: 0.72rem; margin-bottom: 16px; }
  .hero-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero-sub { font-size: 0.92rem; margin-bottom: 20px; line-height: 1.65; }
  .hero-concern-row { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 24px; }
  .hero-concern-label { font-size: 0.76rem; }
  .hero-concern-rotator { min-width: 180px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: 0.88rem; padding: 15px 24px; }
  .hero-rating-card { padding: 10px 14px; gap: 10px; }
  .hero-rating-text { font-size: 0.72rem; }
  .hero-badges-row { gap: 6px; flex-wrap: wrap; }
  .hero-mini-badge { font-size: 0.66rem; padding: 5px 10px; }
  .hero-social-proof { gap: 10px; }

  /* ─ Trust strip ─ */
  .trust-strip {
    padding: 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* hide scrollbar */
  }
  .trust-strip::-webkit-scrollbar { display: none; }
  .trust-strip .wrap { padding: 0; max-width: none; }
  .trust-items {
    display: flex; gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 18px;
    width: max-content;
  }
  .trust-item { flex-shrink: 0; white-space: nowrap; font-size: 0.72rem; padding: 5px 16px; }

  /* ─ Concern section ─ */
  .concern-section { padding: 56px 0 72px; }
  .concern-header { margin-bottom: 36px; }
  .concern-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .concern-sub { font-size: 0.9rem; }
  .concern-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .concern-card { padding: 20px 16px; }
  .concern-card.cc-open { grid-column: span 2; }
  .cc-icon-wrap { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 12px; }
  .cc-title { font-size: 0.95rem; }
  .cc-desc { font-size: 0.78rem; }
  .concern-pill { padding: 10px 16px; font-size: 0.8rem; }
  .concern-panel { padding: 24px 18px; }
  .cc-panel-inner { grid-template-columns: 1fr; gap: 20px; }
  .concern-not-sure { flex-direction: column; gap: 14px; padding: 20px 18px; }
  .concern-not-sure-actions { flex-direction: column; width: 100%; }
  .concern-not-sure-actions .btn { justify-content: center; width: 100%; }

  /* ─ Treatment tab section ─ */
  .tx-tab-section { padding: 56px 0 72px; }
  .tx-tab-pills { gap: 8px; }
  .tx-tab-pill { padding: 9px 14px; font-size: 0.78rem; gap: 5px; }
  .tx-tab-panel { padding: 24px 18px; }
  .tx-tab-inner { grid-template-columns: 1fr; gap: 22px; }
  .tx-tab-img { aspect-ratio: 16 / 6; max-height: 200px; }
  .tx-tab-body h3 { font-size: clamp(1.3rem, 4vw, 1.7rem); }
  .tx-tab-stats { gap: 20px; flex-wrap: wrap; }
  .tx-tab-stats span { font-size: 1.3rem; }
  .tx-tab-actions { flex-direction: column; }
  .tx-tab-actions .btn { justify-content: center; width: 100%; }

  /* ─ Social proof band ─ */
  .social-proof-band { padding: 36px 0; }
  .spb-inner {
    grid-template-columns: 1fr;
    gap: 24px; text-align: center;
  }
  .spb-divider { display: none; }
  .spb-quote span { justify-content: center; }
  .spb-cta .btn { width: 100%; justify-content: center; }

  /* ─ How It Works ─ */
  .how-section { padding: 60px 0; }
  .how-header { margin-bottom: 32px; }
  .how-header h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .how-consult-img { border-radius: var(--r-md); margin-bottom: 40px; }
  .how-consult-img img { height: 300px; object-position: center center; }
  .how-consult-img { max-height: 300px; }
  .how-img-badge { font-size: 0.68rem; padding: 8px 12px; gap: 6px; }
  .how-img-badge--left { top: 14px; left: 12px; }
  .how-img-badge--right { top: 14px; right: 12px; }
  .how-img-ribbon { font-size: 0.68rem; padding: 10px 14px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .how-steps::before { display: none; }
  .how-step { padding: 0 10px; }
  .how-step-icon { width: 60px; height: 60px; font-size: 1.2rem; }
  .how-step h3 { font-size: 0.92rem; }
  .how-step p { font-size: 0.8rem; }
  .how-cta .btn-primary, .how-cta .btn-outline { min-width: unset; width: 100%; }

  /* ─ Offer banner ─ */
  .offer-banner { grid-template-columns: 1fr; }
  .offer-banner-visual { min-height: 200px; padding: 36px 20px; }
  .offer-badge-float { width: 150px; height: 150px; }
  .offer-badge-amount { font-size: 2.8rem; }
  .offer-badge-label { font-size: 0.6rem; }
  .offer-banner-content { padding: 40px 22px; }
  .offer-tag { font-size: 0.62rem; }
  .offer-headline { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .offer-sub { font-size: 0.88rem; }
  .offer-checks { grid-template-columns: 1fr; gap: 10px; }
  .offer-ctas { flex-direction: column; gap: 10px; }
  .btn-offer-primary, .btn-offer-secondary { justify-content: center; width: 100%; }

  /* ─ Partners / As Seen On ─ */
  .partners-section { padding: 44px 0 48px; }
  .partners-eyebrow { margin-bottom: 28px; }
  .partner-divider { display: none; }
  .partners-row { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .partner-item { margin: 6px 12px; }
  .partner-logo-wrap { height: 50px; padding: 4px 10px; }
  .partner-item img { height: 40px; max-width: 140px; }
  .partner-show-name { opacity: 0.75; font-size: 0.62rem; }

  /* ─ Results grid ─ */
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .results-section { padding: 60px 0; }

  /* ─ Testimonials ─ */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonials-section { padding: 60px 0; }
  .testimonial-card { padding: 24px 20px; }

  /* ─ BA teaser ─ */
  .ba-teaser-section { padding: 60px 0 72px; }
  .ba-teaser-header { margin-bottom: 36px; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* ─ Story split ─ */
  .story-split { grid-template-columns: 1fr; }
  .story-image { min-height: 300px; }
  .story-copy { padding: 40px 22px; }
  .story-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .story-stat { padding: 18px 16px; }
  .story-stat-n { font-size: 1.6rem; }

  /* ─ Specials ─ */
  .specials-section { padding: 60px 0; }
  .specials-grid { grid-template-columns: 1fr; gap: 16px; }
  .special-card { padding: 24px 20px; }

  /* ─ Process ─ */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-grid::before { display: none; }

  /* ─ Services ─ */
  .services-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: span 1; }

  /* ─ Form ─ */
  .form-wrap { padding: 28px 18px; border-radius: var(--r-lg); }
  .form-row, .form-row.cols-3 { grid-template-columns: 1fr; }

  /* ─ Footer ─ */
  footer { padding: 56px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 12px; }

  /* ─ Page hero (inner pages) ─ */
  .page-hero { padding: 60px 0 52px; }
  .page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .page-hero p { font-size: 0.9rem; }

  /* ─ CTA Banner ─ */
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* ─ CareCredit estimator ─ */
  .cc-estimator-wrap { grid-template-columns: 1fr; max-width: 100%; }

  /* ─ Booking widget ─ */
  .bw-body { padding: 20px 16px 24px; }
  .bw-header { padding: 18px 18px; gap: 12px; }
  .bw-header h3 { font-size: 0.95rem; }

  /* ─ Video section ─ */
  .video-section { padding: 56px 0 72px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-stack { flex-direction: column; }

  /* ─ Quiz entry section ─ */
  .quiz-entry-section { padding: 56px 0 72px; }
  .quiz-entry-inner { grid-template-columns: 1fr; gap: 32px; }
  .quiz-entry-card { padding: 24px 18px; }

  /* ─ Email capture ─ */
  .email-capture-strip { padding: 48px 0 56px; }
  .ecs-inner { grid-template-columns: 1fr; gap: 32px; }
  .ecs-form-card { padding: 24px 18px; }

  /* ─ Modals ─ */
  .conv-modal { padding: 12px; align-items: flex-end; }
  .conv-modal-inner { border-radius: var(--r-lg) var(--r-lg) 0 0; max-height: 95vh; }
  .quiz-body { padding: 22px 18px 28px; }
  .quiz-modal-header { padding: 24px 18px 18px; }
  .quiz-modal-header h2 { font-size: 1.1rem; }
  .quiz-options { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* ─ Exit popup ─ */
  .exit-popup-body { padding: 20px 18px 24px; }
  .exit-popup-top { padding: 28px 18px 20px; }
  .exit-popup-form-row { grid-template-columns: 1fr; }

  /* ─ Sticky bar padding ─ */
  body.has-sticky-cta { padding-bottom: 64px; }
  body.has-sticky-cta footer { padding-bottom: 64px; }
}

/* ── 600px — Large phones ── */
@media (max-width: 600px) {
  .wrap, .wrap-wide { padding: 0 16px; }
  .section { padding: 52px 0; }

  /* ─ Hero ─ */
  .hero-heading { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  .hero-badges-row .hero-mini-badge:nth-child(3) { display: none; } /* hide 3rd badge to prevent wrap clutter */

  /* ─ Concern grid: single column ─ */
  .concern-grid { grid-template-columns: 1fr; gap: 10px; }
  .concern-card.cc-open { grid-column: span 1; }
  .concern-not-sure { gap: 12px; }

  /* ─ How steps: single column stacked ─ */
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .how-step { padding: 16px; background: var(--surface); border-radius: var(--r-md); border: 1px solid var(--border-light); }
  .how-step-num { font-size: 0.55rem; margin-bottom: 4px; }
  .how-step-icon { width: 52px; height: 52px; font-size: 1rem; margin: 0 auto 12px; }
  .how-step h3 { font-size: 0.9rem; margin-bottom: 6px; }
  .how-step p { font-size: 0.78rem; margin-bottom: 8px; }

  /* ─ Consultation image ─ */
  .how-consult-img img { height: 240px; }
  .how-consult-img { max-height: 240px; }
  .how-img-badge--right { display: none; }
  .how-img-ribbon { font-size: 0.65rem; letter-spacing: 0; }
  .how-img-ribbon br { display: none; } /* prevent ribbon line break */

  /* ─ BA grid ─ */
  .ba-grid { grid-template-columns: 1fr; gap: 12px; }
  .ba-teaser-section .ba-grid { grid-template-columns: 1fr !important; }
  .ba-section { padding: 52px 0 64px; }

  /* ─ Results ─ */
  .results-grid { grid-template-columns: 1fr; gap: 12px; }

  /* ─ Partners: 2×2 grid on small phones ─ */
  .partners-row { gap: 8px; }
  .partner-item img { height: 36px; max-width: 120px; }
  .partner-logo-wrap { height: 44px; }

  /* ─ Process: single column ─ */
  .process-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ─ Story stats ─ */
  .story-stats { grid-template-columns: 1fr 1fr; }

  /* ─ Offer badge ─ */
  .offer-badge-float { width: 130px; height: 130px; }
  .offer-badge-amount { font-size: 2.4rem; }
  .offer-headline { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* ─ Ticker ─ */
  .ticker-item { font-size: 0.72rem; padding: 0 12px; }

  /* ─ Footer ─ */
  .footer-social a { width: 40px; height: 40px; font-size: 0.9rem; }

  /* ─ Sticky CTA bar ─ */
  .sticky-cta-bar { grid-template-columns: 1fr 1.8fr; }
  .sticky-cta-call { padding: 12px 8px; font-size: 0.65rem; }
  .sticky-cta-call i { font-size: 1rem; }
  .sticky-cta-book { font-size: 0.78rem; padding: 12px 14px; }
}

/* ── 480px — Smaller phones ── */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .wrap, .wrap-wide { padding: 0 14px; }
  .section { padding: 44px 0; }

  /* ─ Nav ─ */
  .nav-inner { padding: 0 14px; }
  .nav-logo img { height: 42px; }

  /* ─ Ann bar ─ */
  .ann-bar { font-size: 0.68rem; padding: 7px 36px; }

  /* ─ Hero ─ */
  .hero-heading { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .hero-sub { font-size: 0.85rem; }
  .hero-actions .btn { font-size: 0.82rem; padding: 14px 20px; }
  .hero-rating-card { flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 12px; }

  /* ─ Section headings ─ */
  .section-header h2,
  .concern-title,
  .how-header h2,
  .ba-teaser-header h2,
  .ba-section-header h2,
  .quiz-entry-copy h2 { font-size: clamp(1.5rem, 8vw, 2rem); }

  /* ─ How image ─ */
  .how-consult-img img { height: 210px; }
  .how-consult-img { max-height: 210px; }
  .how-img-badge--left { font-size: 0.62rem; padding: 7px 10px; }

  /* ─ Offer banner ─ */
  .offer-banner-visual { min-height: 180px; padding: 28px 16px; }
  .offer-badge-float { width: 110px; height: 110px; }
  .offer-badge-amount { font-size: 2rem; }
  .offer-banner-content { padding: 32px 16px; }
  .offer-check-item { font-size: 0.78rem; }

  /* ─ Partners ─ */
  .partner-item img { height: 32px; max-width: 110px; }
  .partners-section { padding: 36px 0 40px; }

  /* ─ Testimonials ─ */
  .testimonial-card { padding: 20px 16px; }
  .testimonial-text { font-size: 0.85rem; }

  /* ─ Specials ─ */
  .special-card { padding: 20px 16px; }

  /* ─ Story ─ */
  .story-copy { padding: 32px 16px; }
  .story-stat-n { font-size: 1.4rem; }

  /* ─ Page hero ─ */
  .page-hero { padding: 48px 0 40px; }

  /* ─ Buttons ─ */
  .btn { font-size: 0.82rem; padding: 12px 22px; }
  .btn-xl { font-size: 0.88rem; padding: 15px 28px; }
  .btn-lg { font-size: 0.84rem; padding: 13px 26px; }

  /* ─ Footer ─ */
  .footer-legal { gap: 10px; }
  .footer-copy, .footer-legal a { font-size: 0.68rem; }

  /* ─ Text-us button ─ */
  .text-us-btn { right: 10px; bottom: 72px; padding: 8px 14px 8px 10px; }
  .text-us-label { font-size: 0.82rem; }
  .text-us-icon { width: 28px; height: 28px; font-size: 0.85rem; }

  /* ─ Modal ─ */
  .conv-modal-inner { border-radius: var(--r-md) var(--r-md) 0 0; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-result-stats { grid-template-columns: 1fr; }
  .quiz-result-stat { border-right: none; border-bottom: 1px solid var(--border-light); }
}

/* ── 375px — iPhone SE / small phones ── */
@media (max-width: 375px) {
  .wrap, .wrap-wide { padding: 0 12px; }

  .hero-heading { font-size: 1.65rem; letter-spacing: -0.02em; }
  .ann-bar { font-size: 0.62rem; padding: 6px 32px; }
  .nav-logo img { height: 38px; }

  .how-step { gap: 12px; }
  .how-step-icon { width: 46px; height: 46px; font-size: 0.9rem; }

  .partner-item img { height: 28px; max-width: 95px; }

  .sticky-cta-call { font-size: 0.6rem; }
  .sticky-cta-book { font-size: 0.72rem; }

  .offer-badge-float { width: 95px; height: 95px; }
  .offer-badge-amount { font-size: 1.7rem; }
  .offer-banner-content { padding: 28px 14px; }
  .offer-headline { font-size: 1.4rem; }
}

/* ── Print / accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none; }
  .btn-primary, .btn-cyan, .sticky-cta-book, .text-us-btn { animation: none; }
}

/* ── Touch target sizing (WCAG 2.5.5 min 44×44px) ── */
@media (max-width: 768px) {
  .btn { min-height: 44px; display: inline-flex; align-items: center; }
  .nav-item > a { min-height: 44px; display: flex; align-items: center; }
  .hamburger { min-height: 44px; min-width: 44px; justify-content: center; }
  .mobile-menu a { min-height: 44px; display: flex; align-items: center; }
  .filter-btn { min-height: 40px; }
  .concern-pill { min-height: 44px; }
  .tx-tab-pill { min-height: 44px; }
  .footer-social a { width: 44px; height: 44px; }
  .cc-plan-btn { min-height: 44px; }
  .bw-day { min-width: 48px; min-height: 52px; }
  .ann-bar-x { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; right: 0; top: 0; transform: none; height: 100%; }
}

/* ── iOS Safari fixes ── */
@supports (-webkit-touch-callout: none) {
  /* Fix 100vh on iOS */
  .hero { min-height: -webkit-fill-available; }
  .conv-modal { min-height: -webkit-fill-available; }

  /* Fix input zoom on iOS (font-size must be ≥16px) */
  .f-input, .ecs-input, .exit-popup-input, .bw-input { font-size: 16px; }

  /* Safe area insets for notch/home bar */
  .sticky-cta-bar {
    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: constant(safe-area-inset-bottom);
  }
  .text-us-btn {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
  .mobile-menu {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

/* ── Smooth scroll momentum on iOS ── */
.mobile-menu,
.conv-modal-inner,
.nav-dropdown { -webkit-overflow-scrolling: touch; }
