:root {
    --bg: #f6f2ea;
    --card: #ffffff;
    --ink: #17211b;
    --muted: #68746c;
    --primary: #14532d;
    --primary2: #1f7a43;
    --accent: #d79b36;
    --soft: #fff4dc;
    --line: rgba(20, 83, 45, 0.14);
    --radius: 22px;
    --shadow: 0 14px 40px rgba(23,33,27,.08);
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at top left, rgba(215,155,54,.18), transparent 32%), var(--bg);
    color: var(--ink);
    line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
    background: rgba(246,242,234,.92);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 10;
    backdrop-filter: blur(14px);
}
.nav { min-height: 74px; display:flex; justify-content:space-between; align-items:center; gap:20px; }
.logo { text-decoration:none; font-size:24px; font-weight:900; color:var(--primary); display:flex; align-items:center; gap:9px; }
.logo span { display:inline-grid; place-items:center; width:38px; height:38px; border-radius:14px; color:#fff; background:linear-gradient(135deg,var(--primary),var(--primary2)); }
nav { display:flex; align-items:center; gap:18px; }
nav a { text-decoration:none; color:var(--muted); font-weight:750; }
nav a:hover { color:var(--primary); }
.menu-toggle { display:none; border:0; background:#fff; border-radius:12px; padding:8px 12px; font-size:22px; }
.page { padding:42px 0 80px; min-height:68vh; }
.hero { display:grid; grid-template-columns:1.05fr .95fr; gap:34px; align-items:center; padding:42px 0; }
.hero h1 { font-size:clamp(42px,6vw,72px); line-height:.96; letter-spacing:-.07em; margin:14px 0; }
.hero p, .lead { color:var(--muted); font-size:18px; }
.eyebrow { display:inline-flex; padding:8px 13px; border-radius:999px; background:var(--soft); color:#8a5a06; font-weight:900; font-size:13px; }
.card { background:rgba(255,255,255,.82); border:1px solid var(--line); border-radius:var(--radius); padding:24px; box-shadow:var(--shadow); margin-bottom:18px; }
.form-card { display:grid; gap:16px; max-width:780px; }
label { display:grid; gap:7px; font-weight:850; }
input, select, textarea {
    width:100%; border:1px solid #dce5dd; border-radius:14px; padding:13px 14px; font:inherit; background:#fff;
}
textarea { min-height:100px; }
.btn, button.btn {
    display:inline-flex; justify-content:center; align-items:center; width:fit-content;
    background:linear-gradient(135deg,var(--primary),var(--primary2)); color:#fff;
    border:0; padding:12px 18px; border-radius:999px; font-weight:900; text-decoration:none; cursor:pointer;
}
.btn.secondary { background:#fff; color:var(--primary); border:1px solid var(--line); }
.btn.small { padding:8px 13px; font-size:14px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:22px; }
.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.muted { color:var(--muted); }
.alert { padding:12px 14px; border-radius:14px; margin-bottom:14px; }
.alert.error { background:#fee2e2; color:#991b1b; }
.alert.success { background:#dcfce7; color:#166534; }
.list-card { display:flex; justify-content:space-between; gap:16px; align-items:center; }
.highlight { border-color:rgba(215,155,54,.5); background:#fffaf0; }
.table-wrap { overflow:auto; }
table { width:100%; border-collapse:collapse; background:#fff; border-radius:18px; overflow:hidden; }
th, td { padding:13px; border-bottom:1px solid #edf1ec; text-align:left; }
th { background:#f8faf7; }
.progress-steps { display:flex; gap:10px; flex-wrap:wrap; }
.progress-steps a { text-decoration:none; padding:8px 12px; border-radius:999px; background:#f2f6f2; color:var(--muted); font-weight:800; font-size:13px; }
.progress-steps a.active { background:var(--primary); color:#fff; }
.site-footer { border-top:1px solid var(--line); padding:28px 0; color:var(--muted); }
.footer-grid { display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-links { display:flex; gap:14px; flex-wrap:wrap; }
.small { font-size:13px; }
.checklist { display:grid; gap:10px; }
.check { padding:12px; border-radius:14px; background:#f8faf7; border:1px solid var(--line); }
.check.ok { border-color:#86efac; background:#f0fdf4; }
.check.bad { border-color:#fecaca; background:#fff1f2; }
@media (max-width:820px) {
    .hero, .two-col { grid-template-columns:1fr; }
    .menu-toggle { display:block; }
    nav { display:none; width:100%; flex-direction:column; align-items:flex-start; padding-bottom:16px; }
    nav.open { display:flex; }
    .nav { align-items:flex-start; flex-wrap:wrap; padding:14px 0; }
    .btn { width:100%; }
}

.steps-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.step-card,
.benefit-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1f2937;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-list,
.numbered-list {
    margin-top: 15px;
    padding-left: 22px;
}

.feature-list li,
.numbered-list li {
    margin-bottom: 10px;
}

.note-card {
    background: #f8fafc;
}

.disclaimer-card {
    background: #fff7ed;
    border-color: #fed7aa;
}

.cta-card {
    text-align: center;
}

.btn {
    display: inline-block;
    margin: 10px 8px 0;
    padding: 12px 20px;
    border-radius: 8px;
    background: #1f2937;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: #6b7280;
}

.btn:hover {
    opacity: 0.9;
}
