:root {
    --bg: #f8fafc;
    --ink: #0f172a;
    --muted: #475569;
    --brand: #0f766e;
    --brand-dark: #115e59;
    --line: #dbe3ea;
    --card: #fff;
    --accent: #e0f2fe
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto
}

.skip {
    position: absolute;
    left: -999px
}

.skip:focus {
    left: 1rem;
    top: 1rem;
    background: #fff;
    padding: .7rem;
    z-index: 99
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(248, 250, 252, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    z-index: 10
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0
}

.brand {
    display: flex;
    gap: .65rem;
    align-items: center;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none
}

.brand-mark {
    background: var(--brand);
    color: white;
    border-radius: 12px;
    padding: .45rem .55rem
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center
}

.nav a {
    color: var(--ink);
    text-decoration: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    padding: .95rem 1.25rem;
    box-shadow: 0 10px 20px rgba(15, 118, 110, .18);
    cursor: pointer
}

.btn:hover {
    background: var(--brand-dark)
}

.btn-outline {
    background: white;
    color: var(--brand) !important;
    border: 1px solid var(--brand);
    box-shadow: none
}

.btn-small {
    padding: .65rem 1rem;
    font-size: .9rem;
}

.full {
    width: 100%
}

.hero {
    padding: 5.5rem 0 4rem;
    background: linear-gradient(135deg, #ecfeff 0%, #f8fafc 55%, #eff6ff 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
    align-items: center
}

.eyebrow {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 900;
    margin: 0 0 .7rem
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: .2rem 0 1rem
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    letter-spacing: -.055em
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -.04em
}

h3 {
    font-size: 1.3rem
}

.hero-text {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 62ch
}

.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin: 1.6rem 0
}

.trust-list {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0
}

.trust-list li {
    background: white;
    border: 1px solid var(--line);
    padding: .55rem .8rem;
    border-radius: 999px;
    font-weight: 700;
    color: #334155
}

.quote-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12)
}

label {
    display: grid;
    gap: .35rem;
    font-weight: 800;
    margin: .8rem 0
}

input,
select,
textarea {
    font: inherit;
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: .85rem;
    background: white
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #99f6e4;
    border-color: var(--brand)
}

.form-note {
    font-size: .82rem;
    color: var(--muted)
}

.section {
    padding: 4.5rem 0
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06)
}

.card p,
.wide,
.benefits p {
    color: var(--muted)
}

.contrast {
    background: #0f172a;
    color: white
}

.contrast .eyebrow {
    color: #5eead4
}

.contrast .benefits p {
    color: #dbeafe
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.wide {
    max-width: 78ch;
    font-size: 1.12rem
}

.cta-section {
    padding: 0 0 4.5rem
}

.cta-box {
    background: var(--brand);
    color: white;
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem
}

.cta-box p {
    color: #ccfbf1
}

.cta-box .btn {
    background: white;
    color: var(--brand) !important
}

.footer {
    border-top: 1px solid var(--line);
    padding: 2rem 0 5rem;
    background: white
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem
}

.footer a {
    color: var(--brand);
    font-weight: 800
}

.floating {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background: #16a34a;
    color: white;
    text-decoration: none;
    font-weight: 900;
    padding: .85rem 1rem;
    border-radius: 999px;
    box-shadow: 0 16px 30px rgba(22, 163, 74, .3)
}

@media (max-width:820px) {
    .nav-links a:not(.btn) {
        display: none
    }

    .hero {
        padding: 3.3rem 0 2.5rem
    }

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

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

    .cta-box {
        display: block
    }

    .footer-grid {
        display: block
    }

    .floating {
        left: 1rem;
        text-align: center
    }

    .quote-card {
        border-radius: 20px
    }

    h1 {
        font-size: 2.45rem
    }

    .hero-actions .btn {
        width: 100%
    }
}

.card a {
    color: var(--ink);
    text-decoration: none
}

.card a:hover {
    color: var(--brand)
}

.mini-links {
    font-size: .9rem
}

.service-list ul {
    margin: 0;
    padding-left: 1.2rem
}

.service-list li {
    margin: .6rem 0;
    color: #334155;
    font-weight: 700
}

.contrast .service-list li {
    color: #dbeafe
}

@media (max-width:980px) {
    .nav-links {
        gap: .7rem
    }

    .nav-links a:not(.btn) {
        font-size: .92rem
    }
}