/* ===== BOSS Development — design tokens ===== */
:root{
  --bg: #0a0a0b;
  --bg-1: #0f0f11;
  --bg-2: #16161a;
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.14);
  --text: #f5f5f7;
  --text-dim: #a5a5ad;
  --text-dimmer: #74747c;
  --red: #e5252c;
  --red-bright: #ff4550;
  --red-dim: #7a1418;
  --neon: #ff2d3f;
  --neon-glow-sm: 0 0 8px rgba(255,45,63,0.7), 0 0 18px rgba(255,45,63,0.4);
  --neon-glow-lg: 0 0 12px rgba(255,45,63,0.85), 0 0 36px rgba(255,45,63,0.5), 0 0 64px rgba(255,45,63,0.25);
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --radius: 16px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-weight:800; letter-spacing:-0.02em; }
p{ margin:0; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.accent{
  color: var(--neon);
  text-shadow: var(--neon-glow-sm);
  animation: neonBreathe 4s ease-in-out infinite;
}
h1 .accent, h2 .accent{ text-shadow: var(--neon-glow-lg); }
.brand-name .accent{
  text-shadow: 0 0 6px rgba(255,45,63,0.9), 0 0 14px rgba(255,45,63,0.6);
  animation: neonDot 2.4s ease-in-out infinite;
}
@keyframes neonBreathe{
  0%,100%{ opacity:1; }
  50%{ opacity:0.82; }
}
@keyframes neonDot{
  0%,100%{ text-shadow: 0 0 6px rgba(255,45,63,0.9), 0 0 14px rgba(255,45,63,0.6); }
  50%{ text-shadow: 0 0 10px rgba(255,45,63,1), 0 0 26px rgba(255,45,63,0.85); }
}

.noise-overlay{
  position: fixed; inset:0; pointer-events:none; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity:0.5;
}

.cursor-glow{
  position: fixed; top:0; left:0; width:600px; height:600px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,45,63,0.16) 0%, rgba(255,45,63,0.04) 45%, rgba(255,45,63,0) 70%);
  pointer-events:none; z-index:2;
  opacity:0; transition: opacity .4s ease;
  will-change: transform;
  mix-blend-mode: screen;
}
.cursor-glow.active{ opacity:1; }

/* Neon section divider */
.neon-divider{
  position:relative; height:2px; width:100%;
  background: linear-gradient(90deg, transparent, rgba(255,45,63,0.9) 20%, rgba(255,45,63,0.9) 80%, transparent);
  box-shadow: 0 0 12px 1px rgba(255,45,63,0.7), 0 0 30px 4px rgba(255,45,63,0.35);
  overflow:visible;
}
.neon-divider::after{
  content:''; position:absolute; top:-1px; height:4px; width:22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  filter: blur(1px);
  animation: shimmerLine 4.5s ease-in-out infinite;
}
@keyframes shimmerLine{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(320%); }
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(229,37,44,0.6);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 30px -6px rgba(229,37,44,0.75); }

.btn-neon{ position:relative; z-index:0; }
.btn-neon::before{
  content:''; position:absolute; inset:-2px; border-radius:999px; z-index:-1;
  background: conic-gradient(from 0deg, var(--neon), transparent 25%, transparent 75%, var(--neon));
  opacity:0; filter: blur(6px);
  transition: opacity .3s ease;
  animation: spinBorder 3s linear infinite;
}
.btn-neon:hover::before{ opacity:1; }
@keyframes spinBorder{ to{ transform: rotate(360deg); } }
.btn-ghost{
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-color: var(--border-2);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.btn-lg{ padding:16px 34px; font-size:16px; }
.btn-sm{ padding:10px 20px; font-size:14px; }
.btn-block{ width:100%; }

/* ===== Header ===== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 20px 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  background: rgba(10,10,11,0.8);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 12px 0;
  border-bottom-color: var(--border);
}
.header-inner{ display:flex; align-items:center; gap: 32px; }
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand-logo{ width:28px; height:28px; object-fit:contain; }
.brand-name{ font-weight:800; font-size:17px; letter-spacing:-0.02em; }
.main-nav{ display:flex; gap:28px; }
.main-nav a{
  font-size: 14.5px; font-weight:600; color: var(--text-dim);
  transition: color .2s ease;
  position:relative;
}
.main-nav a:hover{ color: var(--text); }
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ width:22px; height:2px; background:#fff; border-radius:2px; }
.header-cta{ flex-shrink:0; }

/* ===== Hero ===== */
.hero{
  position:relative;
  padding: 180px 0 60px;
  overflow:hidden;
  isolation:isolate;
}
.hero-bg{ position:absolute; inset:0; z-index:-2; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; filter: grayscale(60%) contrast(1.05); opacity:0.35; }
.hero-bg-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.85) 55%, var(--bg) 100%);
}
.hero-grid{
  position:absolute; inset:0; z-index:-1; opacity:0.35;
  background-image:
    linear-gradient(rgba(255,45,63,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,63,0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 100%);
  animation: gridDrift 16s linear infinite;
}
@keyframes gridDrift{
  0%{ background-position: 0 0, 0 0; }
  100%{ background-position: 48px 48px, 48px 48px; }
}
.hero-glow{
  position:absolute; top:-200px; left:50%; width:900px; height:900px; margin-left:-450px;
  background: radial-gradient(circle, rgba(229,37,44,0.28) 0%, rgba(229,37,44,0) 65%);
  z-index:-1;
  animation: pulseGlow 8s ease-in-out infinite;
}
.hero-glow-2{
  position:absolute; bottom:-160px; left:20%; width:520px; height:520px;
  background: radial-gradient(circle, rgba(255,45,63,0.18) 0%, rgba(255,45,63,0) 70%);
  z-index:-1; animation: pulseGlow 10s ease-in-out infinite reverse;
}
@keyframes pulseGlow{
  0%,100%{ opacity:0.7; transform: scale(1); }
  50%{ opacity:1; transform: scale(1.08); }
}
.hero-inner{ text-align:center; max-width: 880px; margin:0 auto; }
.eyebrow{
  display:inline-block; font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  color: var(--red-bright); background: rgba(229,37,44,0.1); border:1px solid rgba(229,37,44,0.35);
  padding:8px 18px; border-radius:999px; margin-bottom:28px;
}
.hero h1{ font-size: clamp(2.2rem, 5vw, 3.8rem); line-height:1.12; margin-bottom:24px; }
.hero-lead{ font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-dim); max-width:640px; margin:0 auto 36px; }
.hero-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:16px; }
.hero-note{ font-size:13.5px; color: var(--text-dimmer); }

.stats-bar{
  margin-top: 90px;
  display:grid; grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
}
.stat{ background: rgba(255,255,255,0.02); padding: 30px 24px; text-align:center; }
.stat-icon{
  width:40px; height:40px; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; background: rgba(255,45,63,0.08); border:1px solid rgba(255,45,63,0.28);
  color: var(--red-bright);
}
.stat-icon svg{ width:20px; height:20px; }
.stat-num{ font-size: clamp(2rem, 3vw, 2.6rem); font-weight:800; color:#fff; margin-bottom:8px; letter-spacing:-0.02em; text-shadow: 0 0 18px rgba(255,45,63,0.35); }
.stat-label{ font-size:13.5px; color: var(--text-dim); line-height:1.4; }

/* ===== Sections ===== */
.section{ padding: 110px 0; position:relative; }
.section-alt{ background: var(--bg-1); }
.section-head{ max-width:720px; margin: 0 auto 56px; text-align:center; }
.section-head h2{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 14px 0 0; }
.section-sub{ margin-top:16px; color: var(--text-dim); font-size:16px; }
.tag{
  display:inline-block; font-size:12.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color: var(--red-bright);
}

.check-list li{
  position:relative; padding: 10px 0 10px 34px; color: var(--text-dim); font-size:15.5px;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child{ border-bottom:none; }
.check-list li::before{
  content:''; position:absolute; left:0; top:12px; width:19px; height:19px; border-radius:50%;
  background: rgba(255,45,63,0.1); border:1px solid rgba(255,45,63,0.4);
}
.check-list li::after{
  content:''; position:absolute; left:6.5px; top:17.5px; width:6px; height:3px;
  border-left:2px solid var(--red-bright); border-bottom:2px solid var(--red-bright);
  transform: rotate(-48deg);
}
.check-list-lg li{ font-size:16.5px; color: var(--text); }

/* Pain */
.pain-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:start; }
.pain-lead{ font-size: clamp(1.3rem,2.4vw,1.7rem); font-weight:700; margin-bottom:28px; letter-spacing:-0.01em; }
.pain-card{
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius);
  padding: 36px;
}
.pain-card h3{ font-size:1.3rem; margin-bottom:16px; }
.pain-card p{ color: var(--text-dim); margin-bottom:18px; }
.role-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:22px; }
.role-chips span{
  font-size:13.5px; font-weight:600; padding:8px 16px; border-radius:999px;
  background: rgba(229,37,44,0.08); border:1px solid rgba(229,37,44,0.3); color: #ffb3b6;
}
.pain-footnote{ font-size:14.5px; color: var(--text-dimmer); border-top:1px solid var(--border); padding-top:18px; margin-bottom:0 !important; }

/* Challenges */
.grid-4{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.challenge-card{
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius); padding:30px 26px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.challenge-card:hover{ transform: translateY(-6px); border-color: rgba(255,45,63,0.5); background:#1a1a1e; box-shadow: 0 16px 40px -16px rgba(255,45,63,0.35), 0 0 0 1px rgba(255,45,63,0.15) inset; }
.challenge-icon{
  width:46px; height:46px; margin-bottom:18px;
  display:flex; align-items:center; justify-content:center;
  border-radius:12px; background: rgba(255,45,63,0.08); border:1px solid rgba(255,45,63,0.25);
  color: var(--red-bright);
  transition: box-shadow .3s ease, color .3s ease;
}
.challenge-icon svg{ width:22px; height:22px; }
.challenge-card:hover .challenge-icon{ box-shadow: var(--neon-glow-sm); color: var(--neon); }
.challenge-card h3{ font-size:1.15rem; margin-bottom:14px; }
.challenge-card ul li{ font-size:14px; color: var(--text-dim); padding:6px 0 6px 16px; position:relative; }
.challenge-card ul li::before{ content:''; position:absolute; left:0; top:14px; width:5px; height:5px; border-radius:50%; background: var(--red); }

/* Consequences */
.consequences{ position:relative; text-align:center; isolation:isolate; padding:130px 0; }
.consequences-bg{ position:absolute; inset:0; z-index:-1; }
.consequences-bg img{ width:100%; height:100%; object-fit:cover; filter: grayscale(80%) brightness(0.35); }
.consequences-lead{ font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight:800; margin: 18px 0 20px; letter-spacing:-0.02em; }
.consequences-sub{ color: var(--text-dim); margin-bottom:22px; font-size:16px; }
.consequences-list{ display:flex; justify-content:center; flex-wrap:wrap; gap:14px; }
.consequences-list span{
  font-size:14.5px; font-weight:700; padding:12px 24px; border-radius:999px;
  border:1px solid var(--border-2); background: rgba(255,255,255,0.03);
}

/* Growth story */
.growth-panel{
  position:relative; height:340px; border-radius: var(--radius);
  background: var(--bg-2); border:1px solid var(--border); overflow:hidden;
}
.growth-grid{
  position:absolute; inset:0; opacity:0.5;
  background-image:
    linear-gradient(rgba(255,45,63,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,63,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 70%, #000 30%, transparent 100%);
}
.growth-dot{
  position:absolute; width:12px; height:12px; border-radius:50%; z-index:2;
  top:60%; opacity:0;
}
.growth-dot-a{ left:6%; background:#fff; box-shadow:0 0 10px #fff; }
.growth-dot-b{ left:30%; background: var(--neon); box-shadow:0 0 14px var(--neon); }
.growth-flash{
  position:absolute; left:18%; top:66%; width:16px; height:16px; margin:-8px 0 0 -8px;
  border-radius:50%; z-index:3; opacity:0;
  background: radial-gradient(circle, #fff, var(--neon) 55%, transparent 100%);
}
.growth-svg{ position:absolute; inset:0; width:100%; height:100%; z-index:1; }
.growth-line-base{
  fill:none; stroke: var(--neon); stroke-width:3; stroke-linecap:round; stroke-linejoin:round;
  filter: drop-shadow(0 0 6px rgba(255,45,63,0.8));
  stroke-dasharray:200; stroke-dashoffset:200;
}
.growth-line-growth{
  fill:none; stroke:#2ecc71; stroke-width:3; stroke-linecap:round; stroke-linejoin:round;
  filter: drop-shadow(0 0 6px rgba(46,204,113,0.8));
  stroke-dasharray:300; stroke-dashoffset:300;
}
.growth-spark{
  fill:#2ecc71; filter: drop-shadow(0 0 8px #2ecc71);
  offset-path: path('M70,150 L120,168 L160,140 L200,155 L240,110 L280,120 L320,70 L370,30');
  offset-distance:0%; opacity:0;
}
.growth-counter{
  position:absolute; top:24px; right:28px; z-index:2; text-align:right;
  font-size: clamp(2rem,4vw,2.8rem); font-weight:800; color:#fff; font-variant-numeric:tabular-nums;
  text-shadow: 0 0 18px rgba(255,45,63,0.4); opacity:0;
}
.growth-counter::after{ content:''; }
.growth-months{
  position:absolute; bottom:16px; left:24px; right:24px; z-index:2;
  display:flex; justify-content:space-between; font-size:11.5px; color: var(--text-dimmer);
  font-variant-numeric:tabular-nums;
}

.growth-panel.is-active .growth-dot-a{
  animation: dotAMerge 1.1s ease-out forwards;
}
.growth-panel.is-active .growth-dot-b{
  animation: dotBMerge 1.1s ease-out forwards;
}
.growth-panel.is-active .growth-flash{
  animation: flashPulse 1.6s ease-out 1.0s forwards;
}
.growth-panel.is-active .growth-line-base{
  animation: lineDraw 0.5s ease-out 1.7s forwards;
}
.growth-panel.is-active .growth-line-growth{
  animation: lineGrowthDraw 3.2s linear 3.1s infinite;
}
.growth-panel.is-active .growth-spark{
  animation: sparkTravel 3.2s linear 3.1s infinite, sparkFade 3.2s linear 3.1s infinite;
}
.growth-panel.is-active .growth-counter{
  animation: counterFadeIn 0.6s ease-out 1.7s forwards;
}

@keyframes dotAMerge{
  0%{ opacity:1; transform: translate(0,0); }
  85%{ opacity:1; }
  100%{ opacity:0; transform: translate(11.5%, 5.5%); }
}
@keyframes dotBMerge{
  0%{ opacity:1; transform: translate(0,0); }
  85%{ opacity:1; }
  100%{ opacity:0; transform: translate(-11%, 5.5%); }
}
@keyframes flashPulse{
  0%{ opacity:0; transform: scale(0.4); }
  30%{ opacity:1; transform: scale(1.6); }
  60%{ opacity:0.9; transform: scale(1); }
  100%{ opacity:0.55; transform: scale(0.85); }
}
@keyframes lineDraw{
  to{ stroke-dashoffset:0; }
}
@keyframes lineGrowthDraw{
  0%{ stroke-dashoffset:300; }
  38.7%{ stroke-dashoffset:300; }
  100%{ stroke-dashoffset:0; }
}
@keyframes sparkTravel{
  from{ offset-distance:0%; }
  to{ offset-distance:100%; }
}
@keyframes sparkFade{
  0%{ opacity:0; } 8%{ opacity:1; } 90%{ opacity:1; } 100%{ opacity:0; }
}
@keyframes counterFadeIn{
  to{ opacity:1; }
}

/* About */
.about-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:56px; align-items:center; }
.about-grid h2{ font-size: clamp(1.7rem,3vw,2.3rem); margin: 14px 0 22px; }
.lead-text{ font-size:17px; color: var(--text-dim); margin-bottom:22px; }
.mission-quote{
  font-size:16px; font-weight:600; padding-left:20px; border-left:3px solid var(--red);
  color: var(--text);
}
.who-card{ background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius); padding:36px; }
.who-card h3{ font-size:1.3rem; margin-bottom:6px; }
.who-sub{ color: var(--text-dim); margin-bottom:16px; font-size:14.5px; }

/* Timeline */
.timeline{ display:grid; grid-template-columns: repeat(5,1fr); gap:20px; margin-bottom:70px; }
.timeline-step{
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius); padding:28px 22px;
  position:relative;
  transition: transform .3s ease, border-color .3s ease;
}
.timeline-step:hover{ transform: translateY(-6px); border-color: rgba(255,45,63,0.5); box-shadow: 0 16px 40px -16px rgba(255,45,63,0.35); }
.timeline-num{ font-size:13px; font-weight:800; color: var(--red-bright); margin-bottom:14px; letter-spacing:0.05em; }
.timeline-step h3{ font-size:1.05rem; margin-bottom:10px; }
.timeline-step p{ font-size:13.5px; color: var(--text-dim); line-height:1.5; }

.diagnosis-result{
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border:1px solid var(--border); border-radius: var(--radius);
  padding: 44px;
}
.diagnosis-text h3{ font-size:1.4rem; margin-bottom:14px; }
.diagnosis-text p{ color: var(--text-dim); max-width:760px; margin-bottom:28px; }
.diagnosis-cards{ display:grid; grid-template-columns: repeat(4,1fr); gap:14px; margin-bottom:22px; }
.mini-card{
  background: rgba(229,37,44,0.06); border:1px solid rgba(229,37,44,0.25);
  border-radius:12px; padding:20px 16px; text-align:center; font-weight:700; font-size:14px; color:#ffd6d8;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.mini-card svg{ width:24px; height:24px; color: var(--red-bright); }
.pricing-note{ font-size:13.5px; color: var(--text-dimmer); border-top:1px solid var(--border); padding-top:18px; }

/* Services */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.service-card{
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius); padding:32px 28px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.service-card:hover{ transform: translateY(-6px); border-color: rgba(255,45,63,0.5); background:#1a1a1e; box-shadow: 0 16px 40px -16px rgba(255,45,63,0.35), 0 0 0 1px rgba(255,45,63,0.15) inset; }
.service-icon{
  width:50px; height:50px; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center;
  border-radius:13px; background: rgba(255,45,63,0.08); border:1px solid rgba(255,45,63,0.25);
  color: var(--red-bright);
  transition: box-shadow .3s ease, color .3s ease;
}
.service-icon svg{ width:24px; height:24px; }
.service-card:hover .service-icon{ box-shadow: var(--neon-glow-sm); color: var(--neon); }
.service-card h3{ font-size:1.2rem; margin-bottom:12px; }
.service-card p{ font-size:14.5px; color: var(--text-dim); }

/* Experts */
.expert-feature{
  display:grid; grid-template-columns: 260px 1fr; gap:44px; align-items:center;
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius);
  padding: 40px; margin-bottom: 32px;
}
.expert-photo-lg{ width:100%; border-radius:14px; aspect-ratio: 3/4; object-fit:cover; }
.expert-feature-text h3{ font-size:1.5rem; margin-bottom:6px; }
.expert-role{ color: var(--red-bright); font-weight:700; font-size:14px; margin-bottom:20px; }
.expert-quote{ margin-top:18px; font-style:italic; color: var(--text-dim); border-left:3px solid var(--red); padding-left:18px; }

.experts-grid{ margin-bottom:20px; }
.expert-card{
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align:center;
  transition: transform .3s ease, border-color .3s ease;
}
.expert-card:hover{ transform: translateY(-6px); border-color: rgba(255,45,63,0.5); box-shadow: 0 16px 40px -16px rgba(255,45,63,0.35); }
.expert-card:hover img{ box-shadow: var(--neon-glow-sm); border-color: rgba(255,45,63,0.6); }
.expert-card img{ transition: box-shadow .3s ease, border-color .3s ease; }
.expert-card img{ width:100px; height:100px; border-radius:50%; object-fit:cover; margin: 0 auto 16px; border:2px solid var(--border-2); }
.expert-card h4{ font-size:1.05rem; margin-bottom:4px; }
.expert-role-sm{ font-size:12.5px; color: var(--red-bright); font-weight:700; margin-bottom:12px; }
.expert-card p{ font-size:13.5px; color: var(--text-dim); }
.expert-card-solo{ max-width: 360px; margin: 0 auto; }

/* Track record */
.record-card{
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align:center;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.record-card:hover{ transform: translateY(-6px); border-color: rgba(255,45,63,0.5); box-shadow: 0 16px 40px -16px rgba(255,45,63,0.35); }
.record-icon{
  width:42px; height:42px; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  border-radius:12px; background: rgba(255,45,63,0.08); border:1px solid rgba(255,45,63,0.25);
  color: var(--red-bright);
}
.record-icon svg{ width:21px; height:21px; }
.record-num{ font-size: clamp(1.5rem,2.6vw,2rem); font-weight:800; color: var(--red-bright); margin-bottom:12px; text-shadow: var(--neon-glow-sm); }
.record-label{ font-size:13.5px; color: var(--text-dim); line-height:1.5; }

/* Difference */
.compare-table{ display:grid; grid-template-columns: 1fr 1fr; gap:1px; background: var(--border); border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; max-width:820px; margin:0 auto; }
.compare-col{ background: var(--bg-2); }
.compare-col-accent{ background: linear-gradient(160deg, rgba(229,37,44,0.12), rgba(229,37,44,0.03)); }
.compare-head{ padding:22px 26px; font-weight:800; font-size:16px; border-bottom:1px solid var(--border); }
.compare-col-accent .compare-head{ color: var(--red-bright); }
.compare-row{ padding:18px 26px; font-size:14.5px; color: var(--text-dim); border-bottom:1px solid var(--border); }
.compare-col-accent .compare-row{ color: var(--text); font-weight:600; }
.compare-row:last-child{ border-bottom:none; }

/* Results / international */
.results-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:56px; align-items:start; }
.results-grid h2{ font-size: clamp(1.5rem,2.6vw,2.1rem); margin:14px 0 22px; }
.intl-card{ background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius); padding:36px; }
.intl-card h3{ font-size:1.2rem; margin:10px 0 20px; }

/* Final CTA */
.final-cta{ text-align:center; position:relative; isolation:isolate; padding-bottom:140px; overflow:hidden; }
.hero-glow-cta{ top:auto; bottom:-300px; }
.final-cta h2{ font-size: clamp(1.7rem,3.6vw,2.6rem); max-width:780px; margin:0 auto 20px; line-height:1.25; }
.final-cta-sub{ color: var(--text-dim); font-size:17px; margin-bottom:48px; }

.contact-form{
  max-width: 620px; margin: 0 auto; text-align:left;
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius);
  padding: 36px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.contact-form input, .contact-form textarea{
  width:100%; background: var(--bg-1); border:1px solid var(--border-2); border-radius:10px;
  padding:14px 16px; color:#fff; font-family: var(--font); font-size:14.5px;
  transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus{ outline:none; border-color: var(--red); }
.contact-form textarea{ min-height:100px; resize:vertical; margin-bottom:18px; }
.form-note{ text-align:center; margin-top:16px; font-size:13px; color: var(--text-dimmer); }

/* Footer */
.site-footer{ border-top:1px solid var(--border); padding: 56px 0 24px; background: var(--bg-1); }
.footer-inner{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand{ display:flex; flex-direction:column; gap:14px; }
.footer-brand .brand-logo{ width:26px; height:26px; }
.footer-brand p{ color: var(--text-dimmer); font-size:14px; max-width:320px; }
.footer-nav, .footer-contact{ display:flex; flex-direction:column; gap:12px; }
.footer-nav h4, .footer-contact h4{ font-size:13px; text-transform:uppercase; letter-spacing:0.06em; color: var(--text-dimmer); margin-bottom:6px; }
.footer-nav a, .footer-contact a{ color: var(--text-dim); font-size:14.5px; transition: color .2s ease; }
.footer-nav a:hover, .footer-contact a:hover{ color: var(--red-bright); }
.footer-bottom{ border-top:1px solid var(--border); padding-top:22px; font-size:13px; color: var(--text-dimmer); }

/* ===== Reveal animation ===== */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .main-nav{ display:none; }
  .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .pain-grid, .about-grid, .results-grid{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .timeline{ grid-template-columns: repeat(2,1fr); }
  .diagnosis-cards{ grid-template-columns: repeat(2,1fr); }
  .expert-feature{ grid-template-columns:1fr; text-align:center; }
  .expert-photo-lg{ max-width:220px; margin:0 auto; }
  .expert-quote{ text-align:left; }
  .compare-table{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; }
}
@media (max-width: 620px){
  .stats-bar{ grid-template-columns: repeat(2,1fr); }
  .grid-4{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 1fr; }
  .diagnosis-cards{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .hero{ padding-top:140px; }
  .section{ padding:72px 0; }

  .main-nav.open{
    display:flex; position:fixed; top:64px; left:0; right:0; bottom:0;
    background: rgba(10,10,11,0.98); backdrop-filter: blur(10px);
    flex-direction:column; padding:32px 24px; gap:8px; z-index:99;
  }
  .main-nav.open a{ font-size:18px; padding:14px 0; border-bottom:1px solid var(--border); }
}

/* ===== Access gate ===== */
.gate{
  position:fixed; inset:0; z-index:10000;
  background: var(--bg);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
}
.gate::before{
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,45,63,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,63,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 30%, transparent 100%);
}
.gate.is-unlocked{ display:none; }
.gate-card{
  position:relative; z-index:1; width:100%; max-width:360px; text-align:center;
  background: var(--bg-2); border:1px solid var(--border); border-radius: var(--radius);
  padding:40px 32px;
}
.gate-logo{ width:40px; height:40px; margin:0 auto 18px; object-fit:contain; }
.gate-card h1{ font-size:1.3rem; margin-bottom:10px; }
.gate-card p{ font-size:14px; color: var(--text-dim); margin-bottom:22px; }
.gate-card input{
  width:100%; background: var(--bg-1); border:1px solid var(--border-2); border-radius:10px;
  padding:14px 16px; color:#fff; font-family: var(--font); font-size:15px; text-align:center;
  margin-bottom:16px; transition: border-color .2s ease;
}
.gate-card input:focus{ outline:none; border-color: var(--red); }
.gate-error{
  display:none; color: var(--red-bright); font-size:13px; margin:14px 0 0 !important;
}
.gate-error.show{ display:block; }

/* ===== Copy deterrents ===== */
body{
  -webkit-user-select:none; -moz-user-select:none; user-select:none;
}
input, textarea{
  -webkit-user-select:text; -moz-user-select:text; user-select:text;
}
img{
  -webkit-user-drag:none; user-drag:none;
  -webkit-touch-callout:none;
}
