@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #f7fbf9;
  --surface: #ffffff;
  --surface-soft: #eaf5ef;
  --text: #10291f;
  --muted: #44665a;
  --brand: #0b6e4f;
  --brand-2: #0f8f68;
  --accent: #ffc857;
  --line: #d3e5db;
  --shadow: 0 18px 44px rgba(8, 61, 42, 0.11);
  --radius: 18px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, #ddf7ea 0, transparent 34%),
    radial-gradient(circle at 87% 16%, #fff0c8 0, transparent 28%),
    var(--bg);
  line-height: 1.65;
}

.container { width: min(var(--max), 92vw); margin: 0 auto; }

.nav { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(9px); background: rgba(247, 251, 249, 0.88); border-bottom: 1px solid #d7e9df; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; }
.brand { font-family: 'Space Grotesk', sans-serif; text-decoration: none; color: var(--text); font-size: 1.16rem; }
.brand span { color: var(--brand); }
.nav-links { display: flex; gap: 16px; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 700; font-size: .93rem; }
.nav-links a:hover { color: var(--text); }

.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 999px; font-weight: 800; border: 0; padding: 11px 18px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 12px 26px rgba(15, 118, 84, .36); }
.btn-secondary { color: var(--text); background: var(--surface); border: 1px solid var(--line); }

.hero { padding: 72px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; }
.kicker { display: inline-block; margin-bottom: 12px; padding: 7px 11px; border-radius: 999px; font-size: .76rem; letter-spacing: .75px; text-transform: uppercase; font-weight: 800; color: #0f6046; background: #e0f4ea; border: 1px solid #c4e6d6; }
h1, h2, h3 { margin: 0 0 12px; line-height: 1.15; font-family: 'Space Grotesk', sans-serif; }
h1 { font-size: clamp(2rem, 3.3vw, 3.3rem); }
.hero p { color: var(--muted); font-size: 1.05rem; margin: 0 0 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-card img { width: 100%; display: block; aspect-ratio: 5/4; object-fit: cover; }
.hero-card .caption { padding: 14px 15px; color: var(--muted); font-size: .92rem; }

.section { padding: 44px 0; }
.section h2 { font-size: clamp(1.5rem, 2.4vw, 2.35rem); }
.lead { color: var(--muted); max-width: 760px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: 0 10px 26px rgba(17, 50, 35, .08); }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 8px 0 0; padding-left: 19px; color: var(--muted); }
.stat { font-size: 1.8rem; font-family: 'Space Grotesk', sans-serif; color: var(--brand); }

.cta-box { border-radius: 22px; padding: 30px; color: #eaf6ef; background: linear-gradient(140deg, #0d3a2b, #106849 70%); }
.cta-box p { color: #cee7db; }

.page-hero { padding: 58px 0 20px; }
.page-hero h1 { font-size: clamp(1.8rem, 2.8vw, 2.55rem); }
.list-clean { margin: 0; padding-left: 18px; color: var(--muted); }
.list-clean li { margin-bottom: 7px; }

.footer { border-top: 1px solid var(--line); padding: 30px 0 40px; margin-top: 42px; color: var(--muted); font-size: .9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }

@media (max-width: 920px) {
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 42px; }
}
