:root {
    --bg: #f6f1e8;
    --panel: #ffffff;
    --text: #1f2937;
    --muted: #5b6472;
    --brand: #1f6f4d;
    --brand-dark: #164b35;
    --accent: #ffb84d;
    --line: #d7d0c2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8f4ec 0%, #fffdf7 100%);
    line-height: 1.6;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    width: 10em;
    font-size: 1.2rem;
    font-weight: 700;
}

.brand span {
    color: var(--brand);
}

nav {
    display: flex;
    gap: 18px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.hero {
    padding: 72px 0 48px;
}

.hero-grid,
.capture-grid,
.two-column {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
}

.eyebrow,
.section-tag,
.mini-badge {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.08;
    margin: 0 0 16px;
}

.lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 680px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}

.hero-points span,
.social-proof,
.urgency {
    background: #eff8f2;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--brand-dark);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand) 0%, #2c8b60 100%);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(31, 111, 77, 0.22);
}

.btn-primary.full {
    width: 100%;
    margin-top: 8px;
}

.hero-card,
.box-cta,
.lead-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.hero-card {
    padding: 28px;
}

.hero-card h2,
.capture-copy h2,
.benefits h2,
.content-section h2 {
    margin-top: 10px;
}

.hero-card ul {
    padding-left: 20px;
}

.benefits,
.content-section,
.capture {
    padding: 56px 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.benefit-grid article,
.box-cta {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
}

.capture-copy p,
.content-section p,
.benefit-grid p {
    color: var(--muted);
}

.lead-form {
    padding: 24px;
}

.lead-form label {
    display: block;
    margin-bottom: 16px;
    font-weight: 700;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="number"] {
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #c7c0b6;
    font-size: 1rem;
}

.consent-box {
    margin: 18px 0 20px;
    padding: 14px;
    border: 1px solid #d9d1c3;
    border-radius: 12px;
    background: #fbfaf7;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    color: var(--text);
}

.consent-label input {
    margin-top: 3px;
}

.consent-label a {
    color: var(--brand);
}

.consent-note {
    margin: 10px 0 0;
    font-size: 0.93rem;
    color: var(--muted);
}

.form-status {
    margin-top: 14px;
    min-height: 22px;
    color: var(--brand-dark);
    font-weight: 700;
}

.download-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 860px) {
    .hero-grid,
    .capture-grid,
    .two-column,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }
}
