/* ============================================================
   HHY Hair Transplant Bhubaneswar — style.css
   Aesthetic: Cinematic Luxury Medical — Logo Green + Olive Gold
   Logo colors: #006432 (deep forest green), #7daf64 (sage green),
                #96a54b (olive/gold accent), #fafafa (white), #000 (black)
   ============================================================ */

/* --- Variables --- */
:root {
  /* Primary greens from logo */
  --navy: #003d1e;           /* was navy — now deep forest green */
  --navy-mid: #005228;       /* mid green */
  --navy-light: #006432;     /* main brand green (logo primary) */

  /* Accent — olive/gold from logo leaf tones */
  --gold: #7a9a3a;           /* olive green-gold */
  --gold-light: #96a54b;     /* logo olive accent */
  --gold-pale: #e8f0d0;      /* pale olive tint */

  /* Sage green — logo light green */
  --sage: #7daf64;
  --sage-light: #9dc87a;

  --cream: #f5f9f0;          /* green-tinted off-white */
  --white: #ffffff;
  --text-dark: #0a1f0e;      /* near-black with green tint */
  --text-mid: #2a4a32;
  --text-muted: #5a7a5a;
  --success: #006432;
  --error: #c0392b;
  --shadow-card: 0 8px 40px rgba(0, 60, 30, 0.12);
  --shadow-deep: 0 20px 60px rgba(0, 60, 30, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-body); }

/* ---- Particle canvas ---- */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
#particleCanvas.visible { opacity: 1; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 61, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(122, 154, 58, 0.2);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(0, 61, 30, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(1.05);
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 0.4rem;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-contact { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold-light); }
.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(122,154,58,0.4); }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(122,154,58,0.45); }
.btn-primary.large { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* Glowing CTA button */
.btn-glow {
  box-shadow: 0 0 0 0 rgba(122,154,58,0.5);
  animation: btnGlow 2.5s 1.5s ease-in-out infinite;
}
@keyframes btnGlow {
  0% { box-shadow: 0 0 0 0 rgba(122,154,58,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(122,154,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(122,154,58,0); }
}

/* ============================================================
   HERO — FIXED FULL-WIDTH CINEMATIC BANNER
   ============================================================ */
.hero {
  /* Full viewport width — critical fix */
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #010f05 0%, #003d1e 40%, #005228 70%, #006432 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px; /* navbar height */
}

/* Cinematic overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(122, 154, 58, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(0, 60, 30, 0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 30%, rgba(5,10,20,0.7) 100%);
  pointer-events: none;
}

/* Light beams — cinematic */
.hero-beam {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
}
.hero-beam-1 {
  width: 3px;
  height: 100vh;
  background: linear-gradient(to bottom, transparent, var(--sage-light), transparent);
  top: 0; left: 25%;
  transform: rotate(15deg) translateX(-50%);
  animation: beamMove 8s ease-in-out infinite;
}
.hero-beam-2 {
  width: 2px;
  height: 100vh;
  background: linear-gradient(to bottom, transparent, var(--sage), transparent);
  top: 0; right: 30%;
  transform: rotate(-10deg);
  animation: beamMove 12s 2s ease-in-out infinite reverse;
}
@keyframes beamMove {
  0%, 100% { opacity: 0.03; transform: rotate(15deg) translateX(0); }
  50% { opacity: 0.08; transform: rotate(15deg) translateX(20px); }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(122,154,58,0.14), transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,60,30,0.6), transparent 70%);
  bottom: -100px; left: -80px;
  animation: orbFloat 16s 2s ease-in-out infinite reverse;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(122,154,58,0.08), transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat 10s 4s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-25px) scale(1.05); }
  66% { transform: translateY(15px) scale(0.97); }
}

/* Hero inner layout — horizontal split */
.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122,154,58,0.12);
  border: 1px solid rgba(122,154,58,0.35);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.7s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.3rem;
  animation: fadeInUp 0.8s 0.15s ease both;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, #9dc87a, #c8e08a, #7daf64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.8s 0.25s ease both;
}
.hero-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
  animation: fadeInUp 0.8s 0.35s ease both;
}
.offer-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.82);
  padding: 0.42rem 0.9rem;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
}
.offer-pill:hover { background: rgba(122,154,58,0.1); border-color: rgba(122,154,58,0.35); }
.offer-pill svg { color: var(--gold-light); flex-shrink: 0; }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease both;
}
.hero-trust { display: flex; flex-direction: column; gap: 0.2rem; }
.stars { color: var(--gold-light); font-size: 1rem; letter-spacing: 2px; }
.hero-trust span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s 0.7s ease both;
  opacity: 0.5;
}
.scroll-dot {
  width: 20px; height: 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{top:5px;opacity:1} 50%{top:14px;opacity:0.4} }
.scroll-indicator span { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; }

/* Hero card */
.hero-card-wrap {
  flex: 0 0 380px;
  z-index: 1;
  animation: fadeInRight 0.9s 0.3s ease both;
}
.hero-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.35),
    0 0 0 1px rgba(122,154,58,0.15),
    inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(122,154,58,0.25);
}
.hcard-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(122,154,58,0.15);
}
.hcard-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.6rem; }
.hcard-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.hcard-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.hcard-list strong { display: block; font-size: 0.93rem; font-weight: 600; color: var(--text-dark); }
.hcard-list span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.btn-card {
  display: block;
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.93rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-card:hover { background: var(--navy-light); transform: translateY(-2px); }

/* --- Proof Bar --- */
.proof-bar {
  background: var(--gold);
  padding: 1.2rem 2rem;
  position: relative;
  z-index: 2;
}
.proof-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.proof-stat span { font-size: 0.75rem; color: rgba(0,61,30,0.68); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.proof-divider { width: 1px; height: 40px; background: rgba(0,61,30,0.2); }

/* --- Section Helpers --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.light h2, .section-header.light p { color: white; }
.section-header.light .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.25); }
.section-tag {
  display: inline-block;
  background: rgba(122,154,58,0.1);
  border: 1px solid rgba(122,154,58,0.3);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* --- Treatments --- */
.treatments {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.treatment-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1.5px solid #e8edf3;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,154,58,0.04), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.treatment-card:hover::before { opacity: 1; }
.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(122,154,58,0.4);
}
.treatment-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf5, #fff);
  box-shadow: 0 4px 20px rgba(122,154,58,0.12);
}
.tc-badge {
  position: absolute;
  top: -1px; right: 1.2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tc-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.treatment-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.treatment-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.2rem; }
.tc-link { font-size: 0.86rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--transition); }
.tc-link:hover { gap: 0.7rem; }

/* --- Process --- */
.process {
  background: var(--navy);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,154,58,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(122,154,58,0.2);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.step-arrow { font-size: 1.5rem; color: var(--gold); opacity: 0.4; align-self: center; padding: 0 0.5rem; }

/* ============================================================
   BEFORE & AFTER SECTION
   ============================================================ */
.results-section {
  padding: 6rem 2rem;
  background: var(--cream);
  max-width: 1280px;
  margin: 0 auto;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.ba-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #e8edf3;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

/* Slider wrapper */
.ba-slider-wrap {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 4/3;
  background: var(--navy);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before { z-index: 1; }
.ba-before svg, .ba-after svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Clip the "after" pane */
.ba-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.02s linear;
}

/* Divider line + handle */
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  pointer-events: none;
  transition: left 0.02s linear;
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  gap: 0;
}
.ba-handle svg { flex-shrink: 0; width: 16px; height: 16px; }

/* The actual range input — invisible but interactive */
.ba-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  margin: 0;
  padding: 0;
}

/* Patient meta */
.ba-meta {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ba-patient {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ba-avatar {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ba-patient strong { display: block; font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.ba-patient span { font-size: 0.76rem; color: var(--text-muted); }
.ba-timeline {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  background: rgba(45,160,90,0.1);
  border: 1px solid rgba(45,160,90,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* Results CTA */
.results-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  color: white;
}
.results-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
}
.results-cta strong { color: var(--gold-light); }

/* ============================================================
   VIDEO TESTIMONIALS SECTION
   ============================================================ */
.video-section {
  background: linear-gradient(160deg, #060e1a 0%, var(--navy) 50%, #0a1520 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,154,58,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.video-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.video-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122,154,58,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.video-card.featured-video {
  border-color: rgba(122,154,58,0.35);
  box-shadow: 0 8px 30px rgba(122,154,58,0.1);
  transform: translateY(-8px);
}
.video-card.featured-video:hover { transform: translateY(-14px); }

/* Thumbnail */
.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--navy);
}
.video-thumb-bg { width: 100%; height: 100%; display: block; }
.video-thumb-bg svg { width: 100%; height: 100%; display: block; }

/* Ken Burns zoom on hover */
.video-thumb:hover .video-thumb-bg {
  animation: kenBurns 8s ease-in-out infinite;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.05) translate(-2%, -1%); }
  66% { transform: scale(1.03) translate(1%, 2%); }
  100% { transform: scale(1) translate(0, 0); }
}

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(122,154,58,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(122,154,58,0.5);
  z-index: 2;
}
.video-thumb:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold-light);
  box-shadow: 0 6px 30px rgba(122,154,58,0.7);
}
.video-play-btn.featured-play { width: 68px; height: 68px; }

.video-duration {
  position: absolute;
  bottom: 8px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.video-featured-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* Video meta */
.video-meta {
  padding: 1.3rem 1.5rem 1.5rem;
}
.video-patient-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.video-avatar {
  width: 36px; height: 36px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid rgba(122,154,58,0.3);
  flex-shrink: 0;
}
.video-patient-info strong { display: block; color: white; font-size: 0.9rem; font-weight: 600; }
.video-patient-info span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.video-meta blockquote {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.8rem;
  padding-left: 0.8rem;
  border-left: 2px solid rgba(122,154,58,0.4);
}
.video-stars {
  font-size: 0.8rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.video-stars span { color: rgba(255,255,255,0.35); font-size: 0.72rem; }

/* Video CTA bar */
.video-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.8rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.vcta-text strong { display: block; color: white; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.vcta-text span { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ff0000;
  color: white;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn-youtube:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,0,0,0.35); }

/* --- Testimonials --- */
.testimonials {
  padding: 6rem 2rem;
  background: var(--cream);
  max-width: 1280px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-3px); }
.testi-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.8rem; font-size: 0.95rem; }
.testi-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.testi-author span { font-size: 0.75rem; color: var(--text-muted); }

/* --- Book Section --- */
.book-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(122,154,58,0.07), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.book-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.book-tag {
  display: inline-block;
  background: rgba(122,154,58,0.15);
  border: 1px solid rgba(122,154,58,0.35);
  color: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.book-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: white;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.book-left h2 em { font-style: italic; color: var(--gold-light); }
.book-left > p { color: rgba(255,255,255,0.62); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.book-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.book-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}
.book-benefits li svg { color: var(--gold-light); flex-shrink: 0; }
.book-contact-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}
.book-contact-bar a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color var(--transition);
}
.book-contact-bar a:hover { color: white; }
.book-contact-bar span { color: rgba(255,255,255,0.38); font-size: 0.82rem; }

/* --- Form Card --- */
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-deep);
  position: sticky;
  top: 5.5rem;
}
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp 0.35s ease both; }

/* Step Indicator */
.form-step-header { margin-bottom: 1.5rem; }
.step-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 0.5rem; }
.si {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8edf3;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.si.active { background: var(--navy); color: white; }
.si.done { background: var(--gold); color: var(--navy); }
.si-line { flex: 1; height: 2px; background: #e8edf3; transition: background var(--transition); }
.si-line.active { background: var(--gold); }
.step-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }

/* Form Groups */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.req { color: var(--error); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #dce4ee;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(22,37,64,0.08);
}
.form-group input.error, .form-group select.error { border-color: var(--error); }
.field-error { display: block; color: var(--error); font-size: 0.78rem; margin-top: 0.3rem; min-height: 1em; }

.input-with-prefix { display: flex; }
.prefix {
  background: #f0f4f8;
  border: 1.5px solid #dce4ee;
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0.75rem 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}
.input-with-prefix input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-label {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; cursor: pointer; color: var(--text-mid);
}
.radio-label input[type="radio"] { accent-color: var(--navy); width: 16px; height: 16px; }

/* Grade Selector */
.grade-selector { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.grade-btn {
  width: 40px; height: 40px;
  border: 2px solid #dce4ee;
  border-radius: var(--radius-sm);
  background: white;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.grade-btn:hover { border-color: var(--navy); color: var(--navy); }
.grade-btn.selected { background: var(--navy); border-color: var(--navy); color: white; }
.grade-desc { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

/* Time Slots */
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ts-btn {
  padding: 0.5rem;
  border: 1.5px solid #dce4ee;
  border-radius: var(--radius-sm);
  background: white;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.ts-btn:hover { border-color: var(--navy); color: var(--navy); }
.ts-btn.selected { background: var(--navy); border-color: var(--navy); color: white; }

/* Checkbox */
.checkbox-label {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-muted); cursor: pointer; line-height: 1.5;
}
.checkbox-label input { margin-top: 2px; accent-color: var(--navy); width: 15px; height: 15px; flex-shrink: 0; }
.form-consent { margin-bottom: 1.2rem; }

/* Buttons in form */
.btn-next, .btn-submit {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-next { background: var(--navy); color: white; }
.btn-next:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-submit { background: var(--gold); color: var(--navy); }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(122,154,58,0.35); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.btn-back {
  background: transparent;
  border: 1.5px solid #dce4ee;
  color: var(--text-muted);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-row { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: center; }

/* Success */
.success-wrap { text-align: center; padding: 1rem 0; }
.success-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes scaleIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.success-wrap h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.success-wrap > p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.success-details {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  text-align: left;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.success-next p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* --- FAQ --- */
.faq {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  border: 1.5px solid #e0e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-q:hover { background: #f7faff; }
.faq-arrow { font-size: 1.1rem; color: var(--gold); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 1.5rem 1.2rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* --- Footer CTA --- */
.footer-cta {
  background: var(--gold);
  padding: 4rem 2rem;
  text-align: center;
}
.fcta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.fcta-content p { color: rgba(0,61,30,0.7); font-size: 1rem; margin-bottom: 1.5rem; }
.fcta-content .btn-primary { background: var(--navy); color: white; }
.fcta-content .btn-primary:hover { background: var(--navy-light); box-shadow: 0 8px 24px rgba(0,61,30,0.3); }

/* --- Footer --- */
.footer { background: var(--navy); padding: 2.5rem 2rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-brand .logo-hhy { font-size: 1.4rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-info p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-info a { color: var(--gold-light); }
.footer-legal { text-align: right; }
.footer-legal p { font-size: 0.75rem; color: rgba(255,255,255,0.33); line-height: 1.7; }

/* ============================================================
   FUNNEL FORM — compact mode for hero card & popup
   ============================================================ */
.funnel-form .form-step { display: none; }
.funnel-form .form-step.active { display: block; }

.form-step-header.compact { margin-bottom: 1rem; }
.form-step-header.compact .step-indicator { margin-bottom: 0.35rem; }
.form-step-header.compact .step-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0; }

/* Tighter form-group spacing inside hero card */
.hero-lead-form-card .form-group { margin-bottom: 0.7rem; }
.hero-lead-form-card .form-group label { font-size: 0.78rem; font-weight: 600; margin-bottom: 0.25rem; display: block; color: var(--text-mid); }
.hero-lead-form-card .form-group input,
.hero-lead-form-card .form-group select,
.hero-lead-form-card .form-group textarea {
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
}
.hero-lead-form-card .grade-selector { gap: 0.3rem; }
.hero-lead-form-card .grade-btn { width: 34px; height: 34px; font-size: 0.82rem; }
.hero-lead-form-card .timeslot-grid { grid-template-columns: repeat(4, 1fr); gap: 0.35rem; }
.hero-lead-form-card .ts-btn { padding: 0.38rem 0.25rem; font-size: 0.72rem; }
.hero-lead-form-card .checkbox-label { font-size: 0.76rem; }
.hero-lead-form-card .btn-next,
.hero-lead-form-card .btn-submit { padding: 0.75rem; font-size: 0.9rem; }
.hero-lead-form-card .btn-back { padding: 0.7rem 1rem; font-size: 0.82rem; }
.hero-lead-form-card .success-wrap { padding: 0.5rem 0; }
.hero-lead-form-card .success-wrap h3 { font-size: 1.2rem; }
.hero-lead-form-card .success-icon { width: 54px; height: 54px; font-size: 1.5rem; margin-bottom: 0.8rem; }
.hero-lead-form-card .success-details { font-size: 0.78rem; padding: 0.75rem; }
.hero-lead-form-card .radio-group { gap: 0.6rem; }
.hero-lead-form-card .radio-label { font-size: 0.82rem; }
.hero-lead-form-card .form-consent { margin-bottom: 0.8rem; }
.hero-lead-form-card .grade-desc { font-size: 0.72rem; }

/* Tighter form-group spacing inside popup */
.popup-form-wrap .form-group { margin-bottom: 0.7rem; }
.popup-form-wrap .form-group label { font-size: 0.8rem; font-weight: 600; margin-bottom: 0.25rem; display: block; color: var(--text-mid); }
.popup-form-wrap .form-group input,
.popup-form-wrap .form-group select { padding: 0.65rem 0.9rem; font-size: 0.88rem; }
.popup-form-wrap .grade-selector { gap: 0.3rem; }
.popup-form-wrap .grade-btn { width: 36px; height: 36px; font-size: 0.85rem; }
.popup-form-wrap .timeslot-grid { grid-template-columns: repeat(4, 1fr); gap: 0.35rem; }
.popup-form-wrap .ts-btn { padding: 0.4rem 0.25rem; font-size: 0.74rem; }
.popup-form-wrap .checkbox-label { font-size: 0.78rem; }
.popup-form-wrap .btn-next,
.popup-form-wrap .btn-submit { padding: 0.8rem; font-size: 0.92rem; }
.popup-form-wrap .btn-back { padding: 0.75rem 1rem; font-size: 0.84rem; }
.popup-form-wrap .grade-desc { font-size: 0.73rem; }
.popup-form-wrap .radio-group { gap: 0.7rem; }
.popup-form-wrap .radio-label { font-size: 0.84rem; }
.popup-form-wrap .form-consent { margin-bottom: 0.8rem; }
.popup-form-wrap .success-icon { width: 58px; height: 58px; font-size: 1.6rem; margin: 0 auto 0.8rem; }
.popup-form-wrap .success-details { font-size: 0.8rem; padding: 0.8rem; }

/* ============================================================
   HERO INLINE LEAD FORM (old simple form — kept for fallback)
   ============================================================ */
.hero-lead-form-card .hcard-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(122,154,58,0.15);
}
.hcard-label-dot {
  width: 8px; height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-form-group { margin-bottom: 0.8rem; }
.hero-form-group input,
.hero-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e8f2;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafcff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.hero-form-group input:focus,
.hero-form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(122,154,58,0.12);
  background: white;
}
.hero-form-group .input-with-prefix {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #e0e8f2;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fafcff;
}
.hero-form-group .input-with-prefix:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(122,154,58,0.12);
  background: white;
}
.hero-form-group .prefix {
  background: #f0f4fa;
  border-right: 1.5px solid #e0e8f2;
  padding: 0 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hero-form-group .input-with-prefix input {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex: 1;
}
.hero-form-group .input-with-prefix input:focus {
  border: none;
  box-shadow: none;
}

.hero-form-error { display: block; font-size: 0.78rem; color: var(--error); min-height: 1.1em; margin-bottom: 0.2rem; }

.btn-hero-form {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}
.btn-hero-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.btn-hero-form:hover::before { transform: translateX(100%); }
.btn-hero-form:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,154,58,0.42);
}

.hero-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
}

.hcard-divider { height: 1px; background: rgba(122,154,58,0.13); margin: 1.2rem 0; }
.hcard-mini-list { display: flex; flex-direction: column; gap: 0.4rem; }
.hcard-mini-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}
.hcard-mini-item span { color: var(--gold); font-weight: 700; }

.hero-form-success-msg { text-align: center; padding: 0.5rem 0; }
.hero-form-success-msg h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.hero-form-success-msg p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.3rem; }

/* ============================================================
   AUTO POPUP MODAL
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(7, 15, 28, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.popup-box {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45), 0 0 0 1px rgba(122,154,58,0.15);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.popup-overlay.visible .popup-box {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 34px; height: 34px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.3); }

.popup-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 2rem 2rem 1.5rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  overflow: hidden;
}
.popup-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(122,154,58,0.1), transparent 70%);
  pointer-events: none;
}
.popup-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.popup-badge {
  display: inline-block;
  background: rgba(122,154,58,0.18);
  border: 1px solid rgba(122,154,58,0.4);
  color: var(--gold-light);
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 0.7rem;
}
.popup-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.popup-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light), #f5d070, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.popup-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.popup-form-wrap { padding: 1.5rem 2rem 0; }
.popup-form-group { margin-bottom: 0.85rem; }
.popup-form-group input,
.popup-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #dce4ee;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafcff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.popup-form-group input:focus,
.popup-form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(122,154,58,0.12);
  background: white;
}
.popup-form-group .input-with-prefix {
  display: flex;
  border: 1.5px solid #dce4ee;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.popup-form-group .input-with-prefix:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(122,154,58,0.12);
}
.popup-form-group .prefix {
  background: #f0f4fa;
  border-right: 1.5px solid #dce4ee;
  padding: 0 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.popup-form-group .input-with-prefix input {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex: 1;
}
.popup-form-group .input-with-prefix input:focus {
  border: none;
  box-shadow: none;
}

.btn-popup-submit {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}
.btn-popup-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.btn-popup-submit:hover::before { transform: translateX(100%); }
.btn-popup-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,154,58,0.4);
}

.popup-trust-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  padding-bottom: 0.5rem;
}

.popup-offers {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid #eef2f8;
  margin-top: 1rem;
}
.popup-offer-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(122,154,58,0.08);
  border: 1px solid rgba(122,154,58,0.25);
  color: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 600;
}

.popup-success {
  text-align: center;
  padding: 2rem 2rem 1rem;
}
.popup-success h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.popup-success p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* --- Float CTA --- */
.float-cta {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.float-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta a {
  display: block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(122,154,58,0.5);
  transition: transform var(--transition), background var(--transition);
  animation: bouncePulse 3s 2s infinite;
}
.float-cta a:hover { background: var(--gold-light); transform: translateY(-3px); }
@keyframes bouncePulse { 0%,90%,100%{transform:translateY(0)} 95%{transform:translateY(-5px)} }

/* --- Animations --- */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-15px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(25px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-grid .video-card:last-child { display: none; }
  .video-card.featured-video { transform: none; }
}
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding-top: 2rem;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-card-wrap { order: 2; flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
  .hero-offers { justify-content: center; }
  .hero-cta { justify-content: center; }
  .scroll-indicator { justify-content: center; }
  .nav-links { display: none; }
  .book-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-card { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
  .ba-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card.featured-video { transform: none; }
  .video-grid .video-card:last-child { display: block; }
}
@media (max-width: 600px) {
  .nav-contact .nav-phone { display: none; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .timeslot-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-bar-inner { gap: 1rem; }
  .proof-divider { display: none; }
  .btn-row { grid-template-columns: 1fr 2fr; }
  .video-cta-bar { flex-direction: column; text-align: center; }
}
