:root {
    --navy: #062b55;
    --navy-deep: #031c38;
    --blue: #0a5fb5;
    --red: #ed1c2e;
    --red-dark: #c90d1d;
    --ink: #10233d;
    --muted: #66748a;
    --line: #dce4ef;
    --surface: #ffffff;
    --page: #f3f7fb;
    --shadow: 0 30px 80px rgba(6, 43, 85, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 15%, rgba(10, 95, 181, .10), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(237, 28, 46, .08), transparent 26%),
        var(--page);
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 22px;
}

.landing-card {
    display: grid;
    grid-template-columns: minmax(340px, .88fr) minmax(480px, 1.12fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(6, 43, 85, .12);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.visual-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px 44px;
    color: #fff;
    background:
        linear-gradient(155deg, rgba(3, 28, 56, .94), rgba(6, 43, 85, .92)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 1px, transparent 1px 16px);
    isolation: isolate;
}

.visual-panel::before,
.visual-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
}
.visual-panel::before {
    right: -110px;
    bottom: 70px;
    width: 300px;
    height: 300px;
    border: 65px solid rgba(237, 28, 46, .16);
}
.visual-panel::after {
    left: -120px;
    top: 150px;
    width: 270px;
    height: 270px;
    border: 55px solid rgba(10, 95, 181, .2);
}

.brand { display: inline-flex; width: 150px; margin-bottom: 62px; }
.brand img {
    width: 100%;
    height: 68px;
    object-fit: contain;
    object-position: left center;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ff6371;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .15em;
}
.eyebrow span { width: 32px; height: 3px; border-radius: 3px; background: var(--red); }

.visual-panel h1 {
    margin: 0;
    max-width: 520px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.06;
    letter-spacing: -.045em;
}
.visual-panel > p {
    margin: 22px 0 0;
    max-width: 520px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
}

.benefit-list {
    display: grid;
    gap: 14px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    font-weight: 650;
}
.benefit-list b { display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 7px; border-radius: 50%; color: #fff; background: rgba(237,28,46,.9); }

.visual-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
    padding-top: 36px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    letter-spacing: .03em;
}
.visual-footer strong { color: rgba(255,255,255,.9); font-size: 13px; }

.form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 58px;
}
.form-heading span { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.form-heading h2 { margin: 7px 0 6px; font-size: 30px; letter-spacing: -.025em; }
.form-heading p { margin: 0 0 28px; color: var(--muted); font-size: 14px; }
.form-heading b, .field b { color: var(--red); }

.lead-form { display: grid; gap: 18px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: 13px; font-weight: 750; }
.field small { color: var(--muted); font-weight: 500; }
.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 15px;
    color: var(--ink);
    background: #fbfcfe;
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: .2s ease;
}
.field textarea { min-height: 122px; resize: vertical; }
.field input:focus,
.field textarea:focus {
    border-color: rgba(10,95,181,.75);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10,95,181,.10);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
    cursor: pointer;
}
.consent input { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--red); }

.submit-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), #ff3e4d);
    box-shadow: 0 14px 30px rgba(237,28,46,.24);
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.submit-button:hover,
.secondary-button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(237,28,46,.30); }
.submit-button:disabled { cursor: wait; opacity: .65; transform: none; }
.submit-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.secondary-button { margin-top: 12px; padding: 0 24px; }

.alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}
.alert ul { margin: 6px 0 0; padding-left: 20px; }
.alert-error { color: #941321; border: 1px solid #ffc4ca; background: #fff2f3; }

.success-box { max-width: 480px; margin: auto; text-align: center; }
.success-icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%; color: #fff; background: #16a36b; box-shadow: 0 16px 35px rgba(22,163,107,.24); font-size: 36px; font-weight: 900; }
.success-box h2 { margin: 0 0 10px; font-size: 32px; }
.success-box p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }

.honeypot { position: absolute !important; left: -99999px !important; width: 1px; height: 1px; overflow: hidden; }
footer { padding: 20px 0 0; color: #768399; font-size: 12px; text-align: center; }

@media (max-width: 900px) {
    .page-shell { padding-top: 18px; }
    .landing-card { grid-template-columns: 1fr; }
    .visual-panel { min-height: auto; padding: 30px 30px 36px; }
    .brand { margin-bottom: 34px; }
    .visual-footer { margin-top: 34px; }
    .form-panel { padding: 40px 30px 44px; }
}

@media (max-width: 560px) {
    .page-shell { width: min(100% - 18px, 1180px); padding-top: 9px; }
    .landing-card { border-radius: 20px; }
    .visual-panel, .form-panel { padding-left: 22px; padding-right: 22px; }
    .visual-panel h1 { font-size: 37px; }
    .visual-panel > p { font-size: 15px; }
    .field-grid { grid-template-columns: 1fr; }
    .form-heading h2 { font-size: 26px; }
}
