/* ==========================================
   RESET
========================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background: #f5f7fb;
    color: #172033;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* ==========================================
   GENERAL LAYOUT
========================================== */

.section-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #2563eb;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.13em;
}

.eyebrow.light {
    color: #93c5fd;
}


/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(37, 99, 235, 0.32),
            transparent 34%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(59, 130, 246, 0.14),
            transparent 30%
        ),
        #0b1220;
}

.hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;
    top: -300px;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}


/* ==========================================
   NAVIGATION
========================================== */

.main-nav {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    min-height: 82px;

    margin: 0 auto;
    padding: 0 24px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #2563eb;
    color: #ffffff;

    font-size: 18px;
    font-weight: 850;

    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.28);
}

.brand-name {
    color: #ffffff;

    font-size: 20px;
    font-weight: 750;

    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;

    align-items: center;

    gap: 28px;
}

.nav-links a {
    color: #cbd5e1;

    text-decoration: none;

    font-size: 14px;
    font-weight: 550;

    transition:
        color 0.15s ease,
        background 0.15s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links .nav-cta {
    padding: 11px 18px;

    border-radius: 9px;

    color: #ffffff;

    background: #2563eb;
}

.nav-links .nav-cta:hover {
    background: #1d4ed8;
}


/* ==========================================
   HERO INNER
========================================== */

.hero-inner {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding:
        88px
        24px
        105px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(330px, 0.85fr);

    align-items: center;

    gap: 85px;
}

.hero-kicker {
    display: inline-flex;

    align-items: center;

    padding: 7px 12px;

    margin-bottom: 20px;

    border: 1px solid rgba(147, 197, 253, 0.22);
    border-radius: 999px;

    background: rgba(37, 99, 235, 0.12);

    color: #bfdbfe;

    font-size: 13px;
    font-weight: 650;
}

.hero-content h1 {
    max-width: 690px;

    margin: 0;

    color: #ffffff;

    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;

    letter-spacing: -0.045em;
}

.hero-content h1 span {
    display: block;

    margin-top: 7px;

    color: #93c5fd;
}

.hero-description {
    max-width: 630px;

    margin:
        24px
        0
        0;

    color: #cbd5e1;

    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 31px;
}

.primary-hero-button,
.secondary-hero-button {
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        transform 0.15s ease;
}

.primary-hero-button {
    background: #2563eb;
    color: #ffffff;

    box-shadow:
        0 12px 28px rgba(37, 99, 235, 0.25);
}

.primary-hero-button:hover {
    background: #1d4ed8;
}

.secondary-hero-button {
    border: 1px solid rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.05);

    color: #e2e8f0;
}

.secondary-hero-button:hover {
    background: rgba(255, 255, 255, 0.09);
}

.primary-hero-button:active,
.secondary-hero-button:active {
    transform: translateY(1px);
}

.trust-row {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 28px;

    color: #cbd5e1;

    font-size: 13px;
    font-weight: 550;
}


/* ==========================================
   HERO PREVIEW
========================================== */

.hero-preview {
    width: 100%;
}

.preview-card {
    position: relative;

    padding: 26px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.055)
        );

    backdrop-filter: blur(16px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);
}

.preview-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-label {
    color: #e2e8f0;

    font-size: 13px;
    font-weight: 700;
}

.preview-status {
    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(34, 197, 94, 0.12);

    color: #86efac;

    font-size: 11px;
    font-weight: 700;
}

.route-preview {
    padding:
        27px
        0
        23px;
}

.route-point {
    display: flex;

    align-items: center;

    gap: 14px;
}

.route-dot {
    width: 13px;
    height: 13px;

    flex-shrink: 0;

    border: 3px solid #93c5fd;
    border-radius: 50%;

    background: #0b1220;

    box-shadow:
        0 0 0 5px rgba(147, 197, 253, 0.08);
}

.route-dot.destination {
    border-color: #60a5fa;

    box-shadow:
        0 0 0 5px rgba(96, 165, 250, 0.1);
}

.route-small {
    display: block;

    margin-bottom: 4px;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.13em;
}

.route-point strong {
    color: #ffffff;

    font-size: 16px;
}

.route-line {
    width: 13px;
    height: 43px;

    margin-left: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #64748b;

    font-size: 16px;
}

.preview-details {
    display: grid;

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

    gap: 12px;
}

.preview-details > div {
    padding: 14px 15px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;

    background: rgba(255, 255, 255, 0.045);
}

.preview-details span {
    display: block;

    margin-bottom: 5px;

    color: #94a3b8;

    font-size: 11px;
}

.preview-details strong {
    color: #e2e8f0;

    font-size: 13px;
}

.preview-footer {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 18px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-provider-dots {
    display: flex;
}

.preview-provider-dots span {
    width: 29px;
    height: 29px;

    margin-left: -7px;

    border: 2px solid #172033;
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #60a5fa,
            #2563eb
        );
}

.preview-provider-dots span:first-child {
    margin-left: 0;
}

.preview-provider-dots span:nth-child(2) {
    background:
        linear-gradient(
            135deg,
            #94a3b8,
            #475569
        );
}

.preview-provider-dots span:nth-child(3) {
    background:
        linear-gradient(
            135deg,
            #38bdf8,
            #1d4ed8
        );
}

.preview-footer p {
    margin: 0;

    color: #94a3b8;

    font-size: 11px;
    line-height: 1.4;
}


/* ==========================================
   SERVICE STRIP
========================================== */

.service-strip {
    background: #ffffff;

    border-bottom: 1px solid #e7ebf1;
}

.service-strip-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 22px 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 34px;

    flex-wrap: wrap;
}

.service-strip span {
    position: relative;

    color: #64748b;

    font-size: 13px;
    font-weight: 650;
}

.service-strip span:not(:last-child)::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    right: -19px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #cbd5e1;
}


/* ==========================================
   HOW IT WORKS
========================================== */

.how-section {
    padding:
        95px
        0
        105px;

    background: #ffffff;
}

.section-intro {
    max-width: 700px;

    margin:
        0
        auto
        48px;

    text-align: center;
}

.section-intro h2,
.quote-intro h2 {
    margin:
        0
        0
        15px;

    color: #172033;

    font-size: 38px;
    line-height: 1.15;

    letter-spacing: -0.03em;
}

.section-intro p,
.quote-intro p {
    margin: 0;

    color: #64748b;

    font-size: 17px;
    line-height: 1.65;
}

.steps-grid {
    display: grid;

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

    gap: 22px;
}

.step-card {
    position: relative;

    padding: 31px 29px;

    border: 1px solid #e5eaf1;
    border-radius: 16px;

    background: #ffffff;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.step-card:hover {
    transform: translateY(-3px);

    border-color: #d6e1f0;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.07);
}

.step-number {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 11px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 13px;
    font-weight: 800;
}

.step-card h3 {
    margin:
        0
        0
        11px;

    color: #172033;

    font-size: 19px;
}

.step-card p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================
   QUOTE INTRO
========================================== */

.quote-intro {
    padding:
        90px
        24px
        95px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #f4f7fb 0%,
            #edf3fb 100%
        );
}

.quote-intro .section-container {
    max-width: 800px;
}


/* ==========================================
   MAIN FORM CARD
========================================== */

.form-wrapper {
    width: 100%;
    max-width: 1100px;

    margin:
        -55px
        auto
        100px;

    padding: 0 24px;
}

.form-card {
    background: #ffffff;

    border: 1px solid #e8edf4;
    border-radius: 20px;

    padding: 50px;

    box-shadow:
        0 25px 65px rgba(15, 23, 42, 0.11);
}


/* ==========================================
   FORM SECTIONS
========================================== */

.form-section {
    padding:
        0
        0
        43px;

    margin-bottom: 43px;

    border-bottom: 1px solid #e5eaf1;
}

.form-section:last-of-type {
    margin-bottom: 22px;

    border-bottom: none;
}

.section-heading {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 29px;
}

.section-number {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #2563eb;
    color: #ffffff;

    font-size: 15px;
    font-weight: 750;

    box-shadow:
        0 7px 18px rgba(37, 99, 235, 0.18);
}

.section-heading h2 {
    margin:
        1px
        0
        6px;

    color: #172033;

    font-size: 25px;
    line-height: 1.2;
}

.section-heading p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.55;
}


/* ==========================================
   GRID
========================================== */

.form-grid {
    display: grid;

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

    column-gap: 25px;
    row-gap: 20px;
}


/* ==========================================
   FIELDS
========================================== */

.field {
    margin-bottom: 23px;
}

.form-grid .field {
    margin-bottom: 0;
}

.field label {
    display: block;

    margin-bottom: 8px;

    color: #263248;

    font-size: 14px;
    font-weight: 650;
}

.field input,
.field select,
.field textarea {
    width: 100%;

    min-height: 51px;

    padding: 12px 14px;

    border: 1px solid #cfd7e3;
    border-radius: 10px;

    background: #ffffff;
    color: #172033;

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

.field textarea {
    min-height: 125px;

    resize: vertical;

    line-height: 1.55;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #b8c4d3;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #98a2b3;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;

    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.09);
}

.field-help {
    display: block;

    margin-top: 8px;

    color: #7c8799;

    font-size: 12px;
    line-height: 1.5;
}

.goods-description-field {
    margin-top: 23px;
}


/* ==========================================
   DATE OPTIONS
========================================== */

.date-option {
    margin-top: 22px;
}

.date-option > .field {
    max-width: 450px;
}


/* ==========================================
   CHECKBOX
========================================== */

.checkbox-option {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin:
        3px
        0
        25px;

    padding: 12px 15px;

    border: 1px solid #dbe2ea;
    border-radius: 10px;

    background: #f8fafc;

    color: #475569;

    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}

.checkbox-option:hover {
    border-color: #cbd5e1;

    background: #f1f5f9;
}

.checkbox-option input {
    width: 17px;
    height: 17px;

    margin: 0;

    accent-color: #2563eb;
}


/* ==========================================
   CONSENT
========================================== */

.consent-box {
    margin:
        10px
        0
        23px;

    padding: 18px 20px;

    border: 1px solid #dce3ec;
    border-radius: 11px;

    background: #f8fafc;
}

.consent-box label {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    color: #475569;

    font-size: 13px;
    line-height: 1.55;
}

.consent-box input {
    width: 17px;
    height: 17px;

    margin-top: 2px;

    flex-shrink: 0;

    accent-color: #2563eb;
}

.consent-box a,
.submit-note a {
    color: #2563eb;

    text-decoration: none;
}

.consent-box a:hover,
.submit-note a:hover {
    text-decoration: underline;
}


/* ==========================================
   SUBMIT
========================================== */

.submit-button {
    width: 100%;

    min-height: 56px;

    border: none;
    border-radius: 11px;

    background: #2563eb;
    color: #ffffff;

    font-family: inherit;
    font-size: 16px;
    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 11px 25px rgba(37, 99, 235, 0.18);

    transition:
        background 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.submit-button:hover {
    background: #1d4ed8;

    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.22);
}

.submit-button:active {
    transform: translateY(1px);
}

.submit-note {
    max-width: 760px;

    margin:
        14px
        auto
        0;

    text-align: center;

    color: #7c8799;

    font-size: 12px;
    line-height: 1.55;
}


/* ==========================================
   ERRORS
========================================== */

.errorlist {
    list-style: none;

    padding: 0;

    margin:
        7px
        0
        0;

    color: #dc2626;

    font-size: 13px;
}


/* ==========================================
   RATE LIMIT ALERT
========================================== */

.form-alert {
    margin-bottom: 25px;

    padding: 16px 18px;

    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;

    background: rgba(220, 53, 69, 0.08);

    color: #991b1b;
}

.form-alert strong {
    display: block;

    margin-bottom: 5px;

    font-size: 15px;
}

.form-alert p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;
}


/* ==========================================
   SERVICES
========================================== */

.services-section {
    padding:
        100px
        0;

    background: #ffffff;
}

.services-grid {
    display: grid;

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

    gap: 20px;
}

.service-card {
    padding: 28px;

    border: 1px solid #e5eaf1;
    border-radius: 15px;

    background: #ffffff;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.service-card:hover {
    transform: translateY(-3px);

    border-color: #d4deeb;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.07);
}

.service-icon {
    width: 43px;
    height: 43px;

    margin-bottom: 19px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 12px;
    font-weight: 800;
}

.service-card h3 {
    margin:
        0
        0
        10px;

    color: #172033;

    font-size: 18px;
}

.service-card p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================
   FINAL CTA
========================================== */

.final-cta {
    padding:
        75px
        24px;

    background:
        radial-gradient(
            circle at 85% 40%,
            rgba(37, 99, 235, 0.24),
            transparent 28%
        ),
        #0b1220;

    color: #ffffff;
}

.final-cta-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.final-cta h2 {
    margin:
        0
        0
        10px;

    font-size: 34px;
    line-height: 1.2;

    letter-spacing: -0.025em;
}

.final-cta p {
    margin: 0;

    color: #94a3b8;

    font-size: 15px;
    line-height: 1.6;
}

.final-cta-button {
    min-width: 170px;
    min-height: 52px;

    padding:
        0
        22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #2563eb;
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition:
        background 0.15s ease,
        transform 0.15s ease;
}

.final-cta-button:hover {
    background: #1d4ed8;
}

.final-cta-button:active {
    transform: translateY(1px);
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    background: #080e1a;

    color: #94a3b8;
}

.footer-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding:
        55px
        24px
        42px;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 60px;
}

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    margin-bottom: 17px;
}

.footer-brand p {
    margin: 0;

    max-width: 330px;

    color: #64748b;

    font-size: 13px;
    line-height: 1.65;
}

.footer-links {
    display: flex;

    gap: 75px;
}

.footer-links > div {
    min-width: 110px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links strong {
    margin-bottom: 4px;

    color: #e2e8f0;

    font-size: 13px;
}

.footer-links a {
    color: #64748b;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding:
        20px
        24px
        28px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #182131;

    color: #475569;

    font-size: 12px;
}


/* ==========================================
   SUCCESS PAGE
========================================== */

.success-page {
    margin: 0;

    min-height: 100vh;

    background: #0f172a;
}

.success-overlay {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px 20px;

    background:
        radial-gradient(
            circle at top,
            rgba(37, 99, 235, 0.16),
            transparent 45%
        ),
        #0f172a;
}

.success-card {
    width: 100%;
    max-width: 560px;

    padding: 48px 42px;

    background: #ffffff;

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);
}

.success-icon {
    width: 72px;
    height: 72px;

    margin:
        0 auto
        24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dcfce7;

    color: #16a34a;

    font-size: 34px;
    font-weight: 800;
}

.success-card h1 {
    margin:
        0
        0
        14px;

    color: #172033;

    font-size: 32px;
}

.success-main-text {
    margin:
        0 auto
        28px;

    max-width: 430px;

    color: #64748b;

    font-size: 17px;
    line-height: 1.6;
}

.success-info-box {
    margin-bottom: 24px;

    padding: 20px;

    border: 1px solid #dbe3ee;
    border-radius: 12px;

    background: #f8fafc;

    text-align: left;
}

.success-info-box strong {
    display: block;

    margin-bottom: 10px;

    color: #172033;

    font-size: 15px;
}

.success-info-box p {
    margin:
        8px
        0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.55;
}

.success-secondary-text {
    color: #64748b;

    font-size: 14px;
    line-height: 1.5;
}

.success-no-obligation {
    margin:
        22px
        0;

    color: #475569;

    font-size: 13px;
    font-weight: 600;
}

.success-button {
    display: block;

    width: 100%;

    padding: 15px 20px;

    border-radius: 10px;

    background: #2563eb;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition:
        background 0.15s ease,
        transform 0.15s ease;
}

.success-button:hover {
    background: #1d4ed8;
}

.success-button:active {
    transform: translateY(1px);
}


/* ==========================================
   LEGAL PAGES
========================================== */

.legal-header {
    min-height: 74px;

    display: flex;

    align-items: center;

    padding:
        0
        30px;

    background: #0f172a;
}

.legal-logo {
    color: #ffffff;

    text-decoration: none;

    font-size: 18px;
    font-weight: 700;
}

.legal-wrapper {
    max-width: 950px;

    margin:
        45px
        auto;

    padding:
        0
        20px;
}

.legal-card {
    padding:
        45px
        50px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    box-shadow:
        0 15px 45px rgba(15, 23, 42, 0.08);
}

.legal-card h1 {
    margin-top: 0;

    font-size: 36px;
}

.legal-card h2 {
    margin-top: 35px;
    margin-bottom: 12px;

    font-size: 21px;
}

.legal-card p,
.legal-card li {
    color: #475569;

    font-size: 15px;
    line-height: 1.75;
}

.legal-card a {
    color: #2563eb;
}

.legal-updated {
    margin-bottom: 35px;

    color: #94a3b8 !important;

    font-size: 13px !important;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 55px;

        padding-top: 70px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-preview {
        max-width: 570px;
    }

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

}


/* ==========================================
   SMALL TABLET
========================================== */

@media (max-width: 800px) {

    .main-nav {
        min-height: 74px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero-inner {
        padding:
            62px
            24px
            90px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .form-card {
        padding: 36px;
    }

    .final-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;

        gap: 40px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .section-container {
        padding:
            0
            17px;
    }

    .main-nav {
        padding:
            0
            17px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;

        border-radius: 10px;
    }

    .brand-name {
        font-size: 18px;
    }

    .nav-links {
        gap: 0;
    }

    .nav-links .nav-cta {
        padding:
            9px
            13px;

        font-size: 13px;
    }

    .hero-inner {
        padding:
            50px
            17px
            70px;

        gap: 45px;
    }

    .hero-kicker {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 38px;

        line-height: 1.08;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;

        flex-direction: column;
    }

    .primary-hero-button,
    .secondary-hero-button {
        width: 100%;
    }

    .trust-row {
        gap:
            10px
            17px;
    }

    .preview-card {
        padding: 21px;
    }

    .service-strip-inner {
        justify-content: flex-start;

        gap:
            12px
            22px;
    }

    .service-strip span:not(:last-child)::after {
        right: -13px;
    }

    .how-section {
        padding:
            70px
            0
            75px;
    }

    .section-intro {
        margin-bottom: 35px;
    }

    .section-intro h2,
    .quote-intro h2 {
        font-size: 31px;
    }

    .section-intro p,
    .quote-intro p {
        font-size: 15px;
    }

    .steps-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .quote-intro {
        padding:
            70px
            17px
            78px;
    }

    .form-wrapper {
        margin-top: -38px;

        padding:
            0
            13px;

        margin-bottom: 75px;
    }

    .form-card {
        padding:
            29px
            20px;

        border-radius: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .section-heading {
        gap: 12px;
    }

    .section-number {
        width: 35px;
        height: 35px;

        border-radius: 10px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .form-section {
        padding-bottom: 33px;

        margin-bottom: 33px;
    }

    .services-section {
        padding:
            75px
            0;
    }

    .final-cta {
        padding:
            60px
            18px;
    }

    .final-cta h2 {
        font-size: 29px;
    }

    .final-cta-button {
        width: 100%;
    }

    .footer-inner {
        padding:
            45px
            20px
            35px;
    }

    .footer-links {
        width: 100%;

        justify-content: space-between;

        gap: 35px;
    }

    .footer-bottom {
        padding:
            19px
            20px
            25px;

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .success-card {
        padding:
            36px
            24px;
    }

    .success-card h1 {
        font-size: 27px;
    }

    .success-icon {
        width: 64px;
        height: 64px;

        font-size: 30px;
    }

    .legal-card {
        padding:
            30px
            22px;
    }

    .legal-card h1 {
        font-size: 29px;
    }

}


/* ==========================================
   VERY SMALL MOBILE
========================================== */

@media (max-width: 390px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .preview-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .preview-details {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;

        gap: 28px;
    }

}

.brand-logo {
    display: block;

    width: 210px;
    height: auto;

    object-fit: contain;
}

@media (max-width: 650px) {

    .brand-logo {
        width: 175px;
    }

}

.brand-logo {
    display: block;
    height: 44px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 650px) {
    .brand-logo {
        height: 38px;
    }
}

.brand-logo {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Route dots */

.route-dot {
    animation: routePulse 2.2s ease-in-out infinite;
}

.route-dot.destination {
    animation-delay: 0.8s;
}

@keyframes routePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(96, 165, 250, 0.08);
    }

    50% {
        box-shadow:
            0 0 0 11px rgba(96, 165, 250, 0.02);
    }

}


/* Arrow */

.route-line span {
    display: inline-block;

    animation: routeMove 1.8s ease-in-out infinite;
}

@keyframes routeMove {

    0%,
    100% {
        transform: translateY(-3px);
        opacity: 0.45;
    }

    50% {
        transform: translateY(4px);
        opacity: 1;
    }

}


/* Ready badge */

.preview-status {
    animation: statusPulse 2.5s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(34, 197, 94, 0);
    }

    50% {
        box-shadow:
            0 0 0 7px rgba(34, 197, 94, 0.07);
    }

}


/* Provider circles */

.preview-provider-dots span {
    animation: providerFloat 2.4s ease-in-out infinite;
}

.preview-provider-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.preview-provider-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes providerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

}