:root {
    --navy: #232f5e;
    --navy-deep: #1a2347;
    --green: #2e9e4f;
    --green-dark: #23803e;
    --orange: #f5821f;
    --ink: #2b3145;
    --muted: #5b6178;
    --bg: #ffffff;
    --bg-soft: #f4f7f5;
    --bg-tint: #eef3fa;
    --line: #e3e7ef;
    --radius: 14px;
    --wm-light: url("../images/banner-bg-vectors.png");
    --wm-dark: url("../images/banner-bg-vectors-2.png");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

a {
    color: var(--green-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav .logo img {
    height: 44px;
    width: auto;
}

.nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav ul a {
    color: var(--navy);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
}

.nav ul a:hover {
    color: var(--green-dark);
}

.nav .cta-btn {
    background: var(--green);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
}

.nav .cta-btn:hover {
    background: var(--green-dark);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--navy);
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    background-color: #ffffff;
    background-image: var(--wm-light), linear-gradient(160deg, var(--bg-tint) 0%, #ffffff 55%, #f0f8f2 100%);
    background-size: 720px auto, cover;
    padding: 88px 0 72px;
    text-align: center;
}

.hero .kicker {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 26px;
}

.hero .kicker span {
    color: var(--orange);
}

.hero h1 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    color: var(--navy);
    line-height: 1.18;
    max-width: 820px;
    margin: 0 auto 20px;
    font-weight: 800;
}

.hero h1 em {
    font-style: normal;
    color: var(--green);
}

.hero p {
    max-width: 760px;
    margin: 0 auto 34px;
    font-size: 1.12rem;
    color: var(--muted);
}

.btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-ghost {
    border: 2px solid var(--orange);
    color: var(--orange);
}

.btn-ghost:hover {
    background: var(--orange);
    color: #fff;
}

.standards {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.standards-label {
    font-size: .8rem;
    color: var(--muted);
    margin-right: 4px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600;
}

.standards span:not(.standards-label) {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(35, 47, 94, .05);
}

/* ---------- Sections ---------- */
section {
    padding: 78px 0;
    background-image: var(--wm-light);
    background-size: 720px auto;
}

.section-head {
    max-width: 980px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head .tag {
    color: var(--orange);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-head h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    color: var(--navy);
    margin: 10px 0 14px;
    font-weight: 800;
}

.section-head h2::after {
    content: '';
    display: block;
    width: 58px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    margin: 14px auto 0;
}

.section-head p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

.soft {
    background: var(--bg-soft);
}

/* What is */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

.two-col h2 {
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 800;
}

.two-col h2::after {
    content: '';
    display: block;
    width: 58px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    margin: 14px 0 0;
}

.two-col p {
    color: var(--muted);
    margin-bottom: 16px;
}

.highlight-card {
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius);
    padding: 38px 34px;
    color: #fff;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #fff;
}

.highlight-card h3 span {
    color: var(--orange);
}

.hl-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.hl-item:last-child {
    margin-bottom: 0;
}

.hl-dot {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    margin-top: 8px;
}

.hl-item:nth-of-type(even) .hl-dot {
    background: var(--orange);
}

.hl-item p {
    color: #d6dbea;
    margin: 0;
    font-size: .97rem;
}

.hl-item strong {
    color: #fff;
}

/* Delivers grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.card:hover {
    box-shadow: 0 12px 30px rgba(35, 47, 94, .10);
    transform: translateY(-3px);
}

.card .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.3rem;
    background: #e8f5ec;
    color: var(--green-dark);
}

.card:nth-child(3n+2) .icon {
    background: #fdeedd;
    color: var(--orange);
}

.card:nth-child(3n) .icon {
    background: var(--bg-tint);
    color: var(--navy);
}

.card h3 {
    color: var(--navy);
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    font-size: .95rem;
}

/* Who it's for */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.persona {
    background: #fff;
    border-top: 4px solid var(--green);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 4px 18px rgba(35, 47, 94, .06);
    padding: 26px 22px;
}

.persona:nth-child(2) {
    border-top-color: var(--orange);
}

.persona:nth-child(3) {
    border-top-color: var(--navy);
}

.persona:nth-child(4) {
    border-top-color: var(--green-dark);
}

.persona h3 {
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 8px;
}

.persona p {
    color: var(--muted);
    font-size: .92rem;
}

/* Journey */
.journey {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    position: relative;
}

.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-weight: 800;
    font-size: .85rem;
    color: var(--orange);
    letter-spacing: .08em;
}

.step h3 {
    color: var(--navy);
    font-size: .98rem;
    margin: 8px 0 6px;
}

.step p {
    color: var(--muted);
    font-size: .88rem;
}

/* CTA band */
.cta-band {
    background: linear-gradient(140deg, var(--green-dark) 0%, var(--green) 60%, #45b264 100%);
    border-radius: var(--radius);
    padding: 56px 40px;
    text-align: center;
    color: #fff;
}

.cta-band h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    margin-bottom: 12px;
    font-weight: 800;
    color: #fff;
}

.cta-band p {
    max-width: 640px;
    margin: 0 auto 28px;
    color: #eaf7ee;
}

.cta-band .btn {
    background: #fff;
    color: var(--green-dark);
}

.cta-band .btn:hover {
    background: var(--navy);
    color: #fff;
}

/* Contact form */
.form-card {
    background: #fff;
    border-radius: var(--radius);
    max-width: 700px;
    margin: 36px auto 0;
    padding: 34px 32px;
    text-align: left;
    box-shadow: 0 18px 44px rgba(26, 35, 71, .18);
}

.form-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 4px;
    text-align: center;
}

.form-note {
    color: var(--muted) !important;
    font-size: .92rem;
    text-align: center;
    margin: 0 auto 22px !important;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: .88rem;
    margin-bottom: 6px;
}

.field label em {
    color: var(--orange);
    font-style: normal;
    margin-left: 2px;
}

.field .hint {
    font-weight: 400;
    color: var(--muted);
    font-size: .78rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    background: #fbfcfd;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(46, 158, 79, .12);
    background: #fff;
}

.field input.invalid,
.field textarea.invalid {
    border-color: #d64545;
    background: #fff7f7;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    gap: 12px;
}

.word-count {
    font-size: .8rem;
    color: var(--muted);
    white-space: nowrap;
}

.word-count.over {
    color: #d64545;
    font-weight: 700;
}

.form-error {
    font-size: .85rem;
    color: #d64545;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    margin-top: 6px;
}

.btn-submit:hover {
    background: var(--green-dark);
}

.form-success {
    text-align: center;
    color: var(--green-dark);
    font-weight: 700;
    padding: 26px 10px;
}

/* Reveal on scroll */
@media (prefers-reduced-motion: no-preference) {
    .fx {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .fx.in {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Footer ---------- */
footer {
    background-color: #ffffff;
    background-image: var(--wm-light);
    background-size: 720px auto;
    color: var(--muted);
    padding: 56px 0 28px;
    margin-top: 20px;
    border-top: 1px solid var(--line);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}

.foot-grid h4 {
    color: var(--navy);
    font-size: .95rem;
    margin-bottom: 14px;
    letter-spacing: .04em;
}

.foot-grid h4::after {
    content: '';
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: var(--orange);
    margin-top: 8px;
}

.foot-grid ul {
    list-style: none;
}

.foot-grid li {
    margin-bottom: 9px;
}

.foot-grid a {
    color: var(--muted);
    font-size: .92rem;
}

.foot-grid a:hover {
    color: var(--green-dark);
}

.foot-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
}

.foot-brand p {
    font-size: .9rem;
    color: var(--muted);
    max-width: 280px;
}

.from-block {
    text-align: center;
    padding: 30px 0 8px;
}

.from-block .from-label {
    display: block;
    font-size: .8rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    font-weight: 700;
}

.from-block .biz-badge {
    display: inline-block;
    padding: 6px 0;
}

.from-block .biz-badge img {
    height: 56px;
    width: auto;
    margin: 0 auto;
}

.copyright {
    text-align: center;
    font-size: .82rem;
    color: var(--muted);
    padding-top: 18px;
}

.copyright a {
    color: var(--green-dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--line);
        padding: 10px 24px 18px;
    }

    .nav ul.open {
        display: flex;
    }

    .nav ul li {
        width: 100%;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .grid,
    .persona-grid,
    .journey {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 56px 0;
    }

    .hero {
        padding: 64px 0 52px;
    }
}