/* Virgula Wizard — wizard.css */

.vw-wrap {
    max-width: 640px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.5;
}

/* Progress bar */
.vw-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 2rem;
}
.vw-progress-dot {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #e0e0e0;
    transition: background 0.3s;
}
.vw-progress-dot.is-done    { background: #5A7C61; }
.vw-progress-dot.is-active  { background: #8aab91; }

/* Intro tekst boven stap 1 */
.vw-intro-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
}

/* Step */
.vw-step { animation: vwFadeIn 0.22s ease; }
@keyframes vwFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vw-step-meta {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.vw-step-question {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 1.4rem;
    line-height: 1.3;
    color: #111;
}
.vw-step-hint {
    font-size: 13px;
    color: #666;
    margin: -1rem 0 1.2rem;
}

/* Options */
.vw-options {
    display: grid;
    gap: 8px;
}
.vw-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: border-color 0.15s, background 0.15s;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.4;
}
.vw-opt:hover {
    border-color: #8aab91;
    background: #f4f7f5;
}
.vw-opt.is-selected {
    border-color: #5A7C61;
    background: #edf2ee;
}
.vw-opt-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    flex-shrink: 0;
    transition: all 0.15s;
    position: relative;
}
.vw-opt.is-multi .vw-opt-indicator {
    border-radius: 4px;
}
.vw-opt.is-selected .vw-opt-indicator {
    background: #5A7C61;
    border-color: #5A7C61;
}
.vw-opt.is-selected .vw-opt-indicator::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
}
.vw-opt.is-multi.is-selected .vw-opt-indicator::after {
    top: 2px; left: 4px;
    width: 6px; height: 10px;
    border-radius: 0;
    background: none;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}
.vw-opt-label { font-weight: 500; }
.vw-opt-sub   { font-size: 13px; color: #666; }

/* Navigation */
.vw-nav {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}
.vw-btn {
    padding: 10px 22px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    transition: background 0.15s;
}
.vw-btn:hover { background: #f5f5f5; }
.vw-btn--primary {
    background: #5A7C61;
    border-color: #5A7C61;
    color: #fff;
    margin-left: auto;
}
.vw-btn--primary:hover { background: #3f5944; }
.vw-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Result */
.vw-result-intro {
    font-size: 15px;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.vw-section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #888;
    margin: 1.4rem 0 0.5rem;
}
.vw-module-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 8px;
}
.vw-module-card.is-core  { border-left: 3px solid #5A7C61; }
.vw-module-card.is-extra { border-left: 3px solid #8aab91; }
.vw-mod-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}
.vw-mod-name {
    font-size: 14px;
    font-weight: 500;
    color: #111;
}
.vw-mod-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
.vw-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.vw-badge--core  { background: #edf2ee; color: #3f5944; }
.vw-badge--extra { background: #f5f5f5; color: #666; }

.vw-result-nav {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Onderdruk <br> die het theme na labels injecteert */
.vw-wrap label + br { display: none !important; }

/* Lead form */
.vw-form-intro {
    color: #444;
    margin-bottom: 1.2rem;
}
.vw-field {
    margin-bottom: 1rem;
}
.vw-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}
.vw-field input,
.vw-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ccc;
    border-radius: 7px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a1a;
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.vw-field input:focus,
.vw-field textarea:focus {
    outline: none;
    border-color: #5A7C61;
}
.vw-opt { font-size: 12px; color: #888; font-weight: 400; }
.vw-form-nav {
    display: flex;
    gap: 10px;
    margin-top: 1.2rem;
}
.vw-error {
    margin-top: 0.8rem;
    color: #c0392b;
    font-size: 13px;
}

/* Honeypot — volledig verborgen, ook voor screenreaders */
.vw-hp {
    display: none !important;
}

/* Confirmation */
.vw-confirm-box {
    text-align: center;
    padding: 2rem 1rem;
}
.vw-confirm-icon {
    width: 52px;
    height: 52px;
    background: #edf2ee;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
}
.vw-confirm-icon::after {
    content: '';
    position: absolute;
    top: 14px; left: 17px;
    width: 8px; height: 14px;
    border-right: 2.5px solid #5A7C61;
    border-bottom: 2.5px solid #5A7C61;
    transform: rotate(45deg);
}
.vw-confirm-box h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 0.5rem;
}
.vw-confirm-box p {
    color: #555;
    margin-bottom: 1.4rem;
}
