/* /css/over-ons.css */

:root{
  --rc-accent: #f05a28;
  --rc-text: #101014;
  --rc-muted: rgba(16,16,20,.62);
  --rc-border: rgba(0,0,0,.08);
  --rc-card: #ffffff;
  --rc-soft: rgba(0,0,0,.04);
  --rc-radius: 18px;

  /* ✅ zachter (geen buiten-glow) */
  --rc-shadow: 0 10px 22px rgba(0,0,0,.06);
}

/* respecteer jullie layout var uit site-layout.js */
.about-page{
  padding-top: 0;
  padding-bottom: 60px;
}

/* Hero */
.about-hero{
  border: 1px solid var(--rc-border);
  border-radius: calc(var(--rc-radius) + 8px);

  /* ✅ minder buiten-schaduw */
  box-shadow: var(--rc-shadow);

  overflow: hidden;
  padding: 26px;

  /* ✅ inner glow blijft */
  background:
    radial-gradient(900px 380px at 16% 10%, rgba(240,90,40,.16), transparent 60%),
    radial-gradient(820px 420px at 92% 18%, rgba(16,16,20,.06), transparent 55%),
    linear-gradient(180deg, #fff, #fbfbfd);
}

.about-hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 22px;
  align-items: stretch;
}

.about-kicker{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(16,16,20,.55);
}

.about-title{
  margin: 0 0 10px;

  /* ✅ minder bold */
  font-weight: 800;

  letter-spacing: -0.8px;
  line-height: 1.06;
  font-size: clamp(28px, 3.2vw, 46px);
  color: var(--rc-text);
}
.about-title span{ color: var(--rc-accent); }

.about-sub{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--rc-muted);
  max-width: 62ch;
}

.about-hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items:center;
  margin-top: 18px;
}

/* Buttons */
.about-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;

  /* ✅ rustiger */
  font-weight: 700;

  line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.about-btn svg{ width:18px; height:18px; }

.about-btn--primary{
  color: #fff;
  background: var(--rc-accent);
  border: 1px solid rgba(240,90,40,.35);

  /* ✅ minder glow */
  box-shadow: 0 10px 18px rgba(240,90,40,.18);
}
.about-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(240,90,40,.20);
}
.about-btn--ghost{
  color: var(--rc-text);
  background: rgba(255,255,255,.75);
  border: 1px solid var(--rc-border);
}
.about-btn--ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}

/* Chips */
.about-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.about-chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  border: 1px solid var(--rc-border);
  color: rgba(16,16,20,.72);
  font-size: 13px;

  /* ✅ minder bold */
  font-weight: 600;
}

/* Cards */
.about-card{
  background: var(--rc-card);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);

  /* ✅ zachter */
  box-shadow: 0 8px 18px rgba(0,0,0,.05);

  padding: 16px;
}

/* Metrics */
.about-metrics{
  display:grid;
  gap: 12px;
}
.about-metric{
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}
.about-metric-k{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(16,16,20,.55);
}
.about-metric-v{
  margin-top: 6px;
  font-size: 22px;

  /* ✅ minder bold */
  font-weight: 800;

  color: var(--rc-text);
  letter-spacing: -0.4px;
}
.about-metric-t{
  margin-top: 2px;
  font-size: 13px;
  color: var(--rc-muted);
}

/* Cert */
.about-cert-title{
  /* ✅ minder bold */
  font-weight: 800;

  letter-spacing: -.2px;
  margin: 0 0 6px;
}
.about-cert-text{
  margin: 0 0 12px;
  color: var(--rc-muted);
  line-height: 1.55;
  font-size: 14px;
}
.about-cert-logos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
  margin-top: 10px;
}
.about-cert-logos img{
  width: 100%;
  height: 80px;
  object-fit: contain;
  object-position: center;
  opacity: .95;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(60,44,45,.12);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

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

.about-head{
  margin-bottom: 14px;
}
.about-head h2{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -.3px;

  /* ✅ minder bold */
  font-weight: 800;
}
.about-lead{
  margin: 0;
  color: var(--rc-muted);
  line-height: 1.6;
  max-width: 70ch;
}

/* Grids */
.about-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.about-grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Feature cards */
.about-feature h3{
  margin: 8px 0 6px;
  font-size: 16px;
  letter-spacing: -.2px;

  /* ✅ minder bold */
  font-weight: 800;
}
.about-feature p{
  margin: 0;
  color: var(--rc-muted);
  line-height: 1.6;
  font-size: 14px;
}
.about-feature-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(240,90,40,.12);
  border: 1px solid rgba(240,90,40,.20);
  font-size: 18px;
}

/* Steps */
.about-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.about-step{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  background: rgba(255,255,255,.78);
}
.about-step-nr{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;

  /* ✅ minder bold */
  font-weight: 800;

  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  letter-spacing: -.3px;
}
.about-step-title{
  /* ✅ minder bold */
  font-weight: 800;

  letter-spacing: -.2px;
}
.about-step-text{
  margin-top: 2px;
  color: var(--rc-muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ✅ Werkwijze layout: steps links, foto rechts (klein & netjes) */
.about-work-grid{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
  align-items: start;
}

.about-work-aside{
  position: sticky;
  top: calc(var(--hdrH) + 18px);
}

.about-work-figure{
  margin: 0;
  border-radius: var(--rc-radius);
  overflow: hidden;
  border: 1px solid var(--rc-border);

  /* ✅ zachter */
  box-shadow: 0 8px 18px rgba(0,0,0,.05);

  background: rgba(0,0,0,.03);
  max-height: 320px;
}

.about-work-figure img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Sectors */
.about-sector h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.2px;

  /* ✅ minder bold */
  font-weight: 800;
}
.about-sector p{
  margin: 0 0 12px;
  color: var(--rc-muted);
  line-height: 1.6;
  font-size: 14px;
}
.about-mini-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-mini-tags span{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  color: rgba(16,16,20,.72);
  font-weight: 600;
}

/* FAQ */
.about-faq{
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  overflow: hidden;
  background: rgba(255,255,255,.75);
}
.about-faq-item{
  width:100%;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rc-border);
  font: inherit;
  cursor: pointer;
  text-align:left;

  /* ✅ minder bold */
  font-weight: 800;

  color: var(--rc-text);
}
.about-faq-item:last-of-type{
  border-bottom: 0;
}
.about-faq-ico{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);

  /* ✅ iets rustiger */
  font-weight: 800;
}
.about-faq-panel{
  padding: 0 16px 14px;
  color: var(--rc-muted);
  line-height: 1.6;
  font-size: 14px;
}

/* CTA */
.about-cta{
  margin-top: 22px;
  border: 1px solid var(--rc-border);
  border-radius: calc(var(--rc-radius) + 8px);

  /* ✅ minder buiten-schaduw */
  box-shadow: var(--rc-shadow);

  /* ✅ inner glow blijft */
  background:
    radial-gradient(900px 380px at 18% 20%, rgba(240,90,40,.14), transparent 60%),
    linear-gradient(180deg, #fff, #fbfbfd);

  padding: 18px;
}
.about-cta-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.about-cta-inner h2{
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -.3px;

  /* ✅ minder bold */
  font-weight: 800;
}
.about-cta-inner p{
  margin: 0;
  color: var(--rc-muted);
  line-height: 1.6;
}
.about-cta-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* Responsive */
@media (max-width: 980px){
  .about-hero-grid{
    grid-template-columns: 1fr;
  }
  .about-grid-3{
    grid-template-columns: 1fr;
  }
  .about-grid-2{
    grid-template-columns: 1fr;
  }
  .about-cta-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .about-cta-actions{
    width: 100%;
    justify-content:flex-start;
  }

  /* ✅ Werkwijze responsive: stack + sticky uit */
  .about-work-grid{
    grid-template-columns: 1fr;
  }
  .about-work-aside{
    position: static;
  }
  .about-work-figure{
    max-height: none;
  }
  .about-work-figure img{
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 520px){
  .about-hero{ padding: 18px; }
  .about-btn{ width: 100%; }
  .about-hero-actions{ width: 100%; }
  .about-card{ padding: 14px; }
}
