/* ── Motorverzekering Dekkingsadvies — Stylesheet v2.0 ─────────────────────── */

.mva-wrap {
    max-width: 620px;
    margin: 0 auto;
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
}

/* Header */
.mva-header {
    margin-bottom: 2rem;
}

.mva-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: #1a1a1a;
}

.mva-subtitle {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Voortgangsbalk */
.mva-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 2rem;
}

.mva-progress-dot {
    height: 4px;
    flex: 1;
    background: #e0e0e0;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.mva-progress-dot.active {
    background: #7c6fcd;
}

.mva-progress-dot.done {
    background: #2aab7e;
}

/* Stappen */
.mva-step {
    display: none;
}

.mva-step.active {
    display: block;
}

.mva-step-label {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mva-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
    line-height: 1.4;
}

.mva-step-hint {
    font-size: 0.875rem;
    color: #555;
    background: #f5f4fe;
    border-left: 3px solid #9f95e8;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin: -0.75rem 0 1.25rem;
    line-height: 1.55;
}

/* Opties */
.mva-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mva-option {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 14px 18px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.mva-option:hover {
    border-color: #9f95e8;
    background: #faf9ff;
    box-shadow: 0 0 0 3px rgba(127, 119, 221, 0.08);
}

.mva-option:focus-visible {
    outline: 2px solid #7c6fcd;
    outline-offset: 2px;
}

.mva-option-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mva-option-content strong {
    font-size: 0.975rem;
    font-weight: 600;
    color: #1a1a1a;
}

.mva-option-content span {
    font-size: 0.85rem;
    color: #666;
}

/* Resultaatpagina */
.mva-result-header {
    margin-bottom: 1rem;
}

.mva-result-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #1a1a1a;
}

.mva-result-header p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Risicofactoren pills */
.mva-risk-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.mva-risk-pill {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    letter-spacing: 0.01em;
}

.mva-pill-high {
    background: #fdecea;
    color: #b52b27;
}

.mva-pill-mid {
    background: #fef4e4;
    color: #8a5100;
}

.mva-pill-low {
    background: #e8f5ee;
    color: #1a7a48;
}

/* Redenering */
.mva-reason {
    background: #f7f6ff;
    border-left: 3px solid #9f95e8;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Resultaatkaarten */
.mva-result-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.mva-featured {
    border: 2px solid #2aab7e !important;
}

.mva-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mva-badge-aanbevolen {
    background: #e6f7f1;
    color: #0f6e56;
}

.mva-badge-alt {
    background: #eeecff;
    color: #4a3faa;
}

.mva-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
}

.mva-card-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 0.875rem;
}

.mva-card-pros {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mva-card-pros li {
    font-size: 0.85rem;
    color: #555;
    padding: 3px 0;
}

.mva-card-pros li::before {
    content: "✓";
    color: #2aab7e;
    font-weight: 700;
    margin-right: 8px;
}

/* Acties onder resultaat */
.mva-result-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0.5rem;
}

.mva-cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s;
}

.mva-cta-btn:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

.mva-restart-btn {
    background: none;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    text-align: center;
}

.mva-restart-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

/* Responsive */
@media (max-width: 480px) {
    .mva-title {
        font-size: 1.3rem;
    }

    .mva-option {
        padding: 12px 14px;
    }

    .mva-result-card {
        padding: 1rem 1.1rem;
    }
}
