/* ============================================================
   SECTIONS: How it works / Social proof / FAQ / Garages
   ============================================================ */

/* Shared section labels */
.bs-section-eyebrow {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--or); margin-bottom: 8px;
}
.bs-section-title {
    font-family: var(--fd); font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 900; text-transform: uppercase;
    color: var(--nv); margin-bottom: 40px; line-height: 1;
}
.bs-section-title em { color: var(--or); font-style: normal; }

/* HOW IT WORKS */
.bs-how { background: var(--bg); padding: 64px 24px; }
.bs-how-inner { max-width: 1200px; margin: 0 auto; }
.bs-how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.bs-how-card {
    background: var(--wh); border-radius: 14px; padding: 28px 20px;
    border: 2px solid var(--bd); position: relative; overflow: hidden; transition: all .25s;
}
.bs-how-card:hover {
    border-color: var(--or); transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26,39,64,.1);
}
.bs-how-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--or); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.bs-how-card:hover::before { transform: scaleX(1); }
.bs-how-num {
    font-family: var(--fd); font-size: 3.5rem; font-weight: 900;
    color: rgba(26,39,64,.06); line-height: 1; margin-bottom: 12px;
}
.bs-how-icon {
    width: 44px; height: 44px; background: rgba(232,85,42,.1);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 14px;
}
.bs-how-icon svg { width: 20px; height: 20px; color: var(--or); }
.bs-how-title { font-family: var(--fd); font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--nv); margin-bottom: 8px; }
.bs-how-desc { font-size: .83rem; color: var(--tx); line-height: 1.6; }

/* SOCIAL PROOF */
.bs-proof { background: var(--nv); padding: 48px 24px; text-align: center; }
.bs-proof-inner { max-width: 700px; margin: 0 auto; }
.bs-proof-num {
    font-family: var(--fd); font-size: clamp(3rem,6vw,5rem);
    font-weight: 900; color: var(--or); line-height: 1; margin-bottom: 8px;
}
.bs-proof-label { font-size: 1rem; color: rgba(255,255,255,.6); }
.bs-proof-sub { font-size: .82rem; color: rgba(255,255,255,.3); margin-top: 6px; }

/* FAQ */
.bs-faq { background: var(--wh); padding: 64px 24px; }
.bs-faq-inner { max-width: 800px; margin: 0 auto; }
.bs-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.bs-faq-item { border: 1.5px solid var(--bd); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.bs-faq-item.open { border-color: rgba(232,85,42,.3); }
.bs-faq-q {
    padding: 18px 20px; font-weight: 700; font-size: .92rem; color: var(--nv);
    cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 16px; user-select: none;
}
.bs-faq-q svg { width: 16px; height: 16px; color: var(--or); flex-shrink: 0; transition: transform .3s; }
.bs-faq-item.open .bs-faq-q svg { transform: rotate(45deg); }
.bs-faq-a {
    padding: 0 20px; max-height: 0; overflow: hidden;
    font-size: .87rem; color: var(--tx); line-height: 1.7;
    transition: max-height .35s ease, padding .35s ease;
}
.bs-faq-item.open .bs-faq-a { max-height: 200px; padding: 0 20px 18px; }

/* GARAGES / provincie */
.bs-prov-btn {
    background: #f4f6f8; border: 1.5px solid #e2e8f0; border-radius: 100px;
    padding: 4px 12px; font-size: .72rem; font-weight: 600;
    color: #4a5568; cursor: pointer; transition: all .2s; white-space: nowrap;
}
.bs-prov-btn:hover { border-color: #1a2740; color: #1a2740; }
.bs-prov-btn.active { background: #1a2740; border-color: #1a2740; color: #fff; }
