:root {
    --navy: #071d35;
    --blue: #1168d8;
    --blue-soft: #eef6ff;
    --green: #05a83f;
    --green-dark: #007b35;
    --mint: #eafbef;
    --ink: #12213a;
    --muted: #5f6f83;
    --line: #dbe8f5;
    --soft: #f7fbff;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

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

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 144px;
    padding-right: 144px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(219, 232, 245, .88);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    box-shadow: 0 14px 32px rgba(7, 29, 53, .08);
}

.nav-wrap {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 214px;
    height: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.site-nav a {
    color: #31445f;
    font-size: 14px;
    font-weight: 800;
    padding: 11px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--green-dark);
    background: var(--mint);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 19px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(17, 104, 216, .22);
}

.btn-secondary {
    background: var(--white);
    border-color: var(--line);
    color: var(--navy);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(5, 168, 63, .18);
}

.section {
    padding: 112px 0;
}

.section-soft {
    background:
        linear-gradient(90deg, rgba(238, 246, 255, .9), rgba(255, 255, 255, .9) 52%, rgba(234, 251, 239, .76)),
        var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 12px;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(38px, 6vw, 68px);
    max-width: 980px;
}

h2 {
    font-size: clamp(28px, 4vw, 46px);
    max-width: 860px;
}

h3 {
    font-size: 20px;
}

p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.lead {
    margin-top: 18px;
    font-size: 20px;
    max-width: 880px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, .98) 0%, rgba(238, 246, 255, .9) 54%, rgba(234, 251, 239, .88) 100%);
    padding: 116px 0 84px;
    border-bottom: 1px solid var(--line);
}

.hero-image-landing {
    min-height: calc(100vh - 86px);
    padding: 0;
    background: var(--white);
}

.hero-image-landing:before {
    display: none;
}

.hero-media {
    display: block;
    width: 100%;
    height: calc(100vh - 86px);
    min-height: 620px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-action-panel {
    position: absolute;
    bottom: 34px;
    left: 144px;
    max-width: 560px;
    pointer-events: auto;
}

.hero-action-panel .hero-actions {
    margin-top: 0;
}

.hero-action-panel .trust-text {
    max-width: 520px;
    margin-top: 14px;
    color: var(--navy);
    font-size: 18px;
}

@media (min-width: 1200px) {
    body {
        font-size: 18px;
    }

    p {
        font-size: 18px;
    }

    .lead {
        font-size: 22px;
    }

    .card p,
    .faq-item p,
    .contact-panel p,
    .site-footer p,
    .site-footer a,
    .site-footer span {
        font-size: 17px;
    }

    .site-nav a,
    .btn,
    .pill,
    .stat-panel span,
    .metric span {
        font-size: 14px;
    }
}

.hero:before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green), var(--blue), var(--green));
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .74fr);
    gap: 64px;
    align-items: center;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.trust-text {
    margin-top: 20px;
    font-weight: 900;
    color: #31445f;
}

.highlight-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--line);
    color: #344762;
    font-size: 13px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    padding: 18px 0 0;
}

.hero-visual:before {
    content: "";
    position: absolute;
    right: -28px;
    top: -26px;
    width: 74%;
    height: 78%;
    background: linear-gradient(145deg, rgba(5, 168, 63, .11), rgba(17, 104, 216, .12));
    border-radius: 42px;
    z-index: 0;
}

.hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    background: rgba(255, 255, 255, .86);
    border-radius: 10px;
    padding: 12px;
}

.metric-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 22px;
    background: rgba(255, 255, 255, .74);
}

.metric {
    padding: 18px;
    border-right: 1px solid var(--line);
}

.metric:last-child {
    border-right: 0;
}

.metric strong {
    display: block;
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
}

.metric span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    margin: 0 0 38px;
    background: var(--line);
    border: 1px solid var(--line);
}

.stat-panel {
    min-height: 158px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(238, 246, 255, .78));
    padding: 26px;
}

.stat-panel span {
    color: #334761;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.stat-panel strong {
    color: var(--navy);
    font-size: clamp(42px, 5vw, 72px);
    line-height: .92;
    letter-spacing: 0;
}

.stat-panel strong:after {
    content: "+";
    color: var(--green);
    font-size: .48em;
    vertical-align: super;
    margin-left: 3px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 34px;
    margin-bottom: 38px;
}

.section-head p {
    max-width: 520px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    position: relative;
    min-height: 100%;
    background: rgba(255, 255, 255, .72);
    border-top: 2px solid var(--line);
    padding: 25px 8px 8px 0;
}

.section-soft .card {
    background: transparent;
}

.card:hover {
    border-top-color: var(--green);
}

.card h3 {
    margin-bottom: 10px;
}

.card-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: var(--white);
    font-weight: 900;
    margin-bottom: 16px;
    font-size: 13px;
}

.list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list li {
    position: relative;
    padding-left: 24px;
    color: #40516a;
    font-weight: 800;
}

.list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 1), rgba(238, 246, 255, .95) 58%, rgba(234, 251, 239, .92));
    padding: 102px 0 96px;
    border-bottom: 1px solid var(--line);
}

.page-hero:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38%;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--blue));
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.timeline {
    counter-reset: step;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.step {
    counter-increment: step;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.step:before {
    content: counter(step);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-weight: 900;
}

.faq-item {
    border-top: 1px solid var(--line);
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-panel {
    background: linear-gradient(145deg, var(--navy), #0d3866);
    color: var(--white);
    border-radius: 8px;
    padding: 34px;
}

.contact-panel h2,
.contact-panel h3 {
    color: var(--white);
}

.contact-panel p,
.contact-panel a {
    color: #d9e8f7;
}

.form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px 13px;
    font: inherit;
    color: var(--ink);
    background: var(--white);
}

textarea {
    min-height: 132px;
    resize: vertical;
}

.cta-band {
    background:
        linear-gradient(135deg, rgba(7, 29, 53, .97), rgba(12, 58, 104, .96)),
        var(--navy);
    color: var(--white);
    padding: 82px 0;
}

.cta-band h2 {
    color: var(--white);
}

.cta-band p {
    color: #d7e5f5;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer {
    background: #06172b;
    color: #d7e5f5;
    padding: 50px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 34px;
    margin-bottom: 32px;
}

.site-footer h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 220px;
    height: auto;
    margin: 0 0 16px;
    background: rgba(255, 255, 255, .96);
    border-radius: 8px;
    padding: 8px;
}

.site-footer p,
.site-footer a,
.site-footer span {
    color: #b8c8dc;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: background .18s ease, transform .18s ease;
    width: 42px;
}

.social-links a:hover {
    background: var(--green);
    transform: translateY(-1px);
}

.social-links svg {
    fill: currentColor;
    height: 22px;
    width: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    color: #9fb1c7;
}

@media (max-width: 1080px) {
    .nav-wrap {
        grid-template-columns: auto auto;
        min-height: 76px;
    }

    .brand-logo {
        width: 186px;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-nav,
    .nav-actions {
        display: none;
        grid-column: 1 / -1;
    }

    .site-header.nav-open .site-nav,
    .site-header.nav-open .nav-actions {
        display: flex;
    }

    .site-header.nav-open .site-nav {
        align-items: stretch;
        flex-direction: column;
        border-top: 1px solid var(--line);
        padding-top: 14px;
    }

    .site-header.nav-open .nav-actions {
        align-items: stretch;
        flex-direction: column;
        padding-bottom: 14px;
    }

    .hero-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-4,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-head,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-action-panel {
        left: 54px;
        bottom: 24px;
        max-width: 470px;
    }

    .hero-action-panel .trust-text {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .container {
        width: 100%;
        padding-left: 54px;
        padding-right: 54px;
    }

    .brand-logo {
        width: 162px;
    }

    .hero,
    .page-hero {
        padding: 72px 0 60px;
    }

    .hero-image-landing {
        min-height: auto;
        padding: 0;
    }

    .hero-media {
        height: auto;
        min-height: 0;
    }

    .hero-media img {
        height: auto;
        object-fit: contain;
    }

    .hero-overlay {
        position: static;
        pointer-events: auto;
    }

    .hero-action-panel {
        position: static;
        max-width: none;
        padding: 18px 54px 26px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
    }

    .hero-action-panel .hero-actions {
        margin-top: 0;
    }

    .hero-action-panel .trust-text {
        font-size: 16px;
    }

    .section {
        padding: 76px 0;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .form-row,
    .metric-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .metric {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .metric:last-child {
        border-bottom: 0;
    }

    .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
