﻿/* ============================================================
   HAIR BY DASH  -  Premium Design System
   hairbydash.ae | DHA/MOHAP Compliant
   ============================================================ */

/* --- 1. GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=Roboto+Mono:wght@300;400;500&display=swap');

/* --- 2. CSS CUSTOM PROPERTIES --- */
:root {
  /* Colour Palette */
  --c-bg:            #FAF9F6;
  --c-bg-2:          #F4F2ED;
  --c-bg-3:          #EDE9E1;
  --c-surface:       #FFFFFF;
  --c-surface-warm:  #FFFDF9;
  --c-charcoal:      #1A1918;
  --c-graphite:      #2C2B29;
  --c-graphite-2:    #3D3C39;
  --c-silver:        #8A8880;
  --c-silver-light:  #C5C3BC;
  --c-gold:          #1D6A8A;
  --c-gold-light:    #3D8BAD;
  --c-gold-pale:     #C8E0EB;
  --c-gold-bg:       #EBF6FA;
  --c-blue-hint:     #EBF0F5;
  --c-blue-mid:      #B8CCE0;
  --c-blue-deep:     #4A7FA5;
  --c-success:       #3D7A5C;
  --c-success-bg:    #EBF5F0;
  --c-error:         #A03535;
  --c-error-bg:      #FAEAEA;
  --c-border:        rgba(26,25,24,0.08);
  --c-border-mid:    rgba(26,25,24,0.14);

  /* Text */
  --c-text-primary:   #1A1918;
  --c-text-secondary: #4A4845;
  --c-text-muted:     #8A8880;
  --c-text-inverse:   #FFFFFF;

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:     'Roboto Mono', 'Courier New', monospace;

  /* Fluid Type Scale */
  --text-xs:   clamp(0.70rem, 0.68rem + 0.1vw, 0.75rem);
  --text-sm:   clamp(0.82rem, 0.80rem + 0.1vw, 0.875rem);
  --text-base: clamp(0.94rem, 0.92rem + 0.1vw, 1rem);
  --text-md:   clamp(1.05rem, 1.00rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.15rem, 1.05rem + 0.50vw, 1.35rem);
  --text-xl:   clamp(1.30rem, 1.10rem + 1.00vw, 1.75rem);
  --text-2xl:  clamp(1.60rem, 1.25rem + 1.75vw, 2.50rem);
  --text-3xl:  clamp(2.00rem, 1.50rem + 2.50vw, 3.50rem);
  --text-4xl:  clamp(2.50rem, 1.80rem + 3.50vw, 5.00rem);
  --text-5xl:  clamp(3.00rem, 2.00rem + 5.00vw, 7.00rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.50rem;
  --sp-3:  0.75rem;
  --sp-4:  1.00rem;
  --sp-5:  1.25rem;
  --sp-6:  1.50rem;
  --sp-8:  2.00rem;
  --sp-10: 2.50rem;
  --sp-12: 3.00rem;
  --sp-16: 4.00rem;
  --sp-20: 5.00rem;
  --sp-24: 6.00rem;
  --sp-32: 8.00rem;

  /* Border Radius */
  --r-sm:  0.375rem;
  --r-md:  0.75rem;
  --r-lg:  1.25rem;
  --r-xl:  2.00rem;
  --r-2xl: 3.00rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(26,25,24,0.06), 0 1px 2px rgba(26,25,24,0.04);
  --shadow-sm:  0 2px 8px rgba(26,25,24,0.07), 0 1px 3px rgba(26,25,24,0.05);
  --shadow-md:  0 4px 20px rgba(26,25,24,0.08), 0 2px 8px rgba(26,25,24,0.05);
  --shadow-lg:  0 8px 40px rgba(26,25,24,0.10), 0 4px 16px rgba(26,25,24,0.06);
  --shadow-xl:  0 20px 60px rgba(26,25,24,0.12), 0 8px 24px rgba(26,25,24,0.07);
  --shadow-gold: 0 4px 24px rgba(29,106,138,0.25), 0 2px 8px rgba(29,106,138,0.15);
  --shadow-glow: 0 0 30px rgba(29,106,138,0.20);

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:  180ms;
  --dur-base:  300ms;
  --dur-slow:  500ms;
  --dur-xslow: 800ms;

  /* Layout */
  --max-w:      1280px;
  --max-w-text: 720px;
  --header-h:   72px;
  --banner-h:   36px;
}
body.no-banner {
  --banner-h: 0px;
}

/* --- 3. RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-text-primary);
  background: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--c-gold-pale); color: var(--c-charcoal); }

/* --- 4. LOADING SCREEN --- */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--c-charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-6);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--c-surface);
  letter-spacing: 0.2em;
  font-weight: 300;
}
.loading-logo span { color: var(--c-gold); }
.loading-bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.loading-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--c-gold);
  animation: loadBar 1.8s var(--ease-in-out) forwards;
}
@keyframes loadBar {
  to { left: 0; }
}

/* --- 5. SCROLL PROGRESS --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* --- 6. CURSOR GLOW --- */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,106,138,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* --- 7. HEADER --- */
#urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
#site-header {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(250,249,246,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(26,25,24,0.08);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

nav.header-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-text-secondary);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--c-charcoal);
  background: var(--c-bg-2);
}
.nav-link.active { color: var(--c-charcoal); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-4);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast);
}
.nav-dropdown a:hover {
  background: var(--c-bg-2);
  color: var(--c-charcoal);
  padding-left: var(--sp-4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.btn-ghost {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-charcoal);
  border: 1.5px solid var(--c-border-mid);
  border-radius: var(--r-full);
  transition: all var(--dur-fast) var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-bg);
}

.btn-primary {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-surface);
  background: var(--c-charcoal);
  border: 1.5px solid var(--c-charcoal);
  border-radius: var(--r-full);
  transition: all var(--dur-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08));
  transition: opacity var(--dur-fast);
}
.btn-primary:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast);
}
.menu-toggle:hover { background: var(--c-bg-2); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-charcoal);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--c-surface);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + var(--sp-8)) var(--sp-8) var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}
#mobile-nav.open { transform: translateX(0); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-3);
  font-size: var(--text-lg);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--c-charcoal);
  border-bottom: 1px solid var(--c-border);
  transition: all var(--dur-fast);
}
.mobile-nav-links a:hover {
  color: var(--c-gold);
  padding-left: var(--sp-5);
}
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

/* --- 8. HERO SECTION --- */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FAF9F6 0%, #F4F0E8 40%, #EDE9DF 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,106,138,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,127,165,0.08) 0%, transparent 70%);
  bottom: 50px;
  left: -80px;
  animation: orbFloat 10s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -15px); }
  66%       { transform: translate(-10px, 10px); }
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--banner-h) + var(--header-h) + var(--sp-16)) var(--sp-8) var(--sp-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content { padding-right: var(--sp-8); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--c-gold-bg);
  border: 1px solid var(--c-gold-pale);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-6);
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-6);
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}
.hero-title em {
  font-style: italic;
  color: var(--c-gold);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--c-text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--sp-10);
  font-weight: 300;
  animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
  animation: fadeInUp 0.8s var(--ease-out) 0.9s both;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-8);
  background: var(--c-charcoal);
  color: var(--c-surface);
  border-radius: var(--r-full);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.cta-primary:hover::before { opacity: 1; }
.cta-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.cta-primary span { position: relative; z-index: 1; }
.cta-primary svg { position: relative; z-index: 1; width: 18px; height: 18px; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  color: var(--c-charcoal);
  border: 1.5px solid var(--c-border-mid);
  border-radius: var(--r-full);
  font-size: var(--text-base);
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease-out);
}
.cta-secondary:hover {
  border-color: var(--c-charcoal);
  background: var(--c-charcoal);
  color: var(--c-surface);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 1.1s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s var(--ease-out) 0.6s both;
}
.hero-illustration {
  width: 100%;
  max-width: 520px;
  position: relative;
}
.hero-img-container {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%);
  border: 1px solid var(--c-border);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  text-align: center;
  background: linear-gradient(160deg, #F8F6F1 0%, #EDE9DF 60%, #E5DDD0 100%);
}
.placeholder-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  opacity: 0.4;
  text-transform: uppercase;
  color: var(--c-silver);
  border: 1px dashed var(--c-silver-light);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm);
}
.placeholder-desc {
  font-family: var(--font-display);
  font-size: var(--text-md);
  color: var(--c-text-secondary);
  font-style: italic;
}
.placeholder-dim {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

/* Floating stat cards */
.hero-stat-card {
  position: absolute;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  animation: floatY 6s ease-in-out infinite;
}
.hero-stat-card:nth-child(2) { animation-delay: -2s; }
.hero-stat-card:nth-child(3) { animation-delay: -4s; }
.hero-stat-1 { left: -60px; top: 20%; }
.hero-stat-2 { right: -40px; top: 45%; }
.hero-stat-3 { left: -30px; bottom: 15%; }
.stat-icon {
  width: 36px;
  height: 36px;
  background: var(--c-gold-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 18px; height: 18px; color: var(--c-gold); }
.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  margin-top: 2px;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- 9. SECTION GLOBALS --- */
section { contain: layout style; }

.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-16);
}
.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--c-charcoal);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.section-title em { font-style: italic; color: var(--c-gold); }
.section-subtitle {
  font-size: var(--text-md);
  color: var(--c-text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* --- 10. TRIAGE FUNNEL --- */
#triage-funnel {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
  position: relative;
  overflow: hidden;
}
#triage-funnel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.funnel-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

/* Funnel Progress */
.funnel-progress {
  margin-bottom: var(--sp-12);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.progress-track {
  flex: 1;
  height: 4px;
  background: var(--c-bg-2);
  border-radius: var(--r-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  border-radius: var(--r-full);
  transition: width 0.6s var(--ease-out);
  width: 0%;
}
.progress-steps {
  display: flex;
  gap: var(--sp-2);
}
.progress-step {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-bg-2);
  transition: all var(--dur-base) var(--ease-out);
}
.progress-step.active {
  background: var(--c-gold);
  box-shadow: 0 0 8px rgba(29,106,138,0.5);
}
.progress-step.done { background: var(--c-success); }
.progress-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Funnel Stages */
.funnel-stage {
  display: none;
  animation: stageIn 0.5s var(--ease-out) both;
}
.funnel-stage.active { display: block; }
@keyframes stageIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.funnel-stage-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}
.stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-gold-bg);
  border: 2px solid var(--c-gold-pale);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--c-gold);
  font-weight: 600;
  margin: 0 auto var(--sp-4);
}
.stage-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
}
.stage-desc {
  font-size: var(--text-base);
  color: var(--c-text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* Stage A  -  Screening Cards */
.screening-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}
.screening-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  cursor: default;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.screening-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--c-gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}
.screening-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.screening-card.answered-yes {
  background: rgba(160,53,53,0.04);
  border-color: var(--c-error);
}
.screening-card.answered-no {
  background: var(--c-success-bg);
  border-color: var(--c-success);
}
.screening-illustration {
  width: 100%;
  height: 120px;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.screening-illustration svg {
  width: 80px;
  height: 80px;
}
.screening-question {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-5);
  line-height: 1.5;
}
.screening-answers {
  display: flex;
  gap: var(--sp-3);
}
.answer-btn {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--dur-fast) var(--ease-out);
  border: 1.5px solid transparent;
}
.answer-btn-yes {
  background: rgba(160,53,53,0.07);
  color: var(--c-error);
  border-color: rgba(160,53,53,0.2);
}
.answer-btn-yes:hover, .answer-btn-yes.selected {
  background: var(--c-error);
  color: white;
  border-color: var(--c-error);
}
.answer-btn-no {
  background: rgba(61,122,92,0.07);
  color: var(--c-success);
  border-color: rgba(61,122,92,0.2);
}
.answer-btn-no:hover, .answer-btn-no.selected {
  background: var(--c-success);
  color: white;
  border-color: var(--c-success);
}

/* Clinical Referral */
.clinical-referral {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: var(--sp-12);
  background: linear-gradient(135deg, var(--c-blue-hint), var(--c-bg-2));
  border-radius: var(--r-2xl);
  border: 1px solid var(--c-blue-mid);
  display: none;
}
.clinical-referral.visible { display: block; animation: stageIn 0.5s var(--ease-out) both; }
.referral-icon {
  width: 72px;
  height: 72px;
  background: var(--c-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  box-shadow: var(--shadow-md);
}
.referral-icon svg { width: 36px; height: 36px; color: var(--c-blue-deep); }
.referral-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--c-charcoal);
  margin-bottom: var(--sp-4);
}
.referral-desc {
  font-size: var(--text-base);
  color: var(--c-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}
.referral-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
}
.emirate-select {
  width: 100%;
  max-width: 280px;
  padding: var(--sp-3) var(--sp-5);
  border: 1.5px solid var(--c-border-mid);
  border-radius: var(--r-md);
  background: var(--c-surface);
  font-size: var(--text-sm);
  color: var(--c-charcoal);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8880' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

/* Stage B  -  legacy stage cards (retained for inner pages) */
.gender-selector {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-10);
}
.gender-btn {
  flex: 1;
  max-width: 200px;
  padding: var(--sp-5) var(--sp-6);
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  text-align: center;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-text-secondary);
  transition: all var(--dur-base) var(--ease-out);
}
.gender-btn:hover, .gender-btn.active {
  border-color: var(--c-gold);
  background: var(--c-gold-bg);
  color: var(--c-charcoal);
}
.gender-btn svg { width: 28px; height: 28px; margin-bottom: var(--sp-2); display: block; margin-left: auto; margin-right: auto; }

.norwood-grid, .ludwig-grid {
  display: grid;
  gap: var(--sp-5);
}
.norwood-grid { grid-template-columns: repeat(3, 1fr); }
.ludwig-grid { grid-template-columns: repeat(3, 1fr); }

.stage-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  text-align: center;
  position: relative;
}
.stage-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stage-card.selected {
  border-color: var(--c-gold);
  background: var(--c-gold-bg);
  box-shadow: var(--shadow-gold);
}
.stage-card-svg {
  margin: 0 auto var(--sp-4);
  display: block;
}
.stage-card-label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-2);
}
.stage-card-desc {
  font-size: var(--text-xs);
  color: var(--c-text-secondary);
  line-height: 1.5;
}
.stage-card-severity {
  margin-top: var(--sp-3);
  display: flex;
  justify-content: center;
  gap: 3px;
}
.severity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-bg-2);
}
.severity-dot.filled { background: var(--c-gold); }

/* Stage C  -  Form */
.luxury-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.form-group {
  position: relative;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  position: absolute;
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  pointer-events: none;
  transition: all var(--dur-fast) var(--ease-out);
  background: var(--c-surface);
  padding: 0 4px;
}
.form-input {
  width: 100%;
  padding: var(--sp-5) var(--sp-4) var(--sp-3);
  border: 1.5px solid var(--c-border-mid);
  border-radius: var(--r-md);
  background: var(--c-surface);
  font-size: var(--text-base);
  color: var(--c-charcoal);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  height: 58px;
}
.form-input:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(29,106,138,0.12);
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  color: var(--c-gold);
  font-size: var(--text-xs);
  font-weight: 600;
}
.form-input.valid { border-color: var(--c-success); }
.form-input.error { border-color: var(--c-error); }
.form-check { position: absolute; right: var(--sp-4); top: 50%; transform: translateY(-50%); }
.form-check svg { width: 18px; height: 18px; }
.form-error-msg {
  font-size: var(--text-xs);
  color: var(--c-error);
  margin-top: var(--sp-2);
  display: none;
}
.form-error-msg.visible { display: block; }

.phone-group {
  display: flex;
  gap: var(--sp-2);
}
.phone-prefix {
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-bg-2);
  border: 1.5px solid var(--c-border-mid);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 58px;
  flex-shrink: 0;
}

.privacy-notice {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--c-bg-2);
  border-radius: var(--r-md);
  margin-top: var(--sp-2);
}
.privacy-notice svg { width: 16px; height: 16px; color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
.privacy-notice p { font-size: var(--text-xs); color: var(--c-text-muted); line-height: 1.6; }

.whatsapp-opt {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
}
.whatsapp-opt input { display: none; }
.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--c-border-mid);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}
.whatsapp-opt input:checked + .custom-checkbox {
  background: #25D366;
  border-color: #25D366;
}
.custom-checkbox svg { display: none; color: white; width: 12px; height: 12px; }
.whatsapp-opt input:checked + .custom-checkbox svg { display: block; }

/* Stage D  -  Results */
#results-stage { display: none; }
#results-stage.active { display: block; }

.results-header {
  text-align: center;
  padding: var(--sp-10) 0 var(--sp-8);
  position: relative;
}
.results-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  background: var(--c-gold-bg);
  border: 1px solid var(--c-gold-pale);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-5);
}
.results-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
}
.results-overview {
  font-size: var(--text-base);
  color: var(--c-text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

.results-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.results-treatments {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.treatment-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  transition: all var(--dur-fast) var(--ease-out);
  cursor: default;
}
.treatment-card:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.treatment-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.treatment-icon svg { width: 22px; height: 22px; color: var(--c-gold); }
.treatment-name {
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-1);
}
.treatment-detail {
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
  line-height: 1.55;
}
.treatment-badge {
  margin-left: auto;
  flex-shrink: 0;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
}
.badge-primary { background: var(--c-gold-bg); color: var(--c-gold); }
.badge-secondary { background: var(--c-blue-hint); color: var(--c-blue-deep); }

.results-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.sidebar-card {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  color: var(--c-surface);
  position: relative;
  overflow: hidden;
}
.sidebar-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(29,106,138,0.1);
  border-radius: 50%;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}
.sidebar-card-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}
.btn-gold {
  display: inline-block;
  width: 100%;
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-gold);
  color: var(--c-charcoal);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  transition: all var(--dur-fast) var(--ease-out);
}
.btn-gold:hover { background: var(--c-gold-light); transform: translateY(-1px); }

.timeline-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.timeline-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-step {
  display: flex;
  gap: var(--sp-3);
  position: relative;
}
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 28px;
  bottom: -4px;
  width: 1px;
  background: var(--c-border);
}
.ts-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-gold-bg);
  border: 2px solid var(--c-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--c-gold);
  margin-top: 2px;
}
.ts-content { padding-bottom: var(--sp-5); }
.ts-label { font-size: var(--text-sm); font-weight: 600; color: var(--c-charcoal); }
.ts-detail { font-size: var(--text-xs); color: var(--c-text-muted); margin-top: 2px; }

/* Funnel Navigation */
.funnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
}
.btn-back {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  border: 1.5px solid var(--c-border-mid);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-text-secondary);
  transition: all var(--dur-fast);
}
.btn-back:hover { border-color: var(--c-charcoal); color: var(--c-charcoal); }
.btn-back svg { width: 16px; height: 16px; }
.btn-continue {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-8);
  background: var(--c-charcoal);
  color: var(--c-surface);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: 600;
  transition: all var(--dur-fast) var(--ease-out);
}
.btn-continue:hover {
  background: var(--c-gold);
  color: var(--c-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-continue:disabled {
  opacity: 0.4;
  pointer-events: none;
}
.btn-continue svg { width: 18px; height: 18px; }

/* --- 11. TREATMENTS OVERVIEW --- */
#treatments-overview {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.treatment-overview-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.treatment-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.treatment-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.treatment-overview-card:hover::before { transform: scaleX(1); }
.toc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: var(--c-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  transition: all var(--dur-base);
}
.toc-icon svg { width: 28px; height: 28px; color: var(--c-gold); }
.treatment-overview-card:hover .toc-icon {
  background: var(--c-charcoal);
}
.treatment-overview-card:hover .toc-icon svg { color: var(--c-gold); }
.toc-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
}
.toc-desc {
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.toc-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.toc-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
}
.toc-feature svg { width: 14px; height: 14px; color: var(--c-gold); flex-shrink: 0; }
.toc-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: 0.04em;
  transition: gap var(--dur-fast);
}
.toc-link:hover { gap: var(--sp-3); color: var(--c-gold); }
.toc-link svg { width: 16px; height: 16px; }

/* --- 12. STATS BAND --- */
#stats-band {
  padding: var(--sp-16) 0;
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
}
#stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(29,106,138,0.05) 50%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-unit { font-size: 0.5em; vertical-align: super; }
.stat-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* --- 13. SCIENCE SECTION --- */
#our-science {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
}
.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.science-visual {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
}
.science-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.science-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  transition: all var(--dur-fast);
}
.science-item:hover {
  background: var(--c-bg);
  box-shadow: var(--shadow-sm);
}
.science-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  margin-top: 3px;
  width: 28px;
}
.science-content-title {
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-2);
}
.science-content-desc {
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
  line-height: 1.65;
}

/* --- 14. TESTIMONIALS --- */
#testimonials {
  padding: var(--sp-24) 0;
  background: var(--c-bg-2);
  overflow: hidden;
}
.testimonials-slider {
  display: flex;
  gap: var(--sp-6);
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: var(--sp-6);
  transition: transform var(--dur-slow) var(--ease-out);
  will-change: transform;
}
.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  min-width: 360px;
  flex-shrink: 0;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--c-gold-pale);
  line-height: 1;
  font-weight: 400;
}
.testimonial-stars {
  display: flex;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--c-gold); color: var(--c-gold); }
.testimonial-text {
  font-size: var(--text-md);
  color: var(--c-text-primary);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  font-style: italic;
  font-family: var(--font-display);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-bg-2);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--c-gold);
  font-weight: 600;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--c-charcoal); margin-bottom: 2px; }
.author-detail { font-size: var(--text-xs); color: var(--c-text-muted); }
.author-emirate {
  margin-left: auto;
  font-size: var(--text-xs);
  color: var(--c-gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
}
.slider-btn:hover {
  border-color: var(--c-gold);
  background: var(--c-gold-bg);
  color: var(--c-gold);
}
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots {
  display: flex;
  gap: var(--sp-2);
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-silver-light);
  transition: all var(--dur-fast);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--c-gold);
  width: 24px;
  border-radius: var(--r-full);
}

/* --- 15. BEFORE/AFTER --- */
#before-after {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
}
.ba-slider-wrap {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--c-border);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
  border-right: 2px solid white;
  transition: clip-path 0.01s linear;
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 10;
}
.ba-handle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle svg { width: 20px; height: 20px; color: var(--c-charcoal); }
.ba-label {
  position: absolute;
  bottom: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ba-label-before { left: var(--sp-4); background: rgba(0,0,0,0.5); color: white; }
.ba-label-after { right: var(--sp-4); background: var(--c-gold); color: var(--c-charcoal); }

/* --- 16. FAQ SECTION --- */
#faq-section {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  text-align: left;
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--c-charcoal);
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--c-gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-fast);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease-out); }
.faq-item.open .faq-icon {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: white;
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); color: white; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out), padding var(--dur-base);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: var(--sp-6);
  font-size: var(--text-base);
  color: var(--c-text-secondary);
  line-height: 1.75;
}

/* --- 17. MEMBERSHIP PLANS --- */
#membership {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}
.plan-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}
.plan-card.featured {
  background: var(--c-charcoal);
  border-color: var(--c-gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: var(--c-charcoal);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.plan-card.featured .plan-name { color: var(--c-surface); }
.plan-desc {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.55); }
.plan-price {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--c-border);
}
.plan-card.featured .plan-price { border-color: rgba(255,255,255,0.12); }
.plan-amount {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1;
}
.plan-card.featured .plan-amount { color: var(--c-gold); }
.plan-currency { font-size: 0.45em; vertical-align: super; font-weight: 400; }
.plan-period { font-size: var(--text-sm); color: var(--c-text-muted); margin-top: var(--sp-2); }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.45); }
.plan-saving {
  display: inline-block;
  margin-top: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(29,106,138,0.15);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-gold);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
}
.plan-feature svg {
  width: 16px;
  height: 16px;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-card.featured .plan-feature { color: rgba(255,255,255,0.8); }
.plan-cta {
  display: block;
  width: 100%;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  text-align: center;
  font-weight: 600;
  font-size: var(--text-base);
  transition: all var(--dur-fast) var(--ease-out);
}
.plan-cta-light {
  border: 1.5px solid var(--c-border-mid);
  color: var(--c-charcoal);
}
.plan-cta-light:hover {
  border-color: var(--c-gold);
  background: var(--c-gold-bg);
}
.plan-cta-gold {
  background: var(--c-gold);
  color: var(--c-charcoal);
  border: 1.5px solid var(--c-gold);
}
.plan-cta-gold:hover {
  background: var(--c-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* --- 18. TRUST SECTION --- */
#trust-section {
  padding: var(--sp-24) 0;
  background: var(--c-bg-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.trust-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  transition: all var(--dur-fast);
}
.trust-card:hover {
  border-color: var(--c-gold-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: var(--c-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}
.trust-icon svg { width: 28px; height: 28px; color: var(--c-gold); }
.trust-title { font-weight: 600; color: var(--c-charcoal); margin-bottom: var(--sp-2); }
.trust-desc { font-size: var(--text-sm); color: var(--c-text-muted); line-height: 1.6; }

/* --- 19. DISCLAIMER BAND --- */
.disclaimer-band {
  padding: var(--sp-8) 0;
  background: var(--c-blue-hint);
  border-top: 1px solid var(--c-blue-mid);
  border-bottom: 1px solid var(--c-blue-mid);
}
.disclaimer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.disclaimer-inner svg {
  width: 20px;
  height: 20px;
  color: var(--c-blue-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer-inner p {
  font-size: var(--text-xs);
  color: var(--c-text-secondary);
  line-height: 1.7;
}
.disclaimer-inner a { color: var(--c-blue-deep); text-decoration: underline; }

/* --- 20. CTA SECTION --- */
#cta-section {
  padding: var(--sp-24) 0;
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
}
#cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(29,106,138,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(74,127,165,0.06) 0%, transparent 50%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-tag {
  display: inline-block;
  padding: var(--sp-2) var(--sp-5);
  border: 1px solid rgba(29,106,138,0.3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-6);
}
.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--c-surface);
  font-weight: 400;
  margin-bottom: var(--sp-5);
  line-height: 1.2;
}
.cta-title em { font-style: italic; color: var(--c-gold); }
.cta-desc {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: var(--sp-10);
}
.cta-buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- 21. FOOTER --- */
#site-footer {
  background: var(--c-graphite);
  color: rgba(255,255,255,0.7);
}
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-20) var(--sp-8) var(--sp-12);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}
.footer-brand .logo-text { color: var(--c-surface); }
.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.75;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-6);
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  color: rgba(255,255,255,0.55);
}
.social-btn:hover {
  border-color: var(--c-gold);
  background: rgba(29,106,138,0.1);
  color: var(--c-gold);
}
.social-btn svg { width: 18px; height: 18px; }
.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-surface);
  margin-bottom: var(--sp-5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: all var(--dur-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-links a:hover { color: var(--c-gold); padding-left: var(--sp-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-6) var(--sp-8);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom-text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: var(--sp-5);
}
.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--dur-fast);
}
.footer-legal a:hover { color: var(--c-gold); }
.dha-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid rgba(29,106,138,0.2);
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}
.dha-badge svg { width: 14px; height: 14px; color: var(--c-gold); }

/* --- 22. FLOATING ELEMENTS --- */
#whatsapp-float {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
}
.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--dur-base) var(--ease-spring);
  color: white;
}
.wa-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.wa-btn svg { width: 28px; height: 28px; }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}
.wa-tooltip {
  background: var(--c-charcoal);
  color: var(--c-surface);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--text-xs);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--dur-fast);
  pointer-events: none;
}
#whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Sticky CTA  -  Mobile */
#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 899;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  gap: var(--sp-3);
  box-shadow: 0 -4px 20px rgba(26,25,24,0.08);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#sticky-cta.visible {
  transform: translateY(0);
}

/* Consultation Dock */
#consult-dock {
  position: fixed;
  bottom: var(--sp-8);
  left: var(--sp-8);
  z-index: 898;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
  max-width: 260px;
}
#consult-dock:hover { box-shadow: var(--shadow-xl), var(--shadow-gold); }
.dock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--c-gold-pale);
}
.dock-avatar svg { width: 20px; height: 20px; color: var(--c-gold); }
.dock-text-title { font-size: var(--text-xs); font-weight: 600; color: var(--c-charcoal); }
.dock-text-sub { font-size: 11px; color: var(--c-text-muted); }
.dock-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-success);
  margin-left: auto;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Exit Intent Popup */
#exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(26,25,24,0.6);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-base) var(--ease-out);
}
#exit-popup.visible { opacity: 1; visibility: visible; }
.exit-popup-card {
  background: var(--c-surface);
  border-radius: var(--r-2xl);
  padding: var(--sp-12) var(--sp-10);
  max-width: 520px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(10px);
  transition: transform var(--dur-base) var(--ease-out);
}
#exit-popup.visible .exit-popup-card { transform: scale(1) translateY(0); }
.exit-popup-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  color: var(--c-text-muted);
}
.exit-popup-close:hover { background: var(--c-bg-2); color: var(--c-charcoal); }
.exit-popup-close svg { width: 16px; height: 16px; }
.exit-popup-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
}
.exit-popup-desc {
  font-size: var(--text-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.popup-email-form {
  display: flex;
  gap: var(--sp-3);
}
.popup-email-input {
  flex: 1;
  padding: var(--sp-4);
  border: 1.5px solid var(--c-border-mid);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--dur-fast);
}
.popup-email-input:focus { border-color: var(--c-gold); }

/* --- 23. PAGE HERO TEMPLATE --- */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--c-bg) 0%, var(--c-bg-2) 50%, var(--c-bg-3) 100%);
  padding: calc(var(--banner-h) + var(--header-h) + var(--sp-16)) var(--sp-8) var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29,106,138,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-6);
}
.breadcrumb a { color: var(--c-text-muted); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--c-charcoal);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: var(--sp-5);
}
.page-hero-title em { font-style: italic; color: var(--c-gold); }
.page-hero-desc {
  font-size: var(--text-lg);
  color: var(--c-text-secondary);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
}

/* --- 24. ANIMATIONS & UTILITIES --- */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.shake { animation: shake 0.5s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform var(--dur-base) var(--ease-out);
}

.skeleton {
  background: linear-gradient(90deg, var(--c-bg-2) 25%, var(--c-bg-3) 50%, var(--c-bg-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--r-sm);
}

/* Ripple */
.ripple-container { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* Section Dividers */
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: var(--sp-6) auto;
}

/* Glassmorphism */
.glass {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.4);
}

/* Premium placeholder */
.img-placeholder {
  background: linear-gradient(145deg, #F5F2EC 0%, #EDE8DF 50%, #E4DDD1 100%);
  border: none;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.6) 0%, transparent 50%, rgba(255,255,255,0.2) 100%);
  pointer-events: none;
}
.img-placeholder-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-silver);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--c-silver-light);
  border-radius: var(--r-sm);
  position: relative;
  z-index: 1;
}
.img-placeholder-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  color: var(--c-text-secondary);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.img-placeholder-dim {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-text-muted);
  position: relative;
  z-index: 1;
}

/* --- 25. RESPONSIVE --- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero-content { padding-right: 0; max-width: 640px; }
  .hero-visual { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 900px) {
  nav.header-nav, .header-actions .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
  .screening-grid { grid-template-columns: 1fr; }
  .norwood-grid, .ludwig-grid { grid-template-columns: 1fr 1fr; }

  .treatments-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .results-grid { grid-template-columns: 1fr; }
  #consult-dock { display: none; }
  .hero-stat-1, .hero-stat-2, .hero-stat-3 { display: none; }
  .science-grid { grid-template-columns: 1fr; }
  .luxury-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  #whatsapp-float { bottom: 80px; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .header-inner { padding: 0 var(--sp-5); }
  .norwood-grid, .ludwig-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
  .funnel-container { padding: 0 var(--sp-4); }
  .testimonial-card { min-width: 300px; }
  .footer-main { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gender-selector { flex-direction: column; align-items: center; }
  .gender-btn { max-width: 100%; width: 100%; }
  .popup-email-form { flex-direction: column; }
  .section-wrap { padding: 0 var(--sp-5); }
}

@media (min-width: 901px) {
  #sticky-cta { display: none !important; }
}

/* --- 26. PRINT --- */
@media print {
  #site-header, #whatsapp-float, #sticky-cta, #exit-popup,
  #consult-dock, #loading-screen, #cursor-glow, #info-strip { display: none; }
  body { background: white; color: black; }
}

/* ============================================================
   LIFECYCLE REBUILD  -  new components (2026)
   Stage maps, funnel grid, stop-loss, flagship, membership.
   --r-card kept <= 8px per brand brief.
   ============================================================ */
:root {
  --r-card: 8px;
  --accent: var(--c-gold);
  --c-amber: #C2974B;
  --c-rose:  #B06A86;
  --c-clinical: #5E7186;
}

/* Accent map for stage components */
.accent-teal     { --accent: #1D6A8A; }
.accent-amber    { --accent: var(--c-amber); }
.accent-rose     { --accent: var(--c-rose); }
.accent-clinical { --accent: var(--c-clinical); }
.accent-flagship { --accent: #1A1918; }

.hidden { display: none !important; }

/* --- INFO STRIP (replaces fake-urgency banner) --- */
#info-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--banner-h);
  z-index: 1001;
  background: var(--c-charcoal);
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-5);
  font-size: var(--text-xs);
  letter-spacing: 0.03em;
}
#info-strip .info-strip-sep { opacity: 0.4; }
#info-strip .info-strip-link { color: var(--c-gold-pale); font-weight: 600; }
#info-strip .info-strip-link:hover { color: #fff; text-decoration: underline; }
#info-strip .info-strip-phone { margin-left: var(--sp-4); color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
@media (max-width: 700px) {
  #info-strip .info-strip-text, #info-strip .info-strip-sep { display: none; }
  #info-strip { justify-content: space-between; }
}

/* --- NAV dropdown: click / keyboard open --- */
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- HERO: reserve fixed-header space + top-align so content never tucks
       under the fixed header on shorter (laptop) viewports --- */
#hero { padding-top: calc(var(--banner-h) + var(--header-h)); align-items: flex-start; }
.hero-inner { padding-top: var(--sp-10); padding-bottom: var(--sp-12); }
.hero-content { align-self: center; }

/* --- HERO image + floating cards --- */
.hero-img-container { aspect-ratio: 3/4; box-shadow: var(--shadow-xl); }
.hero-img-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--sp-3);
  animation: floatY 6s ease-in-out infinite;
}
.hero-float-1 { left: -36px; top: 14%; }
.hero-float-2 { right: -30px; top: 46%; animation-delay: -2s; }
.hero-float-3 { left: -24px; bottom: 12%; animation-delay: -4s; }
.hfc-step { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--accent, var(--c-gold)); }
.hero-float-card .hfc-title { font-weight: 600; font-size: var(--text-sm); color: var(--c-charcoal); }
.hero-float-card .hfc-sub { font-size: var(--text-xs); color: var(--c-text-muted); }
@media (max-width: 1100px) { .hero-float-card { display: none; } }

.hero-scroll-cue {
  position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs); color: var(--c-text-muted); letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll-cue .scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--c-gold), transparent); animation: floatY 2s ease-in-out infinite; }
@media (max-width: 1024px) { .hero-scroll-cue { display: none; } }

/* --- Generic section vertical rhythm for new sections --- */
#trust-strip, #entry-offer, #how-it-works, #stop-loss, #stage-pathways,
#pathway-compare, #flagship, #membership, #science, #specialist { padding: var(--sp-24) 0; }
@media (max-width: 768px) {
  #trust-strip, #entry-offer, #how-it-works, #stop-loss, #stage-pathways,
  #pathway-compare, #flagship, #membership, #science, #specialist { padding: var(--sp-16) 0; }
}

/* --- TRUST STRIP --- */
#trust-strip { background: var(--c-bg-2); border-block: 1px solid var(--c-border); padding: var(--sp-16) 0; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-8); }
.ts-item { display: flex; flex-direction: column; gap: var(--sp-2); }
.ts-key { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; color: var(--c-gold); line-height: 1; }
.ts-val { font-size: var(--text-sm); color: var(--c-text-secondary); line-height: 1.5; }
@media (max-width: 860px) { .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); } }

/* --- ENTRY OFFER --- */
.entry-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-16); align-items: center; }
.entry-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3) var(--sp-5); margin: var(--sp-6) 0; }
.entry-list li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--c-text-secondary); }
.entry-list svg { width: 16px; height: 16px; color: var(--c-gold); flex-shrink: 0; }
.entry-price-pill {
  display: inline-block; background: var(--c-gold-bg); border: 1px solid var(--c-gold-pale);
  color: var(--c-gold); border-radius: var(--r-full); padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm); font-weight: 600;
}
.entry-fineprint { font-size: var(--text-xs); color: var(--c-text-muted); margin-top: var(--sp-3); max-width: 460px; }
.entry-visual { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-lg); }
.entry-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.entry-visual-tag {
  position: absolute; left: var(--sp-4); bottom: var(--sp-4);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  border-radius: var(--r-full); padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs); font-weight: 600; color: var(--c-charcoal);
}
@media (max-width: 920px) { .entry-grid { grid-template-columns: 1fr; gap: var(--sp-10); } .entry-list { grid-template-columns: 1fr; } }

/* --- FUNNEL: stage grid --- */
.funnel-stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin-top: var(--sp-6); }
.funnel-stage-card {
  position: relative; text-align: left; padding: var(--sp-5);
  background: var(--c-surface); border: 1.5px solid var(--c-border-mid);
  border-left: 4px solid var(--accent); border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: var(--sp-1);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.funnel-stage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.funnel-stage-card.selected { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.funnel-stage-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.fsc-code { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--accent); }
.fsc-label { font-weight: 600; font-size: var(--text-sm); color: var(--c-charcoal); }
.fsc-context { font-size: var(--text-xs); color: var(--c-text-muted); }
.funnel-stage-help { text-align: center; font-size: var(--text-xs); color: var(--c-text-muted); margin-top: var(--sp-4); }
.funnel-hint { font-size: var(--text-xs); color: var(--c-error); margin-bottom: var(--sp-2); opacity: 0; transition: opacity var(--dur-fast); }
@media (max-width: 720px) { .funnel-stage-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .funnel-stage-grid { grid-template-columns: 1fr; } }

/* --- FUNNEL: consent / lead status / phone field --- */
.phone-field { position: relative; flex: 1; }
.consent-row, .wa-optin {
  display: flex; align-items: flex-start; gap: var(--sp-3); cursor: pointer;
  font-size: var(--text-sm); color: var(--c-text-secondary); line-height: 1.5;
}
.consent-row input, .wa-optin input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-box {
  flex-shrink: 0; width: 22px; height: 22px; border: 1.5px solid var(--c-border-mid);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  background: var(--c-surface); transition: all var(--dur-fast); margin-top: 1px;
}
.consent-box svg { width: 14px; height: 14px; color: #fff; opacity: 0; transition: opacity var(--dur-fast); }
.consent-row input:checked + .consent-box, .wa-optin input:checked + .consent-box { background: var(--c-gold); border-color: var(--c-gold); }
.consent-row input:checked + .consent-box svg, .wa-optin input:checked + .consent-box svg { opacity: 1; }
.consent-row input:focus-visible + .consent-box, .wa-optin input:focus-visible + .consent-box { outline: 3px solid var(--c-gold-pale); outline-offset: 2px; }
.consent-text a { color: var(--c-gold); text-decoration: underline; }
.consent-error { margin-top: calc(var(--sp-2) * -1); }
.consent-error.visible { opacity: 1; }
.lead-status { font-size: var(--text-sm); border-radius: var(--r-card); }
.lead-status.success { display: none; }
.lead-status.error.visible { display: block; background: var(--c-error-bg); color: var(--c-error); padding: var(--sp-3) var(--sp-4); }
.lead-status.error a { color: var(--c-gold); text-decoration: underline; }
.btn-continue.loading { opacity: 0.7; pointer-events: none; }

/* --- FUNNEL: results redesign --- */
.result-stab-banner {
  background: var(--c-gold-bg); border: 1px solid var(--c-gold-pale); color: var(--c-text-secondary);
  border-radius: var(--r-card); padding: var(--sp-3) var(--sp-5); font-size: var(--text-sm);
  margin-bottom: var(--sp-6);
}
.result-stab-banner strong { color: var(--c-gold); }
.results-subhead { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: var(--sp-4); color: var(--c-charcoal); }
.result-items { display: grid; gap: var(--sp-2); }
.result-items li {
  position: relative; padding-left: var(--sp-6); font-size: var(--text-sm); color: var(--c-text-secondary); line-height: 1.5;
}
.result-items li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 14px; height: 14px;
  background: var(--c-gold-bg); border: 1px solid var(--c-gold-pale); border-radius: 50%;
}
.result-phase { margin-bottom: var(--sp-5); padding-left: var(--sp-4); border-left: 3px solid var(--c-gold-pale); }
.result-phase-name { font-weight: 600; font-size: var(--text-sm); color: var(--c-charcoal); margin-bottom: var(--sp-2); }
.result-referral-note {
  display: flex; gap: var(--sp-3); margin-top: var(--sp-5);
  background: var(--c-blue-hint); border: 1px solid var(--c-blue-mid); border-radius: var(--r-card);
  padding: var(--sp-4); font-size: var(--text-sm); color: var(--c-text-secondary); line-height: 1.55;
}
.result-referral-note svg { width: 20px; height: 20px; color: var(--c-blue-deep); flex-shrink: 0; }
.result-price { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--sp-3); }
.rp-amount { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; color: #fff; line-height: 1.1; }
.rp-note { font-size: var(--text-xs); color: rgba(255,255,255,0.6); }
.sidebar-divider { height: 1px; background: rgba(255,255,255,0.14); margin: var(--sp-4) 0; }
.result-cta-wrap { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-5); }
.result-wa { text-align: center; font-size: var(--text-sm); color: rgba(255,255,255,0.7); font-weight: 500; }
.result-wa:hover { color: #fff; }
.results-disclaimer {
  background: var(--c-blue-hint); border: 1px solid var(--c-blue-mid); border-radius: var(--r-card);
  padding: var(--sp-4) var(--sp-5); font-size: var(--text-xs); color: var(--c-text-secondary);
  line-height: 1.7; margin-top: var(--sp-5);
}
.results-disclaimer a { color: var(--c-blue-deep); text-decoration: underline; }

/* --- HOW IT WORKS / lifecycle --- */
.lifecycle-track {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3);
  counter-reset: lc;
}
.lifecycle-node {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-card); padding: var(--sp-5) var(--sp-6); min-width: 130px; flex: 1;
  position: relative;
}
.lifecycle-node:not(:last-child)::after {
  content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  color: var(--c-gold); font-weight: 600; z-index: 1;
}
.ln-num { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--c-gold); letter-spacing: 0.1em; }
.ln-label { font-family: var(--font-display); font-size: var(--text-md); color: var(--c-charcoal); font-weight: 500; }
@media (max-width: 900px) { .lifecycle-node { min-width: 100px; } .lifecycle-node:not(:last-child)::after { display: none; } }

/* --- STOP LOSS --- */
#stop-loss { background: var(--c-bg-2); }
.stoploss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.stoploss-visual { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-lg); }
.stoploss-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.stoploss-points { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-6); }
.sl-point { display: flex; align-items: center; gap: var(--sp-3); font-weight: 500; color: var(--c-charcoal); }
.sl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-gold); flex-shrink: 0; }
@media (max-width: 920px) { .stoploss-grid { grid-template-columns: 1fr; gap: var(--sp-8); } .stoploss-visual { order: -1; } }

/* --- STAGE MAP --- */
.pathway-toggle { display: inline-flex; gap: var(--sp-1); padding: var(--sp-1); background: var(--c-bg-3); border-radius: var(--r-full); margin: 0 auto var(--sp-10); justify-self: center; display: flex; width: fit-content; }
.pathway-toggle button {
  padding: var(--sp-2) var(--sp-6); border-radius: var(--r-full); font-size: var(--text-sm); font-weight: 600;
  color: var(--c-text-secondary); transition: all var(--dur-fast);
}
.pathway-toggle button.active { background: var(--c-charcoal); color: #fff; box-shadow: var(--shadow-sm); }
.pathway-toggle { display: flex; }
#stage-pathways .section-wrap { display: flex; flex-direction: column; }
.pathway-toggle { align-self: center; }

.stage-map-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.stage-map-card {
  position: relative; background: var(--c-surface); border: 1px solid var(--c-border);
  border-top: 4px solid var(--accent); border-radius: var(--r-card); padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-2);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.stage-map-card:hover, .stage-map-card:focus-within { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stage-map-card.is-flagship { border: 1px solid var(--c-charcoal); border-top: 4px solid var(--c-charcoal); background: linear-gradient(180deg, #fff 0%, var(--c-bg-2) 100%); }
.stage-flag {
  position: absolute; top: -11px; left: var(--sp-6); background: var(--c-charcoal); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px var(--sp-3); border-radius: var(--r-full);
}
.stage-map-top { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-2); }
.stage-map-code { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--accent); line-height: 1; }
.stage-map-context { font-size: var(--text-xs); color: var(--c-text-muted); text-align: right; }
.stage-map-offer { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--c-charcoal); margin-top: var(--sp-1); }
.stage-map-avatar { font-size: var(--text-sm); color: var(--c-text-secondary); line-height: 1.5; }
.stage-map-items { display: flex; flex-direction: column; gap: var(--sp-1); margin: var(--sp-2) 0 var(--sp-4); }
.stage-map-items li { position: relative; padding-left: var(--sp-4); font-size: var(--text-xs); color: var(--c-text-secondary); }
.stage-map-items li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.stage-map-foot { margin-top: auto; padding-top: var(--sp-4); border-top: 1px solid var(--c-border); }
.stage-map-price { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--c-charcoal); margin-bottom: var(--sp-3); }
.stage-map-cta {
  width: 100%; text-align: center; padding: var(--sp-3); border-radius: var(--r-card);
  background: var(--c-bg-2); color: var(--c-charcoal); font-weight: 600; font-size: var(--text-sm);
  border: 1px solid var(--c-border-mid); transition: all var(--dur-fast);
}
.stage-map-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
@media (max-width: 980px) { .stage-map-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .stage-map-grid { grid-template-columns: 1fr; } }

/* --- PREMIUM vs GENERAL --- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); max-width: 920px; margin: 0 auto; }
.compare-card { position: relative; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card); padding: var(--sp-8); }
.compare-card.featured { border: 2px solid var(--c-gold); box-shadow: var(--shadow-lg); }
.compare-badge { position: absolute; top: -12px; left: var(--sp-8); background: var(--c-gold); color: #fff; font-size: var(--text-xs); font-weight: 600; padding: 3px var(--sp-4); border-radius: var(--r-full); }
.compare-head { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--c-charcoal); margin-bottom: var(--sp-5); }
.compare-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.compare-list li { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--text-sm); color: var(--c-text-secondary); }
.compare-list svg { width: 16px; height: 16px; color: var(--c-gold); flex-shrink: 0; margin-top: 3px; }
.compare-note { text-align: center; font-size: var(--text-xs); color: var(--c-text-muted); margin-top: var(--sp-6); }
@media (max-width: 720px) { .compare-grid { grid-template-columns: 1fr; } }

/* --- FLAGSHIP (dark) --- */
#flagship { background: var(--c-charcoal); color: rgba(255,255,255,0.86); }
.flagship-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-16); align-items: center; }
.flagship-title { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 400; color: #fff; margin: var(--sp-3) 0 var(--sp-5); }
.flagship-title em { color: var(--c-gold-light); font-style: italic; }
.flagship-lead { font-size: var(--text-md); line-height: 1.7; color: rgba(255,255,255,0.78); margin-bottom: var(--sp-8); }
.flagship-lead em { color: #fff; font-style: italic; }
.flagship-phases { display: flex; flex-direction: column; gap: var(--sp-5); margin-bottom: var(--sp-8); }
.fp-item { display: flex; gap: var(--sp-4); }
.fp-num { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--c-gold-light); font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fp-name { font-weight: 600; color: #fff; margin-bottom: 2px; }
.fp-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.65); line-height: 1.55; }
.flagship-foot { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }
.flagship-price { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: #fff; }
.flagship-price span { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(255,255,255,0.55); font-weight: 400; }
.flagship-visual { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-xl); }
.flagship-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 920px) { .flagship-grid { grid-template-columns: 1fr; gap: var(--sp-10); } .flagship-visual { order: -1; } }

/* --- MEMBERSHIP --- */
#membership { background: var(--c-bg-2); }
.membership-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-16); align-items: center; }
.membership-visual { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-lg); }
.membership-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.membership-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2) var(--sp-5); margin: var(--sp-6) 0; }
.membership-list li { position: relative; padding-left: var(--sp-5); font-size: var(--text-sm); color: var(--c-text-secondary); }
.membership-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--c-gold); }
.membership-foot { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; margin-top: var(--sp-4); }
.membership-price { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; color: var(--c-charcoal); }
.membership-price span { font-family: var(--font-body); font-size: var(--text-md); color: var(--c-text-muted); font-weight: 400; }
.membership-note { font-size: var(--text-xs); color: var(--c-text-muted); margin-top: var(--sp-4); }
@media (max-width: 920px) { .membership-grid { grid-template-columns: 1fr; gap: var(--sp-8); } .membership-visual { order: -1; } .membership-list { grid-template-columns: 1fr; } }

/* --- SCIENCE --- */
.science-readmore { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-8); font-weight: 600; color: var(--c-charcoal); transition: gap var(--dur-fast); }
.science-readmore:hover { gap: var(--sp-3); color: var(--c-gold); }

/* --- SPECIALIST --- */
.specialist-card { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--sp-12); align-items: center; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-card); padding: var(--sp-8); box-shadow: var(--shadow-sm); }
.specialist-visual { border-radius: var(--r-card); overflow: hidden; }
.specialist-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.specialist-ig { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-5); font-weight: 600; color: var(--c-gold); }
.specialist-ig svg { width: 20px; height: 20px; }
.specialist-ig:hover { text-decoration: underline; }
@media (max-width: 820px) { .specialist-card { grid-template-columns: 1fr; } .specialist-visual { max-width: 300px; } }

/* --- FAQ search wrap --- */
.faq-search-wrap { margin-top: var(--sp-5); }
#faq-search { width: 100%; max-width: 420px; padding: var(--sp-3) var(--sp-5); border: 1.5px solid var(--c-border-mid); border-radius: var(--r-full); font-size: var(--text-sm); outline: none; transition: border-color var(--dur-fast); }
#faq-search:focus { border-color: var(--c-gold); }

/* --- CTA secondary on dark --- */
.cta-secondary-dark { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.cta-secondary-dark:hover { background: #fff; color: var(--c-charcoal); border-color: #fff; }

/* --- Referral WhatsApp --- */
.referral-wa { display: inline-flex; align-items: center; gap: var(--sp-2); color: #1A8a4f; font-weight: 600; font-size: var(--text-sm); }
.referral-cta-group { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }

/* --- Exit popup additions --- */
.exit-popup-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--c-gold-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-5); }
.exit-popup-cta { width: 100%; justify-content: center; }
.exit-popup-fine { font-size: var(--text-xs); color: var(--c-text-muted); margin-top: var(--sp-4); }
.exit-popup-fine a { color: var(--c-gold); }

/* --- Footer logo (white on dark) --- */
.footer-logo { filter: brightness(0) invert(1); }
.footer-location { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }

/* --- Mobile hero: avoid tall empty gap when visual is hidden --- */
@media (max-width: 1024px) {
  #hero { min-height: auto; align-items: flex-start; }
  .hero-inner { padding-bottom: var(--sp-12); }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-float-card, .particle, .hero-gradient-orb, .scroll-line, .wa-pulse { animation: none !important; }
}

