:root {
  --navy: #0a1f2e;
  --navy-soft: #10334a;
  --green: #38d39f;
  --green-dark: #0b3b2e;
  --cream: #f7faf8;
  --ink: #12263a;
  --muted: #5b6f7e;
  --line: #e3ece8;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(10, 31, 46, 0.10);
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1140px, 92%); margin-inline: auto; }
.container.narrow { width: min(820px, 92%); }
.section { padding: 96px 0; }

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

.section-sub { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

.accent { color: var(--green-dark); position: relative; white-space: nowrap; }
.accent::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
  background: rgba(56, 211, 159, 0.35); z-index: -1; border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700;
  font-family: var(--font); font-size: 1rem; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--green); color: var(--navy); box-shadow: 0 10px 24px rgba(56, 211, 159, 0.35); }
.btn-primary:hover { background: #2cc692; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .92rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand-mark { display: inline-flex; }
.brand-name { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand-name em { font-style: normal; color: var(--green-dark); }
.main-nav { display: flex; gap: 28px; }
.main-nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: .95rem; transition: color .2s; }
.main-nav a:hover { color: var(--green-dark); }
.nav-cta { margin-left: 8px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* Hero */
.hero { background: linear-gradient(160deg, #f2faf6 0%, #ffffff 55%, #eef6f2 100%); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: 88px 0; }
.badge {
  display: inline-block; background: #e7f7f0; color: var(--green-dark);
  font-weight: 700; font-size: .88rem; padding: 8px 18px; border-radius: 999px; margin-bottom: 22px;
}
.lead { font-size: 1.15rem; color: var(--muted); margin: 20px 0 30px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 34px; color: var(--muted); font-size: .95rem; }

.hero-visual { position: relative; min-height: 430px; }
.visual-ring {
  position: absolute; inset: 12% 6%; border-radius: 50%;
  border: 2px dashed rgba(56, 211, 159, 0.5); animation: spin 60s linear infinite;
}
.visual-card {
  position: absolute; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 26px; width: 210px;
  display: flex; flex-direction: column; gap: 2px;
}
.visual-icon { font-size: 1.9rem; }
.visual-card strong { font-size: 1.08rem; }
.visual-card span { color: var(--muted); font-size: .9rem; }
.card-a { top: 6%; left: 14%; animation: float 7s ease-in-out infinite; }
.card-b { top: 42%; right: 2%; animation: float 8s ease-in-out .6s infinite; }
.card-c { bottom: 4%; left: 20%; animation: float 7.5s ease-in-out 1.2s infinite; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Intro */
.intro { background: var(--white); text-align: center; }
.intro h2 { margin-bottom: 22px; }
.intro p { color: var(--muted); font-size: 1.05rem; max-width: 680px; margin: 0 auto 18px; }
.intro-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0 10px; }
.stat { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px; }
.stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--green-dark); }
.stat span { color: var(--muted); font-size: .92rem; }
.stat-note { font-size: .82rem !important; margin-top: 14px !important; color: #8aa0ad !important; }

/* Pillars */
.pillars { background: var(--cream); text-align: center; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 26px; text-align: left; transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-icon {
  width: 60px; height: 60px; border-radius: 16px; background: #e7f7f0;
  display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 20px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--muted); font-size: .95rem; }

/* Why */
.why { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%); color: #fff; }
.why-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.why h2 { margin-bottom: 20px; }
.why-copy > p { color: #b9cdd8; font-size: 1.05rem; margin-bottom: 26px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.checklist li { position: relative; padding-left: 34px; color: #e4eef2; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  background: var(--green); color: var(--navy); border-radius: 50%;
  display: grid; place-items: center; font-size: .78rem; font-weight: 800;
}
.timeline { display: flex; flex-direction: column; gap: 0; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 34px 30px; }
.timeline-item { display: flex; gap: 18px; position: relative; padding-bottom: 26px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:not(:last-child)::before {
  content: ""; position: absolute; left: 9px; top: 22px; bottom: 0; width: 2px; background: rgba(56, 211, 159, .4);
}
.dot { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: var(--green); margin-top: 3px; box-shadow: 0 0 0 5px rgba(56, 211, 159, .2); }
.timeline-item strong { display: block; font-size: .95rem; }
.timeline-item p { color: #b9cdd8; font-size: .9rem; margin: 0; }

/* Testimonials */
.testimonials { background: var(--white); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; text-align: left; }
.stars { color: #f5b301; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial blockquote { color: var(--ink); font-size: 1rem; margin-bottom: 22px; font-style: italic; }
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial figcaption strong { color: var(--navy); }
.testimonial figcaption span { color: var(--muted); font-size: .88rem; }

/* FAQ */
.faq { background: var(--cream); }
.faq h2 { text-align: center; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 26px; font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--green-dark); font-weight: 600; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 22px; color: var(--muted); }

/* Final CTA */
.final-cta { background: linear-gradient(160deg, #e7f7f0 0%, #f2faf6 100%); text-align: center; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { color: var(--muted); font-size: 1.08rem; margin-bottom: 30px; }
.cta-note { font-size: .9rem !important; margin-top: 22px !important; color: #7d959f !important; }

/* Footer */
.site-footer { background: var(--navy); color: #b9cdd8; padding: 64px 0 36px; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; max-width: 320px; font-size: .95rem; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; align-items: flex-start; }
.footer-nav a { color: #b9cdd8; text-decoration: none; font-size: .93rem; transition: color .2s; }
.footer-nav a:hover { color: var(--green); }
.disclaimer { font-size: .8rem; color: #7d95a1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; margin-bottom: 14px; }
.copyright { font-size: .85rem; color: #7d95a1; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Legal pages */
.legal-hero { background: linear-gradient(160deg, #f2faf6, #fff); padding: 80px 0 40px; text-align: center; }
.legal-body { padding: 40px 0 96px; }
.legal-body h2 { font-size: 1.35rem; margin: 36px 0 14px; }
.legal-body p, .legal-body li { color: var(--muted); }
.legal-body ul { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 80px; }
  .hero-visual { min-height: 380px; max-width: 520px; margin-inline: auto; width: 100%; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .intro-stats { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 6%; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px rgba(10,31,46,.08); }
  .main-nav.open { display: flex; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 28px; }
}
