﻿:root {
    --ink: #17202a;
    --muted: #5d6975;
    --line: #d8e1e8;
    --blue: #0f2f66;
    --teal: #1f7a7a;
    --teal-dark: #155d5d;
    --bg: #f5f8fb;
    --white: #ffffff;
    --soft: #eaf2f5;
    --shadow: 0 18px 40px rgba(15, 47, 102, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    font-size: 16px;
    letter-spacing: normal;
}

/* Keep normal spacing everywhere except the small eyebrow label */
body,
h1,
h2,
h3,
p,
a,
li,
strong,
div,
span,
.btn,
.contact-card,
.card,
.timeline-item,
.highlight-box,
.stack-grid {
    letter-spacing: normal;
}

a {
    color: var(--teal);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

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

.site-header {
    background: linear-gradient(135deg, rgba(15, 47, 102, 0.96), rgba(31, 122, 122, 0.90)), radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 32%);
    color: var(--white);
    padding: 56px 0 48px;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: center;
}

.hero-copy {
    max-width: 850px;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d6f2f0;
    margin-bottom: 12px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1;
    margin-bottom: 18px;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 1.12;
    margin-bottom: 24px;
    font-weight: 800;
}

h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 800;
}

.headline {
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    max-width: 830px;
    margin-bottom: 18px;
    line-height: 1.35;
}

.intro {
    font-size: 1.08rem;
    color: #edf7f7;
    max-width: 840px;
    margin-bottom: 28px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

    .cta-row.center {
        justify-content: center;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.1;
    white-space: nowrap;
}

    .btn:hover {
        text-decoration: none;
    }

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

    .btn.secondary {
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.65);
    }

        .btn.secondary.light {
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.75);
        }

.insurance {
    margin: 22px 0 0;
    color: #d6f2f0;
    font-weight: 800;
}

.contact-card {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    padding: 28px;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

    .contact-card h2 {
        color: var(--blue);
        font-size: 1.45rem;
        margin-bottom: 20px;
    }

    .contact-card p {
        margin-bottom: 20px;
    }

        .contact-card p:last-child {
            margin-bottom: 0;
        }

    .contact-card strong {
        display: block;
        color: var(--ink);
        margin-bottom: 4px;
    }

.section {
    padding: 64px 0;
}

    .section.alt {
        background: var(--bg);
    }

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

.cards {
    display: grid;
    gap: 20px;
}

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

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

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 24px rgba(23, 32, 42, 0.05);
}

    .card h3 {
        color: var(--blue);
    }

    .card p:last-child {
        margin-bottom: 0;
    }

.split {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 34px;
    align-items: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

    .check-list li {
        position: relative;
        padding-left: 34px;
        margin-bottom: 15px;
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 1px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--teal);
            color: var(--white);
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
        }

.highlight-box {
    background: var(--blue);
    color: var(--white);
    padding: 34px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.big-number {
    font-size: 2.65rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.highlight-box p {
    color: #edf7f7;
    margin-bottom: 0;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

    .stack-grid > div {
        border-top: 4px solid var(--teal);
        background: var(--soft);
        padding: 24px;
        border-radius: 18px;
    }

    .stack-grid h3 {
        color: var(--ink);
    }

    .stack-grid p {
        color: var(--muted);
        margin-bottom: 0;
    }

.timeline {
    display: grid;
    gap: 0;
}

.timeline-item {
    padding: 24px 0 24px 26px;
    border-left: 4px solid var(--teal);
    border-bottom: 1px solid var(--line);
}

    .timeline-item:first-child {
        padding-top: 0;
    }

    .timeline-item h3 {
        color: var(--blue);
    }

    .timeline-item p {
        color: var(--muted);
        margin-bottom: 0;
    }

.final-cta {
    background: linear-gradient(135deg, var(--blue), var(--teal-dark));
    color: var(--white);
    text-align: center;
    padding: 64px 0;
}

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

    .final-cta p {
        max-width: 780px;
        margin: 0 auto 28px;
        color: #edf7f7;
        font-size: 1.08rem;
    }

.site-footer {
    background: #101820;
    color: #d8e1e8;
    padding: 22px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

    .footer-grid p {
        margin: 0;
    }

@media (max-width: 980px) {
    .header-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .contact-card {
        max-width: 560px;
    }

    .cards.three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(100% - 28px, 1120px);
    }

    .site-header {
        padding: 38px 0;
    }

    h1 {
        font-size: clamp(2.4rem, 14vw, 3.6rem);
    }

    h2 {
        font-size: clamp(1.8rem, 9vw, 2.35rem);
    }

    .cards.two,
    .stack-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 46px 0;
    }

    .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .cta-row {
        width: 100%;
    }

    .contact-card {
        padding: 24px;
    }

    .highlight-box {
        padding: 28px;
    }

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