:root {
  --ink: #020b16;
  --navy: #061a33;
  --blue: #0b3d78;
  --electric: #1479ff;
  --gold: #d8a94b;
  --paper: #f8fafc;
  --muted: #d8dee9;
  --slate: #1b2430;
  --line: rgba(216, 169, 75, 0.22);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(2, 11, 22, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--muted);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 44px);
  background: rgba(2, 11, 22, 0.78);
  border-bottom: 1px solid rgba(216, 169, 75, 0.18);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; min-width: 190px; }
.brand img { display: block; width: min(230px, 22vw); height: auto; filter: drop-shadow(0 10px 22px rgba(0,0,0,.36)); }
.main-nav { justify-self: center; display: flex; gap: 18px; align-items: center; font-size: 14px; }
.main-nav a { color: #eef4ff; opacity: 0.86; }
.main-nav a:hover { color: var(--gold); opacity: 1; }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.15;
}
.header-cta, .btn-primary { background: var(--gold); color: var(--navy); }
.btn-secondary { border: 1px solid rgba(216, 169, 75, 0.55); color: white; background: rgba(255, 255, 255, 0.03); }
.btn:hover, .header-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(216, 169, 75, 0.18); }
.menu-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; }
.menu-toggle span { display: block; height: 2px; margin: 7px 8px; background: white; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2,11,22,0.96), rgba(6,26,51,0.83) 47%, rgba(11,61,120,0.28)),
    linear-gradient(135deg, #020b16 0%, #061a33 48%, #0b3d78 100%);
}
.system-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.62; }
.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, var(--ink), transparent);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.56fr);
  gap: 54px;
  align-items: center;
  padding-top: 104px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: white;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { max-width: 900px; margin: 0; font-size: clamp(43px, 6vw, 84px); }
h2 { margin: 0; font-size: clamp(34px, 4vw, 58px); }
h3 { margin: 0 0 10px; font-size: 25px; }
.hero-lede { max-width: 740px; margin: 26px 0 0; color: #edf5ff; font-size: clamp(18px, 2vw, 23px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  color: white;
  font-size: 13px;
}
.proof-strip span { border: 1px solid rgba(216,169,75,.28); padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.04); }
.hero-panel {
  align-self: end;
  border: 1px solid rgba(216,169,75,.35);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background: rgba(2, 11, 22, 0.55);
  box-shadow: var(--shadow);
}
.panel-kicker { color: var(--gold); font-size: 13px; text-transform: uppercase; font-weight: 800; }
.hero-panel p { margin: 18px 0 8px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 34px; line-height: 1.1; }
.hero-panel strong { color: var(--muted); font-weight: 500; }

.section { padding: clamp(78px, 10vw, 132px) 0; background: var(--ink); }
.section-light { background: var(--paper); color: #334155; }
.section-light h2, .section-light h3 { color: var(--navy); }
.dark-band {
  background:
    linear-gradient(120deg, rgba(11,61,120,.22), transparent 45%),
    linear-gradient(180deg, #061a33, #020b16);
}
.split { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1fr); gap: clamp(36px, 7vw, 88px); align-items: start; }
.section-heading p { max-width: 760px; font-size: 18px; }
.centered { text-align: center; }
.centered p { margin-left: auto; margin-right: auto; }
.body-copy { font-size: 19px; }
.card-grid, .problem-grid, .credential-grid, .testimonial-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}
.three { grid-template-columns: repeat(3, 1fr); }
.problem-grid { grid-template-columns: repeat(4, 1fr); }
.credential-grid, .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.insight-card, .mini-card, .method-step, .testimonial, .feature-box, .quote-block, .path-card, .contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding: 26px;
}
.section-light .insight-card, .section-light .mini-card, .section-light .feature-box, .section-light .testimonial, .section-light .contact-form {
  background: white;
  box-shadow: 0 18px 45px rgba(6, 26, 51, 0.08);
}
.insight-card span { color: var(--gold); font-weight: 900; }
.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.path-card { min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg, rgba(20,121,255,.12), rgba(216,169,75,.07)); }
.path-label { color: var(--gold); font-weight: 850; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.text-link { color: var(--gold); font-weight: 800; margin-top: 18px; }
.method-list { display: grid; gap: 14px; }
.method-step { display: grid; grid-template-columns: 48px 1fr; gap: 12px 18px; align-items: start; }
.method-step span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 20px 0 0; list-style: none; }
.pill-list li { padding: 10px 12px; border: 1px solid rgba(11,61,120,.18); border-radius: 999px; color: var(--navy); background: #f3f7fb; }
.symptom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.symptom { padding: 18px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.05); border-radius: var(--radius); color: white; }
.quote-block { margin-top: 48px; text-align: center; }
.quote-block p { margin: 0; color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 4vw, 54px); line-height: 1.1; }
.testimonial { margin: 0; }
.testimonial blockquote { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 25px; line-height: 1.25; }
.testimonial figcaption { margin-top: 22px; color: var(--navy); font-weight: 850; }
.testimonial span { display: block; color: #64748b; font-weight: 600; }
.article-list { display: grid; gap: 12px; }
.article-list a { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); color: white; }
.final-cta { text-align: center; background: linear-gradient(180deg, #020b16, #061a33); }
.final-cta h2 { max-width: 890px; margin: 0 auto; }
.final-cta p { max-width: 690px; margin: 22px auto 0; }
.final-cta .hero-actions { justify-content: center; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 11px 12px;
  background: #fbfdff;
  color: var(--ink);
}
.full { grid-column: 1 / -1; }
.form-status { grid-column: 1 / -1; margin: 0; color: var(--blue); font-weight: 750; }
.site-footer { background: #010711; border-top: 1px solid rgba(216,169,75,.2); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1.1fr; gap: 34px; padding: 48px 0; }
.footer-logo { display: block; width: min(260px, 100%); height: auto; margin-bottom: 14px; }
.footer-grid nav { display: grid; gap: 8px; }
.footer-grid a:hover { color: var(--gold); }
.responsible-note { font-size: 14px; color: #aeb9c7; }
.footer-line { border-top: 1px solid rgba(216,169,75,.14); text-align: center; padding: 18px; color: var(--gold); }
.mobile-whatsapp {
  display: none;
  position: fixed;
  z-index: 45;
  left: 16px;
  right: 16px;
  bottom: 14px;
  min-height: 52px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  place-items: center;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.soft-popup {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  width: min(390px, calc(100% - 44px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 11, 22, .94);
  box-shadow: var(--shadow);
}
.soft-popup button { position: absolute; top: 8px; right: 10px; border: 0; background: transparent; color: white; font-size: 24px; cursor: pointer; }
.soft-popup p { color: white; margin: 0 0 14px; font-weight: 800; }
.soft-popup div { display: flex; gap: 10px; flex-wrap: wrap; }
.soft-popup a { color: var(--gold); border: 1px solid rgba(216,169,75,.3); padding: 8px 10px; border-radius: var(--radius); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav, .header-cta {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .site-header.nav-open .main-nav, .site-header.nav-open .header-cta { display: grid; }
  .main-nav { gap: 4px; padding: 12px 0; }
  .main-nav a { padding: 10px 0; }
}
@media (max-width: 860px) {
  .hero { min-height: auto; padding: 96px 0 76px; }
  .hero-grid, .split, .path-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .three, .problem-grid, .credential-grid, .testimonial-grid, .symptom-grid { grid-template-columns: 1fr; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .hero-panel { align-self: auto; }
  .contact-form { grid-template-columns: 1fr; }
  .mobile-whatsapp { display: grid; }
  .soft-popup { bottom: 78px; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { padding-inline: 14px; }
  .brand { min-width: 0; }
  .brand img { width: 164px; }
  .hero-actions { display: grid; }
  .proof-strip span { width: 100%; }
}
