/* =========================================================
   Interim-detachering.css
   Professionele Interim & Detachering landingspagina
   Prefix: rc-id-
   Responsive: mobiel / tablet / desktop ✅
========================================================= */

:root{
  --rc-id-bg: #fafafa;
  --rc-id-card: #ffffff;
  --rc-id-border: rgba(0,0,0,.08);
  --rc-id-text: #101014;
  --rc-id-muted: rgba(16,16,20,.62);
  --rc-id-soft: rgba(0,0,0,.04);
  --rc-id-soft2: rgba(0,0,0,.06);
  --rc-id-radius: 18px;
  --rc-id-shadow: 0 10px 30px rgba(0,0,0,.06);

  /* Brand accent */
  --rc-id-accent: #ff6a00;

  /* Motion */
  --rc-id-ease: cubic-bezier(.2,.8,.2,1);
}

/* Page wrapper */
.rc-id-page{
  background: var(--rc-id-bg);
  color: var(--rc-id-text);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.rc-id-container{
  max-width: none; /* laat globale .container de breedte bepalen */
}

/* Headings (minder schreeuwend) */
.rc-id-h1{
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
  font-weight: 800; /* was impliciet/heftig -> iets rustiger */
}
.rc-id-h2{
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 10px 0;
  font-weight: 800;
}
.rc-id-h3{
  font-size: 18px;
  margin: 0 0 8px 0;
  font-weight: 750; /* rustiger */
}

.rc-id-accent{ color: var(--rc-id-accent); }

.rc-id-lead{
  color: var(--rc-id-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px 0;
}
.rc-id-sub{
  color: var(--rc-id-muted);
  line-height: 1.7;
  margin: 0 0 18px 0;
  max-width: 78ch;
}

/* Hero */
.rc-id-hero{
  margin-top: 0px;
  padding-top: 6px;
}

.rc-id-heroGrid{
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 18px;
  align-items: stretch;
}

/* Responsive: tablet */
@media (max-width: 980px){
  .rc-id-heroGrid{ grid-template-columns: 1fr; }
}

.rc-id-heroCopy{
  border-radius: var(--rc-id-radius);
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.00));
  padding: 22px;
  border: 1px solid var(--rc-id-border);
  box-shadow: var(--rc-id-shadow);
}

.rc-id-ctaRow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px 0;
}

/* Buttons (iets minder dik) */
.rc-id-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700; /* ok */
  border: 1px solid var(--rc-id-border);
  background: #fff;
  color: var(--rc-id-text);
  transition: transform .15s var(--rc-id-ease), box-shadow .15s var(--rc-id-ease);
  will-change: transform;
}
.rc-id-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
.rc-id-btnPrimary{
  background: var(--rc-id-accent);
  border-color: rgba(0,0,0,.08);
  color: #fff;
}
.rc-id-btnGhost{
  background: rgba(255,255,255,.7);
}
.rc-id-btnBlock{
  width: 100%;
  margin-top: 12px;
}

/* Pills (minder schreeuwend) */
.rc-id-pillRow{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.rc-id-pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--rc-id-border);
  text-decoration: none;
  color: var(--rc-id-text);
  font-weight: 600; /* was 650 */
  font-size: 13px;
  transition: transform .15s var(--rc-id-ease), box-shadow .15s var(--rc-id-ease);
}
.rc-id-pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

/* Trust row */
.rc-id-trustRow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
}
.rc-id-trustItem{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--rc-id-border);
  color: var(--rc-id-muted);
  font-size: 13px;
}
.rc-id-dot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  display: inline-block;
}
.rc-id-dotGreen{ background: rgba(0,160,90,.85); }
.rc-id-dotBlue{ background: rgba(0,110,255,.75); }
.rc-id-dotOrange{ background: rgba(255,106,0,.9); }

/* Hero Card */
.rc-id-heroCard{
  border-radius: var(--rc-id-radius);
  background: var(--rc-id-card);
  border: 1px solid var(--rc-id-border);
  box-shadow: var(--rc-id-shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.rc-id-cardHeader{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.rc-id-cardTitle{
  font-weight: 750; /* was 800 */
  font-size: 16px;
}
.rc-id-cardSub{
  color: var(--rc-id-muted);
  font-size: 12.5px;
  margin-top: 2px;
}
.rc-id-liveBadge{
  font-size: 11px;
  font-weight: 750; /* was 900 */
  letter-spacing: .06em;
  border-radius: 999px;
  padding: 7px 10px;
  border: 1px solid var(--rc-id-border);
  background: rgba(0,0,0,.03);
  color: var(--rc-id-text);
}

/* Mini stats */
.rc-id-miniStats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.rc-id-miniStat{
  border: 1px solid var(--rc-id-border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.02);
}
.rc-id-miniStat .t{
  color: var(--rc-id-muted);
  font-size: 12px;
  font-weight: 600;
}
.rc-id-miniStat .v{
  font-size: 22px;
  font-weight: 850; /* was 900 */
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.rc-id-miniStat .s{
  color: var(--rc-id-muted);
  font-size: 12px;
}

/* Progress */
.rc-id-progress{ margin-top: 12px; }

.rc-id-progressTop{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--rc-id-muted);
  font-size: 13px;
}
.rc-id-bar{
  height: 10px;
  border-radius: 99px;
  background: rgba(0,0,0,.06);
  overflow: hidden;
  border: 1px solid var(--rc-id-border);
}
.rc-id-barFill{
  display: block;
  height: 100%;
  background: var(--rc-id-accent);
  border-radius: 99px;
  width: 0%;
  transition: width .6s var(--rc-id-ease);
}
.rc-id-note{
  margin: 10px 0 0 0;
  color: var(--rc-id-muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.rc-id-cardDivider{
  height: 1px;
  background: rgba(0,0,0,.06);
  margin: 14px 0;
}

.rc-id-chipGrid{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rc-id-chip{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.03);
  border: 1px solid var(--rc-id-border);
  font-size: 12.5px;
  font-weight: 600; /* was 650 */
  color: var(--rc-id-text);
}

/* Sections */
.rc-id-section{
  margin-top: 18px;
  padding: 18px 0;
}

/* Cards */
.rc-id-card{
  border-radius: var(--rc-id-radius);
  background: var(--rc-id-card);
  border: 1px solid var(--rc-id-border);
  box-shadow: var(--rc-id-shadow);
  padding: 18px;
  transition: transform .14s var(--rc-id-ease), box-shadow .14s var(--rc-id-ease);
}
.rc-id-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

/* ✅ (2) Hover: kopteksten in kaarten oranje */
.rc-id-card h3{
  margin: 0 0 8px 0;
  font-weight: 750; /* rustiger */
  transition: color .14s var(--rc-id-ease);
}
.rc-id-card:hover h3{
  color: var(--rc-id-accent);
}

.rc-id-card p{
  margin: 0;
  color: var(--rc-id-muted);
  line-height: 1.7;
}
.rc-id-cardTop{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* Badges/tags (minder dik) */
.rc-id-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700; /* was 900 */
  font-size: 12px;
  background: rgba(255,106,0,.12);
  color: var(--rc-id-accent);
  border: 1px solid rgba(255,106,0,.22);
}
.rc-id-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 650; /* was 750 */
  font-size: 12px;
  background: rgba(0,0,0,.03);
  border: 1px solid var(--rc-id-border);
  color: var(--rc-id-muted);
}

/* Lists */
.rc-id-list{
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--rc-id-muted);
  line-height: 1.7;
}
.rc-id-list li{ margin: 6px 0; }

/* Grids */
.rc-id-grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .rc-id-grid3{ grid-template-columns: 1fr; }
}

.rc-id-grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 980px){
  .rc-id-grid2{ grid-template-columns: 1fr; }
}

/* How grid */
.rc-id-howGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}
@media (max-width: 980px){
  .rc-id-howGrid{ grid-template-columns: 1fr; }
}
.rc-id-how{
  border-radius: var(--rc-id-radius);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--rc-id-border);
  box-shadow: var(--rc-id-shadow);
  padding: 16px;
  transition: transform .14s var(--rc-id-ease), box-shadow .14s var(--rc-id-ease);
}
.rc-id-how:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.rc-id-howTop{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.rc-id-how h4{
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 750;
  transition: color .14s var(--rc-id-ease);
}
.rc-id-how:hover h4{
  color: var(--rc-id-accent);
}
.rc-id-how p{
  margin: 0;
  color: var(--rc-id-muted);
  line-height: 1.7;
}

/* Band */
.rc-id-band{
  margin-top: 14px;
  border-radius: var(--rc-id-radius);
  background: linear-gradient(180deg, rgba(255,106,0,.10), rgba(0,0,0,.00));
  border: 1px solid rgba(255,106,0,.18);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 720px){
  .rc-id-band{
    flex-direction: column;
    align-items: stretch;
  }
}
.rc-id-bandTitle{
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 850; /* was 900 */
}
.rc-id-bandText{
  margin: 0;
  color: var(--rc-id-muted);
  line-height: 1.7;
}

/* Feature split */
.rc-id-feature{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 980px){
  .rc-id-feature{ grid-template-columns: 1fr; }
}

/* KPI box */
.rc-id-kpiBox{
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.rc-id-kpi{
  border: 1px solid var(--rc-id-border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.02);
}
.rc-id-kpi .t{
  color: var(--rc-id-muted);
  font-size: 12px;
  font-weight: 600;
}
.rc-id-kpi .v{
  font-size: 20px;
  font-weight: 850; /* was 900 */
  margin-top: 2px;
}
.rc-id-kpi .s{
  color: var(--rc-id-muted);
  font-size: 12px;
}

/* Quotes */
.rc-id-quote{
  border-radius: var(--rc-id-radius);
  background: var(--rc-id-card);
  border: 1px solid var(--rc-id-border);
  box-shadow: var(--rc-id-shadow);
  padding: 18px;
}
.rc-id-quote p{
  margin: 0;
  color: var(--rc-id-text);
  font-weight: 600; /* was 650 */
  line-height: 1.7;
}
.rc-id-quoteMeta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--rc-id-muted);
  font-size: 12.5px;
}
.rc-id-quoteDot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(0,0,0,.16);
  display: inline-block;
}

/* =========================================================
   (3) FAQ: + icoon + styling
   - + rechts in summary
   - open -> × en oranje tint
========================================================= */
.rc-id-faq{
  border-radius: var(--rc-id-radius);
  background: var(--rc-id-card);
  border: 1px solid var(--rc-id-border);
  box-shadow: var(--rc-id-shadow);
  overflow: hidden;
}
.rc-id-faq details{
  padding: 14px 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.rc-id-faq details:first-child{
  border-top: none;
}

.rc-id-faq summary{
  cursor: pointer;
  font-weight: 750; /* was 850 */
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rc-id-faq summary::-webkit-details-marker{ display: none; }

/* + icoon */
.rc-id-faq summary::after{
  content: "+";
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
  color: rgba(16,16,20,.70);
  font-weight: 850;
  transition: transform .14s var(--rc-id-ease), background .14s var(--rc-id-ease), color .14s var(--rc-id-ease), border-color .14s var(--rc-id-ease);
}

/* open: × + oranje */
.rc-id-faq details[open] summary::after{
  content: "×";
  transform: rotate(90deg);
  background: rgba(255,106,0,.10);
  color: var(--rc-id-accent);
  border-color: rgba(255,106,0,.22);
}

.rc-id-faq details p{
  margin: 10px 0 0 0;
  color: var(--rc-id-muted);
  line-height: 1.7;
}

/* CTA band */
.rc-id-ctaBand{
  border-radius: var(--rc-id-radius);
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.00));
  border: 1px solid var(--rc-id-border);
  box-shadow: var(--rc-id-shadow);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
@media (max-width: 980px){
  .rc-id-ctaBand{
    flex-direction: column;
    align-items: stretch;
  }
}
.rc-id-ctaTitle{
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 850; /* was 950 */
}
.rc-id-ctaText{
  margin: 0;
  color: var(--rc-id-muted);
  line-height: 1.7;
  max-width: 78ch;
}
.rc-id-ctaRow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rc-id-ctaRowEnd{ justify-content: flex-end; }
@media (max-width: 980px){
  .rc-id-ctaRowEnd{ justify-content: flex-start; }
}

/* Reveal animation (subtiel) */
.rc-id-reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s var(--rc-id-ease), transform .6s var(--rc-id-ease);
}
.rc-id-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .rc-id-btn,
  .rc-id-pill,
  .rc-id-barFill,
  .rc-id-reveal{
    transition: none !important;
  }
  .rc-id-btn:hover,
  .rc-id-pill:hover{
    transform: none !important;
  }
}
