@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --ink: #102a2a;
  --muted: #607171;
  --green: #00b889;
  --green-dark: #007c68;
  --mint: #e9faf4;
  --cream: #fffaf2;
  --line: #dce9e5;
  --white: #fff;
  --shadow: 0 24px 70px rgba(16, 42, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 250, 242, .9);
  border-bottom: 1px solid rgba(220, 233, 229, .8);
  backdrop-filter: blur(14px);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 800 1.22rem 'Plus Jakarta Sans', sans-serif; letter-spacing: -.04em; }
.brand-mark { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: .94rem; }
.nav-links a:hover, .footer-links a:hover { color: var(--green-dark); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-size: 1.35rem; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0, 124, 104, .2); }
.button-primary { color: var(--white); background: var(--green-dark); }
.button-light { color: var(--green-dark); background: var(--white); }
.button-outline { color: var(--green-dark); border-color: var(--green-dark); background: transparent; }

.hero { position: relative; overflow: hidden; padding: 92px 0 86px; background: radial-gradient(circle at 82% 20%, #b9f4e0 0 12%, transparent 36%), linear-gradient(125deg, #dff8ed, #fffaf2 72%); }
.hero-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 62px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: var(--green-dark); font-size: .79rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--green); }
h1, h2, h3 { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -.055em; line-height: 1.1; }
h1 { max-width: 660px; font-size: clamp(2.7rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.22rem; }
.hero-copy { max-width: 550px; margin: 24px 0 30px; color: var(--muted); font-size: 1.14rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: .85rem; }
.hero-art { position: relative; min-height: 420px; display: grid; place-items: center; }
.hero-art::before { content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: var(--green); opacity: .14; }
.hero-illustration { position: relative; width: min(100%, 470px); filter: drop-shadow(0 25px 25px rgba(0, 80, 63, .12)); }

.section { padding: 100px 0; }
.section-soft { background: var(--mint); }
.section-head { max-width: 690px; margin-bottom: 42px; }
.section-head p { margin: 18px 0 0; color: var(--muted); font-size: 1.05rem; }
.center { margin-inline: auto; text-align: center; }
.center p { margin-inline: auto; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 10px 30px rgba(16, 42, 42, .04); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; color: var(--green-dark); background: var(--mint); font-size: 1.3rem; }
.card p { margin: 12px 0 0; color: var(--muted); }
.split { display: grid; grid-template-columns: .85fr 1fr; align-items: center; gap: 80px; }
.split.reverse { grid-template-columns: 1fr .85fr; }
.feature-list { display: grid; gap: 20px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list i { flex: 0 0 auto; width: 23px; height: 23px; display: grid; place-items: center; margin-top: 2px; border-radius: 50%; color: var(--white); background: var(--green); font-size: .72rem; }
.feature-list strong { display: block; margin-bottom: 3px; }
.feature-list span { color: var(--muted); }
.visual-card { padding: 24px; border-radius: 28px; background: linear-gradient(145deg, var(--green-dark), #004f55); box-shadow: var(--shadow); }
.visual-card img { width: 100%; border-radius: 18px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat strong { display: block; color: var(--green-dark); font: 800 2rem 'Plus Jakarta Sans', sans-serif; }
.stat span { color: var(--muted); }
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font: 700 1rem 'DM Sans', sans-serif; cursor: pointer; }
.faq-question span { transition: transform .2s; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .3s ease; }
.faq-answer p { margin: 0 0 20px; }
.faq-item.open .faq-answer { max-height: 150px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.cta { padding: 68px; border-radius: 28px; color: var(--white); background: linear-gradient(120deg, var(--green-dark), #00a982); }
.cta p { max-width: 570px; margin: 16px 0 24px; color: rgba(255,255,255,.8); }

.site-footer { padding: 50px 0 28px; color: #b6ceca; background: #0d2728; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 40px; }
.site-footer .brand { color: var(--white); }
.footer-copy { max-width: 310px; margin-top: 16px; font-size: .9rem; }
.footer-title { margin-bottom: 14px; color: var(--white); font-weight: 700; }
.footer-links { display: grid; gap: 8px; font-size: .9rem; }
.copyright { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

.legal-hero { padding: 72px 0 45px; background: linear-gradient(125deg, #dff8ed, var(--cream)); }
.legal-hero p { margin: 14px 0 0; color: var(--muted); }
.legal-content { padding: 58px 0 90px; }
.legal-card { max-width: 860px; margin-inline: auto; padding: clamp(24px, 5vw, 56px); border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 10px 30px rgba(16,42,42,.04); }
.legal-card h2 { margin: 30px 0 12px; font-size: 1.35rem; letter-spacing: -.03em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card ul, .legal-card ol { padding-left: 22px; }
.legal-link { color: var(--green-dark); font-weight: 700; }

.download-page { min-height: 100vh; display: grid; place-items: center; padding: 30px 0; background: linear-gradient(135deg, #dff8ed, var(--cream)); }
.download-box { max-width: 560px; padding: 48px 30px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); text-align: center; }
.download-box .brand { justify-content: center; margin-bottom: 28px; }
.download-box p { margin: 16px auto 26px; color: var(--muted); }
.download-actions { display: grid; gap: 12px; }
.download-eyebrow { justify-content: center; }
.driver-cta { margin-top: 28px; }
.download-back { margin-top: 24px !important; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 820px) {
  .nav-links { position: absolute; top: 78px; left: 20px; right: 20px; display: none; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; gap: 16px; }
  .menu-toggle { display: block; }
  .hero { padding: 68px 0; }
  .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; gap: 42px; }
  .hero-art { min-height: 300px; order: -1; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero-actions, .hero-actions .button { width: 100%; }
  .stats { grid-template-columns: 1fr; gap: 14px; }
  .cta { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; } }
