/* ─── FAQ PAGINA SPECIFIEK ─────────────────────────────── */
.faq-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 40px;
}
.faq-hero-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}
.faq-hero-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 7vw, 72px);
    line-height: .95;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 16px;
}
.faq-hero-title em {
    font-style: normal;
    color: #B5621A;
}
.faq-hero-sub {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
}

/* ─── METHODOLOGIE BLOK ────────────────────────────────── */
.methode-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 48px;
}
.methode-card {
    background: var(--text);
    border-radius: 20px;
    padding: 36px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.methode-card::before {
    content: 'HOE';
    position: absolute;
    top: -20px; right: -10px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: 160px;
    color: rgba(255,255,255,.05);
    line-height: 1;
    pointer-events: none;
}
.methode-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -.5px;
    margin-bottom: 24px;
    position: relative;
}
.methode-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.methode-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.methode-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.methode-step-body strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.methode-step-body p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
}
.methode-verdicts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 28px;
}
.methode-verdict {
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
}
.methode-verdict .v-icon { font-size: 20px; display: block; margin-bottom: 4px; }
.methode-verdict .v-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; }
.methode-verdict.good { background: #2D6A4F; }
.methode-verdict.warn { background: #B5621A; }
.methode-verdict.bad  { background: #1B3A5C; }
.methode-verdict.ban  { background: #8B0000; }

/* ─── FAQ ACCORDION ────────────────────────────────────── */
.faq-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 64px;
}
.faq-group {
    margin-bottom: 40px;
}
.faq-group-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}
.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item.open {
    border-color: #999;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: background .15s;
}
.faq-question:hover { background: var(--bg); }
.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform .3s, background .2s;
    color: var(--muted);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--text);
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-answer-inner {
    padding: 0 20px 20px;
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.faq-answer-inner a {
    color: var(--text);
    text-underline-offset: 3px;
}
.faq-answer-inner strong {
    color: var(--text);
    font-style: normal;
}

/* ─── CTA ──────────────────────────────────────────────── */
.cta-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 64px;
}
.cta-card {
    background: #FDF3EB;
    border: 1.5px solid #F4A261;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-text strong {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}
.cta-text p {
    font-size: 14px;
    color: var(--muted);
}
.cta-btn {
    background: var(--text);
    color: #fff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 12px 24px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background .15s;
}
.cta-btn:hover { background: #333; }

@media (max-width: 700px) {
    .methode-card { padding: 28px 24px; }
    .methode-verdicts { grid-template-columns: repeat(2, 1fr); }
    .faq-hero { padding: 32px 16px 28px; }
    .faq-section, .methode-section, .cta-section { padding-left: 16px; padding-right: 16px; }
}

/* ─── DARK MODE ────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    .faq-hero-title em { color: #F4A261; }

    .methode-card {
        background: #252420;
        border: 1.5px solid #3A3830;
    }
    .methode-card::before { color: rgba(255,255,255,.04); }
    .methode-step-num {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.15);
    }

    .faq-item.open { border-color: #666; }

    .cta-card {
        background: #28200E;
        border-color: #B5621A;
    }
    .cta-btn:hover { background: #444; }
}