:root {
    --navy: #223247;
    --navy-dark: #172538;
    --orange: #f36a1d;
    --orange-dark: #d9570d;
    --ink: #17202b;
    --muted: #687384;
    --line: #dfe4ea;
    --surface: #f5f7f9;
    --white: #ffffff;
    --success: #26734d;
    --danger: #a52b2b;
    --shadow: 0 18px 45px rgba(34, 50, 71, .12);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}
a { color: var(--orange-dark); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.top-accent { height: 5px; background: var(--orange); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}
.header-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand { display: inline-flex; align-items: center; width: 250px; max-width: 42vw; }
.brand img { display: block; width: 100%; max-height: 68px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 12px; }
.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border: 2px solid var(--navy);
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .045em;
    font-size: .86rem;
    font-weight: 750;
    transition: .18s ease;
}
.nav-button:hover, .nav-button.is-active { background: var(--white); color: var(--navy); }
.nav-button-primary { background: var(--orange); border-color: var(--orange); color: var(--white); }
.nav-button-primary:hover, .nav-button-primary.is-active { background: var(--white); border-color: var(--orange); color: var(--orange-dark); }

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(243,106,29,.12), transparent 25%),
        linear-gradient(135deg, #f8fafb 0%, #ffffff 55%, #eef2f6 100%);
}
.hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -130px;
    bottom: -170px;
    border: 45px solid rgba(34,50,71,.05);
    border-radius: 50%;
}
.hero-grid { position: relative; z-index: 1; }
.eyebrow { color: var(--orange-dark); text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; font-weight: 800; }
h1 { margin: 12px 0 20px; color: var(--navy); font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.03; letter-spacing: -.045em; }
.hero-content { width: 100%; }
.hero-content p { max-width: none; margin: 0 0 30px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.cta-button, .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 0;
    border-radius: 10px;
    background: var(--orange);
    color: var(--white);
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(243,106,29,.22);
    transition: .18s ease;
}
.cta-button:hover, .submit-button:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); }
.hero-card { padding: 34px; border: 1px solid rgba(34,50,71,.09); border-radius: var(--radius); background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.hero-card h2 { margin: 0; color: var(--navy); font-size: 1.8rem; }
.hero-card > p { margin-top: 6px; color: var(--muted); }
.choice-list { display: grid; gap: 14px; margin-top: 25px; }
.choice-card {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--navy);
    text-decoration: none;
    background: var(--white);
    transition: .18s ease;
}
.choice-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(34,50,71,.1); color: var(--navy); }
.choice-card-primary { border-color: rgba(243,106,29,.35); }
.choice-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: rgba(34,50,71,.08); color: var(--navy); font-size: 1.35rem; font-weight: 900; }
.choice-card-primary .choice-icon { background: rgba(243,106,29,.12); color: var(--orange-dark); }
.choice-card strong { display: block; font-size: 1.05rem; }
.choice-card small { display: block; color: var(--muted); }
.reassurance { padding: 30px 0; background: var(--navy); color: var(--white); }
.reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.reassurance-grid div { display: grid; gap: 3px; }
.reassurance-grid span { color: rgba(255,255,255,.72); font-size: .93rem; }

.page-section { padding: 75px 0; }
.form-section { background: var(--surface); }
.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; align-items: start; }
.form-copy { position: sticky; top: 145px; }
.form-copy h1 { font-size: clamp(2.3rem, 4vw, 3.8rem); }
.form-copy > p { color: var(--muted); font-size: 1.08rem; }
.support-note { display: grid; gap: 2px; margin-top: 30px; padding: 18px; border-left: 4px solid var(--orange); border-radius: 0 10px 10px 0; background: var(--white); }
.support-note span { color: var(--muted); font-size: .92rem; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.field-full { grid-column: 1 / -1; }
.field label, .label-row label { display: block; margin-bottom: 8px; color: var(--navy); font-weight: 720; }
.label-row { display: flex; justify-content: space-between; gap: 15px; align-items: baseline; }
.field-hint, .optional, .field small { color: var(--muted); font-size: .84rem; font-weight: 500; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #cbd3dc;
    border-radius: 9px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
    transition: .15s ease;
}

input::placeholder, textarea::placeholder {
    color: var(--muted);
    opacity: 1;
}
textarea { min-height: 180px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(243,106,29,.14); border-color: var(--orange); }
.char-counter { color: var(--muted); font-size: .84rem; font-weight: 500; white-space: nowrap; }
.file-picker {
    display: flex;
    align-items: center;
    min-height: 50px;
    overflow: hidden;
    border: 1px solid #cbd3dc;
    border-radius: 9px;
    background: var(--white);
}
.file-input-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.file-picker-button {
    display: inline-flex !important;
    align-items: center;
    align-self: stretch;
    margin: 0 !important;
    padding: 0 16px;
    border-right: 1px solid #cbd3dc;
    background: #eef1f4;
    color: var(--navy);
    font-weight: 700 !important;
    cursor: pointer;
    transition: .15s ease;
}
.file-picker-button:hover { background: var(--navy); color: var(--white); }
.file-input-native:focus-visible + .file-picker-button {
    outline: 3px solid rgba(243,106,29,.14);
    outline-offset: -3px;
}
.file-picker-name {
    min-width: 0;
    padding: 0 14px;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}
.checkbox-row { display: flex; align-items: flex-start; gap: 11px; margin: 24px 0; color: var(--ink); }
.checkbox-row input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--orange); flex: 0 0 auto; }
.captcha-wrap { margin: 20px 0; min-height: 65px; }
.submit-button { width: 100%; font-size: 1rem; }
.required-note { margin: 10px 0 0; color: var(--muted); text-align: center; font-size: .8rem; }
.hp-field { position: absolute !important; left: -99999px !important; width: 1px; height: 1px; overflow: hidden; }
.alert { margin-bottom: 22px; padding: 14px 16px; border-radius: 10px; font-size: .92rem; }
.alert ul { margin: 8px 0 0 20px; padding: 0; }
.alert-error { border: 1px solid rgba(165,43,43,.25); background: #fff0f0; color: var(--danger); }
.alert-test { border: 1px solid #e6c66e; background: #fff9dd; color: #715812; }
.alert code { padding: 2px 5px; background: rgba(0,0,0,.06); border-radius: 4px; }
.simple-page { min-height: 55vh; display: grid; align-items: center; background: var(--surface); text-align: center; }
.narrow { max-width: 760px; }
.simple-page h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.simple-page p { color: var(--muted); font-size: 1.08rem; }
.success-mark { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; background: rgba(38,115,77,.12); color: var(--success); font-size: 2rem; font-weight: 900; }
.policy-page { background: var(--surface); }
.policy-content { max-width: 900px; padding: 45px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.policy-content h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.policy-content h2 { margin-top: 34px; color: var(--navy); }
.policy-content p, .policy-content li { color: #3f4a58; }
.policy-note { margin-top: 36px; padding: 15px; border-radius: 9px; background: #fff9dd; font-size: .9rem; }
.policy-updated { margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .9rem; }
.policy-table-wrap { overflow-x: auto; margin: 20px 0; }
.policy-table { width: 100%; border-collapse: collapse; }
.policy-table th, .policy-table td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy-table th { background: var(--surface); color: var(--navy); }
.policy-table code { white-space: nowrap; }

.site-footer { padding: 54px 0 24px; background: var(--navy-dark); color: rgba(255,255,255,.82); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 55px; }
.site-footer h2 { margin: 0 0 12px; color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer p { margin: 6px 0; }
.site-footer a { color: var(--white); text-decoration-color: rgba(255,255,255,.35); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 7px 0; }
.footer-links a { text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; }

@media (max-width: 900px) {
    .header-inner { min-height: 84px; }
    .hero { padding: 64px 0; }
    .hero-grid, .form-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-copy { position: static; }
    .reassurance-grid, .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 660px) {
    .container { width: min(100% - 28px, 1180px); }
    .header-inner { padding: 13px 0; flex-direction: column; align-items: stretch; gap: 12px; }
    .brand { align-self: center; width: 220px; max-width: 70vw; }
    .main-nav { width: 100%; gap: 8px; }
    .nav-button { flex: 1 1 0; min-width: 0; padding: 9px 7px; font-size: .7rem; line-height: 1.25; text-align: center; }
    .hero { padding: 48px 0; }
    .hero-card, .form-card, .policy-content { padding: 23px; border-radius: 14px; }
    .field-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .label-row { align-items: baseline; flex-direction: row; gap: 10px; }
    .file-picker { align-items: stretch; }
    .file-picker-button { padding: 0 12px; }
    .file-picker-name { display: flex; align-items: center; }
    .footer-bottom { flex-direction: column; }
}
.hero h1 {
    font-size: 58px;
    line-height: 1.08;
}

.hero p {
    font-size: 25px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }
}