:root {
    --blue: #095dff;
    --blue-dark: #073fbd;
    --blue-soft: #eaf1ff;
    --green: #15c96f;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(15, 23, 42, .12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

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

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, .85);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.brand img {
    width: 210px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(9, 93, 255, .15), transparent 34%),
        radial-gradient(circle at 80% 20%, rgba(21, 201, 111, .14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .02em;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(21, 201, 111, .14);
}

.hero h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 74px);
    line-height: .94;
    letter-spacing: -0.06em;
}

.hero-text {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

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

.btn-primary,
.btn-secondary,
.submit-btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 15px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary,
.submit-btn {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    box-shadow: 0 16px 32px rgba(9, 93, 255, .25);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-primary:hover,
.btn-secondary:hover,
.submit-btn:hover {
    transform: translateY(-2px);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.trust-row div {
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .74);
}

.trust-row strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

.trust-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.42;
}

.lead-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px;
}

.form-heading {
    margin-bottom: 18px;
}

.form-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.form-heading h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -0.04em;
}

.form-heading p {
    margin: 7px 0 0;
    color: var(--muted);
}

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

.lead-form label {
    display: grid;
    gap: 7px;
}

.lead-form label span {
    font-size: 14px;
    font-weight: 800;
}

.lead-form input,
.lead-form select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    padding: 0 14px;
    font: inherit;
    outline: none;
    transition: border .18s ease, box-shadow .18s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    border-color: rgba(9, 93, 255, .7);
    box-shadow: 0 0 0 4px rgba(9, 93, 255, .12);
}

.submit-btn {
    width: 100%;
    margin-top: 4px;
}

.privacy-note {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.alert-error {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
    font-size: 14px;
}

.alert-error ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.benefits {
    padding: 78px 0;
    background: var(--white);
}

.section-title {
    max-width: 680px;
    margin-bottom: 28px;
}

.section-title span {
    color: var(--blue);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-title h2,
.steps h2 {
    margin: 10px 0 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.benefits-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
}

.icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-weight: 900;
}

.benefits-grid h3 {
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.benefits-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.steps {
    padding: 78px 0;
    background:
        linear-gradient(135deg, rgba(9, 93, 255, .95), rgba(7, 63, 189, .98));
    color: #fff;
}

.steps .eyebrow {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

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

.step-list {
    display: grid;
    gap: 14px;
}

.step-list div {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
}

.step-list strong {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue-dark);
}

.step-list p {
    margin: 0;
    line-height: 1.45;
}

.site-footer {
    padding: 24px 0;
    background: #07111f;
    color: #cbd5e1;
}

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

.footer-inner p {
    margin: 0;
}

.footer-inner a {
    color: #fff;
    font-weight: 800;
}

.thanks-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(9, 93, 255, .16), transparent 34%),
        #f8fafc;
}

.thanks-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.thanks-card {
    width: min(100%, 540px);
    padding: 38px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
}

.thanks-card img {
    width: 220px;
    margin-bottom: 24px;
}

.thanks-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-weight: 900;
    font-size: 13px;
}

.thanks-card h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 48px);
    letter-spacing: -0.05em;
}

.thanks-card p {
    margin: 14px 0 26px;
    color: var(--muted);
    line-height: 1.6;
}

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

    .lead-card {
        max-width: 620px;
    }

    .trust-row,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand img {
        width: 176px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding: 42px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions {
        display: grid;
    }

    .btn-primary,
    .btn-secondary,
    .submit-btn {
        width: 100%;
    }

    .lead-card {
        padding: 22px;
        border-radius: 24px;
    }

    .benefits,
    .steps {
        padding: 52px 0;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
.thanks-info {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
    text-align: left;
}

.thanks-info div {
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fafc;
}

.thanks-info strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 15px;
}

.thanks-info span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}