/* ============================================================
   CRESCO — v2 additions (proof layer, focused hero, real CTA)
   Loaded AFTER styles.css; only adds/overrides.
   ============================================================ */

/* ---- focused single hero: drop carousel dot rail, keep arrows hidden ---- */
.hero-ui { justify-content: flex-end; }
.hero-dots { display: none; }
.hero-arrows { display: none; }
.hero .scroll-hint { opacity: 0.8; }

/* push hero content a touch higher so the trust strip breathes */
.hero-content { bottom: clamp(96px, 16vh, 190px); }

/* trust line under hero CTA */
.hero-trust {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-slide.active .hero-trust {
  opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease) 0.85s, transform 0.8s var(--ease) 0.85s;
}
.hero-trust::before { content: ""; width: 28px; height: 1px; background: var(--line); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(34px, 5vh, 56px);
}
.trust-inner { display: flex; flex-direction: column; gap: 26px; }
.trust-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
}
.trust-logo {
  width: 100%;
  height: 46px;
  --slot-bg: transparent;
  opacity: 0.62;
  filter: grayscale(1);
  transition: opacity 0.3s var(--ease);
}
.trust-logo:hover { opacity: 1; }

/* placeholder look for unfilled image-slots */
image-slot {
  --slot-border: 1px dashed var(--line);
}

/* ============================================================
   CASES / PROOF
   ============================================================ */
.cases { background: var(--paper); }
.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.case {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(26px, 2.4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(22, 24, 28, 0.35);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.case-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.case-sector {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.case-logo {
  width: 84px;
  height: 30px;
  opacity: 0.7;
  filter: grayscale(1);
}
.case-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: 6px;
  border-bottom: 1px solid var(--line-soft);
}
.case-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
html[data-heads="sans"] .case-num { font-weight: 800; }
.case-num .u { color: var(--accent); }
.case-result {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.case-story {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}

/* stats: integrate as a band with a caption */
.stats-band { margin-top: clamp(28px, 4vh, 52px); }
.stats-caption {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  text-align: right;
}

/* ============================================================
   PULL QUOTE (proof, human voice)
   ============================================================ */
.quote {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
}
.quote-inner {
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 90px;
  line-height: 0.5;
  color: var(--accent);
  height: 38px;
}
.quote-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
html[data-heads="sans"] .quote-text { font-weight: 600; letter-spacing: -0.03em; }
.quote-attr {
  display: flex;
  align-items: center;
  gap: 16px;
}
.quote-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex: none;
}
.quote-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   CONTACT — real CTA reassurance
   ============================================================ */
.cta-reassure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.cta-reassure::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

/* ============================================================
   DIENSTEN PAGE (dedicated services page)
   ============================================================ */
.page-head {
  position: relative;
  padding-top: clamp(140px, 20vh, 220px);
  padding-bottom: clamp(40px, 6vh, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-head .hero-visual {
  position: absolute; inset: 0;
  opacity: 0.5;
  pointer-events: none;
}
.page-head-inner { position: relative; max-width: 880px; }
.page-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 22px;
  transition: color 0.25s var(--ease);
}
.page-back:hover { color: var(--accent); }
.page-back .ar { transform: rotate(180deg); display: inline-block; }
.page-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 22px;
}
html[data-heads="sans"] .page-title { font-weight: 800; letter-spacing: -0.04em; }
.page-title .em { color: var(--accent); font-style: italic; }
html[data-heads="sans"] .page-title .em { font-style: normal; }
.page-intro {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

.svc-detail-list {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 30px);
}
.svc-detail {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
  padding: clamp(30px, 3.4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.svc-detail:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: 0 28px 60px -34px rgba(22, 24, 28, 0.35);
  transform: translateY(-3px);
}
.svc-detail-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.svc-detail-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 12px 0 16px;
  text-transform: lowercase;
}
html[data-heads="sans"] .svc-detail-name { font-weight: 700; letter-spacing: -0.03em; }
.svc-detail-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 46ch;
}
.svc-detail-incl {
  padding-top: 4px;
  border-top: 1px solid var(--line-soft);
}
.svc-incl-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 18px 0 16px;
}
.svc-incl-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.svc-incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
}
.svc-incl-list .chk {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .case-list { grid-template-columns: 1fr; }
  .trust-logos { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .stats-caption { text-align: left; }
  .svc-detail { grid-template-columns: 1fr; gap: 26px; }
  .svc-page-body { grid-template-columns: 1fr; gap: 36px; }
  .svc-other-list { grid-template-columns: 1fr; }
}

/* ============================================================
   SINGLE SERVICE PAGE
   ============================================================ */
.svc-page-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}
.svc-page-lead {
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
  margin-bottom: 30px;
}
.svc-audience {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.svc-audience .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-audience p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4;
  color: var(--ink);
}
html[data-heads="sans"] .svc-audience p { font-style: normal; font-weight: 600; }

.svc-incl-card {
  padding: clamp(26px, 2.6vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: sticky;
  top: 100px;
}
.svc-incl-card .svc-incl-label { margin-top: 0; }
.svc-incl-card .svc-tags { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.svc-incl-card .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* other services */
.svc-other {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}
.svc-other-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 26px;
  display: block;
}
.svc-other-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.svc-other-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.svc-other-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -30px rgba(22, 24, 28, 0.4);
}
.svc-other-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.svc-other-name {
  flex: 1;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: lowercase;
}
html[data-heads="sans"] .svc-other-name { font-weight: 700; }
.svc-other-arrow { color: var(--ink-faint); transition: transform 0.3s var(--ease), color 0.3s var(--ease); }
.svc-other-card:hover .svc-other-arrow { transform: translateX(4px); color: var(--accent); }

/* make the overview detail blocks tappable */
.svc-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.svc-detail-link:hover { gap: 13px; }
@media (max-width: 560px) {
  .trust-logos { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { font-size: 10.5px; letter-spacing: 0.1em; }
}
