/* cro.css — compact conversion strips between the big home sections.
   Owner: Orchestrator B (2026-09-27). One idea + one action per strip.
   Visual language: hairline rows, Poppins light, the sky accent only on the
   action, gold never here. Strips are deliberately smaller than the sections
   around them — a breath between chapters, not another chapter. */

/* Target-group variants ([data-tg-group] / [data-tg-show]) are switched ONLY by
   segment.css (lane A), which also hides every non-"all" variant when no tg is
   set. No display rule here on purpose: segment.css only ever applies
   display:none, so any default hiding in this file would keep a chosen sector's
   variant hidden for good. */

/* ---- the strip ---- */
section.cro-strip {
  padding-block: clamp(2.75rem, 7vh, 4.5rem);
}

.cro-row {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  column-gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  padding-block: clamp(1.75rem, 4.5vh, 2.75rem);
}

.cro-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.9rem;
}

.cro-q {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: var(--w-light);
  letter-spacing: var(--track-tight);
  line-height: 1.2;
  color: var(--pale);
  max-width: 26ch;
  margin: 0;
  text-wrap: balance;
}

.cro-body p {
  color: var(--text-2);
  font-weight: var(--w-light);
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 0 1.4rem;
}

/* the action: an outlined pill, the only sky element in the strip */
.cro-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72em 1.35em;
  border: 1px solid rgba(94, 154, 200, 0.55);
  border-radius: 999px;
  color: var(--pale);
  font-size: 0.9rem;
  font-weight: var(--w-regular);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.cro-btn::after {
  content: "→";
  color: var(--sky);
  transition: transform 0.25s var(--ease-out);
}
.cro-btn:hover,
.cro-btn:focus-visible {
  background: rgba(94, 154, 200, 0.14);
  border-color: var(--sky);
}
.cro-btn:hover::after { transform: translateX(3px); }
.cro-btn:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

.cro-micro {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.8;
}

/* ---- implication strip: one long line, no columns ---- */
.cro-row.cro-row--line {
  grid-template-columns: minmax(0, 1fr) auto;
}
.cro-row--line .cro-q { max-width: 34ch; }
.cro-row--line .cro-body p { margin-bottom: 0; }

/* ---- "zo werken we": three steps on one hairline ---- */
.cro-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.25rem, 3vw, 3rem);
  counter-reset: step;
}
.cro-steps li {
  border-top: var(--hairline);
  padding-top: 1.1rem;
  counter-increment: step;
}
.cro-steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-bottom: 0.7rem;
}
.cro-steps h3 {
  font-size: 1.1rem;
  font-weight: var(--w-regular);
  color: var(--pale);
  margin: 0 0 0.45rem;
}
.cro-steps p {
  color: var(--text-2);
  font-weight: var(--w-light);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.cro-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: clamp(1.5rem, 4vh, 2.25rem);
}
.cro-head .cro-q { max-width: 30ch; }

/* ---- micro-FAQ: objections answered in one line each ---- */
.cro-faq {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.25rem, 3vw, 3rem);
}
.cro-faq > div {
  border-top: var(--hairline);
  padding-top: 1.1rem;
}
.cro-faq dt {
  color: var(--pale);
  font-weight: var(--w-regular);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.cro-faq dd {
  margin: 0;
  color: var(--text-2);
  font-weight: var(--w-light);
  font-size: 0.95rem;
  line-height: 1.55;
}
.cro-foot {
  margin-top: clamp(1.5rem, 4vh, 2.25rem);
}

/* ---- self-qualification: "past het / past niet" (2026-09-27, CRO+ prize frame) ---- */
.cro-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.25rem, 4vw, 4rem);
}
.cro-fit > div {
  border-top: var(--hairline);
  padding-top: 1.1rem;
}
.cro-fit-label {
  margin: 0 0 0.6rem;
  color: var(--pale);
  font-weight: var(--w-regular);
  font-size: 1rem;
}
.cro-fit ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cro-fit li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--text-2);
  font-weight: var(--w-light);
  font-size: 0.95rem;
  line-height: 1.55;
}
.cro-fit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.45rem;
  height: 1px;
  background: var(--sky);
}
.cro-fit > div + div li::before { background: var(--text-2); opacity: 0.6; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .cro-row,
  .cro-row.cro-row--line {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
  .cro-steps,
  .cro-faq,
  .cro-fit {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cro-btn,
  .cro-btn::after { transition: none; }
}
