:root {
    --primary: #08c45c;
    --primary-dark: #009846;
    --green: #00a94f;
    --bg: #f7f7f8;
    --surface: #ffffff;
    --surface-muted: #f1f2f4;
    --text: #151515;
    --text-soft: #60636b;
    --text-muted: #91949c;
    --border: #e7e8ec;
    --shadow: 0 8px 24px rgba(22, 24, 29, 0.08);
    --radius: 16px;
    --radius-lg: 28px;
}

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

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100%, 1188px);
    margin: 0 auto;
    padding: 0 16px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.topbar-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 21px;
    font-weight: 800;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
    color: var(--primary);
}

.nav-link svg,
.check svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.brand-mark svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--text-soft);
    font-weight: 700;
}

.nav a:hover {
    color: var(--text);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-weight: 800;
}

.nav-link svg {
    width: 18px;
    height: 18px;
}

.hero {
    padding: 34px 0 18px;
}

.hero-card {
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
}

.eyebrow {
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #047b3a;
    font-size: 13px;
    font-weight: 800;
}

h1 {
    max-width: 680px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: 0;
}

.lead {
    max-width: 620px;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 18px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
}

.btn-primary {
    background: var(--text);
    color: white;
}

.btn-secondary {
    border: 1px solid var(--border);
    background: var(--surface);
}

.hero-media {
    position: relative;
    min-height: 360px;
    background: var(--text);
}

.hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.stat {
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 25px;
    font-weight: 800;
}

.stat span {
    color: var(--text-soft);
    font-weight: 700;
}

.content {
    padding: 16px 0 54px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.card h2,
.card h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.2;
}

.card p,
.card li {
    color: var(--text-soft);
    font-weight: 600;
}

.card ul {
    display: grid;
    gap: 9px;
    margin-top: 12px;
    padding-left: 18px;
}

.wide {
    grid-column: span 2;
}

.accent {
    border-color: rgba(0, 169, 79, 0.35);
    background: linear-gradient(135deg, #ffffff, #f0fff7);
}

.steps {
    counter-reset: step;
    display: grid;
    gap: 12px;
}

.step {
    position: relative;
    padding: 18px 18px 18px 58px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 17px;
    top: 18px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 800;
}

.checklist {
    display: grid;
    gap: 10px;
}

.check {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
}

.check svg {
    width: 22px;
    height: 22px;
    color: var(--green);
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--text);
    color: white;
}

.cta p {
    color: rgba(255, 255, 255, 0.78);
}

.footer {
    padding: 36px 0 42px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 1fr));
    gap: 28px 44px;
    align-items: start;
}

.footer-brand {
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

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

.footer p {
    max-width: 340px;
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.footer-title {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 9px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 650;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 28px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .footer {
        padding: 24px 0 92px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 18px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-brand {
        font-size: 21px;
    }

    .footer p {
        max-width: none;
        margin-top: 9px;
        font-size: 13px;
    }

    .footer-title {
        margin-bottom: 9px;
        font-size: 13px;
    }

    .footer-links {
        gap: 8px;
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 260px;
        order: -1;
    }

    .grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .wide {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .container {
        padding: 0 12px;
    }

    .topbar-inner {
        min-height: 58px;
    }

    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .hero {
        padding-top: 16px;
    }

    .hero-copy {
        padding: 24px 18px;
    }

    .hero-media {
        min-height: 210px;
    }

    .lead {
        font-size: 16px;
    }

    .cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Unified footer layout */
.footer {
    padding: 36px 0 42px;
    border-top: 1px solid var(--border, #e7e8ec);
    background: var(--surface, var(--bg-white, #fff));
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 1fr));
    gap: 28px 44px;
    align-items: start;
}

.footer-grid > div:first-child {
    min-width: 0;
}

.footer-brand {
    max-width: none;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.footer-logo,
.footer-brand span {
    color: var(--primary, #08c45c);
}

.footer p,
.footer-desc {
    max-width: 340px;
    margin-top: 12px;
    color: var(--text-soft, var(--text-secondary, #60636b));
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.footer-title {
    margin-bottom: 12px;
    color: var(--text, #151515);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 9px;
    color: var(--text-soft, var(--text-secondary, #60636b));
    font-size: 14px;
    line-height: 1.25;
    font-weight: 650;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary, #08c45c);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 28px;
    }

    .footer-grid > div:first-child,
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .footer {
        padding: 24px 0 92px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 18px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-brand {
        font-size: 21px;
    }

    .footer p,
    .footer-desc {
        max-width: none;
        margin-top: 9px;
        font-size: 13px;
    }

    .footer-title {
        margin-bottom: 9px;
        font-size: 13px;
    }

    .footer-links {
        gap: 8px;
        font-size: 12px;
    }
}
