:root {
    --bg: #ffffff;
    --surface: #f8fafc;
    --surface-2: #e0f2fe;
    --card: #ffffff;
    --muted: #475569;
    --text: #0f172a;
    --brand: #0ea5e9;
    --brand-2: #0369a1;
    --brand-soft: #dbeafe;
    --ok: #16a34a;
    --ring: rgba(14, 165, 233, .25);
    --radius: 16px;
    --shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font: 16px/1.6 Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg)
}

a {
    color: var(--brand-2);
    text-decoration: none;
    transition: color .2s ease
}

a:hover {
    color: #0c4a6e
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    color: var(--text)
}

.brand img {
    height: 34px;
    width: auto
}

.menu {
    display: flex;
    align-items: center;
    gap: 18px
}

.menu a {
    color: #0f172a;
    opacity: .9;
    font-weight: 500
}

.menu a.btn {
    margin-left: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: .2s ease;
    font-family: inherit
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 24px var(--ring)
}

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

.btn-outline {
    border: 1px solid #e2e8f0;
    color: var(--text);
    background: #fff
}

.btn-outline:hover {
    border-color: var(--brand-soft);
    color: var(--brand-2)
}

.section {
    padding: 78px 0
}

.section.section-muted {
    background: var(--surface)
}

.hero {
    padding: 140px 0 120px;
    background: radial-gradient(circle at top left, rgba(14, 165, 233, .12), transparent 45%), radial-gradient(circle at 80% 20%, rgba(14, 165, 233, .08), transparent 55%), linear-gradient(180deg, #f8fafc 0%, #ffffff 65%);
    position: relative;
    overflow: hidden
}

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

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

@media(min-width:960px) {
    .grid-2 {
        grid-template-columns: 1.1fr .9fr
    }
}

.h1 {
    font-size: 48px;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -.02em
}

.h2 {
    font-size: 32px;
    margin: 0 0 12px 0;
    letter-spacing: -.015em
}

.badge {
    display: inline-block;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e3f3ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em
}

.kicker {
    color: var(--muted);
    margin-top: 14px;
    max-width: 720px
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #0f172a;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0
}

.cta {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap
}

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

.card {
    background: var(--card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow)
}

.card h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    letter-spacing: -.01em
}

.card p {
    margin: 0;
    color: #334155;
    font-size: 15px
}

.offer-circle {
    display: grid;
    gap: 18px;
    margin: 48px 0
}

.offer-core,
.offer-node {
    border-radius: 20px;
    border: 1px solid #dbeafe;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 24px;
    box-shadow: 0 20px 36px rgba(14, 165, 233, .12)
}

.offer-core {
    text-align: center;
    max-width: 420px;
    margin: 0 auto
}

.offer-core h3 {
    margin: 12px 0 8px 0;
    font-size: 22px
}

.offer-core p {
    margin: 0;
    color: #475569;
    font-size: 15px
}

.offer-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.offer-node h4 {
    margin: 0 0 6px 0;
    font-size: 18px
}

.offer-node p {
    margin: 0;
    font-size: 14px;
    color: #475569
}

.offer-grid {
    margin-top: 60px
}

.offer-grid .card {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    box-shadow: 0 16px 28px rgba(14, 165, 233, .08)
}

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

.list li {
    padding-left: 26px;
    position: relative;
    margin: 10px 0;
    color: #0f172a;
    font-size: 15px
}

.list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--ok);
    font-weight: 700
}

.hero-grid {
    display: grid;
    gap: 36px
}

@media(min-width:1040px) {
    .hero-grid {
        grid-template-columns: 1.15fr .85fr;
        align-items: center
    }
}

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

.hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #0f172a
}

.hero-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #eff9ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px
}

.hero-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 26px
}

.hero-panel {
    display: grid;
    gap: 18px
}

.status-card {
    padding: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbeafe
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px
}

.status-header h3 {
    margin: 0;
    font-size: 18px
}

.status-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: #0f172a;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px
}

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

.status-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #0f172a
}

.status-list li strong {
    font-size: 15px
}

.status-list li span {
    color: #64748b
}

.status-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #cbd5f5;
    font-size: 13px;
    color: #475569
}

.human-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 24px 40px rgba(15, 23, 42, .25)
}

.human-card h3 {
    margin: 0 0 6px 0;
    color: #fff
}

.human-card p {
    margin: 0;
    color: rgba(255, 255, 255, .85)
}

.human-card .name {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #e0f2fe
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff
}

.section-header {
    max-width: 720px;
    margin-bottom: 28px
}

.section-header--with-cta {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.section-header--with-cta .section-copy {
    flex: 1 1 320px;
    max-width: 720px
}

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

.section-header-cta .btn {
    margin: 0
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0369a1;
    margin-bottom: 10px
}

.highlight {
    background: linear-gradient(160deg, #f0f9ff 0%, #ffffff 60%)
}

.feature-grid {
    display: grid;
    gap: 20px
}

.feature-card {
    position: relative;
    padding-bottom: 32px
}

.feature-card:after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 18px;
    height: 1px;
    background: #e2e8f0
}

.feature-card:last-child:after {
    display: none
}

.feature-card h3 {
    font-size: 20px;
    margin: 0 0 10px 0
}

.feature-card p {
    font-size: 15px;
    margin: 0 0 14px 0;
    color: #334155
}

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

.feature-list li {
    padding-left: 22px;
    position: relative;
    font-size: 14px;
    color: #0f172a
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 5px;
    top: 0;
    color: #0ea5e9;
    font-weight: 700
}

.timeline {
    display: grid;
    gap: 24px;
    position: relative
}

@media(min-width:960px) {
    .timeline {
        grid-template-columns: repeat(3, 1fr)
    }
}

.timeline-step {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05)
}

.timeline-step-final {
    background: linear-gradient(135deg, #0ea5e9 0%, #0f172a 100%);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 24px 38px rgba(15, 23, 42, .25)
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #0ea5e9;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.timeline-step h3 {
    margin: 0 0 12px 0;
    font-size: 18px
}

.timeline-step p {
    margin: 0;
    color: #334155;
    font-size: 15px
}

.timeline-step-final h3 {
    color: #fff
}

.timeline-step-final .step-number {
    background: rgba(255, 255, 255, .15)
}

.timeline-step-final p {
    color: rgba(255, 255, 255, .88)
}

.timeline-step-final .list li {
    color: #fff
}

.timeline-step-final .list li:before {
    color: #fff
}

@media(min-width:960px) {
    .timeline-step-final {
        grid-column: 1/-1
    }
}

.metrics {
    display: grid;
    gap: 20px;
    margin-top: 24px
}

.metrics-card {
    background: #0f172a;
    color: #fff;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 24px 40px rgba(15, 23, 42, .18);
    display: flex;
    flex-direction: column;
    gap: 10px
}

.metrics-value {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.01em
}

.metrics-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .7)
}

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

.service-card {
    position: relative
}

.highlight-card {
    background: linear-gradient(150deg, #0ea5e9 0%, #0369a1 85%);
    color: #fff;
    border: 1px solid transparent
}

.highlight-card h3,
.highlight-card p {
    color: #fff
}

.highlight-card .feature-list li {
    color: #fff
}

.highlight-card .feature-list li:before {
    color: #fff
}

.highlight-card .btn-primary {
    background: #ffffff;
    color: #0369a1;
    box-shadow: none
}

.highlight-card .btn-primary:hover {
    background: #e2e8f0
}

.cta.small {
    margin-top: 20px
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

.quote {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, .08);
    font-size: 15px;
    color: #0f172a
}

.quote .name {
    margin-top: 14px;
    font-weight: 700;
    color: #0369a1
}

.human-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px
}

.human-highlight .btn {
    flex-shrink: 0
}

.contact-section form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #475569
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d7e3;
    border-radius: 12px;
    font: inherit;
    color: inherit;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .18)
}

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

.support-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
    border-radius: 20px;
    padding: 28px
}

.support-card h3 {
    margin: 0;
    font-size: 22px
}

.support-lead {
    margin: 4px 0 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6
}

.support-actions {
    display: grid;
    gap: 12px;
    margin-top: 8px
}

.support-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #bae6fd;
    border-radius: 14px;
    padding: 14px 18px;
    background: #f1faff;
    text-decoration: none;
    transition: .2s ease
}

.support-pill span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #0f172a;
    opacity: .7
}

.support-pill strong {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a
}

.support-pill:hover {
    border-color: #0ea5e9;
    box-shadow: 0 10px 20px rgba(14, 165, 233, .15)
}

.support-points {
    display: grid;
    gap: 14px
}

.support-points .point {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 16px
}

.support-points .point strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px
}

.support-points .point p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6
}

.support-finish {
    border-top: 1px solid #e2e8f0;
    padding-top: 14px;
    font-size: 14px;
    color: #334155
}

.footer {
    border-top: 1px solid #e2e8f0;
    background: #fff;
    padding: 42px 0;
    color: #64748b;
    font-size: 13px
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap
}

.footer .brand {
    font-size: 18px
}

@media(min-width:720px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .metrics {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testimonials {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(min-width:1040px) {
    .metrics {
        grid-template-columns: repeat(4, 1fr)
    }

    .service-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.offer-circle {
    overflow: visible
}

@media(min-width:960px) {
    .offer-circle {
        position: relative;
        display: block;
        max-width: 760px;
        aspect-ratio: 1/1;
        margin: 70px auto 80px
    }

    .offer-core {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 280px;
        max-width: 70%;
        padding: 32px;
        box-shadow: 0 30px 60px rgba(15, 23, 42, .18)
    }

    .offer-core p {
        font-size: 15px
    }

    .offer-node {
        position: absolute;
        width: 220px;
        padding: 22px;
        text-align: left;
        box-shadow: 0 24px 40px rgba(15, 23, 42, .16)
    }

    .offer-node--1 {
        top: 2%;
        left: 50%;
        transform: translate(-50%, -10%)
    }

    .offer-node--2 {
        top: 18%;
        right: -6%
    }

    .offer-node--3 {
        bottom: 20%;
        right: -6%
    }

    .offer-node--4 {
        bottom: -6%;
        left: 50%;
        transform: translate(-50%, 0)
    }

    .offer-node--5 {
        bottom: 20%;
        left: -6%
    }

    .offer-node--6 {
        top: 18%;
        left: -6%
    }

    .offer-node p {
        font-size: 13px;
        line-height: 1.5
    }
}

@media(min-width:1040px) {
    .offer-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:720px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px
    }

    .hero {
        padding: 120px 0 80px
    }

    .h1 {
        font-size: 38px
    }

    .hero-icon {
        width: 28px;
        height: 28px
    }

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

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