:root {
  --bg: #f4f1ea;
  --bg-deep: #0e2a1f;
  --ink: #14241c;
  --muted: #5c6b63;
  --line: #d9d2c3;
  --card: #fffdf8;
  --green: #1f7a4d;
  --green-2: #2e9a64;
  --leaf: #b7e0c5;
  --terracotta: #c45c2a;
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(14, 42, 31, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.03em; }
.brand svg { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 12px 20px; font-weight: 700;
  border: 1px solid transparent; transition: 0.2s ease;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-light { background: white; color: var(--bg-deep); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.4rem; }

.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--leaf); color: var(--bg-deep);
  padding: 6px 12px; border-radius: 999px; font-size: 0.82rem; font-weight: 700;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05; letter-spacing: -0.05em; margin: 18px 0 16px;
}
.lede { font-size: 1.15rem; color: var(--muted); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 0.92rem; }

.panel {
  background: var(--bg-deep); color: #e8f4ec; border-radius: 28px;
  padding: 24px; box-shadow: var(--shadow); min-height: 420px;
  position: relative; overflow: hidden;
}
.panel::after {
  content: ""; position: absolute; right: -40px; bottom: -50px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,154,100,0.5), transparent 70%);
}
.panel h3 { font-size: 1.05rem; margin-bottom: 16px; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 14px;
}
.stat b { display: block; font-size: 1.4rem; }
.stat span { color: #b7cbbf; font-size: 0.82rem; }
.fake-table { font-size: 0.88rem; }
.fake-table div {
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 8px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #d7eadf;
}

.section { padding: 72px 0; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.04em; margin-bottom: 10px; }
.section p.intro { color: var(--muted); max-width: 60ch; margin-bottom: 32px; }
.grid-3, .grid-4 { display: grid; gap: 16px; }
.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; box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.card .icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: #e8f6ee; color: var(--green); display: grid; place-items: center; margin-bottom: 14px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { counter-increment: step; }
.num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: white; display: grid; place-items: center;
  font-weight: 800; margin-bottom: 12px;
}

.cta {
  margin: 20px 0 80px; background: var(--bg-deep); color: white;
  border-radius: 32px; padding: 48px; display: flex;
  align-items: center; justify-content: space-between; gap: 24px;
}
.cta h2 { margin-bottom: 8px; }
.cta p { color: #c5ddcf; }

footer {
  padding: 28px 0 48px; color: var(--muted); border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-4, .steps, .cta { grid-template-columns: 1fr; display: grid; }
  .cta { text-align: left; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); padding: 18px 20px 24px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .hero { padding-top: 36px; }
}
