/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.55;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* ─── TOKENS ─── */
:root {
    --primary: #f69709;
    --primary-hover: #d47e07;
    --primary-tint: #fff0cc;
    --primary-subtle: #fffbf0;
    --shadow-primary: 0 4px 14px rgba(246,151,9,0.30);
    --border: #e7e7eb;
    --bg-soft: #f7f7f8;
    --text-muted: #6b6b76;
    --radius: 10px;
}

/* ─── LAYOUT ─── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.container--lg { max-width: 1200px; }
.section { padding: 56px 0; }

/* ─── TYPOGRAPHY ─── */
.h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.01em; }
.lead { color: var(--text-muted); font-size: 1.05rem; }
.muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.bold { font-weight: 600; }

/* ─── HEADER ─── */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.header__logo { height: 32px; width: auto; display: block; }
.header__cta { display: none; }
@media (min-width: 700px) {
    .header__cta { display: inline-flex; }
}

/* ─── HERO ─── */
.hero { background: linear-gradient(180deg, var(--primary-subtle) 0%, #fff 100%); padding: 64px 0 32px; }
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) {
    .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
}
.hero__badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-tint); color: var(--primary-hover);
    border-radius: 999px; padding: 5px 12px; font-size: 0.75rem; font-weight: 600;
    margin-bottom: 16px;
}
.hero h1 { margin-bottom: 16px; }
.hero__lead { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 24px; max-width: 520px; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 24px; }
.hero__bullets li { padding: 6px 0; padding-left: 24px; position: relative; font-size: 0.95rem; }
.hero__bullets li::before {
    content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; font-size: 0.95rem; font-weight: 600; line-height: 1;
    border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
    transition: background 0.2s, transform 0.1s; text-decoration: none;
}
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { background: var(--primary-hover); }
.btn--primary:active { transform: scale(0.98); }
.btn--secondary { background: #fff; color: var(--primary-hover); border-color: var(--primary); }
.btn--block { width: 100%; }

/* ─── FORM CARD ─── */
.form-card {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.06); padding: 24px;
}
@media (min-width: 700px) { .form-card { padding: 32px; } }
.form-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.form-card__sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.form-row { margin-bottom: 14px; }
.form-row--grid-2 { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) {
    .form-row--grid-2 { grid-template-columns: 1fr 1fr; }
}

.field-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: #2a2a2a; }
.field-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
    width: 100%; padding: 11px 14px; font-size: 0.95rem; font-family: inherit;
    border: 1px solid var(--border); border-radius: var(--radius); background: #fff; color: #1a1a1a;
    transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(246,151,9,0.18);
}
input.error, select.error { border-color: #e23030; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; color: #2a2a2a; }
.checkbox-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.checkbox-row a { color: var(--primary-hover); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    border: 1px solid var(--border); padding: 7px 12px; border-radius: 999px;
    font-size: 0.8rem; cursor: pointer; user-select: none; background: #fff;
}
.chip--active { background: var(--primary-tint); border-color: var(--primary); color: var(--primary-hover); font-weight: 600; }

.error-banner {
    background: #fff0f0; border: 1px solid #ffd2d2; color: #b00020;
    padding: 10px 12px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 14px;
}

.success {
    text-align: center; padding: 40px 16px;
}
.success__icon {
    width: 56px; height: 56px; border-radius: 50%; background: var(--primary-tint);
    color: var(--primary-hover); display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 16px;
}

/* ─── BENEFITS ─── */
.benefits { background: var(--bg-soft); }
.benefits__grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .benefits__grid { grid-template-columns: repeat(3, 1fr); } }
.benefit { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.benefit__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-tint); color: var(--primary-hover); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.benefit h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.benefit p { color: var(--text-muted); font-size: 0.9rem; }

/* ─── FOOTER ─── */
.footer {
    border-top: 1px solid var(--border); padding: 32px 0; color: var(--text-muted);
    font-size: 0.85rem; text-align: center;
}
.footer a { color: var(--text-muted); }

/* ─── UTILITIES ─── */
.hidden { display: none !important; }
.center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
