*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --color-navy: #0f2744;
    --color-navy-light: #1a3a5c;
    --color-teal: #0d9488;
    --color-teal-dark: #0f766e;
    --color-gold: #f59e0b;
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-text: #1e293b;
    --color-muted: #64748b;
    --color-border: #e2e8f0;
    --color-error: #dc2626;
    --color-success: #059669;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(15, 39, 68, 0.08);
    --shadow-lg: 0 12px 48px rgba(15, 39, 68, 0.12);
    --font: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-brand: 'Plus Jakarta Sans', var(--font);
    --max-width: 1120px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

/* Header */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-navy);
}

.logo-text {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-navy);
}

.brand-logo {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 10px;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--color-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--color-teal);
}

/* Hero */
.hero {
    background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 50%, #1e4976 100%);
    color: #fff;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    font-weight: 700;
}

.hero-content .lead {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 1.5rem;
    max-width: 32rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
}

.badge svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Zip form card */
.zip-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    color: var(--color-text);
}

.zip-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.375rem;
    color: var(--color-navy);
}

.zip-card p {
    margin: 0 0 1.5rem;
    color: var(--color-muted);
    font-size: 0.9375rem;
}

.zip-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .zip-form {
        flex-direction: row;
    }
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
    color: var(--color-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-group input.error {
    border-color: var(--color-error);
}

.form-error {
    color: var(--color-error);
    font-size: 0.8125rem;
    margin-top: 0.375rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--color-teal);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-teal-dark);
}

.btn-block {
    width: 100%;
}

.form-consent {
    font-size: 0.75rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.form-consent a {
    color: var(--color-teal);
}

/* Features */
.features {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    color: var(--color-navy);
}

.section-subtitle {
    text-align: center;
    color: var(--color-muted);
    margin: 0 0 3rem;
    max-width: 36rem;
    margin-inline: auto;
}

.feature-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(13, 148, 136, 0.1);
    color: var(--color-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    color: var(--color-navy);
}

.feature-card p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-muted);
}

/* How it works */
.how-it-works {
    background: var(--color-surface);
    border-block: 1px solid var(--color-border);
    padding: 4rem 0;
}

.steps {
    display: grid;
    gap: 2rem;
    counter-reset: step;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    text-align: center;
    counter-increment: step;
}

.step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-navy);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.step h3 {
    margin: 0 0 0.5rem;
    color: var(--color-navy);
}

.step p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9375rem;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.cta-band h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.cta-band p {
    margin: 0 0 1.5rem;
    opacity: 0.9;
}

/* Legal / content pages */
.page-header {
    background: var(--color-navy);
    color: #fff;
    padding: 2.5rem 0;
}

.page-header h1 {
    margin: 0;
    font-size: 1.75rem;
}

.page-header p {
    margin: 0.5rem 0 0;
    opacity: 0.85;
    font-size: 0.9375rem;
}

.legal-content {
    background: var(--color-surface);
    padding: 3rem 0 4rem;
}

.legal-content .container {
    max-width: 48rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--color-text);
    font-size: 0.9375rem;
}

.legal-content ul {
    padding-left: 1.25rem;
}

.legal-content a {
    color: var(--color-teal);
}

.last-updated {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

/* Rate cut compliance page */
.rate-cut {
    background: var(--color-surface);
    padding: 3rem 0 4rem;
}

.rate-cut__inner {
    max-width: 40rem;
}

.rate-cut__lead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.55;
}

.rate-cut p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    margin: 0 0 1rem;
}

.rate-cut__intro {
    margin-bottom: 2rem;
}

.rate-cut__highlight {
    background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
    border: 1px solid #99f6e4;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rate-cut__highlight p:last-child {
    margin-bottom: 0;
}

.rate-cut__callout {
    background: var(--color-navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.rate-cut__callout h2 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: #fff;
}

.rate-cut__callout p {
    color: rgba(255, 255, 255, 0.9);
}

.rate-cut__callout p:last-of-type {
    margin-bottom: 1.25rem;
}

.rate-cut__phone-btn,
.rate-cut__cta-btn {
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
}

.page-header--rate-cut {
    text-align: center;
}

.rate-cut__logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.rate-cut__page-logo {
    display: block;
    width: 6.5rem;
    height: 6.5rem;
    object-fit: contain;
}

.rate-cut__testimonial {
    margin: 0 0 2rem;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--color-teal);
    background: #f8fafc;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.rate-cut__testimonial p {
    margin: 0;
    font-style: italic;
    color: var(--color-text);
}

.rate-cut__urgency {
    margin-bottom: 2rem;
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fffbeb;
}

.rate-cut__urgency p:last-child {
    margin-bottom: 0;
}

.rate-cut__closing {
    margin-bottom: 2.5rem;
    text-align: center;
}

.rate-cut__closing p:first-child {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.rate-cut__disclaimers {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.rate-cut__disclaimers h2 {
    font-size: 1.125rem;
    color: var(--color-navy);
    margin: 0 0 1rem;
}

.rate-cut__disclaimers p {
    font-size: 0.8125rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.rate-cut__disclaimers p:last-child {
    margin-bottom: 0;
}

/* Quote page */
.quote-page {
    padding: 3rem 0 4rem;
}

.quote-layout {
    display: grid;
    gap: 2rem;
    max-width: 40rem;
    margin-inline: auto;
}

.quote-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}

.quote-card h1 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: var(--color-navy);
}

.quote-card .subtitle {
    color: var(--color-muted);
    margin: 0 0 1.5rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: var(--color-success);
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: var(--color-error);
}

.lead-form .form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .lead-form .form-row.two-col {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.site-footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand strong {
    display: block;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-disclaimers {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
}

.footer-disclaimers p {
    font-size: 0.75rem;
    line-height: 1.6;
    opacity: 0.7;
    margin: 0 0 1rem;
}

.footer-disclaimers p:last-child {
    margin-bottom: 0;
}

.footer-copy {
    opacity: 0.6 !important;
    margin-top: 1.5rem !important;
}

/* ─── Quote Wizard ─── */
.quote-wizard-page {
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(13, 148, 136, 0.08) 0%, transparent 60%),
        var(--color-bg);
}

.quote-wizard-page .site-footer {
    margin-top: 0;
}

.quote-page--wizard {
    padding: 1.5rem 0 3rem;
    min-height: calc(100vh - 4.5rem);
    display: flex;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .quote-page--wizard {
        padding: 2.5rem 0 4rem;
        align-items: center;
    }
}

.wizard-shell {
    width: min(100%, 28rem);
    margin-inline: auto;
}

.wizard-shell > [hidden] {
    display: none !important;
}

.wizard-trust-bar {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0 0.25rem;
}

.wizard-trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-muted);
    text-transform: uppercase;
}

.wizard-trust-bar svg {
    width: 0.9375rem;
    height: 0.9375rem;
    color: var(--color-teal);
}

.wizard-card {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 1.5rem 1.25rem 1.25rem;
    box-shadow:
        0 1px 2px rgba(15, 39, 68, 0.04),
        0 8px 32px rgba(15, 39, 68, 0.08),
        0 0 0 1px rgba(15, 39, 68, 0.04);
}

@media (min-width: 640px) {
    .wizard-card {
        padding: 2rem 1.75rem 1.5rem;
    }
}

.wizard-card--success {
    text-align: center;
    padding: 2.5rem 1.75rem;
}

/* Loading screen */
.wizard-loading {
    text-align: center;
    padding: 2.25rem 1.5rem 2rem;
}

.wizard-loading__visual {
    position: relative;
    width: 6.5rem;
    height: 6.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-loading__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0) 70%);
    animation: loading-pulse 1.8s ease-in-out infinite;
}

.wizard-loading__car {
    position: relative;
    z-index: 1;
    width: 5.5rem;
    height: auto;
    animation: loading-car-drive 1.1s ease-in-out infinite;
    filter: drop-shadow(0 6px 12px rgba(15, 39, 68, 0.15));
}

@keyframes loading-pulse {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes loading-car-drive {
    0%, 100% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }
}

.wizard-loading__title {
    margin: 0 0 0.625rem;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}

.wizard-loading__message {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-teal);
    min-height: 1.5em;
    transition: opacity 0.25s ease;
}

.wizard-loading__bar {
    height: 0.375rem;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.wizard-loading__bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-teal), #14b8a6);
    border-radius: 999px;
    transition: width 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.wizard-loading__checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    display: grid;
    gap: 0.625rem;
}

.wizard-loading__checklist li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.wizard-loading__checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #fff;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.wizard-loading__checklist li.is-current {
    color: var(--color-navy);
    font-weight: 600;
}

.wizard-loading__checklist li.is-current::before {
    border-color: var(--color-teal);
    border-top-color: transparent;
    animation: loading-spin 0.7s linear infinite;
}

.wizard-loading__checklist li.is-done {
    color: var(--color-muted);
}

.wizard-loading__checklist li.is-done::before {
    border-color: var(--color-teal);
    background: var(--color-teal);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
    background-size: 0.625rem;
    background-repeat: no-repeat;
    background-position: center;
    animation: none;
}

@keyframes loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.success-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
}

.success-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.wizard-card--success h1 {
    margin: 0 0 0.75rem;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

.wizard-lead {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1.75rem;
}

.wizard-alert {
    margin-bottom: 1.25rem;
}

/* Road progress */
.road-progress {
    margin-bottom: 1.75rem;
    padding: 0 0.25rem;
}

.road-progress__labels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 0.625rem;
    padding: 0;
    gap: 0;
}

.road-progress__labels span {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #cbd5e1;
    transition: color 0.35s ease;
    text-align: center;
}

.road-progress__labels span.is-active {
    color: var(--color-muted);
}

.road-progress__labels span.is-current {
    color: var(--color-teal);
}

.road-track {
    position: relative;
    height: 3.5rem;
    display: flex;
    align-items: center;
    --car-position: 10%;
    --car-width: 4.75rem;
}

.road-track__surface {
    position: relative;
    width: 100%;
    height: 0.625rem;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(15, 39, 68, 0.08);
}

.road-track__dash {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.5) 8px,
        rgba(255, 255, 255, 0.5) 14px
    );
    opacity: 0.6;
    z-index: 1;
}

.road-track__fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--color-teal), #14b8a6);
    border-radius: 999px;
    transition: width 0.55s cubic-bezier(0.34, 1.3, 0.64, 1);
    z-index: 0;
}

.road-car {
    position: absolute;
    top: 50%;
    left: clamp(0px, calc(var(--car-position) - var(--car-width) / 2), calc(100% - var(--car-width)));
    width: var(--car-width);
    z-index: 2;
    transform: translateY(-50%);
    transition: left 0.55s cubic-bezier(0.34, 1.3, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(15, 39, 68, 0.18));
    will-change: left;
    pointer-events: none;
}

.road-car__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 2.5rem;
    object-fit: contain;
}

/* Wizard steps */
.wizard-form {
    position: relative;
    min-height: 20rem;
}

.wizard-step[hidden] {
    display: none !important;
}

.wizard-step.is-active {
    animation: wizard-step-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wizard-step-in {
    from {
        opacity: 0;
        transform: translateX(1rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wizard-step__eyebrow {
    margin: 0 0 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-teal);
}

.wizard-step__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.375rem, 4.5vw, 1.625rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--color-navy);
}

.wizard-step__subtitle {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-muted);
    font-weight: 500;
}

.wizard-step__head {
    margin-bottom: 0.25rem;
}

/* Zip input */
.zip-input-wrap input {
    width: 100%;
    padding: 1rem 1.125rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    border: 2px solid var(--color-border);
    border-radius: 14px;
    font-family: inherit;
    color: var(--color-navy);
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.zip-input-wrap input:focus {
    outline: none;
    border-color: var(--color-teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.zip-input-wrap input.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.zip-input-wrap input[readonly] {
    background: #f1f5f9;
    color: var(--color-muted);
    cursor: default;
}

.zip-input-wrap {
    margin-bottom: 1rem;
}

.wizard-field {
    margin-bottom: 1rem;
}

.wizard-field-row {
    display: grid;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .wizard-field-row {
        grid-template-columns: 1fr 1fr;
    }
}

.wizard-field__label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--color-navy);
    letter-spacing: -0.01em;
}

.wizard-field input {
    width: 100%;
    padding: 1rem 1.125rem;
    font-size: 1.0625rem;
    font-weight: 500;
    border: 2px solid var(--color-border);
    border-radius: 14px;
    font-family: inherit;
    color: var(--color-navy);
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.wizard-field input:focus {
    outline: none;
    border-color: var(--color-teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.wizard-field input.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

/* Option buttons */
.option-grid {
    display: grid;
    gap: 0.75rem;
}

.option-grid--duo {
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    min-height: 3.75rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    box-shadow:
        0 1px 2px rgba(15, 39, 68, 0.04),
        0 2px 8px rgba(15, 39, 68, 0.04);
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        transform 0.12s ease,
        box-shadow 0.18s ease;
}

.option-btn--large {
    flex-direction: column;
    min-height: 6.5rem;
    padding: 1.25rem 1rem;
    gap: 0.5rem;
}

.option-btn__label {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.option-btn__icon {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1;
}

.option-btn:hover {
    border-color: #99f6e4;
    background: #f0fdfa;
    box-shadow:
        0 2px 4px rgba(15, 39, 68, 0.06),
        0 4px 16px rgba(13, 148, 136, 0.1);
}

.option-btn:active {
    transform: scale(0.97);
    box-shadow: 0 1px 2px rgba(15, 39, 68, 0.06);
}

.option-btn.is-selected {
    border-color: var(--color-teal);
    background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
    box-shadow:
        0 0 0 3px rgba(13, 148, 136, 0.15),
        0 4px 16px rgba(13, 148, 136, 0.15);
}

.option-btn.is-selected .option-btn__label {
    color: var(--color-teal-dark);
}

.option-btn.is-loading {
    pointer-events: none;
    opacity: 0.75;
}

/* Primary CTA */
.btn-pressable {
    min-height: 3.375rem;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 14px;
    box-shadow:
        0 1px 2px rgba(15, 39, 68, 0.08),
        0 4px 16px rgba(13, 148, 136, 0.25);
    transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-pressable:hover {
    box-shadow:
        0 2px 4px rgba(15, 39, 68, 0.1),
        0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn-pressable:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

.wizard-consent {
    margin-top: 1.25rem;
    text-align: center;
    line-height: 1.55;
}

.wizard-nav {
    margin-top: 1.25rem;
    padding-top: 0.25rem;
}

.wizard-back {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    margin-left: -0.75rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.wizard-back svg {
    width: 1.125rem;
    height: 1.125rem;
}

.wizard-back:hover {
    color: var(--color-navy);
    background: rgba(15, 39, 68, 0.04);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .wizard-step,
    .road-car,
    .road-track__fill,
    .option-btn,
    .btn-pressable {
        transition: none;
    }

    .wizard-step.is-active {
        animation: none;
    }

    .wizard-loading__car,
    .wizard-loading__pulse,
    .wizard-loading__checklist li.is-current::before {
        animation: none;
    }
}
