:root {
    --primary: #0a8754;
    --bg: #f8fafc;
    --text: #111827;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);
    background: white;
}

.header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    padding: 14px 32px;
}

.logo {
    height: 38px;
    margin-right: 24px;
}

.nav a {
    margin-right: 18px;
    text-decoration: none;
    color: #374151;
}

.nav .cta {
    margin-left: auto;
    font-weight: 600;
    color: var(--primary);
}

.hero {
    background: var(--bg);
    padding: 90px 24px;
    text-align: center;
}

    .hero h1 {
        font-size: 40px;
    }

.subtitle {
    font-size: 18px;
    color: #4b5563;
}

.primary-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
}

section {
    max-width: 1100px;
    margin: auto;
    padding: 70px 24px;
}

.features li {
    margin-bottom: 10px;
}

.cta-final {
    text-align: center;
    background: var(--bg);
}

.footer {
    text-align: center;
    padding: 20px;
    background: #f1f5f9;
}
