/* ============================================================
   iimpact AI-recruiter landing pages
   Built on top of colors_and_type.css (official iimpact tokens).
   Mobile-first: base = mobile, @media min-width = desktop.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; padding: 0; background: var(--bg-1); color: var(--fg-1); font-family: var(--font-body); }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 96px 0; } }

.section--cream { background: var(--ii-cream-50); }
.section--soft  { background: var(--ii-orange-50); }
.section--dark  { background: var(--bg-inverse); color: white; }

.section-head { max-width: 760px; margin-bottom: 32px; }
@media (min-width: 768px) { .section-head { margin-bottom: 48px; } }
.section-head--center { text-align: center; margin-inline: auto; }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.section-head--dark h2 { color: white; }
.section-head p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
  max-width: 600px;
}
@media (min-width: 768px) { .section-head p { font-size: 18px; } }
.section-head--center p { margin-inline: auto; }

/* ---------- Eyebrow chip ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--ii-orange-50);
  padding: 6px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .eyebrow { font-size: 12px; padding: 8px 14px; margin-bottom: 20px; }
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 9999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              transform var(--dur-1) var(--ease-out);
  white-space: nowrap;
  min-height: 48px;
}
.btn:active { transform: scale(0.98); }
.btn .arrow { transition: transform var(--dur-2) var(--ease-out); display: inline-flex; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--brand-hover); color: white; }

.btn--secondary {
  background: var(--ii-ink-950);
  color: white;
}
.btn--secondary:hover { background: var(--ii-ink-800); color: white; }

.btn--ghost {
  background: transparent;
  color: var(--fg-1);
  border: 1.5px solid var(--ii-ink-950);
}
.btn--ghost:hover { background: var(--ii-ink-950); color: white; }

.btn--ghost-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost-light:hover { background: white; color: var(--fg-1); border-color: white; }

.btn--soft {
  background: var(--ii-orange-50);
  color: var(--brand-press);
}
.btn--soft:hover { background: var(--ii-orange-100); }

.btn--sm { font-size: 13px; padding: 10px 18px; min-height: 40px; }
.btn--lg { font-size: 16px; padding: 16px 28px; min-height: 52px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* ---------- Sticky pill nav ---------- */
.nav-wrap {
  position: sticky;
  top: 12px;
  z-index: 40;
  padding: 0 12px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .nav-wrap { top: 16px; padding: 0 24px; margin-top: 16px; }
}

.nav {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--border-1);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xs);
  gap: 12px;
}
@media (min-width: 768px) {
  .nav { padding: 12px 12px 12px 24px; }
}

.nav__logo img {
  height: 24px;
  width: auto;
}
@media (min-width: 768px) {
  .nav__logo img { height: 30px; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg-1);
  transition: color var(--dur-2) var(--ease-out);
}
.nav__links a:hover { color: var(--brand); }

.nav__right { display: flex; gap: 8px; align-items: center; }

/* ---------- Hero ---------- */
.hero {
  padding: 32px 0 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero { padding: 48px 0 72px; gap: 40px; }
}
@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    padding: 56px 0 96px;
  }
}

.hero__text { min-width: 0; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 8.5vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-wrap: balance;
  color: var(--fg-1);
}
@media (min-width: 1024px) {
  .hero h1 { font-size: clamp(48px, 6vw, 76px); margin-bottom: 24px; }
}
.hero h1 .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 24px;
  max-width: 540px;
}
@media (min-width: 768px) { .hero p.lead { font-size: 18px; margin-bottom: 28px; } }
@media (min-width: 1024px) { .hero p.lead { font-size: 19px; margin-bottom: 32px; } }

.hero .btn-row { margin-bottom: 32px; }
@media (min-width: 768px) { .hero .btn-row { margin-bottom: 48px; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 540px;
}
@media (min-width: 768px) { .hero-stats { gap: 24px; } }

.hero-stats .s {
  border-top: 1.5px solid var(--ii-ink-950);
  padding-top: 12px;
}
.hero-stats .s .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
@media (min-width: 768px) { .hero-stats .s .n { font-size: 32px; } }
@media (min-width: 1024px) { .hero-stats .s .n { font-size: 36px; } }
.hero-stats .s .n .u { color: var(--brand); }
.hero-stats .s .l {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.3;
  color: var(--fg-3);
  margin-top: 6px;
}
@media (min-width: 768px) { .hero-stats .s .l { font-size: 12px; } }

/* Hero media (photo + chip overlays) */
.hero-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ii-orange-100);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
@media (min-width: 768px) { .hero-media { border-radius: 28px; } }

.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.chip {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 70%;
}
@media (min-width: 768px) {
  .chip { border-radius: 16px; padding: 14px 18px; gap: 12px; }
}

.chip.tl { top: 16px; left: 16px; }
.chip.br { bottom: 16px; right: 16px; }
@media (min-width: 768px) {
  .chip.tl { top: 22px; left: 22px; }
  .chip.br { bottom: 22px; right: 22px; }
}

.chip .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  line-height: 1;
}
@media (min-width: 768px) { .chip .n { font-size: 22px; } }
.chip .n .u { color: var(--brand); font-weight: 700; }

.chip .l {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  color: var(--fg-3);
  margin-top: 4px;
  line-height: 1.3;
}
@media (min-width: 768px) { .chip .l { font-size: 11px; } }

.chip__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ii-orange-50);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .chip__icon { width: 40px; height: 40px; border-radius: 12px; }
}
.chip__icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
@media (min-width: 768px) { .chip__icon svg { width: 22px; height: 22px; } }

/* ---------- Generic cards & grids ---------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .grid--2, .grid--3, .grid--4 { gap: 24px; }
}

.card {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out),
              transform var(--dur-3) var(--ease-out);
}
@media (min-width: 768px) { .card { padding: 28px; gap: 16px; } }

.card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ii-orange-50);
  color: var(--brand);
  display: grid; place-items: center;
}
@media (min-width: 768px) {
  .card__icon { width: 56px; height: 56px; border-radius: 16px; }
}
.card__icon svg { width: 26px; height: 26px; stroke-width: 1.75; }
@media (min-width: 768px) { .card__icon svg { width: 28px; height: 28px; } }

.card__icon--neutral {
  background: var(--ii-ink-100);
  color: var(--fg-3);
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg-1);
}
@media (min-width: 768px) { .card h3 { font-size: 22px; } }

.card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}

/* Step card numbered */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-brand);
}

/* ---------- Case-cards (with photo) ---------- */
.case-card {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-3) var(--ease-out),
              transform var(--dur-3) var(--ease-out);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.case-card__media {
  aspect-ratio: 16/9;
  background: var(--ii-orange-100);
  overflow: hidden;
}
.case-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-5) var(--ease-out);
}
.case-card:hover .case-card__media img { transform: scale(1.04); }

.case-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
@media (min-width: 768px) { .case-card__body { padding: 26px; } }

.case-card__client {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.case-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case-card__lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}
.case-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}

/* ---------- Compare table (mobile-first) ---------- */
.compare {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare__row {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.compare__row-label {
  padding: 12px 16px;
  background: var(--ii-ink-50);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  border-bottom: 1px solid var(--border-1);
}
.compare__cell {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border-1);
}
.compare__row .compare__cell:last-child { border-bottom: none; }
.compare__cell::before {
  content: attr(data-label);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.compare__cell--accent { background: var(--ii-orange-50); color: var(--fg-1); font-weight: 600; }
.compare__cell--accent::before { color: var(--brand); }

.compare__check {
  display: inline-flex; align-items: center; gap: 6px;
}

.compare__row--head { display: none; }

@media (min-width: 800px) {
  .compare {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    background: white;
    border: 1px solid var(--border-1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    gap: 0;
  }
  .compare__row {
    display: contents;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .compare__row--head { display: contents; }

  .compare__cell-head {
    padding: 18px 24px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    border-bottom: 2px solid var(--border-1);
  }
  .compare__cell-head--label {
    background: var(--ii-ink-50);
    color: var(--fg-3);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .compare__cell-head--neutral { background: white; color: var(--fg-1); }
  .compare__cell-head--accent {
    background: var(--brand-gradient);
    color: white;
  }

  .compare__row-label {
    padding: 16px 24px;
    background: var(--ii-ink-50);
    font-weight: 500;
    color: var(--fg-2);
    border-bottom: 1px solid var(--border-1);
  }
  .compare__cell {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-1);
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .compare__cell::before { display: none; }
  .compare__cell--accent { background: rgba(242, 105, 28, 0.04); }

  .compare__row:last-child .compare__row-label,
  .compare__row:last-child .compare__cell { border-bottom: none; }
}

/* Callout under compare */
.callout {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--ii-cream-50);
  border-left: 3px solid var(--brand);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-1);
}
@media (min-width: 768px) {
  .callout { padding: 18px 24px; font-size: 16px; margin-top: 24px; }
}
.callout strong { color: var(--brand-press); font-weight: 700; }

/* ---------- Coverage bars (pagina B) ---------- */
.coverage {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.coverage-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.coverage-row__lbl {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg-1);
}
@media (min-width: 700px) {
  .coverage-row { grid-template-columns: 140px 1fr 56px; gap: 16px; }
  .coverage-row__lbl { grid-column: auto; font-size: 14px; }
}
.coverage-bar {
  position: relative;
  height: 30px;
  background: var(--ii-ink-100);
  border-radius: 9999px;
  overflow: hidden;
  grid-column: 1 / -1;
}
@media (min-width: 700px) {
  .coverage-bar { grid-column: auto; height: 32px; }
}
.coverage-bar__fill {
  position: absolute;
  top: 0; bottom: 0;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  white-space: nowrap;
}
@media (min-width: 768px) { .coverage-bar__fill { font-size: 12px; padding: 0 14px; } }
.coverage-bar__fill--human {
  background: linear-gradient(90deg, #6b6b75, #474750);
  left: 37.5%; right: 25%;
}
.coverage-bar__fill--ai {
  background: var(--brand-gradient);
  left: 0; right: 0;
}
.coverage-row__val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg-1);
  text-align: right;
}

/* ---------- Workflow flow (pagina B) ---------- */
.flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .flow { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .flow { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.flow__node {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out);
}
.flow__node:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.flow__num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.flow__node h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg-1);
}
.flow__node p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}

/* ---------- FAQ accordion ---------- */
.faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 768px) { .faq { gap: 12px; } }

.faq details {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  padding: 18px 20px;
  transition: border-color var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out);
}
.faq details:hover { border-color: var(--brand); }
.faq details[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-1);
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) { .faq summary { font-size: 16px; } }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--brand);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--dur-2) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 12px 0 0;
}

/* ---------- Reseller hook ---------- */
.reseller {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 22px;
  padding: 26px 22px;
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .reseller {
    grid-template-columns: auto 1fr;
    padding: 36px;
    gap: 32px;
    align-items: center;
    border-radius: 28px;
  }
}
.reseller__icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--brand-gradient);
  color: white;
  display: grid; place-items: center;
}
@media (min-width: 768px) { .reseller__icon { width: 88px; height: 88px; border-radius: 20px; } }
.reseller__icon svg { width: 36px; height: 36px; stroke-width: 1.6; }
@media (min-width: 768px) { .reseller__icon svg { width: 44px; height: 44px; } }

.reseller h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--fg-1);
  line-height: 1.2;
}
@media (min-width: 768px) { .reseller h3 { font-size: 26px; } }
.reseller p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}
.reseller ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}
.reseller li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg-1);
}
.reseller li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 9px;
}
.reseller li strong { font-weight: 700; }

/* ---------- CTA band (dark) ---------- */
.cta-band {
  background: var(--bg-inverse);
  color: white;
  border-radius: 24px;
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .cta-band { border-radius: 28px; padding: 48px 36px; gap: 32px; }
}
@media (min-width: 1024px) {
  .cta-band {
    grid-template-columns: 1.2fr 1fr;
    border-radius: 32px;
    padding: 64px;
    gap: 48px;
    align-items: center;
  }
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('logos/mark-color.png');
  background-repeat: no-repeat;
  background-position: right -60px center;
  background-size: 280px;
  opacity: 0.07;
  pointer-events: none;
}
@media (min-width: 768px) {
  .cta-band::before {
    background-position: right -80px center;
    background-size: 380px;
  }
}
@media (min-width: 1024px) {
  .cta-band::before {
    background-position: right -120px center;
    background-size: 520px;
  }
}

.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 0 14px;
  text-wrap: balance;
}
.cta-band h2 .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ii-ink-300);
  margin: 0 0 24px;
  max-width: 480px;
}
@media (min-width: 768px) { .cta-band p { font-size: 18px; } }
.cta-band__sub {
  margin-top: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ii-ink-400);
}
.cta-band__qs {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .cta-band__qs { gap: 14px; } }

.qs {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
}
@media (min-width: 768px) { .qs { padding: 18px 22px; } }

.qs__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}
@media (min-width: 768px) { .qs__n { font-size: 28px; } }
.qs__n .u { color: var(--brand); }

.qs__l {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--ii-ink-300);
  margin-top: 4px;
  line-height: 1.4;
}
@media (min-width: 768px) { .qs__l { font-size: 13px; } }

/* Newsletter placeholder (inside cta-band) */
.newsletter-placeholder {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--ii-ink-300);
  line-height: 1.5;
}
.newsletter-placeholder strong { color: white; font-weight: 700; }

/* ---------- Footer (dark) ---------- */
.footer {
  background: var(--bg-inverse);
  color: white;
  padding: 48px 0 24px;
}
@media (min-width: 768px) { .footer { padding: 64px 0 32px; } }
@media (min-width: 1024px) { .footer { padding: 80px 0 32px; } }

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; }
}
@media (min-width: 1024px) {
  .footer__top { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px; padding-bottom: 48px; }
}

.footer__brand img {
  height: 30px; width: auto;
}
@media (min-width: 768px) { .footer__brand img { height: 34px; } }

.footer__brand p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ii-ink-300);
  margin: 14px 0 0;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ii-ink-400);
  margin: 0 0 12px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer ul a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ii-ink-200);
  transition: color var(--dur-2) var(--ease-out);
}
.footer ul a:hover { color: var(--brand); }

.footer__bottom {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ii-ink-400);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
}
@media (min-width: 700px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
  }
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-1);
  z-index: 50;
  box-shadow: 0 -6px 20px rgba(20, 20, 22, 0.06);
}
@media (max-width: 767px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}
.mobile-cta .btn { width: 100%; }

/* ---------- Fade-up animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-4) var(--ease-out),
              transform var(--dur-4) var(--ease-out);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up.is-visible { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LIVE DASHBOARD (workflow visualisatie)
   Profiel-cards, vacature-rows, feed-events, agenda-slots,
   consultant-rows, regio-tegels.
   ============================================================ */

.live-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .live-grid { gap: 20px; } }
@media (min-width: 1024px) { .live-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; } }

.panel {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
}
@media (min-width: 768px) { .panel { padding: 22px; gap: 14px; } }

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-1);
}
.panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.panel__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  position: relative;
}
.live-dot::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; background: var(--brand);
  animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot::after { animation: none; }
}

/* ---------- Vacancy list (actieve vacatures) ---------- */
.vacancies {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vacancy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: var(--ii-ink-50);
  border-radius: 12px;
}
.vacancy__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.vacancy__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--fg-1);
  line-height: 1.3;
  min-width: 0;
}
.vacancy__count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand);
  white-space: nowrap;
  flex-shrink: 0;
}
.vacancy__loc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--fg-3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vacancy__loc svg { width: 11px; height: 11px; stroke-width: 2; }
.vacancy__progress {
  height: 4px;
  background: var(--ii-ink-200);
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 4px;
}
.vacancy__progress > span {
  display: block;
  height: 100%;
  background: var(--brand-gradient);
  border-radius: 9999px;
}

/* ---------- Activity feed ---------- */
.feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feed-event {
  display: grid;
  grid-template-columns: 44px auto 1fr;
  gap: 10px;
  align-items: start;
}
.feed-event__time {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--fg-3);
  white-space: nowrap;
  padding-top: 2px;
}
.feed-event__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 7px;
}
.feed-event__dot--success { background: var(--ii-success); }
.feed-event__dot--info { background: var(--ii-info); }
.feed-event__dot--ink { background: var(--ii-ink-400); }
.feed-event__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg-1);
  min-width: 0;
}
.feed-event__text strong { color: var(--fg-1); font-weight: 700; }
.feed-event__text small { color: var(--fg-3); font-weight: 500; display: block; margin-top: 2px; font-size: 11.5px; }

/* ---------- Agenda slots (deze week) ---------- */
.agenda {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slot {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border-1);
  border-radius: 12px;
  background: white;
  align-items: center;
}
.slot__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ii-orange-50);
  padding: 6px 4px;
  height: 44px;
}
.slot__day-day {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--brand);
  line-height: 1;
}
.slot__day-month {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  color: var(--brand-press);
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.slot__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.slot__time {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.slot__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--fg-1);
  line-height: 1.3;
}
.slot__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--fg-3);
  line-height: 1.3;
}

/* ---------- Profile cards (top kandidaten) ---------- */
.profile-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.profile-strip-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.profile-strip-head__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--fg-3);
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 560px) { .profile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .profile-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; } }

.profile {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out);
}
.profile:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.profile__top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.profile__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.profile__avatar img,
.consultant__avatar img,
.dm-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}
.profile__avatar--a1 { background: linear-gradient(135deg, #ffa269, #f2691c); }
.profile__avatar--a2 { background: linear-gradient(135deg, #6366f1, #4338ca); }
.profile__avatar--a3 { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.profile__avatar--a4 { background: linear-gradient(135deg, #ec4899, #be185d); }
.profile__avatar--a5 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.profile__avatar--a6 { background: linear-gradient(135deg, #f97316, #b2411a); }
.profile__id { min-width: 0; flex: 1; }
.profile__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
  line-height: 1.3;
}
.profile__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.profile__loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--fg-3);
}
.profile__loc svg { width: 11px; height: 11px; stroke-width: 2; flex-shrink: 0; }
.profile__match {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  background: var(--ii-orange-50);
  color: var(--brand-press);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.profile__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--ii-ink-50);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--fg-2);
  align-self: flex-start;
}
.profile__status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}
.profile__status--sent { background: rgba(47, 110, 207, 0.10); color: var(--ii-info); }
.profile__status--replied { background: rgba(224, 160, 32, 0.15); color: #a06800; }
.profile__status--booked { background: rgba(47, 158, 107, 0.13); color: var(--ii-success); }

/* ---------- Region tiles ---------- */
.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) { .region-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .region-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; } }

.region {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  transition: border-color var(--dur-3) var(--ease-out),
              transform var(--dur-3) var(--ease-out);
}
.region:hover { border-color: var(--brand); transform: translateY(-2px); }
.region__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--brand);
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.region__city {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--fg-1);
  margin-top: 6px;
}
.region__lbl {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  color: var(--fg-3);
  margin-top: 1px;
}

/* ---------- Consultant rows (pagina B) ---------- */
.consultants {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consultant {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  transition: border-color var(--dur-3) var(--ease-out);
}
.consultant:hover { border-color: var(--brand); }

@media (min-width: 800px) {
  .consultant {
    grid-template-columns: 1.6fr 0.8fr 1fr 1fr 1.3fr;
    gap: 18px;
    padding: 18px 22px;
    align-items: center;
  }
}

.consultant__id {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.consultant__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.consultant__name-wrap {
  min-width: 0;
}
.consultant__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.2;
}
.consultant__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--fg-3);
  margin-top: 2px;
}
.consultant__col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.consultant__col-lbl {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.consultant__col-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.2;
}
.consultant__col-val .u { color: var(--brand); font-weight: 700; }
.consultant__col-val--text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg-2);
}
.consultant__activity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(47, 158, 107, 0.12);
  color: var(--ii-success);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  align-self: flex-start;
}
.consultant__activity .live-dot {
  background: var(--ii-success);
  width: 6px;
  height: 6px;
}
.consultant__activity .live-dot::after { background: var(--ii-success); }

.consultants-header {
  display: none;
}
@media (min-width: 800px) {
  .consultants-header {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1fr 1fr 1.3fr;
    gap: 18px;
    padding: 0 22px 10px;
  }
  .consultants-header span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-4);
  }
}

/* ---------- Section sub-title for regio block ---------- */
.subsection-head {
  margin-top: 32px;
  margin-bottom: 16px;
}
@media (min-width: 768px) { .subsection-head { margin-top: 40px; margin-bottom: 20px; } }
.subsection-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 4px;
}
.subsection-head p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg-3);
  margin: 0;
}

/* ============================================================
   EDITORIAL LAYOUTS (no-icon, big type)
   ============================================================ */

/* Steps as editorial rows (oversize number left, body right) */
.steps-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ii-ink-200);
}
.step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ii-ink-200);
  align-items: start;
}
@media (min-width: 768px) {
  .step-row {
    grid-template-columns: 140px 1fr;
    gap: 40px;
    padding: 36px 0;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .step-row {
    grid-template-columns: 160px 1fr 380px;
    padding: 44px 0;
    gap: 56px;
  }
}

.step-row__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 12vw, 112px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  grid-row: 1 / span 2;
}
@media (min-width: 768px) { .step-row__num { grid-row: auto; } }

.step-row__body { min-width: 0; }
.step-row__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--fg-1);
}
@media (min-width: 768px) { .step-row__body h3 { font-size: 26px; } }
.step-row__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
  max-width: 540px;
}
@media (min-width: 768px) { .step-row__body p { font-size: 16px; } }

.step-row__visual {
  display: none;
}
@media (min-width: 1024px) {
  .step-row__visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-column: 3;
    grid-row: 1;
  }
}

/* Feature lines (Werkt door): big title + body + stat */
.feature-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ii-ink-200);
}
.feature-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ii-ink-200);
}
@media (min-width: 768px) {
  .feature-line {
    grid-template-columns: 1.4fr 2fr auto;
    gap: 32px;
    padding: 40px 0;
    align-items: center;
  }
}

.feature-line__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  margin: 0;
}
.feature-line__title .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-line__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
  max-width: 520px;
}
@media (min-width: 768px) { .feature-line__body { font-size: 16px; } }
.feature-line__stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brand);
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .feature-line__stat { text-align: right; }
}
.feature-line__stat-lbl {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-top: 4px;
  text-align: left;
}
@media (min-width: 768px) { .feature-line__stat-lbl { text-align: right; } }

/* ============================================================
   DM SHOWCASE (LinkedIn-style hand-crafted bericht)
   ============================================================ */

.dm-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .dm-showcase { grid-template-columns: 1.05fr 1fr; gap: 56px; }
}

.dm-showcase__text { min-width: 0; }
.dm-showcase__text .eyebrow { margin-bottom: 18px; }
.dm-showcase__text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-wrap: balance;
  color: var(--fg-1);
}
.dm-showcase__text h2 .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dm-showcase__text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 22px;
  max-width: 520px;
}
@media (min-width: 768px) { .dm-showcase__text p { font-size: 18px; } }

.dm-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dm-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.45;
  align-items: start;
}
.dm-points li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6.5l2 2 4-4'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.dm-showcase__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.dm-card {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-1);
  position: relative;
}

.dm-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-1);
  background: white;
  align-items: center;
}
.dm-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa269, #f2691c, #b2411a);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(242, 105, 28, 0.25);
  overflow: hidden;
  position: relative;
}
.dm-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.15;
}
.dm-card__active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  color: var(--brand);
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.dm-card__active::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(242, 105, 28, 0.18);
}
.dm-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  background: var(--ii-ink-100);
  color: var(--fg-2);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dm-card__body {
  padding: 18px 16px;
  background: var(--ii-cream-50);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dm-card__bubble {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-1);
  max-width: 88%;
  align-self: flex-start;
  box-shadow: var(--shadow-xs);
}

.dm-card__bubble--out {
  background: var(--brand-gradient);
  color: white;
  border: none;
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
  box-shadow: 0 4px 12px rgba(242, 105, 28, 0.22);
}

.dm-card__time {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  color: var(--fg-4);
  text-align: center;
  padding: 2px 0 6px;
  letter-spacing: 0.04em;
}

.dm-card__foot {
  padding: 12px 16px 14px;
  background: white;
  border-top: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dm-card__foot-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--ii-orange-50);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.dm-card__foot-icon svg { width: 14px; height: 14px; stroke-width: 2; }
.dm-card__caption {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--fg-3);
}
.dm-card__caption strong { color: var(--fg-1); font-weight: 700; }

/* Floating accent dots behind the dm-card (subtle visual richness) */
.dm-showcase__media::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--brand-gradient);
  opacity: 0.10;
  filter: blur(40px);
  top: -30px;
  right: -10px;
  z-index: -1;
}
.dm-showcase__media::after {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa269, #f2691c);
  opacity: 0.08;
  filter: blur(50px);
  bottom: -20px;
  left: -10px;
  z-index: -1;
}

/* ============================================================
   PRINT / PDF EXPORT
   Render via Chrome headless: same brand, same fonts, same icons,
   collapsed nav/mobile-cta, page-breaks at sections.
   ============================================================ */
@media print {
  /* Page setup */
  @page {
    size: A4;
    margin: 12mm 10mm;
  }
  html, body {
    background: white !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Hide interactive chrome */
  .nav-wrap,
  .mobile-cta { display: none !important; }
  body { padding-bottom: 0 !important; }

  /* Disable animations - everything visible */
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  .pulse-dot::after,
  .marquee { animation: none !important; }
  .live-dot::after { animation: none !important; opacity: 0 !important; }

  /* Force desktop layouts regardless of print viewport width */
  .hero { padding: 16px 0 32px !important; display: grid !important; grid-template-columns: 1.1fr 1fr !important; gap: 32px !important; }
  .grid { gap: 14px !important; }
  .grid--2 { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; }
  .grid--3 { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; }
  .grid--4 { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; }
  .live-grid { display: grid !important; grid-template-columns: 1fr 1fr 1fr !important; gap: 12px !important; }
  .compare { display: grid !important; grid-template-columns: 1.2fr 1fr 1fr !important; background: white !important; border: 1px solid var(--border-1) !important; border-radius: 16px !important; }
  .compare__row { display: contents !important; background: transparent !important; border: none !important; }
  .compare__row--head { display: contents !important; }
  .compare__cell { flex-direction: row !important; align-items: center !important; }
  .compare__cell::before { display: none !important; }
  .compare__row-label, .compare__cell { padding: 10px 14px !important; border-bottom: 1px solid var(--border-1) !important; }
  .compare__cell-head { padding: 12px 14px !important; }
  .footer__top { display: grid !important; grid-template-columns: 1.6fr repeat(3, 1fr) !important; }
  .reseller { display: grid !important; grid-template-columns: auto 1fr !important; gap: 24px !important; }
  .cta-band { display: grid !important; grid-template-columns: 1.2fr 1fr !important; padding: 32px !important; border-radius: 20px !important; }
  .flow { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 10px !important; }
  .dm-showcase { display: grid !important; grid-template-columns: 1.05fr 1fr !important; gap: 32px !important; align-items: start !important; }
  .profile-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 10px !important; }
  .consultant { display: grid !important; grid-template-columns: 1.6fr 0.8fr 1fr 1fr 1.3fr !important; gap: 14px !important; padding: 12px 16px !important; }
  .consultants-header { display: grid !important; grid-template-columns: 1.6fr 0.8fr 1fr 1fr 1.3fr !important; gap: 14px !important; padding: 0 16px 8px !important; }
  .region-grid { display: grid !important; grid-template-columns: repeat(6, 1fr) !important; gap: 8px !important; }
  .coverage-row { display: grid !important; grid-template-columns: 140px 1fr 60px !important; gap: 12px !important; align-items: center !important; }
  .coverage-row__lbl { grid-column: auto !important; }
  .coverage-bar { grid-column: auto !important; }
  .feature-line { display: grid !important; grid-template-columns: 1.4fr 2fr auto !important; gap: 24px !important; align-items: center !important; padding: 18px 0 !important; }
  .feature-line__stat { text-align: right !important; }
  .feature-line__stat-lbl { text-align: right !important; }
  .step-row { display: grid !important; grid-template-columns: 140px 1fr !important; gap: 24px !important; padding: 18px 0 !important; align-items: center !important; }
  .step-row__num { grid-row: auto !important; }
  .step-row__visual { display: none !important; }

  /* Compact section padding voor PDF */
  .section { padding: 28px 0 !important; }
  .section-head { margin-bottom: 18px !important; }
  .section-head h2 { font-size: 28px !important; line-height: 1.1 !important; }
  .hero h1 { font-size: 38px !important; line-height: 1.05 !important; }
  .hero p.lead { font-size: 14px !important; margin-bottom: 16px !important; }
  .hero .btn-row { margin-bottom: 20px !important; }
  .hero-stats .s .n { font-size: 22px !important; }
  .card h3, .case-card__lbl, .flow__node h3 { font-size: 15px !important; }
  .card p, .case-card p, .flow__node p { font-size: 12px !important; line-height: 1.45 !important; }
  .case-card__num { font-size: 36px !important; }
  .feature-line__title { font-size: 22px !important; line-height: 1.1 !important; }
  .feature-line__stat { font-size: 32px !important; }
  .step-row__num { font-size: 56px !important; }
  .step-row__body h3 { font-size: 18px !important; }
  .step-row__body p { font-size: 13px !important; }
  .cta-band h2 { font-size: 26px !important; }
  .cta-band p { font-size: 14px !important; }

  /* Page-break hints — keep important blocks together */
  .hero { page-break-inside: avoid; }
  .section { page-break-inside: auto; }
  .card, .case-card, .compare__row,
  .dm-card, .faq details, .panel, .feature-line, .step-row,
  .consultant, .flow__node, .region, .reseller, .cta-band,
  .profile { page-break-inside: avoid; }
  .section-head { page-break-after: avoid; }
  h1, h2, h3 { page-break-after: avoid; }

  /* Avoid lone trailing sections */
  .section--cream, .section--dark { page-break-before: auto; }

  /* Hero media wat kleiner */
  .hero-media { max-height: 380px !important; aspect-ratio: 4/5 !important; }
  .chip .n { font-size: 16px !important; }
  .chip .l { font-size: 9px !important; }

  /* DM card responsive */
  .dm-card { max-width: 340px !important; }
  .dm-card__bubble { font-size: 11.5px !important; }
  .dm-card__name { font-size: 13px !important; }
  .dm-card__active { font-size: 9.5px !important; }
  .dm-card__caption { font-size: 10px !important; }

  /* Footer compact */
  .footer { padding: 24px 0 16px !important; }
  .footer__top { gap: 24px !important; padding-bottom: 18px !important; }
  .footer__brand img { height: 26px !important; }
  .footer__brand p { font-size: 12px !important; }
  .footer h4 { font-size: 10px !important; margin-bottom: 8px !important; }
  .footer ul a, .footer ul li { font-size: 12px !important; }

  /* Buttons als pill-tekst, hide hover */
  .btn { box-shadow: none !important; }
  a { color: var(--fg-1) !important; text-decoration: none !important; }
  .btn--primary { background: var(--brand) !important; color: white !important; }
  .btn--ghost-light { color: white !important; border-color: rgba(255,255,255,0.5) !important; }
}

/* ============================================================
   CALENDLY INLINE WIDGET
   ============================================================ */
.calendly-wrap {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin: 0 auto;
}
.calendly-inline-widget {
  min-width: 320px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .calendly-inline-widget { height: 1080px !important; }
}

/* ============================================================
   ACTIVECAMPAIGN FORM OVERRIDE (was blue, nu iimpact orange)
   Form id #_form_16_
   ============================================================ */
.ac-form-wrap {
  background: white;
  border-radius: 18px;
  padding: 24px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.ac-form-head {
  margin-bottom: 16px;
}
.ac-form-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 6px;
  line-height: 1.2;
}
.ac-form-head p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-3);
  margin: 0;
}

#_form_16_ {
  background: white !important;
  font-family: var(--font-body) !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--fg-1) !important;
  box-shadow: none !important;
}
#_form_16_._inline-form,
#_form_16_._inline-form ._form-content,
#_form_16_._inline-form ._row span:not(.field-required),
#_form_16_._inline-form ._row label,
#_form_16_._inline-form ._html-code,
#_form_16_._inline-form ._form-thank-you {
  font-family: var(--font-body) !important;
  color: var(--fg-1) !important;
}
#_form_16_ ._form-title,
#_form_16_ ._html-code :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: var(--fg-1) !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 6px !important;
  display: none !important;
}
#_form_16_ ._html-code p {
  font-size: 13px !important;
  color: var(--fg-3) !important;
  margin: 0 0 12px !important;
  display: none !important;
}
#_form_16_ ._form-label,
#_form_16_._inline-form ._form-label,
#_form_16_._inline-form ._form-emailidentifier,
#_form_16_._inline-form ._form-checkbox-option-label {
  color: var(--fg-1) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-bottom: 6px !important;
}
#_form_16_ input[type="text"],
#_form_16_ input[type="tel"],
#_form_16_ input[type="email"],
#_form_16_ input[type="date"],
#_form_16_ textarea {
  border: 1.5px solid var(--border-1) !important;
  border-radius: 12px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--fg-1) !important;
  padding: 12px 14px !important;
  background: white !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
#_form_16_ input::placeholder,
#_form_16_ input[type="text"]::placeholder,
#_form_16_ input[type="tel"]::placeholder,
#_form_16_ input[type="email"]::placeholder {
  color: var(--fg-4) !important;
}
#_form_16_ input[type="text"]:focus,
#_form_16_ input[type="tel"]:focus,
#_form_16_ input[type="email"]:focus,
#_form_16_ textarea:focus {
  border-color: var(--brand) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(242, 105, 28, 0.18) !important;
}
#_form_16_ ._submit {
  background: var(--brand) !important;
  color: white !important;
  border-radius: 9999px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 14px 28px !important;
  box-shadow: 0 4px 14px rgba(242, 105, 28, 0.30) !important;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
  min-height: 48px !important;
  width: 100% !important;
  border: none !important;
  cursor: pointer !important;
  margin-top: 16px !important;
}
#_form_16_ ._submit:hover {
  background: #d9541a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 22px rgba(242, 105, 28, 0.40) !important;
}
#_form_16_ ._submit:active {
  transform: scale(0.98) !important;
}
#_form_16_ ._submit.processing::before {
  background-image: linear-gradient(var(--brand), var(--brand)), conic-gradient(var(--brand), #FFFFFF) !important;
}
#_form_16_ ._form-branding {
  display: none !important;
}
#_form_16_ .sms_consent_checkbox {
  padding: 12px 0 0 !important;
  margin-top: 4px !important;
}
#_form_16_ .sms_consent_checkbox .sms_consent_message {
  font-size: 11.5px !important;
  line-height: 1.5 !important;
  color: var(--fg-3) !important;
}
#_form_16_ .sms_consent_checkbox input[type="checkbox"] {
  accent-color: var(--brand) !important;
  margin-top: 2px !important;
}
#_form_16_ ._form_element {
  margin-bottom: 12px !important;
}
#_form_16_ ._form_element._x69149540,
#_form_16_ ._form_element._x76968173 {
  display: none !important;
}
#_form_16_ ._form-thank-you {
  text-align: center !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: var(--brand) !important;
  padding: 24px 0 !important;
}
/* Phone country picker styling */
#_form_16_ .iti--separate-dial-code .iti__selected-flag {
  background-color: white !important;
  border-radius: 12px 0 0 12px !important;
}

/* ---------- Utility ---------- */
.no-wrap { white-space: nowrap; }
.text-center { text-align: center; }
