/* wsc_hero block styles */
/* ---------- Stat pills ---------- */
.wsc-stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px); }
.wsc-stat__value {
  font-family: var(--wsc-font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  line-height: 1;
}
.wsc-stat__label { font-size: 13px; color: var(--wsc-ink-3); margin-top: 6px; }

/* ---------- Hero ---------- */
.wsc-hero { position: relative; background: var(--wsc-surface); border-bottom: 1px solid var(--wsc-line); overflow: hidden; }
.wsc-hero__inner { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 88px); }
.wsc-hero__text { flex: 1 1 440px; min-width: 300px; }
.wsc-hero__media { flex: 1 1 380px; min-width: 290px; position: relative; }
.wsc-hero__badge {
  position: absolute; z-index: 2; bottom: 22px; left: 22px;
  background: var(--wsc-ink); color: #fff; border-radius: var(--wsc-radius);
  padding: 16px 18px; box-shadow: 0 14px 34px rgba(20, 22, 27, .3); max-width: 220px;
}
.wsc-hero__badge b { font-family: var(--wsc-font-head); font-weight: 800; font-size: 30px; line-height: 1; display: block; }
.wsc-hero__badge span { font-size: 12.5px; color: var(--wsc-footer-ink); margin-top: 5px; display: block; }

/* Decorative orange squares block */
.wsc-marks { position: relative; width: 64px; height: 64px; }
.wsc-marks span { position: absolute; background: var(--wsc-accent); }
.wsc-marks span:nth-child(1) { top: 0; left: 0; width: 26px; height: 26px; }
.wsc-marks span:nth-child(2) { top: 28px; left: 28px; width: 20px; height: 20px; opacity: .45; }
.wsc-marks span:nth-child(3) { top: 28px; left: 0; width: 20px; height: 20px; }

/* Configurable brand-mark (replaces the old decorative squares) */
.wsc-hero__mark { position: relative; width: 56px; height: 56px; margin-bottom: 4px; }
.wsc-hero__mark .wsc-mark { width: 56px; height: 56px; }


/* wsc_checklist block styles */
/* Checklist */
.wsc-checklist { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 12px; max-width: 640px; }
.wsc-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--wsc-ink-2); }
.wsc-checklist .wsc-dot { margin-top: 7px; flex: none; }

/* Per-item brand-mark as the bullet */
.wsc-checklist .wsc-mark { width: 18px; height: 18px; margin-top: 1px; flex: none; }


/* wsc_cards block styles */
.wsc-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .wsc-service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .wsc-service-grid { grid-template-columns: 1fr; } }
.wsc-service-card { position: relative; display: flex; flex-direction: column; gap: 10px; padding-top: 44px; min-height: 180px; }
.wsc-service-card h3 { margin: 0; max-width: 18ch; }
.wsc-service-card p { font-size: 14.5px; margin: 0; color: var(--wsc-ink-2); }

/* Brand-mark icon in the card corner (three squares, colour per card) */
.wsc-card__mark { position: absolute; top: 24px; right: 24px; width: 25px; height: 25px; }
.wsc-card__mark span { position: absolute; background: var(--mc, var(--wsc-accent)); }
.wsc-card__mark span:nth-child(1) { top: 0; right: 0; width: 11px; height: 11px; }
.wsc-card__mark span:nth-child(2) { top: 12px; right: 12px; width: 9px; height: 9px; opacity: .45; }
.wsc-card__mark span:nth-child(3) { top: 12px; right: 0; width: 9px; height: 9px; }
/* Global uploaded brand-mark, tinted with the card/page colour via mask */
.wsc-card__mark--img { width: 30px; height: 30px; background: var(--mc, var(--wsc-accent));
  -webkit-mask: var(--mark-img) center / contain no-repeat; mask: var(--mark-img) center / contain no-repeat; }
/* Chosen open-source line icon, tinted via currentColor */
.wsc-card__mark--icon { width: 28px; height: 28px; color: var(--mc, var(--wsc-accent)); }
.wsc-card__mark--icon svg { width: 100%; height: 100%; display: block; }

/* wsKaarten carousel (one row, horizontal scroll with arrows) */
.wsc-cards-wrap { position: relative; }
.wsc-cards-wrap--carousel { padding: 0 4px; }
/* Track layout only — scrollbar-hiding + arrow styles live in wsc_core/core.css */
.wsc-cards-track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--wsc-cols) - 1) * 14px) / var(--wsc-cols));
  gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
}
.wsc-cards-track > * { scroll-snap-align: start; }
@media (max-width: 900px) { .wsc-cards-track { grid-auto-columns: 82%; } }

/* Card image (wsKaarten photo cards, e.g. team members) */
.wsc-card--has-img { padding-top: clamp(20px, 2.4vw, 28px); }
.wsc-card__photo { display: block; border-radius: 12px; overflow: hidden; margin-bottom: 14px; background: #F5F6F9; }
.wsc-card__photo img { display: block; width: 100%; height: 190px; object-fit: cover; }
.wsc-card--photo .wsc-card__photo img { height: 220px; }

/* Clickable cards */
.wsc-service-card--link { text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.wsc-service-card--link:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20, 22, 27, .09); border-color: var(--wsc-line-2); }
.wsc-card__arrow { color: var(--wsc-accent-2); opacity: 0; margin-left: 4px; transition: opacity .18s ease, transform .18s ease; display: inline-block; }
.wsc-service-card--link:hover .wsc-card__arrow { opacity: 1; transform: translateX(2px); }
.wsc-band--dark .wsc-service-card--link:hover { border-color: rgba(255,255,255,.18); }

/* Per-card brand-mark (Wsc\Core\Mark) positioned in the corner */
.wsc-service-card > .wsc-mark { position: absolute; top: 24px; right: 24px; }


/* Per-step brand-mark corner */
.wsc-step-card { position: relative; padding-top: 42px; }
.wsc-step-card > .wsc-mark { position: absolute; top: 20px; right: 20px; }


/* wsc_accordion block styles */
.wsc-accordion { display: flex; flex-direction: column; gap: 12px; }
.wsc-accordion__item {
  background: var(--wsc-surface);
  border: 1px solid var(--wsc-line);
  border-radius: var(--wsc-radius);
  overflow: hidden;
}
.wsc-accordion__head {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--wsc-font-head); font-weight: 700; font-size: 17px;
  letter-spacing: -.015em; color: var(--wsc-ink);
}
.wsc-accordion__sign {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--wsc-bg); color: var(--wsc-ink-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-family: var(--wsc-font-body); transition: background .18s, color .18s;
}
.wsc-accordion__item.is-open .wsc-accordion__sign { background: var(--wsc-accent); color: var(--wsc-ink); }
.wsc-accordion__body {
  padding: 0 24px 22px; font-size: 15px; line-height: 1.62;
  color: var(--wsc-ink-2); max-width: 64ch; display: none;
}
.wsc-accordion__item.is-open .wsc-accordion__body { display: block; }


/* wsc_cta block styles */
/* ---------- CTA band (heading left, buttons right — no inner box) ---------- */
.wsc-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px;
}
.wsc-cta__text { flex: 1 1 420px; min-width: 300px; }
.wsc-cta__text h2 { margin: 0 0 12px; max-width: 20ch; }
.wsc-cta__text .wsc-lead { margin: 0; max-width: 52ch; }
.wsc-cta__actions { flex: none; display: flex; flex-wrap: wrap; gap: 12px; }


