:root {
    --bg: #ffffff;
    --ink: #0f1922;
    --muted: #5b6770;
    --border: #e2e6ea;
    --soft: #f6f8fa;
    --brand: #0e6efd;
    --brand-ink: #ffffff;
    --accent: #16a34a;
    --warn: #b54708;
    --radius: 10px;
    --shadow: 0 1px 2px rgba(15,25,34,.04), 0 8px 24px rgba(15,25,34,.06);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

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

header.site {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    background: #fff;
    position: sticky; top: 0; z-index: 10;
}
.site-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 700; font-size: 19px; letter-spacing: -.3px; color: var(--ink); text-decoration: none; }
.logo .dot { color: var(--brand); }
.lock {
    font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px;
}
.lock::before { content: "🔒"; font-size: 12px; }

.hero { padding: 60px 0 30px; }
.hero h1 {
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.12; letter-spacing: -.5px; margin: 0 0 14px;
    font-weight: 700;
}
.hero .sub {
    font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 0 28px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 820px) {
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero { padding: 32px 0 16px; }
}

.benefits { list-style: none; padding: 0; margin: 24px 0 0; }
.benefits li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0; color: var(--ink); font-size: 15.5px;
}
.benefits li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.formcard {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
}
.formcard h2 {
    font-size: 20px; font-weight: 700; margin: 0 0 4px; letter-spacing: -.2px;
}
.formcard .formsub {
    font-size: 14px; color: var(--muted); margin: 0 0 18px;
}
.field { margin-bottom: 12px; }
.field label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--ink); margin-bottom: 5px;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.input {
    width: 100%; padding: 12px 13px; font-size: 15.5px;
    border: 1px solid var(--border); border-radius: 8px;
    font-family: inherit; color: var(--ink);
    transition: border-color .12s, box-shadow .12s;
    background: #fff;
}
.input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(14,110,253,.12);
}
.btn {
    width: 100%; padding: 14px 18px;
    background: var(--brand); color: var(--brand-ink);
    border: none; border-radius: 8px;
    font-size: 16px; font-weight: 600; font-family: inherit;
    cursor: pointer;
    transition: filter .12s, transform .04s;
    margin-top: 6px;
}
.btn:hover { filter: brightness(1.05); }
.btn:active { transform: translateY(1px); }

.tcpa {
    font-size: 11.5px; color: var(--muted);
    line-height: 1.5; margin: 14px 0 0;
}
.tcpa a { color: var(--muted); text-decoration: underline; }

.trustrow {
    display: flex; gap: 16px; align-items: center;
    flex-wrap: wrap; font-size: 13px; color: var(--muted);
    margin-top: 16px;
}
.trustrow .badge {
    display: inline-flex; align-items: center; gap: 5px;
}

/* Call-first CTAs */
.callbar {
    background: var(--brand);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.callbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-left: 8px;
}
.callbar a:hover { text-decoration: underline; }

.hero.callfirst {
    padding: 56px 0 28px;
    text-align: center;
}
.hero.callfirst .innercol {
    max-width: 680px;
    margin: 0 auto;
}
.hero.callfirst h1 {
    font-size: clamp(30px, 5vw, 48px);
    margin: 0 0 16px;
}
.hero.callfirst .sub {
    font-size: 18px;
    margin: 0 auto 30px;
    max-width: 540px;
}

.bigcta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--brand);
    color: #fff;
    padding: 20px 36px;
    border-radius: 999px;
    font-size: clamp(22px, 3.4vw, 30px);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(14,110,253,.28);
    transition: transform .08s, box-shadow .12s, filter .12s;
    letter-spacing: -.3px;
}
.bigcta:hover { filter: brightness(1.05); }
.bigcta:active { transform: translateY(2px); box-shadow: 0 4px 12px rgba(14,110,253,.22); }
.bigcta .ico { font-size: 1.15em; line-height: 0; }
.bigcta .num { font-variant-numeric: tabular-nums; }

.cta-sub {
    margin: 16px 0 0;
    font-size: 14px;
    color: var(--muted);
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-sub span::before { content: "● "; color: var(--accent); font-size: 9px; vertical-align: 2px; margin-right: 4px; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 56px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 760px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
.bcard {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
}
.bcard .ico { font-size: 28px; line-height: 1; margin-bottom: 10px; display: block; }
.bcard h3 { font-size: 15.5px; margin: 0 0 4px; font-weight: 600; }
.bcard p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.45; }

.howit {
    background: var(--soft);
    padding: 56px 0;
    margin-top: 24px;
}
.howit h2 {
    font-size: 26px; text-align: center; margin: 0 0 36px;
    font-weight: 700; letter-spacing: -.4px;
}
.steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 720px) {
    .steps { grid-template-columns: 1fr; }
}
.step .num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 17px; font-weight: 600; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

footer.site {
    border-top: 1px solid var(--border);
    padding: 28px 0 40px;
    font-size: 13px; color: var(--muted);
    margin-top: 40px;
}
footer.site .links a {
    color: var(--muted); margin-right: 16px; text-decoration: none;
}
footer.site .links a:hover { text-decoration: underline; }
footer.site .legal { margin-top: 12px; line-height: 1.6; font-size: 12px; }
