:root {
  --bg: #f6f4ef;
  --bg-2: #efeae1;
  --ink: #10231a;
  --muted: #5b6b62;
  --line: #ddd6c8;
  --card: #fffcf7;
  --green: #047857;
  --green-2: #059669;
  --green-deep: #064e3b;
  --leaf: #d1fae5;
  --white: #fff;
  --shadow: 0 24px 60px rgba(6, 78, 59, 0.08);
  --radius: 20px;
  --nav-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.15; margin: 0 0 0.6em; text-wrap: balance; }
p { margin: 0 0 1em; }
.wrap { width: min(1380px, calc(100% - 64px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -40px; z-index: 80;
  background: var(--green); color: #fff; padding: 8px 12px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h); gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-weight: 600; font-size: 0.94rem; }
.nav-links a[aria-current="page"] { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 11px 18px; font-weight: 700; font-size: 0.92rem;
  border: 1px solid transparent; transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-2); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-light { background: #fff; color: var(--green-deep); }
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: transparent; position: relative;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); margin: 6px auto; transition: .2s;
}

.hero {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 88px 0 64px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
}
.hero::before {
  background: var(--leaf);
  opacity: .45;
  top: -180px;
  left: 8%;
  animation: drift 16s ease-in-out infinite;
}
.hero::after {
  background: #dce8df;
  opacity: .55;
  right: 6%;
  bottom: -200px;
  animation: drift 18s ease-in-out infinite reverse;
}
.hero .wrap { position: relative; z-index: 1; }
.kicker {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--leaf); color: var(--green-deep);
  padding: 6px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.15rem); margin-top: 16px; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.hero .lede { margin-inline: auto; }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 14px;
  justify-content: center;
}
.hero-note { color: var(--muted); font-size: 0.9rem; }
.hero h1 { animation: rise .8s ease both; }
.hero .lede { animation: rise .8s .1s ease both; }
.hero-actions { animation: rise .8s .2s ease both; }
.hero-note { animation: rise .8s .28s ease both; }

.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 36px 0 8px;
  text-align: left;
}
.trust div {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px;
}
.trust strong { display: block; font-size: 0.95rem; }
.trust span { color: var(--muted); font-size: 0.82rem; }
.trust div { animation: rise .7s ease both; }
.trust div:nth-child(1) { animation-delay: .32s; }
.trust div:nth-child(2) { animation-delay: .4s; }
.trust div:nth-child(3) { animation-delay: .48s; }
.trust div:nth-child(4) { animation-delay: .56s; }

.panel {
  background: linear-gradient(160deg, #064e3b, #0b3d2e 55%, #123c2f);
  color: #e8f5ee; border-radius: 28px; padding: 22px 22px 18px;
  box-shadow: var(--shadow); min-height: 430px; position: relative; overflow: hidden;
}
.panel::after {
  content: ""; position: absolute; right: -50px; bottom: -70px; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(16,185,129,.35), transparent 70%);
}
.panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 0.85rem; }
.dots { display: flex; gap: 6px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: #34d399; display: block; opacity: .8; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 12px; }
.stat b { display: block; font-size: 1.35rem; }
.stat span { color: #b7d4c6; font-size: 0.78rem; }
.fake-table { font-size: 0.84rem; position: relative; z-index: 1; }
.fake-table div {
  display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 8px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #d7eadf;
}

.section { padding: 84px 0; }
.section.alt { background: var(--bg-2); }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.section > .wrap > h2,
.section > .wrap > .intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.intro { color: var(--muted); max-width: 68ch; margin-bottom: 32px; }
.grid-3, .grid-4, .grid-2 { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; height: 100%;
}
.card .icon {
  width: 42px; height: 42px; border-radius: 12px; background: #e8f6ee; color: var(--green);
  display: grid; place-items: center; font-weight: 800; margin-bottom: 12px;
}
.card h3 { font-size: 1.08rem; }
.card p, .card li { color: var(--muted); font-size: 0.95rem; }
.card ul { margin: 0; padding-left: 18px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 12px;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.faq { max-width: 780px; margin-inline: auto; text-align: left; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin: 10px 0 4px; }

.cta-band {
  margin: 10px 0 80px; background: var(--green-deep); color: #fff;
  border-radius: 28px; padding: 48px 36px; display: flex; flex-direction: column;
  justify-content: center; gap: 18px; align-items: center; text-align: center;
}
.cta-band h2 { margin-bottom: 0.2em; }
.cta-band p { color: #c5ddcf; margin: 0; max-width: 52ch; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 20px;
}
.benefit em { display: block; font-style: normal; font-size: 0.78rem; font-weight: 800; color: var(--green); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.card, .benefit { transition: transform .25s ease, box-shadow .25s ease; }
.card:hover, .benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.btn-primary { box-shadow: 0 8px 20px rgba(4, 120, 87, .25); }
.hero .kicker { animation: kicker 2.8s ease-in-out infinite; }

@keyframes kicker {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(28px, -20px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .kicker, .card, .benefit, .btn, .hero h1, .hero .lede, .hero-actions, .hero-note, .trust div, .hero::before, .hero::after {
    animation: none; transition: none;
  }
}

.page-hero { padding: 56px 0 16px; }
.page-hero .wrap:not(.prose) { text-align: center; }
.page-hero .wrap:not(.prose) .lede { margin-inline: auto; }
.page-hero .wrap:not(.prose) h1 { margin-inline: auto; max-width: 22ch; }
.crumbs { font-size: 0.86rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.prose { max-width: 74ch; margin-inline: auto; }
.prose h2 { margin-top: 1.6em; }
.prose li { margin: 0 0 .45em; color: var(--muted); }

.price {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px;
}
.price .card.featured { border-color: var(--green); box-shadow: var(--shadow); }
.price li { margin: 8px 0; }

.site-footer { padding: 48px 0 28px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.site-footer h2 { font-size: 0.82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }
.site-footer nav { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.86rem; padding-top: 18px; border-top: 1px solid var(--line); }

@media (max-width: 960px) {
  .wrap { width: min(1380px, calc(100% - 32px)); }
  .hero { padding: 56px 0 40px; }
  .page-hero .wrap:not(.prose) h1 { max-width: none; }
  .grid-3, .grid-4, .grid-2, .steps, .split, .price, .footer-grid, .trust, .benefits { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; inset: var(--nav-h) 0 auto; background: var(--bg);
    flex-direction: column; align-items: stretch; padding: 16px 20px 22px; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}
