/* ─────────────────────────────────────────────────────────────────
   CRO Block 17 — Comparison  (T2-CRO-COMPARISON, 2026-05-08)
   Self-contained, fully tokenized rewrite. The legacy
   cro-comparison.css is intentionally not loaded.

   Key fix vs prior pass: removed misuse of var(--scheme-fg) as a
   *background* color — that token is the FOREGROUND (ink), so
   every card was rendering near-black. Backgrounds now use
   --scheme-card-bg / --ds-paper, and "text on dark fill" uses an
   explicit cream/white literal where the fill is also dark.
   ───────────────────────────────────────────────────────────────── */

.block-cro-block-17 {
  /* per-block scheme tokens — only var(--ds-*) downstream */
  --scheme-bg: var(--ds-paper-2);
  --scheme-fg: var(--ds-ink);
  --scheme-fg-soft: var(--ds-ink-soft);
  --scheme-fg-mute: var(--ds-ink-mute);
  --scheme-rule: var(--ds-rule);
  --scheme-card-bg: var(--ds-paper);
  --scheme-card-fg: var(--ds-ink);
  --scheme-on-dark: var(--ds-paper);   /* text/icon color on dark fills */

  background: var(--scheme-bg);
  color: var(--scheme-fg);
  font-family: var(--ds-font-body);
  overflow: hidden;
  padding-block: clamp(80px, 12vh, 140px);
  padding-inline: clamp(20px, 5vw, 64px);
}

.block-cro-block-17 .container,
.block-cro-block-17 .container-fluid {
  max-width: var(--ds-container-lg);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* ── Section header (eyebrow + h2) ───────────────────────── */
.block-cro-block-17 .section-tag {
  display: inline-block;
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ds-cta);
  background: color-mix(in srgb, var(--ds-cta) 12%, white);
  padding: var(--ds-space-2) var(--ds-space-4);
  border-radius: var(--ds-radius-pill);
  margin-bottom: var(--ds-space-4);
  border: 1px solid color-mix(in srgb, var(--ds-cta) 30%, transparent);
}

/* ── Live counter ────────────────────────────────────────── */
.block-cro-block-17 .live-comparison-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
  margin: 0 auto var(--ds-space-5);
  padding: var(--ds-space-2) var(--ds-space-4);
  background: var(--scheme-card-bg);
  border: 1px solid var(--scheme-rule);
  border-radius: var(--ds-radius-pill);
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ds-ink-soft);
  box-shadow: var(--ds-shadow-sm);
}
.block-cro-block-17 .live-comparison-counter strong {
  color: var(--ds-cta);
  font-weight: 800;
}
.block-cro-block-17 .counter-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ds-trust);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ds-trust) 22%, transparent);
  animation: cro17-pulse 2s ease-in-out infinite;
}
@keyframes cro17-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
.block-cro-block-17 .col-lg-12 > .live-comparison-counter {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

/* ── Score dashboard ────────────────────────────────────── */
.block-cro-block-17 .score-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 0 0 var(--ds-space-6);
}
@media (min-width: 1100px) {
  .block-cro-block-17 .score-dashboard {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .block-cro-block-17 .score-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .block-cro-block-17 .score-dashboard {
    grid-template-columns: 1fr;
    gap: var(--ds-space-3);
  }
}

.block-cro-block-17 .score-card {
  background: var(--scheme-card-bg);
  color: var(--scheme-card-fg);
  border: 1px solid var(--scheme-rule);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ds-space-2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--ds-duration) var(--ds-ease-out),
              box-shadow var(--ds-duration) var(--ds-ease-out),
              border-color var(--ds-duration) var(--ds-ease-out);
}
.block-cro-block-17 .score-card.score-winner {
  background: var(--scheme-card-bg);
  color: var(--scheme-card-fg);
  border: 2px solid var(--ds-cta);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--ds-cta) 18%, transparent);
  position: relative;
}
.block-cro-block-17 .score-card.score-winner::before {
  content: "WINNER";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ds-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  background: var(--ds-cta-aa, var(--ds-cta-dk));
  color: var(--scheme-on-dark);
  padding: 4px 12px;
  border-radius: var(--ds-radius-pill);
  white-space: nowrap;
  box-shadow: var(--ds-shadow-cta);
}
.block-cro-block-17 .score-label {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ds-ink-soft);
}
.block-cro-block-17 .score-card.score-winner .score-label {
  color: var(--ds-cta);
}

.block-cro-block-17 .score-circle {
  position: relative;
  width: 88px; height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.block-cro-block-17 .score-ring {
  position: absolute; inset: 0;
  width: 88px; height: 88px;
  transform: rotate(-90deg);
}
.block-cro-block-17 .score-ring-bg {
  fill: none;
  stroke: var(--scheme-rule);
  stroke-width: 8;
}
.block-cro-block-17 .score-ring-progress {
  fill: none;
  stroke: var(--ds-cta);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.2s var(--ds-ease-out);
}
/* Static fallbacks so dial is always visible without JS */
.block-cro-block-17 .score-card .score-circle[data-score="100"] .score-ring-progress { stroke-dashoffset: 0; }
.block-cro-block-17 .score-card .score-circle[data-score="98"]  .score-ring-progress { stroke-dashoffset: 6.79; }
.block-cro-block-17 .score-card .score-circle[data-score="65"]  .score-ring-progress { stroke-dashoffset: 118.75; stroke: var(--ds-ink-mute); }
.block-cro-block-17 .score-card .score-circle[data-score="50"]  .score-ring-progress { stroke-dashoffset: 169.65; stroke: var(--ds-ink-mute); }
.block-cro-block-17 .score-card .score-circle[data-score="30"]  .score-ring-progress { stroke-dashoffset: 237.50; stroke: var(--ds-cta); }
.block-cro-block-17 .score-card .score-circle[data-score="17"]  .score-ring-progress { stroke-dashoffset: 281.61; stroke: var(--ds-cta); }

.block-cro-block-17 .score-number {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.block-cro-block-17 .score-count {
  font-family: var(--ds-font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0.005em;
  color: var(--scheme-card-fg);
  line-height: 1;
}
.block-cro-block-17 .score-card.score-winner .score-count {
  color: var(--ds-cta);
}
.block-cro-block-17 .score-total {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 600;
  color: var(--ds-ink-mute);
  margin-top: 2px;
}
.block-cro-block-17 .score-subtitle {
  font-family: var(--ds-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ds-ink-soft);
}
.block-cro-block-17 .score-card.score-winner .score-subtitle {
  color: var(--scheme-card-fg);
  font-weight: 600;
}

/* Score summary card (4th cell on desktop) */
.block-cro-block-17 .score-card.score-summary {
  background: var(--ds-cream);
  border: 1px solid color-mix(in srgb, var(--ds-cta) 28%, transparent);
  flex-direction: row;
  text-align: left;
  gap: var(--ds-space-3);
  padding: var(--ds-space-4);
  align-items: center;
  justify-content: center;
}
.block-cro-block-17 .summary-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-cta-aa, var(--ds-cta-dk));
  color: var(--scheme-on-dark);
  font-size: var(--ds-fs-body-lg);
  font-weight: 800;
  flex-shrink: 0;
}
.block-cro-block-17 .summary-text {
  font-family: var(--ds-font-body);
  font-size: 16px;
  color: var(--ds-ink);
  line-height: 1.55;
}
.block-cro-block-17 .summary-text strong {
  font-family: var(--ds-font-display);
  font-size: 1.1rem;
  color: var(--ds-cta);
  letter-spacing: 0.005em;
  display: block;
}

/* ── Filter button group ─────────────────────────────────── */
.block-cro-block-17 .comparison-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-block: 32px 48px;
}
/* Specificity note: design-system.css applies a global reset to unclassed
   <button> elements via a long `:not()` chain (~8 classes of specificity).
   These !important overrides keep filter-tab state visuals authoritative. */
.block-cro-block-17 .filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  border: 1px solid var(--scheme-rule) !important;
  background: var(--ds-paper) !important;
  color: var(--ds-ink) !important;
  font-family: var(--ds-font-body);
  font-weight: 500;
  /* TEAM-POLISH 2026-05-08: 14 → 15px so filter labels clear the body floor;
     pill grows ~2px taller which improves perceived tap area. */
  font-size: 15px;
  cursor: pointer;
  /* TEAM-POLISH: 44 → 48px floor matches the rest of the page nav system. */
  min-height: 48px;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.block-cro-block-17 .filter-tab:hover {
  background: var(--ds-paper-2) !important;
  border-color: var(--ds-ink) !important;
  color: var(--ds-ink) !important;
}
.block-cro-block-17 .filter-tab:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring, 0 0 0 3px var(--ds-cta));
}
.block-cro-block-17 .filter-tab[aria-pressed="true"],
.block-cro-block-17 .filter-tab.active {
  background: var(--ds-ink) !important;
  color: var(--ds-paper) !important;
  border-color: var(--ds-ink) !important;
}
.block-cro-block-17 .filter-tab[aria-pressed="true"]:hover,
.block-cro-block-17 .filter-tab.active:hover {
  background: var(--ds-ink) !important;
  color: var(--ds-paper) !important;
  border-color: var(--ds-ink) !important;
}
.block-cro-block-17 .filter-count {
  margin-left: 2px;
  font-weight: 600;
  opacity: 0.7;
}
.block-cro-block-17 .filter-tab.active .filter-count,
.block-cro-block-17 .filter-tab[aria-pressed="true"] .filter-count {
  opacity: 0.85;
}

/* Mobile: horizontal scroll if many filters */
@media (max-width: 600px) {
  .block-cro-block-17 .comparison-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 4px;
    margin-inline: -4px;
  }
  .block-cro-block-17 .comparison-filters::-webkit-scrollbar { display: none; }
  .block-cro-block-17 .filter-tab { flex-shrink: 0; }
}

/* ── Comparison cards grid ──────────────────────────────── */
.block-cro-block-17 .comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: var(--ds-space-6);
}
@media (min-width: 992px) {
  .block-cro-block-17 .comparison-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .block-cro-block-17 .comparison-cards {
    grid-template-columns: 1fr;
  }
}

.block-cro-block-17 .feature-card {
  background: var(--scheme-card-bg);
  color: var(--scheme-card-fg);
  border: 1px solid var(--scheme-rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--ds-duration) var(--ds-ease-out),
              box-shadow var(--ds-duration) var(--ds-ease-out),
              border-color var(--ds-duration) var(--ds-ease-out);
}
.block-cro-block-17 .feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--ds-cta);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.block-cro-block-17 .feature-card-header {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--ds-space-3);
  align-items: center;
  background: transparent !important;
  color: inherit !important;
  border: none !important;
  border-radius: 0 !important;
  padding: var(--ds-space-4) var(--ds-space-5) !important;
  text-align: left;
  cursor: pointer;
  min-height: var(--ds-touch-target, 48px);
  transition: background var(--ds-duration-fast), box-shadow var(--ds-duration-fast);
}
.block-cro-block-17 .feature-card-header:hover {
  background: color-mix(in srgb, var(--ds-cta) 4%, transparent) !important;
}
.block-cro-block-17 .feature-card-header:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--ds-cta);
}
.block-cro-block-17 .feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--ds-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ds-fs-h3);
  background: color-mix(in srgb, var(--ds-cta) 14%, white);
  border: 1px solid color-mix(in srgb, var(--ds-cta) 24%, transparent);
}
.block-cro-block-17 .feature-title-group h3 {
  font-family: var(--ds-font-display);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--scheme-card-fg);
  margin: 0 0 2px;
  line-height: 1.15;
}
.block-cro-block-17 .feature-subtitle {
  margin: 0;
  font-size: 16px;
  color: var(--ds-ink-soft);
  line-height: 1.55;
}
.block-cro-block-17 .feature-card-header .expand-icon {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-h3);
  color: var(--ds-cta);
  transition: transform var(--ds-duration-fast);
}
.block-cro-block-17 .feature-card.active .feature-card-header .expand-icon {
  transform: rotate(45deg);
}
.block-cro-block-17 .feature-card-content {
  padding: 0 var(--ds-space-5) var(--ds-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-4);
}

/* ── Comparison rows ────────────────────────────────────── */
.block-cro-block-17 .comparison-compact {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-2);
  padding-top: var(--ds-space-3);
  border-top: 1px solid var(--scheme-rule);
}
.block-cro-block-17 .comparison-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--ds-space-3);
  align-items: center;
  padding: var(--ds-space-3);
  border-radius: var(--ds-radius-sm);
  min-height: var(--ds-touch-target, 48px);
}
@media (max-width: 480px) {
  .block-cro-block-17 .comparison-row {
    grid-template-columns: 1fr;
    gap: var(--ds-space-2);
  }
}
.block-cro-block-17 .winner-row  { background: color-mix(in srgb, var(--ds-trust) 10%, white); }
.block-cro-block-17 .typical-row { background: var(--ds-paper-2); }
.block-cro-block-17 .budget-row  { background: color-mix(in srgb, var(--ds-cta) 8%, white); }

.block-cro-block-17 .provider-badge {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--ds-space-1) var(--ds-space-3);
  border-radius: var(--ds-radius-pill);
  text-align: center;
  white-space: normal;
  word-break: break-word;
  line-height: 1.25;
}
.block-cro-block-17 .winner-badge  { background: var(--ds-trust);    color: var(--scheme-on-dark); }
.block-cro-block-17 .typical-badge { background: var(--ds-ink-mute); color: var(--scheme-on-dark); }
.block-cro-block-17 .budget-badge  { background: var(--ds-cta-aa, var(--ds-cta-dk));      color: var(--scheme-on-dark); }

.block-cro-block-17 .feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ds-space-2);
}
.block-cro-block-17 .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-1);
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 6px 12px !important;
  border-radius: var(--ds-radius-pill) !important;
  border: 1px solid transparent !important;
  white-space: nowrap;
  line-height: 1.3;
}
.block-cro-block-17 button.pill-badge {
  cursor: pointer;
}
.block-cro-block-17 .pill-badge.success {
  background: color-mix(in srgb, var(--ds-trust) 14%, white) !important;
  color: var(--ds-trust-dk) !important;
  border-color: color-mix(in srgb, var(--ds-trust) 30%, transparent) !important;
}
.block-cro-block-17 .pill-badge.cert {
  background: color-mix(in srgb, var(--ds-trust) 30%, transparent) !important;
  color: var(--ds-trust-dk) !important;
}
.block-cro-block-17 .pill-badge.warning {
  background: color-mix(in srgb, var(--ds-cta) 12%, white) !important;
  color: var(--ds-cta-dk) !important;
  border-color: color-mix(in srgb, var(--ds-cta) 30%, transparent) !important;
}
.block-cro-block-17 .pill-badge.danger {
  background: var(--ds-cta-aa, var(--ds-cta-dk)) !important;
  color: var(--scheme-on-dark) !important;
}
.block-cro-block-17 .pill-badge.info {
  background: var(--ds-paper-2) !important;
  color: var(--ds-ink-soft) !important;
  border-color: var(--scheme-rule) !important;
}
.block-cro-block-17 .pill-badge--has-tip {
  background: var(--ds-paper-2) !important;
  color: var(--ds-ink) !important;
  border-color: var(--scheme-rule) !important;
  cursor: help;
}

/* keyboard-focusable tooltip pattern */
.block-cro-block-17 .pill-badge-wrap {
  position: relative;
  display: inline-flex;
}
.block-cro-block-17 .pill-badge--has-tip .pill-tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ds-ink-soft);
  color: var(--scheme-on-dark);
  font-family: var(--ds-font-mono);
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  flex-shrink: 0;
}
.block-cro-block-17 .pill-badge--has-tip:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring, 0 0 0 3px var(--ds-cta));
}
.block-cro-block-17 .pill-tooltip-text {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: var(--ds-ink);
  color: var(--scheme-on-dark);
  padding: var(--ds-space-2) var(--ds-space-3);
  border-radius: var(--ds-radius-sm);
  font-family: var(--ds-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: normal;
  max-width: 240px;
  width: max-content;
  z-index: 10;
  box-shadow: var(--ds-shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ds-duration-fast), visibility 0s linear var(--ds-duration-fast);
}
.block-cro-block-17 .pill-badge-wrap:hover .pill-tooltip-text,
.block-cro-block-17 .pill-badge--has-tip:focus-visible + .pill-tooltip-text,
.block-cro-block-17 .pill-badge-wrap:focus-within .pill-tooltip-text {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--ds-duration-fast);
}

/* ── Summary, progress, proof, CTA ──────────────────────── */
.block-cro-block-17 .comparison-summary {
  margin: 0;
  font-family: var(--ds-font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: var(--ds-ink-soft);
  line-height: 1.6;
  padding: 0 var(--ds-space-3);
}

.block-cro-block-17 .progress-bar-compact {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-1);
  padding: var(--ds-space-3);
  background: var(--ds-paper-2);
  border-radius: var(--ds-radius-sm);
}
.block-cro-block-17 .progress-label {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ds-ink-soft);
  margin-bottom: var(--ds-space-1);
}
.block-cro-block-17 .progress-track {
  height: 8px;
  background: var(--ds-paper);
  border: 1px solid var(--scheme-rule);
  border-radius: var(--ds-radius-pill);
  overflow: hidden;
}
.block-cro-block-17 .progress-fill {
  height: 100%;
  border-radius: var(--ds-radius-pill);
  transition: width 1s var(--ds-ease-out);
}
.block-cro-block-17 .winner-fill  { background: var(--ds-trust); }
.block-cro-block-17 .typical-fill { background: var(--ds-ink-mute); }
.block-cro-block-17 .budget-fill  { background: var(--ds-cta-aa, var(--ds-cta-dk)); }
.block-cro-block-17 .progress-fill[data-width="100"]  { width: 100%; }
.block-cro-block-17 .progress-fill[data-width="98"]   { width: 98%; }
.block-cro-block-17 .progress-fill[data-width="90"]   { width: 90%; }
.block-cro-block-17 .progress-fill[data-width="75"]   { width: 75%; }
.block-cro-block-17 .progress-fill[data-width="70"]   { width: 70%; }
.block-cro-block-17 .progress-fill[data-width="60"]   { width: 60%; }
.block-cro-block-17 .progress-fill[data-width="50"]   { width: 50%; }
.block-cro-block-17 .progress-fill[data-width="45"]   { width: 45%; }
.block-cro-block-17 .progress-fill[data-width="40"]   { width: 40%; }
.block-cro-block-17 .progress-fill[data-width="35"]   { width: 35%; }
.block-cro-block-17 .progress-fill[data-width="20"]   { width: 20%; }
.block-cro-block-17 .progress-fill[data-width="15"]   { width: 15%; }
.block-cro-block-17 .progress-fill[data-width="10"]   { width: 10%; }
.block-cro-block-17 .progress-fill[data-width="5"]    { width: 5%; }
.block-cro-block-17 .progress-fill[data-width="0"]    { width: 2%; }

.block-cro-block-17 .proof-box {
  display: flex;
  align-items: center;
  gap: var(--ds-space-3);
  padding: var(--ds-space-3);
  background: color-mix(in srgb, var(--ds-trust) 6%, white);
  border: 1px solid color-mix(in srgb, var(--ds-trust) 22%, transparent);
  border-radius: var(--ds-radius-sm);
}
.block-cro-block-17 .proof-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-trust);
  color: var(--ds-cream);
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  flex-shrink: 0;
}
.block-cro-block-17 .proof-quote {
  font-family: var(--ds-font-serif);
  font-style: italic;
  /* TEAM-POLISH 2026-05-08: 15 → 16px so the testimonial body clears the
     readability floor. Italic serif at 15 was uncomfortable for older eyes. */
  font-size: 16px;
  color: var(--ds-ink);
  line-height: 1.55;
}

.block-cro-block-17 .tiny-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--ds-space-3) var(--ds-space-5);
  background: var(--ds-cta-aa, var(--ds-cta-dk));
  color: var(--scheme-on-dark) !important;
  border-radius: var(--ds-radius-sm);
  font-family: var(--ds-font-body);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: var(--ds-shadow-cta);
  transition: background var(--ds-duration-fast), transform var(--ds-duration-fast),
              box-shadow var(--ds-duration-fast);
  min-height: var(--ds-touch-target-primary, 56px);
}
.block-cro-block-17 .tiny-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ds-cta), 0 0 0 5px rgba(255, 255, 255, .95);
}
.block-cro-block-17 .tiny-cta:hover {
  background: var(--ds-cta-dk);
  transform: translateY(-1px);
  box-shadow: var(--ds-shadow-cta);
}

/* ── Big CTA box ─────────────────────────────────────────── */
.block-cro-block-17 .comparison-cta-box-v2 {
  background: var(--ds-ink);
  color: var(--scheme-on-dark);
  border-radius: var(--ds-radius-lg);
  padding: var(--ds-space-7) var(--ds-space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ds-space-3);
  position: relative;
  overflow: hidden;
}
.block-cro-block-17 .comparison-cta-box-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 240px at 50% -10%,
              color-mix(in srgb, var(--ds-cta) 35%, transparent) 0%,
              transparent 60%);
  pointer-events: none;
}
.block-cro-block-17 .cta-badge {
  position: relative;
  display: inline-flex;
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: var(--ds-space-2) var(--ds-space-4);
  border-radius: var(--ds-radius-pill);
  background: var(--ds-cta-aa, var(--ds-cta-dk));
  color: var(--scheme-on-dark);
  box-shadow: var(--ds-shadow-cta);
}
.block-cro-block-17 .comparison-cta-box-v2 h3 {
  position: relative;
  font-family: var(--ds-font-display);
  font-size: var(--ds-fs-display-md);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--scheme-on-dark);
  margin: 0;
  line-height: 1.05;
  max-width: 28ch;
}
.block-cro-block-17 .comparison-cta-box-v2 > p {
  position: relative;
  font-size: var(--ds-fs-body-lg);
  color: color-mix(in srgb, var(--ds-paper) 85%, transparent);
  max-width: 56ch;
  margin: 0;
  line-height: 1.5;
}
.block-cro-block-17 .comparison-cta-box-v2 .btn-primary {
  position: relative;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center !important;
  gap: 2px !important;
  padding: var(--ds-space-3) var(--ds-space-7) !important;
  font-size: var(--ds-fs-body-lg) !important;
  margin-top: var(--ds-space-2);
}
.block-cro-block-17 .comparison-cta-box-v2 .btn-main-text {
  font-family: var(--ds-font-display);
  font-size: var(--ds-fs-display-sm);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 1;
}
.block-cro-block-17 .comparison-cta-box-v2 .btn-sub-text {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}
.block-cro-block-17 .cta-trust-items {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--ds-space-2) var(--ds-space-5);
  margin-top: var(--ds-space-2);
}
.block-cro-block-17 .cta-trust-items > span {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ds-paper) 78%, transparent);
}

/* ── Mobile guards ──────────────────────────────────────── */
@media (max-width: 768px) {
  .block-cro-block-17 .text-small { font-size: 14px !important; }
  .block-cro-block-17 .feature-card-header { padding: var(--ds-space-3) var(--ds-space-4); }
  .block-cro-block-17 .feature-card-content { padding: 0 var(--ds-space-4) var(--ds-space-4); }
  .block-cro-block-17 .score-card { padding: var(--ds-space-4); }
}

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .block-cro-block-17 .counter-dot,
  .block-cro-block-17 .score-ring-progress,
  .block-cro-block-17 .progress-fill,
  .block-cro-block-17 .feature-card,
  .block-cro-block-17 .tiny-cta {
    animation: none !important;
    transition: none !important;
  }
}

/* ── Emoji / circled-glyph fallbacks (font stack lacks the codepoints) ── */
.block-cro-block-17 .feature-icon,
.block-cro-block-17 .summary-icon,
.block-cro-block-17 .pill-badge,
.block-cro-block-17 button.pill-badge,
.block-cro-block-17 .counter-dot,
.block-cro-block-17 .score-card.score-winner::before {
  font-family: var(--ds-font-body),
               "Apple Color Emoji",
               "Segoe UI Emoji",
               "Noto Color Emoji",
               "Symbola",
               "DejaVu Sans",
               "Twemoji Mozilla",
               "EmojiOne Color",
               "Android Emoji",
               sans-serif;
}
.block-cro-block-17 .counter-text,
.block-cro-block-17 .pill-tooltip-text,
.block-cro-block-17 .summary-text,
.block-cro-block-17 .feature-card p {
  font-family: var(--ds-font-body),
               "Apple Color Emoji",
               "Segoe UI Emoji",
               "Noto Color Emoji",
               "Symbola",
               "DejaVu Sans",
               "Twemoji Mozilla",
               "EmojiOne Color",
               "Android Emoji",
               sans-serif;
}
