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

:root {
  --green: #15532F;
  --green-light: #1a6b3c;
  --green-pale: #edf5f0;
  --text: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: #fff; -webkit-font-smoothing: antialiased; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── Nav ──────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 20px; color: var(--green); text-decoration: none;
}
.nav-logo img {
  width: 36px; height: 36px; object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-links .btn {
  background: var(--green); color: #fff !important;
  padding: 8px 18px; border-radius: 8px; font-size: 14px;
}
.nav-links .btn:hover { background: var(--green-light); }

/* ── Footer ───────────────────────────────────────────────────────────── */
footer { background: var(--green); color: rgba(255,255,255,0.85); padding: 48px 24px 24px; margin-top: 80px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: #fff;
}
.footer-logo img {
  width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 14px; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--green-light); color: #fff; text-decoration: none; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a1a1a; color: #fff;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover { background: #333; color: #fff; text-decoration: none; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--green); color: var(--green);
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--green); color: #fff; text-decoration: none; }

/* ── Sections ─────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { padding: 80px 0; background: var(--green-pale); }
.section-title { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; margin-bottom: 48px; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--green-pale) 0%, #fff 60%);
  padding: 72px 24px 96px; text-align: center;
}
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero-wordmark {
  max-width: 380px; width: 100%; margin: 0 auto 28px;
  display: block;
}
.hero-badge {
  display: inline-block;
  background: var(--green-pale); border: 1px solid #a8d5b8;
  color: var(--green); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 13px; color: var(--muted); }

/* ── Features grid ────────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.feature-card {
  border: 1px solid var(--border); border-radius: 14px; padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Steps ────────────────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 20px; max-width: 640px; margin: 0 auto; }
.step {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #c6ddd0;
}
.step-num {
  min-width: 40px; height: 40px; background: var(--green); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Privacy badges ───────────────────────────────────────────────────── */
.privacy-row { display: flex; align-items: flex-start; gap: 64px; flex-wrap: wrap; }
.privacy-row h2 { font-size: 28px; font-weight: 700; margin-bottom: 14px; }
.privacy-row p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; max-width: 480px; }
.badges { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.badge {
  background: var(--green-pale); border: 1px solid #c6ddd0;
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; font-weight: 500; color: var(--green);
}

/* ── Legal pages ──────────────────────────────────────────────────────── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 48px 24px; }
.legal-header { border-bottom: 2px solid var(--green); padding-bottom: 24px; margin-bottom: 40px; }
.legal-header h1 { font-size: 32px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.legal-date { font-size: 14px; color: var(--muted); }
.legal-body h2 { font-size: 20px; font-weight: 600; margin: 36px 0 12px; }
.legal-body h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; }
.legal-body p { font-size: 15px; color: #374151; margin-bottom: 14px; line-height: 1.75; }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 14px; }
.legal-body li { font-size: 15px; color: #374151; margin-bottom: 6px; line-height: 1.7; }
.info-box {
  background: var(--green-pale); border: 1px solid #c6ddd0;
  border-radius: 10px; padding: 20px 24px; margin: 24px 0;
}
.info-box p { margin: 4px 0; font-size: 15px; }
.info-box strong { color: var(--green); }

/* ── Contact page ─────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.contact-card {
  border: 1px solid var(--border); border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-card .icon { font-size: 28px; }
.contact-card h3 { font-size: 17px; font-weight: 600; }
.contact-card p { font-size: 14px; color: var(--muted); }
.contact-card a { font-weight: 600; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
  .privacy-row { gap: 32px; }
  .footer-inner { flex-direction: column; }
  .hero-wordmark { max-width: 280px; }
}
