/* =========================================
   FAQ – zelfde vibe als contact/over/reparatieproces
========================================= */

.faq-hero{
  position: relative;
  overflow: hidden;
}

.faq-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(243,156,18,0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(30,144,255,0.32), transparent 60%);
  pointer-events:none;
  z-index:0;
}

.faq-hero__inner{
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 90px;

  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.faq-hero__lead{
  color: rgba(232,238,249,.92);
  line-height: 1.65;
  margin-top: 10px;
  margin-bottom: 14px;
}

.faq-points{
  margin: 16px 0 0;
  padding-left: 18px;
  color: #c7d3ea;
  font-size: 0.95rem;
}
.faq-points li + li{ margin-top: 6px; }

/* Card rechts */
.faq-card{
  background: rgba(8,14,30,0.96);
  border-radius: 18px;
  padding: 26px 28px 24px;
  box-shadow: 0 18px 48px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);

  width: 55%;
  max-width: 620px;
  min-width: 480px;
  justify-self: end;
}

.faq-card__text{
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #c7d3ea;
}

.faq-divider{
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 14px 0;
}

.faq-card__small{
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #c7d3ea;
}

.faq-card__buttons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Section */
.faq-section{
  padding: 64px 0 96px;
}

.faq-section .container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-box{
  background: rgba(6,12,27,0.96);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.65);
  padding: 28px 26px 34px;
}

.faq-box__lead{
  margin: 0 0 16px;
  opacity: .88;
  line-height: 1.65;
  color: rgba(245,247,255,.86);
}

/* FAQ accordion */
.faq-list{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.faq-item{
  background: rgba(10,16,34,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item summary{
  cursor: pointer;
  padding: 14px 14px 14px 44px;
  font-weight: 700;
  color: rgba(245,247,255,0.92);
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary::before{
  content:"▸";
  position:absolute;
  left: 16px;
  top: 13px;
  opacity: .85;
}

.faq-item[open] summary::before{ content:"▾"; }

.faq-answer{
  padding: 0 14px 14px 44px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-answer p{
  margin: 10px 0 0;
  color: rgba(199,211,234,.92);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Buttons */
.faq-btn{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.faq-btn--primary{
  color: #0b1020;
  background: linear-gradient(135deg, #f7c873, #f39c12);
  box-shadow: 0 10px 24px rgba(243,156,18,0.35);
}

.faq-btn--ghost{
  color: rgba(245,247,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,16,34,0.35);
}

/* CTA onderaan */
.faq-cta{
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-cta__buttons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px){
  .faq-hero__inner{
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 90px 18px 70px;
  }

  .faq-card{
    width: 100%;
    min-width: 0;
    max-width: 720px;
    justify-self: start;
  }

  .faq-section .container{
    padding: 0 18px;
  }

  .faq-box{
    padding: 22px 18px 26px;
  }

  .faq-cta{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   HERO LABEL / BADGE (globaal)
========================================= */

.hero-label{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 14px;
  margin-bottom: 14px;

  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #f7d08a;
  background: rgba(10,16,34,0.85);

  border-radius: 999px;
  border: 1px solid rgba(247,208,138,0.35);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 6px 18px rgba(0,0,0,0.35);

  backdrop-filter: blur(8px);
}