
:root {
  --navy: #000869;
  --navy-deep: #080d3d;
  --navy-mid: #18206f;
  --green: #008A12;
  --green-dark: #006d0e;
  --green-light: #eaf7ec;
  --cream: #fbfaf5;
  --mist: #f4f6fb;
  --white: #ffffff;
  --ink: #1f2430;
  --muted: #646b78;
  --line: #e3e6ee;
  --shadow: 0 18px 55px rgba(8,13,61,.09);
  --shadow-strong: 0 26px 70px rgba(8,13,61,.16);
  --radius: 24px;
  --max: 1180px;
}
* { 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;
  color: var(--ink);
  line-height: 1.62;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(227,230,238,.92);
}
.nav {
  min-height: 78px; display: flex; align-items: center;
  justify-content: space-between; gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 158px; }
.brand-sub {
  display: none; padding-left: 12px; border-left: 1px solid var(--line);
  color: var(--muted); font-size: .78rem; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: .93rem; color: #3c4250;
}
.nav-links a:hover { color: var(--navy); }
.menu-btn {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: white; font-size: 1.25rem;
}
.btn, .nav-cta {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 1px solid transparent; border-radius: 999px;
  padding: 0 22px; font-weight: 800; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.nav-cta, .btn-primary { background: var(--green); color: white !important; box-shadow: 0 8px 22px rgba(0,138,18,.18); }
.nav-cta:hover, .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--navy); border-color: #ccd2e4; }
.btn-secondary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px;
  color: var(--green-dark); font-size: .8rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .13em;
}
.eyebrow::before {
  content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--green);
}
h1,h2,h3,h4 { color: var(--navy-deep); line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(2.75rem, 6vw, 5.45rem); letter-spacing: -.05em; margin-bottom: 24px; }
h2 { font-size: clamp(2.05rem, 4vw, 3.5rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
.lead { max-width: 760px; color: #515867; font-size: clamp(1.05rem,2vw,1.24rem); }
.section { padding: 94px 0; }
.section-mist { background: var(--mist); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy-deep); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,.78); }
.section-head { max-width: 780px; margin-bottom: 46px; }

/* HERO */
.hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(0,138,18,.12), transparent 24rem),
    radial-gradient(circle at 10% 0%, rgba(0,8,105,.10), transparent 30rem),
    linear-gradient(180deg, white 0%, #fbfbf8 100%);
  padding: 82px 0 58px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 58px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 16px; color: var(--muted); font-size: .9rem; }
.hero-visual {
  position: relative; min-height: 500px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--navy), #18206f);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  color: white;
  padding: 34px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-visual::before {
  content: ""; position: absolute; width: 270px; height: 270px; border-radius: 50%;
  top: -90px; right: -70px; background: rgba(255,255,255,.08);
}
.hero-visual::after {
  content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%;
  top: 100px; right: 65px; background: rgba(0,138,18,.22);
}
.hero-visual .mini-label { position: relative; z-index: 2; font-weight: 800; color: #bdedc3; }
.hero-visual h2 { position: relative; z-index: 2; color: white; font-size: clamp(2rem,4vw,3rem); margin-bottom: 12px; }
.hero-visual p { position: relative; z-index: 2; max-width: 500px; color: rgba(255,255,255,.8); margin-bottom: 0; }

.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.stats { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 26px 22px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--navy); font-size: 1.5rem; line-height: 1.1; margin-bottom: 6px; }
.stat span { color: var(--muted); font-size: .86rem; }

/* PAIN POINTS */
.concern-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.concern {
  border: 1px solid var(--line); border-radius: 22px; padding: 26px; background: white;
  transition: transform .18s ease, box-shadow .18s ease;
}
.concern:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.concern-icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-light); color: var(--green-dark); font-size: 1.3rem; margin-bottom: 18px;
}
.concern h3 { font-size: 1.15rem; }
.concern p { color: var(--muted); margin-bottom: 0; }

/* PATHS */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path-card {
  border-radius: 28px; padding: 34px; background: white; border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(8,13,61,.05); display: flex; flex-direction: column;
}
.path-card.featured { background: var(--navy); color: white; border-color: var(--navy); }
.path-card.featured h3 { color: white; }
.path-card.featured p, .path-card.featured li { color: rgba(255,255,255,.78); }
.path-label {
  align-self: flex-start; font-size: .76rem; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; background: var(--green-light); color: var(--green-dark);
  padding: 7px 11px; border-radius: 999px; margin-bottom: 18px;
}
.path-card.featured .path-label { background: rgba(255,255,255,.12); color: #c8f4cd; }
.path-card h3 { font-size: 2rem; }
.check-list { list-style: none; padding: 0; margin: 20px 0 28px; }
.check-list li { position: relative; padding: 9px 0 9px 28px; color: #555c69; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.path-card .btn { align-self: flex-start; margin-top: auto; }

/* PROCESS */
.process { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.process-card { position: relative; border-radius: 24px; background: white; border: 1px solid var(--line); padding: 30px; }
.process-number {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: var(--navy); color: white; font-weight: 900; margin-bottom: 24px;
}
.process-card p { color: var(--muted); }

/* STORY */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 62px; align-items: start; }
.story-block {
  border-radius: 30px; background: linear-gradient(150deg,var(--navy),#1d2677);
  color: white; padding: 36px; position: sticky; top: 108px; overflow: hidden;
}
.story-block h3 { color: white; font-size: 2rem; }
.story-block p { color: rgba(255,255,255,.8); }
.story-metric { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); }
.story-metric strong { display: block; font-size: 1.65rem; }
.quote {
  border-left: 4px solid var(--green); padding: 3px 0 3px 22px;
  margin: 28px 0; color: #454b57; font-size: 1.13rem;
}
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.bio-card { border: 1px solid var(--line); border-radius: 18px; padding: 20px; background: white; }
.bio-card p { color: var(--muted); margin-bottom: 0; }

/* PACKAGES */
.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.package {
  background: white; border: 1px solid var(--line); border-radius: 26px; padding: 30px;
  display: flex; flex-direction: column; position: relative;
}
.package.emphasis { border: 2px solid var(--green); box-shadow: var(--shadow); }
.package .tag {
  align-self: flex-start; background: var(--green-light); color: var(--green-dark);
  font-size: .75rem; font-weight: 900; border-radius: 999px; padding: 7px 11px; margin-bottom: 16px;
}
.package h3 { font-size: 1.7rem; }
.package p { color: var(--muted); }
.package ul { padding-left: 18px; color: #555c69; }
.package .btn { margin-top: auto; align-self: flex-start; }
.price-note {
  margin-top: 28px; padding: 18px 20px; border-radius: 16px;
  background: #fff; border: 1px dashed #cbd2df; color: var(--muted); font-size: .92rem;
}

/* FAQ */
.faq { display: grid; gap: 12px; }
details { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 0 20px; }
summary { cursor: pointer; padding: 20px 0; font-weight: 850; color: var(--navy-deep); }
details p { margin-top: 0; padding-bottom: 18px; color: var(--muted); }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: start; }
.contact-copy { background: var(--navy); color: white; border-radius: 28px; padding: 36px; }
.contact-copy h2,.contact-copy h3 { color: white; }
.contact-copy p,.contact-copy li { color: rgba(255,255,255,.8); }
.contact-copy ul { padding-left: 20px; }
form { background: white; border: 1px solid var(--line); border-radius: 26px; padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group.full { grid-column: 1/-1; }
label { font-weight: 800; font-size: .91rem; }
input,select,textarea {
  width: 100%; border: 1px solid #ced3dc; border-radius: 12px; padding: 13px 14px;
  font: inherit; color: var(--ink); background: white;
}
textarea { min-height: 130px; resize: vertical; }
input:focus,select:focus,textarea:focus { outline: 3px solid rgba(0,138,18,.11); border-color: var(--green); }
.form-help { font-size: .84rem; color: var(--muted); }
.form-status { margin-top: 13px; font-weight: 750; }

/* CTA */
.cta {
  padding: 46px; border-radius: 30px;
  background: linear-gradient(135deg,var(--navy),#202a81);
  color: white; display: flex; justify-content: space-between; align-items: center; gap: 26px;
}
.cta h2 { color: white; margin-bottom: 8px; font-size: clamp(2rem,4vw,3rem); }
.cta p { color: rgba(255,255,255,.78); margin: 0; max-width: 720px; }

/* INNER PAGES */
.page-hero { padding: 72px 0 54px; background: linear-gradient(180deg,var(--mist),white); }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.12rem; }
.badges { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.badge { background:var(--green-light);color:var(--green-dark);border-radius:999px;padding:8px 12px;font-size:.84rem;font-weight:800; }

/* FOOTER */
.site-footer { background: #070b2d; color: rgba(255,255,255,.75); padding: 56px 0 28px; }
.footer-grid { display:grid;grid-template-columns:1.4fr .8fr .8fr;gap:36px; }
.footer-logo { background:white;padding:9px 12px;border-radius:10px;width:180px;margin-bottom:18px; }
.footer-title { color:white;font-weight:850;margin-bottom:10px; }
.footer-links { display:grid;gap:9px; }
.footer-links a { color:rgba(255,255,255,.76);text-decoration:none; }
.disclaimer { margin-top:34px;padding-top:22px;border-top:1px solid rgba(255,255,255,.12);font-size:.8rem;color:rgba(255,255,255,.57); }
.footer-bottom { margin-top:20px;display:flex;justify-content:space-between;gap:20px;font-size:.82rem; }

@media (min-width: 900px) { .brand-sub { display:block; } }
@media (max-width: 940px) {
  .hero-grid,.story-grid,.contact-wrap { grid-template-columns:1fr; }
  .hero-visual { min-height: 400px; }
  .story-block { position:static; }
  .concern-grid,.package-grid { grid-template-columns:1fr 1fr; }
  .stats { grid-template-columns:1fr 1fr; }
  .stat:nth-child(2) { border-right:0; }
  .stat:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-btn { display:grid;place-items:center; }
  .nav-links {
    display:none;position:absolute;inset:78px 20px auto;background:white;border:1px solid var(--line);
    border-radius:18px;padding:18px;box-shadow:var(--shadow);flex-direction:column;align-items:stretch;
  }
  .nav-links.open { display:flex; }
  .nav-cta { width:100%; }
  .hero { padding-top:58px; }
  .concern-grid,.path-grid,.process,.package-grid,.bio-grid,.form-grid,.footer-grid { grid-template-columns:1fr; }
  .stats { grid-template-columns:1fr; }
  .stat { border-right:0; border-bottom:1px solid var(--line); }
  .stat:last-child { border-bottom:0; }
  .section { padding:72px 0; }
  .cta { flex-direction:column;align-items:flex-start;padding:32px; }
  .footer-bottom { flex-direction:column; }
}
