:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --text: #162033;
    --muted: #5a6579;
    --line: #d8deea;
    --primary: #0c4a87;
    --primary-dark: #08345f;
    --accent: #e8f1fb;
    --shadow: 0 18px 50px rgba(19, 32, 58, 0.10);
    --radius: 20px;
    --radius-sm: 12px;
    --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.wrap {
    width: min(calc(100% - 32px), var(--wrap));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(245, 247, 251, 0.88);
    border-bottom: 1px solid rgba(216, 222, 234, 0.8);
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-kicker,
.eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    font-weight: 700;
}

.eyebrow-light { color: rgba(255,255,255,0.78); }

.hero {
    padding: 72px 0 48px;
    background: radial-gradient(circle at top right, rgba(12,74,135,0.08), transparent 28%), var(--bg);
}

.hero-grid,
.two-col,
.form-grid,
.benefit-grid {
    display: grid;
    gap: 28px;
}

.hero-grid,
.two-col,
.form-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.hero-copy h1,
.section h2,
.thanks-box h1 {
    margin: 0 0 16px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-copy h1 { font-size: clamp(2.4rem, 4.6vw, 4.6rem); }
.section h2,
.thanks-box h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); }

.lead {
    font-size: 1.13rem;
    max-width: 42rem;
    color: var(--muted);
}

.hero-actions,
.thanks-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; border-color: var(--line); }
.btn-full { width: 100%; }

.hero-points,
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-points li,
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--muted);
}

.hero-points li::before,
.check-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    top: -1px;
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-card,
.info-card,
.benefit-card,
.contact-form,
.thanks-box {
    background: var(--surface);
    border: 1px solid rgba(216, 222, 234, 0.85);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card,
.info-card,
.thanks-box { padding: 28px; }
.contact-form { padding: 28px; }
.benefit-card { padding: 24px; }

.card-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
}

.section { padding: 72px 0; }
.section-muted { background: #eef3f9; }
.section-accent {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.section-head { margin-bottom: 28px; }
.benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefit-card h3 { margin-top: 0; margin-bottom: 10px; }
.benefit-card p { margin: 0; color: var(--muted); }

.info-list {
    margin: 0;
    display: grid;
    gap: 18px;
}
.info-list.compact { gap: 14px; }
.info-list div {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.info-list div:last-child { padding-bottom: 0; border-bottom: 0; }
.info-list dt {
    color: var(--muted);
    font-size: 0.95rem;
}
.info-list dd {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.form-row { margin-bottom: 18px; }
.form-row.two-up {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.96);
    color: var(--text);
    font: inherit;
}

textarea { resize: vertical; min-height: 140px; }
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.85);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    font-weight: 400;
}
.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 18px;
}
.form-note {
    margin: 14px 0 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
}

.honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; color: var(--muted); }
.site-footer nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--text); }

.thanks-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}
.thanks-box {
    max-width: 760px;
    text-align: center;
}
.thanks-box p { color: var(--muted); }

@media (max-width: 920px) {
    .hero-grid,
    .two-col,
    .form-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-inner,
    .footer-inner,
    .form-row.two-up {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero { padding-top: 44px; }
    .section { padding: 52px 0; }
    .contact-form,
    .hero-card,
    .info-card,
    .benefit-card,
    .thanks-box { padding: 22px; }
    .header-cta { display: none; }
}
