/* ============================================================
   BASE VARS & RESET
   ============================================================ */
.bs * { box-sizing: border-box; margin: 0; padding: 0; }
.bs {
    --or:  #e8552a;
    --or2: #c94220;
    --nv:  #1a2740;
    --nv2: #243352;
    --bg:  #f4f6f8;
    --wh:  #fff;
    --bd:  #e2e8f0;
    --tx:  #4a5568;
    --gy:  #9aa5b4;
    --fd:  'Barlow Condensed', Impact, sans-serif;
    --fb:  'Barlow', 'Segoe UI', sans-serif;
    font-family: var(--fb);
    color: var(--nv);
}

/* ============================================================
   HERO
   ============================================================ */
.bs-hero {
    background: var(--nv);
    padding: 80px 24px 0;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.bs-hero-bg-tire {
    position: absolute; right: -120px; top: 50%;
    transform: translateY(-50%);
    width: 700px; height: 700px;
    opacity: .04; pointer-events: none;
}
.bs-hero-glow {
    position: absolute; top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,85,42,.15) 0%, transparent 70%);
    pointer-events: none;
}
.bs-hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 480px;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
}

/* Eyebrow */
.bs-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--or); background: rgba(232,85,42,.12);
    padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.bs-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--or); border-radius: 50%;
    animation: bspulse 2s ease-in-out infinite;
}
@keyframes bspulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.4); }
}

/* Title */
.bs-title {
    font-family: var(--fd);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900; text-transform: uppercase;
    color: #fff; line-height: .95; margin-bottom: 20px;
}
.bs-title em { color: var(--or); font-style: normal; display: block; }
.bs-sub {
    font-size: 1.05rem; color: rgba(255,255,255,.6);
    line-height: 1.75; margin-bottom: 36px; max-width: 440px;
}

/* Trust row */
.bs-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.bs-trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.5); }
.bs-trust-item svg { width: 14px; height: 14px; color: var(--or); }
.bs-trust-item strong { color: rgba(255,255,255,.85); }

/* Scan counter */
.bs-counter-wrap {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px; padding: 8px 16px;
}
.bs-counter-dots { display: flex; gap: 5px; }
.bs-counter-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--or); transition: all .3s;
}
.bs-counter-dot.used { background: rgba(255,255,255,.12); }
.bs-counter-label { font-size: .75rem; color: rgba(255,255,255,.4); font-weight: 600; }

/* Hero wave */
.bs-hero-wave {
    display: block; width: 100%;
    margin-bottom: -2px; position: relative; z-index: 2;
}

/* ============================================================
   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; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
    .bs-hero-inner { grid-template-columns: 1fr; }
    .bs-how-grid   { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .bs-product-grid { grid-template-columns: repeat(2,1fr); }
    .bs-how-grid     { grid-template-columns: 1fr 1fr; }
    .bs-fitment-row  { flex-direction: column; }
}
@media (max-width: 520px) {
    .bs-product-grid { grid-template-columns: 1fr; }
    .bs-how-grid     { grid-template-columns: 1fr; }
    .bs-tip-visual   { display: none; }
}