/* ============================================
   Doctor Elleve — Design System
============================================ */
:root {
  --navy-950: #081420;
  --navy-900: #0d2136;
  --navy-800: #123049;
  --navy-700: #1a3f5e;
  --navy-600: #2a5478;
  --navy-500: #3d6c94;

  --gold-700: #8a5a2f;
  --gold-600: #a86f37;
  --gold-500: #c9903f;
  --gold-400: #d9a85c;
  --gold-300: #e3b876;
  --gold-100: #f4e3c5;

  --gray-50: #f7f8fa;
  --gray-100: #eef1f4;
  --gray-200: #e2e6eb;
  --gray-300: #cdd4dc;
  --gray-400: #9aa5b1;
  --gray-600: #5b6672;
  --gray-800: #313b46;

  --white: #ffffff;
  --ink: #0d2136;

  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --gold-gradient: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 50%, var(--gold-300) 100%);
  --navy-gradient: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);

  --shadow-sm: 0 2px 8px rgba(13, 33, 54, 0.06);
  --shadow-md: 0 8px 30px rgba(13, 33, 54, 0.10);
  --shadow-lg: 0 20px 60px rgba(13, 33, 54, 0.16);
  --shadow-gold: 0 12px 30px rgba(168, 111, 55, 0.28);

  --container-w: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.text-gold-grad {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ Progress bar ============ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ============ Reveal animations ============ */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.reveal-up--delay.is-visible { transition-delay: 0.15s; }
.reveal-up--delay-1.is-visible { transition-delay: 0.1s; }
.reveal-up--delay-2.is-visible { transition-delay: 0.22s; }
.reveal-up--delay-3.is-visible { transition-delay: 0.34s; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 3px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, background 0.45s ease, color 0.45s ease, border-color 0.45s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--gold {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(168, 111, 55, 0.38); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }
.btn--outline-navy {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn--outline-navy:hover { background: var(--navy-900); color: var(--white); transform: translateY(-3px); }
.btn--sm { padding: 11px 22px; font-size: 13px; }
.btn--lg { padding: 18px 38px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}
.site-header.is-scrolled {
  background: rgba(8, 20, 32, 0.9);
  backdrop-filter: blur(14px);
  padding: 6px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo img { height: 50px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; margin-right: 32px; }
.site-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.82;
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold-400);
  transition: right 0.4s ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { right: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.4s ease, opacity 0.4s ease; }

/* ============ Section shared ============ */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); margin-top: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.eyebrow--dark { color: var(--gold-600); }
.eyebrow--light { color: var(--gold-300); }
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(201, 144, 63, 0.18); }
.eyebrow__bar { width: 18px; height: 1px; background: var(--gold-400); flex-shrink: 0; }

/* ============ Decorative shared elements ============ */
.blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.blur-orb--gold { width: 460px; height: 460px; background: radial-gradient(circle, rgba(201,144,63,0.35) 0%, rgba(201,144,63,0) 70%); }
.blur-orb--navy { width: 520px; height: 520px; background: radial-gradient(circle, rgba(42,84,120,0.5) 0%, rgba(42,84,120,0) 70%); }
.blur-orb--sm { width: 300px; height: 300px; }

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,144,63,0.28);
  pointer-events: none;
}
.deco-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0));
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0));
}
.deco-grid--light {
  background-image:
    linear-gradient(rgba(13,33,54,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,33,54,0.05) 1px, transparent 1px);
}
.deco-line { position: absolute; background: linear-gradient(90deg, transparent, rgba(201,144,63,0.5), transparent); height: 1px; pointer-events: none; }

.deco-chart {
  position: absolute;
  fill: none;
  stroke: rgba(201,144,63,0.35);
  stroke-width: 2;
  pointer-events: none;
}
.deco-chart--light { stroke: rgba(255,255,255,0.18); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-gradient);
  overflow: hidden;
  padding: 160px 0 100px;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero .blur-orb--gold { top: -120px; right: -80px; }
.hero .blur-orb--navy { bottom: -160px; left: -120px; }
.hero .deco-ring--1 { width: 620px; height: 620px; top: 8%; right: 4%; }
.hero .deco-ring--2 { width: 380px; height: 380px; top: 22%; right: 14%; border-color: rgba(255,255,255,0.08); }
.hero .deco-chart { width: 420px; height: 170px; right: 2%; bottom: 8%; opacity: 0.7; }
.hero .deco-line--1 { width: 240px; top: 30%; left: 6%; }
.hero .deco-line--2 { width: 160px; top: 68%; left: 2%; }

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero__content { max-width: 780px; }
.hero__title {
  font-size: clamp(30px, 4.4vw, 56px);
  color: var(--white);
  margin: 22px 0 26px;
}
.hero__subtitle { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 640px; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.hero__note { font-size: 13.5px; color: rgba(255,255,255,0.5); }

.hero__media { display: none; }
.hero__visual { position: relative; width: 100%; max-width: 440px; aspect-ratio: 4 / 5; }
.hero__visual-deco { position: absolute; inset: 0; overflow: hidden; }
.hero__photo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.9), transparent 72%);
  mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.9), transparent 72%);
}
.hero__photo-glow {
  position: absolute;
  width: 240px; height: 240px;
  top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,144,63,0.3) 0%, rgba(201,144,63,0) 70%);
  filter: blur(36px);
  animation: heroGlowPulse 5s ease-in-out infinite;
}
.hero__photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,144,63,0.32);
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero__photo-ring--1 { width: 200px; height: 200px; animation: heroRingPulse 6s ease-in-out infinite; }
.hero__photo-ring--2 { width: 320px; height: 320px; border-color: rgba(255,255,255,0.1); }
.hero__photo-chart {
  position: absolute;
  width: 78%; height: 110px;
  bottom: 12%; left: 11%;
  fill: none;
  stroke: rgba(201,144,63,0.45);
  stroke-width: 2;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes heroRingPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

.hero__badge {
  position: absolute;
  background: rgba(13,33,54,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,144,63,0.3);
  padding: 16px 20px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  animation: heroBadgeFloat 5s ease-in-out infinite;
}
.hero__badge strong { display: block; font-family: var(--font-serif); font-size: 22px; color: var(--gold-300); }
.hero__badge span { font-size: 12px; color: rgba(255,255,255,0.65); }
.hero__badge--top { top: -14px; left: -30px; text-align: center; }
.hero__badge--bottom { bottom: -14px; right: -30px; text-align: center; }
.hero__badge--middle {
  top: 50%; left: 50%;
  max-width: 240px;
  text-align: center;
  z-index: 4;
  animation-name: heroBadgeFloatCenter;
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes heroBadgeFloatCenter {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 10px)); }
}

.hero__mouse-glow {
  position: absolute;
  top: 0; left: 0;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,115,0.32) 0%, rgba(201,144,63,0.14) 45%, rgba(201,144,63,0) 72%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.6s ease;
}
.hero__mouse-glow.is-active { opacity: 1; }

@media (max-width: 860px) {
  .hero__mouse-glow { display: none; }
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 6;
}
.hero__particle {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,190,128,0.95) 0%, rgba(201,144,63,0.45) 55%, rgba(201,144,63,0) 100%);
  opacity: 0;
  animation: heroParticleFloat var(--duration) ease-in-out var(--delay) infinite;
}
@keyframes heroParticleFloat {
  0% { transform: translate(0, 0); opacity: 0; }
  15% { opacity: var(--peak-opacity); }
  50% { transform: translate(var(--drift-x), var(--drift-y)); opacity: var(--peak-opacity); }
  85% { opacity: 0; }
  100% { transform: translate(0, 0); opacity: 0; }
}

/* ============ NUMBERS ============ */
.numbers { position: relative; background: var(--gray-50); padding: 130px 0 110px; overflow: hidden; }
.numbers__deco { position: absolute; inset: 0; overflow: hidden; }
.numbers .blur-orb--gold { top: -100px; left: 40%; opacity: 0.5; }
.numbers__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  position: relative;
  padding: 0 28px;
  text-align: left;
}
.stat + .stat { border-left: 1px solid var(--gray-200); }
.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 22px;
}
.stat__number--gold { color: var(--gold-600); }
.stat__number--text { font-size: clamp(32px, 3.4vw, 46px); }
.stat__number--compact { font-size: clamp(30px, 3.6vw, 48px); white-space: nowrap; }
.stat__divider { width: 40px; height: 3px; background: var(--gold-gradient); margin-bottom: 18px; }
.stat__label { font-size: 14.5px; color: var(--gray-600); max-width: 240px; }
.numbers__footnote {
  position: relative;
  margin: 70px auto 0;
  max-width: 720px;
  font-size: 15.5px;
  color: var(--gray-600);
  text-align: center;
  padding-top: 28px;
}
.numbers__footnote::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--gold-gradient);
}

/* ============ PAINS ============ */
.pains { position: relative; background: var(--white); padding: 130px 0; }
.pains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.pain-card {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 34px 30px 30px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-300); }
.pain-card p { font-size: 15.5px; color: var(--navy-900); line-height: 1.6; }
.pain-card em { color: var(--gold-600); font-style: normal; font-weight: 600; }

.pains__bridge {
  position: relative;
  padding: 38px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.pains__bridge p { position: relative; font-size: 17px; color: var(--navy-800); max-width: 560px; line-height: 1.5; text-wrap: balance; }
.pains__bridge p strong { color: var(--navy-950); }
.pains__bridge .btn { position: relative; flex-shrink: 0; }

/* ============ CFO ============ */
.cfo { position: relative; background: var(--gray-50); padding: 130px 0; overflow: hidden; }
.cfo__deco { position: absolute; inset: 0; overflow: hidden; }
.cfo .blur-orb--gold { top: 10%; left: -160px; opacity: 0.5; }
.cfo .deco-ring--3 { width: 460px; height: 460px; bottom: -160px; right: -100px; border-color: rgba(13,33,54,0.08); }
.cfo__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 80px;
  align-items: start;
}
.cfo__content h2 { margin-top: 18px; }
.cfo__lead { font-size: 17px; color: var(--gray-600); margin: 22px 0 34px; line-height: 1.65; }
.cfo__why {
  border-left: 3px solid var(--gold-400);
  padding-left: 24px;
  margin-bottom: 36px;
}
.cfo__why h3 { font-size: 18px; margin-bottom: 8px; }
.cfo__why p { font-size: 15px; color: var(--gray-600); }
.cfo__results { display: flex; flex-direction: column; gap: 16px; }
.cfo__results li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy-900);
}
.cfo__results li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-gradient);
}
.cfo__results li span { display: block; font-weight: 400; font-size: 14px; color: var(--gray-600); margin-top: 2px; }

.cfo__timeline { background: var(--white); border-radius: 10px; padding: 44px 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.cfo__timeline-title { font-size: 20px; margin-bottom: 34px; }
.timeline { position: relative; display: flex; flex-direction: column; gap: 34px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 19px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-400), var(--gray-200));
}
.timeline__item { position: relative; display: flex; gap: 22px; }
.timeline__marker {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-gradient);
  color: var(--gold-300);
  font-family: var(--font-serif);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.timeline__body h4 { font-size: 16.5px; margin-bottom: 6px; }
.timeline__body p { font-size: 14.5px; color: var(--gray-600); }

/* ============ ABOUT ============ */
.about { position: relative; background: var(--white); padding: 150px 0 130px; overflow: hidden; }
.about__deco { position: absolute; inset: 0; }
.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas: "photo content" "photo cta";
  align-content: center;
  column-gap: 90px;
  row-gap: 40px;
  align-items: center;
}
.about__portrait { grid-area: photo; position: relative; max-width: 420px; }
.about__content { grid-area: content; }
.about__cta {
  grid-area: cta;
  align-self: start;
  justify-self: center;
}
.about__cta-btn {
  padding-left: 16px;
  padding-right: 16px;
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.about__cta-btn:hover { transform: translateY(-3px); }
.about__portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__frame-outline {
  position: absolute;
  top: -22px; right: -22px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold-300);
  border-radius: 6px;
  z-index: -1;
}
.about__content h2 { margin-top: 18px; }
.about__role { font-size: 16px; color: var(--gold-600); font-weight: 600; margin: 6px 0 22px; }
.about__text { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; max-width: 560px; }
.about__text strong { color: var(--navy-900); }

/* ============ PLANS ============ */
.plans { position: relative; background: var(--gray-50); padding: 130px 0; }
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan-card--featured {
  background: var(--navy-gradient);
  border-color: transparent;
  transform: scale(1.045);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.plan-card--featured:hover { transform: scale(1.045) translateY(-8px); }
.plan-card--featured h3, .plan-card--featured .plan-card__audience, .plan-card--featured .plan-card__includes { color: var(--white); }
.plan-card--featured .plan-card__list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.12); }
.plan-card--featured .plan-card__list li::before { background: var(--gold-400); }

.plan-card__tag {
  position: absolute;
  top: -13px; left: 36px;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-gold);
}
.plan-card__tag--outline {
  background: var(--white);
  color: var(--navy-800);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.plan-card__header { margin-bottom: 22px; }
.plan-card__header h3 { font-size: 24px; margin-bottom: 8px; }
.plan-card__audience { font-size: 13.5px; color: var(--gray-600); }
.plan-card__includes { font-size: 13.5px; font-weight: 600; color: var(--gold-600); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.03em; }
.plan-card__list { display: flex; flex-direction: column; margin-bottom: 24px; flex-grow: 1; }
.plan-card__list li {
  position: relative;
  padding: 11px 0 11px 26px;
  font-size: 14.5px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--gray-100);
}
.plan-card__list li:last-child { border-bottom: none; }
.plan-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.plan-card__note { font-size: 12.5px; color: var(--gray-400); margin-bottom: 22px; line-height: 1.5; }
.plans__footnote { text-align: center; max-width: 620px; margin: 54px auto 0; font-size: 15px; color: var(--gray-600); }
.plans__footnote-cta { display: flex; justify-content: center; margin-top: 24px; }

/* ============ FAQ ============ */
.faq { position: relative; background: var(--white); padding: 130px 0; }
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.faq__grid .section-head { margin-top: 160px; }
.faq__lead { font-size: 15.5px; color: var(--gray-600); margin-top: 18px; }
.faq__cta { margin-top: 32px; text-transform: uppercase; letter-spacing: 0.04em; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
}
.faq-item__question h3 { font-size: 17px; font-weight: 500; transition: color 0.4s ease; }
.faq-item__question:hover h3 { color: var(--gold-600); }
.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease;
}
.faq-item__icon::before {
  content: '';
  position: absolute;
  top: 44%; left: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: translate(-50%, -50%) rotate(45deg);
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); border-color: var(--gold-400); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.faq-item__answer p { padding-bottom: 26px; font-size: 15px; color: var(--gray-600); max-width: 640px; line-height: 1.65; }

/* ============ CTA FINAL ============ */
.cta-final {
  position: relative;
  background: var(--navy-gradient);
  padding: 160px 0;
  overflow: hidden;
  text-align: center;
}
.cta-final__deco { position: absolute; inset: 0; }
.cta-final .blur-orb--gold { top: -140px; left: 50%; transform: translateX(-50%); opacity: 0.6; }
.cta-final .deco-chart { width: 100%; left: 0; bottom: 0; height: 200px; opacity: 0.5; }
.cta-final .deco-ring--4 { width: 700px; height: 700px; top: -200px; right: -260px; border-color: rgba(255,255,255,0.06); }
.cta-final__inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-final h2 { color: var(--white); font-size: clamp(30px, 4vw, 48px); margin: 18px 0 22px; }
.cta-final p { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 40px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-950); padding: 90px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__col p { font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 320px; }
.footer__col--about { display: flex; flex-direction: column; }
.site-footer__logo img { height: 44px; margin-bottom: 30px; }
.footer__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 20px;
}
.footer__heading-bar { width: 18px; height: 1px; background: var(--gold-400); flex-shrink: 0; }
.footer__links { display: flex; flex-direction: column; gap: 13px; }
.footer__links a { font-size: 14.5px; color: rgba(255,255,255,0.6); }
.footer__links a:hover { color: var(--gold-300); }
.footer__col .btn { margin-top: 22px; }
.footer__contact { color: var(--gold-300); font-weight: 600; margin-top: 14px; }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social-icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-950);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.footer__social-icon:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(201,144,63,0.35); }
.footer__social-icon svg { width: 16px; height: 16px; }
.site-footer__bottom { padding: 26px 0; text-align: center; }
.site-footer__bottom p { font-size: 0.95rem; color: rgba(255,255,255,0.35); }
.site-footer__bottom p + p { margin-top: 6px; }
.site-footer__credit { color: var(--gold-400); transition: color 0.4s ease; }
.site-footer__credit:hover { color: var(--gold-300); }

/* ============ WhatsApp float ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  z-index: 90;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(0,0,0,0.36); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); position: relative; z-index: 1; }
.whatsapp-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 3s ease-out infinite;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 640px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 25px; height: 25px; }
}

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .cfo__grid, .about__grid, .faq__grid, .footer__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__grid { grid-template-areas: "content" "photo" "cta"; }
  .about__portrait { margin: 10px auto 40px; }
  .about__cta { margin-top: 10px; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat:nth-child(2n) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--gray-200); padding-top: 40px; }
  .pains__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-8px); }
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    margin: 0;
    box-shadow: -20px 0 50px rgba(0,0,0,0.3);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-size: 17px; }
  .nav-toggle { display: flex; position: relative; z-index: 101; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 130px 0 80px; }
  .hero__title { font-size: 30px; line-height: 1.2; margin: 18px 0 20px; }
  .hero__subtitle { font-size: 15.5px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .numbers__grid { grid-template-columns: 1fr; }
  .stat:nth-child(2n) { border-left: none; }
  .stat:nth-child(n+2) { border-top: 1px solid var(--gray-200); padding-top: 30px; }
  .stat + .stat { border-left: none; }
  .pains__grid { grid-template-columns: 1fr; }
  .pains__bridge { padding: 40px 28px; }
  .cfo__timeline { padding: 32px 24px; }
  .cta-final { padding: 100px 0; }
}
