/* ─────────────────────────────────────────────────────────────────
   CRO Block 15 — Trust Badges
   Self-contained, fully tokenized rewrite. The legacy
   cro-trust-badges.css is intentionally not loaded.
   ───────────────────────────────────────────────────────────────── */

.block-cro-block-15 {
  background: var(--scheme-bg);
  color: var(--scheme-fg);
  font-family: var(--ds-font-body);
  overflow: hidden;
  /* Section padding handled by .section.section-lg in design-system.css (W3-A24). */
}

/* Default scheme = steel-dark for trust authority */
.block-cro-block-15 {
  --scheme-bg: var(--ds-steel);
  --scheme-fg: #fff;
  --scheme-fg-soft: rgba(255,247,227,.82);
  --scheme-fg-mute: rgba(255,247,227,.62);
  --scheme-rule: var(--ds-rule-dark);
  --scheme-card-bg: #fff;
  --scheme-card-fg: var(--ds-ink);
  --cro15-card-bg: var(--ds-paper, #fbf7ef);
  --cro15-card-bg-strong: #fff;
  --cro15-card-border: color-mix(in srgb, var(--ds-rule, #d8cfb8) 82%, #fff);
  --cro15-card-shadow: 0 18px 42px rgba(14, 15, 12, .18), 0 2px 0 rgba(255, 247, 227, .62) inset;
}

/* Keep this block immune to broad global class*="badge" polish and the
   generic .section.dark card-scheme override. */
.section.block-cro-block-15,
.section.dark.block-cro-block-15 {
  --scheme-card-bg: var(--cro15-card-bg);
  --scheme-card-fg: var(--ds-ink);
  border-radius: 0;
}

/* Section header colors */
.block-cro-block-15 .section-tag {
  display: inline-block;
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ds-cream);
  background: color-mix(in srgb, var(--ds-trust) 75%, transparent);
  padding: var(--ds-space-2) var(--ds-space-4);
  border-radius: var(--ds-radius-pill);
  margin-bottom: var(--ds-space-4);
}
.block-cro-block-15 .section-title h1,
.block-cro-block-15 .section-title h2 { color: #fff; }
.block-cro-block-15 .section-subtitle,
.block-cro-block-15 .section-subtitle p { color: var(--scheme-fg-soft); }

/* ── Carousel ────────────────────────────────────────────── */
.block-cro-block-15 .badges-carousel-wrapper {
  position: relative;
  margin-top: var(--ds-space-6);
}
.block-cro-block-15 .badges-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ds-space-5);
  padding: var(--ds-space-2) 0 var(--ds-space-4);
}
@media (max-width: 1199px) {
  .block-cro-block-15 .badges-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .block-cro-block-15 .badges-carousel {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--ds-space-4);
    padding: var(--ds-space-2) var(--ds-space-4) var(--ds-space-4);
    margin: 0 calc(var(--ds-space-4) * -1);
    scroll-padding: var(--ds-space-4);
  }
  .block-cro-block-15 .badges-carousel::-webkit-scrollbar { display: none; }
  .block-cro-block-15 .badge-card-v2 {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
}

/* ── Badge card ─────────────────────────────────────────── */
.block-cro-block-15 .badge-card-v2 { display: block; }
.block-cro-block-15 .badge-card-inner {
  background: linear-gradient(180deg, var(--cro15-card-bg-strong) 0%, var(--scheme-card-bg) 100%);
  color: var(--scheme-card-fg);
  border: 1px solid var(--cro15-card-border);
  border-radius: var(--ds-radius);
  box-shadow: var(--cro15-card-shadow);
  padding: var(--ds-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-4);
  height: 100%;
  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-15 .badge-card-v2:hover .badge-card-inner {
  transform: translateY(-2px);
  border-color: var(--ds-cta);
  box-shadow: 0 22px 48px rgba(14, 15, 12, .22), 0 0 0 1px color-mix(in srgb, var(--ds-cta) 22%, transparent);
}

/* ── Live status ─────────────────────────────────────────── */
.block-cro-block-15 .live-status {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
  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-trust-dk, var(--ds-trust));
  align-self: flex-start;
  min-height: 44px;
}
.block-cro-block-15 .status-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) 25%, transparent);
  animation: cro15-pulse 2s ease-in-out infinite;
}
@keyframes cro15-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ── Badge visual icon — HARD CAPS ──────────────────────── */
.block-cro-block-15 .badge-visual {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ds-space-2);
  min-height: 150px;
}
.block-cro-block-15 .badge-icon-large,
.block-cro-block-15 .badge-icon-large.badge-svg-icon {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  margin: 0 auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: var(--ds-trust);
}
.block-cro-block-15 .badge-icon-large > svg,
.block-cro-block-15 .badge-svg-icon > svg {
  width: 64px !important;
  height: 64px !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
  color: inherit;
  transition: transform var(--ds-duration-fast) var(--ds-ease-out), color var(--ds-duration-fast);
}
.block-cro-block-15 .badge-card-v2:hover .badge-svg-icon > svg {
  transform: scale(1.06);
  color: var(--ds-cta);
}
.block-cro-block-15 [data-badge="wsib"] .badge-icon-large { color: var(--ds-trust); }
.block-cro-block-15 [data-badge="insurance"] .badge-icon-large { color: var(--ds-steel); }
.block-cro-block-15 [data-badge="ohsa"] .badge-icon-large { color: var(--ds-cta); }
.block-cro-block-15 [data-badge="leed"] .badge-icon-large { color: var(--ds-trust); }

/* Senior-UX T10 (W4-S10): tagline pinned 16 px (presbyopia-safe). */
.block-cro-block-15 .badge-tagline {
  font-family: var(--ds-font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ds-ink-soft);
  font-weight: 500;
}

.block-cro-block-15 .badge-title {
  text-align: center;
  font-family: var(--ds-font-display);
  font-size: var(--ds-fs-display-sm);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ds-ink);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Risk/Reward toggle ─────────────────────────────────── */
.block-cro-block-15 .risk-reward-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border: 1px solid var(--ds-rule);
  border-radius: var(--ds-radius-sm);
  padding: 6px;
  background: color-mix(in srgb, var(--ds-paper-2) 74%, #fff);
}
/* Senior-UX T10 (W4-S10): toggles bumped 44 → 48 px; font 16 px floor. */
.block-cro-block-15 .toggle-view {
  font-family: var(--ds-font-body);
  font-size: 16px;
  font-weight: 700;
  padding: var(--ds-space-2) var(--ds-space-3);
  border: none;
  background: transparent;
  color: var(--ds-ink-soft);
  border-radius: calc(var(--ds-radius-sm) - 2px);
  cursor: pointer;
  min-height: var(--ds-touch-target, 48px);
  transition: background var(--ds-duration-fast), color var(--ds-duration-fast), box-shadow var(--ds-duration-fast);
}
.block-cro-block-15 .toggle-view:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring, 0 0 0 3px var(--ds-cta));
}
.block-cro-block-15 .toggle-view:hover { color: var(--ds-ink); }
.block-cro-block-15 .toggle-view.active {
  background: var(--ds-trust);
  color: #fff;
  box-shadow: 0 2px 6px color-mix(in srgb, var(--ds-trust) 35%, transparent);
}
.block-cro-block-15 .toggle-view[data-view="risk"].active {
  background: var(--ds-cta-aa, var(--ds-cta-dk));
  box-shadow: 0 2px 6px color-mix(in srgb, var(--ds-cta) 35%, transparent);
}

/* ── Badge content (reward/risk) ────────────────────────── */
.block-cro-block-15 .badge-content { display: none; }
.block-cro-block-15 .badge-content.active { display: block; animation: cro15-fade 240ms var(--ds-ease-out); }
@keyframes cro15-fade { from { opacity: 0; transform: translateY(4px);} to { opacity: 1; transform: none;} }
/* Senior-UX T10: badge description 16 px / 1.6 — presbyopia floor. */
.block-cro-block-15 .badge-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ds-ink-soft);
  margin: 0 0 var(--ds-space-3);
}
.block-cro-block-15 .badge-description strong { color: var(--ds-ink); }
.block-cro-block-15 .risk-text { color: var(--ds-ink); }
.block-cro-block-15 .badge-label-v2,
.block-cro-block-15 .consequence-stat {
  display: inline-block;
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--ds-space-2) var(--ds-space-3);
  border-radius: var(--ds-radius-pill);
}
.block-cro-block-15 .badge-label-v2 {
  background: color-mix(in srgb, var(--ds-trust) 14%, white);
  color: var(--ds-trust-dk);
  border: 1px solid color-mix(in srgb, var(--ds-trust) 30%, transparent);
}
.block-cro-block-15 .consequence-stat {
  background: color-mix(in srgb, var(--ds-cta) 12%, white);
  color: var(--ds-cta-dk);
  border: 1px solid color-mix(in srgb, var(--ds-cta) 28%, transparent);
}

/* ── Competitor gap chart ───────────────────────────────── */
.block-cro-block-15 .competitor-gap {
  background: color-mix(in srgb, var(--ds-paper-2) 82%, #fff);
  border: 1px solid color-mix(in srgb, var(--ds-rule) 72%, #fff);
  border-radius: var(--ds-radius);
  padding: var(--ds-space-3) var(--ds-space-4);
}
.block-cro-block-15 .gap-label,
.block-cro-block-15 .timeline-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-3);
}
.block-cro-block-15 .gap-bar {
  display: grid;
  grid-template-columns: 60px 1fr 56px;
  align-items: center;
  gap: var(--ds-space-3);
  margin-bottom: var(--ds-space-2);
}
.block-cro-block-15 .gap-bar-label {
  font-size: var(--ds-fs-body-sm);
  font-weight: 700;
  color: var(--ds-ink);
}
.block-cro-block-15 .gap-bar-bg {
  height: 18px;
  background: var(--ds-rule);
  border-radius: var(--ds-radius-pill);
  overflow: hidden;
  position: relative;
}
.block-cro-block-15 .gap-bar-fill {
  height: 100%;
  border-radius: var(--ds-radius-pill);
  width: 0%;
  transition: width 1s var(--ds-ease-out);
}
.block-cro-block-15 .winner-bar  { background: var(--ds-trust); }
.block-cro-block-15 .typical-bar { background: var(--ds-ink-mute); }
.block-cro-block-15 .cheap-bar   { background: var(--ds-cta-aa, var(--ds-cta-dk)); }
.block-cro-block-15 .gap-bar-percent {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-body-sm);
  font-weight: 700;
  color: var(--ds-ink);
  text-align: right;
}

/* Animate when in viewport */
.block-cro-block-15 .gap-bar-fill[data-width] { width: 0%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="100"]  { width: 100%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="60"]   { width: 60%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="40"]   { width: 40%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="50"]   { width: 50%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="35"]   { width: 35%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="15"]   { width: 15%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="10"]   { width: 10%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="5"]    { width: 5%; }
.block-cro-block-15 .badge-card-v2:hover .gap-bar-fill[data-width="0"]    { width: 2%; }
/* Default visible state (in case JS doesn't trigger) */
.block-cro-block-15 .gap-bar-fill[data-width="100"]  { width: 100%; }
.block-cro-block-15 .gap-bar-fill[data-width="60"]   { width: 60%; }
.block-cro-block-15 .gap-bar-fill[data-width="50"]   { width: 50%; }
.block-cro-block-15 .gap-bar-fill[data-width="40"]   { width: 40%; }
.block-cro-block-15 .gap-bar-fill[data-width="35"]   { width: 35%; }
.block-cro-block-15 .gap-bar-fill[data-width="15"]   { width: 15%; }
.block-cro-block-15 .gap-bar-fill[data-width="10"]   { width: 10%; }
.block-cro-block-15 .gap-bar-fill[data-width="5"]    { width: 5%; }
.block-cro-block-15 .gap-bar-fill[data-width="0"]    { width: 2%; }

/* ── Timeline ────────────────────────────────────────────── */
.block-cro-block-15 .cert-timeline {
  background: color-mix(in srgb, var(--ds-paper-2) 82%, #fff);
  border: 1px solid color-mix(in srgb, var(--ds-rule) 72%, #fff);
  border-radius: var(--ds-radius);
  padding: var(--ds-space-3) var(--ds-space-4) var(--ds-space-5);
}
.block-cro-block-15 .timeline-track {
  position: relative;
  height: 2px;
  background: var(--ds-rule);
  border-radius: 1px;
  margin: var(--ds-space-3) var(--ds-space-3) calc(var(--ds-space-5) + 4px);
  display: flex;
  justify-content: space-between;
}
.block-cro-block-15 .timeline-marker {
  position: relative;
  width: 12px;
  height: 12px;
  background: var(--scheme-card-bg, #fff);
  border: 2px solid var(--ds-ink-mute);
  border-radius: 50%;
  font-size: 0;
  top: -5px;
}
.block-cro-block-15 .timeline-marker::after {
  content: attr(data-year);
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 600;
  color: var(--ds-ink-soft);
  white-space: nowrap;
}
.block-cro-block-15 .timeline-marker.active {
  background: var(--ds-trust);
  border-color: var(--ds-trust);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ds-trust) 22%, transparent);
}
.block-cro-block-15 .timeline-text {
  font-size: var(--ds-fs-body-sm);
  color: var(--ds-ink-soft);
  text-align: center;
  margin-top: var(--ds-space-2);
}

/* ── Client testimonial rotation ─────────────────────────── */
.block-cro-block-15 .client-proof-rotate {
  position: relative;
  min-height: 48px;
}
.block-cro-block-15 .client-proof-item {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  gap: var(--ds-space-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ds-duration) var(--ds-ease-out);
}
.block-cro-block-15 .client-proof-item.active {
  opacity: 1;
  visibility: visible;
}
.block-cro-block-15 .client-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ds-steel);
  color: var(--ds-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  flex-shrink: 0;
}
.block-cro-block-15 .client-quote {
  font-family: var(--ds-font-serif);
  font-style: italic;
  font-size: var(--ds-fs-body-sm);
  color: var(--ds-ink-soft);
  line-height: 1.45;
}

/* ── Peer showcase ───────────────────────────────────────── */
.block-cro-block-15 .peer-showcase {
  display: flex;
  align-items: center;
  gap: var(--ds-space-2);
  padding: var(--ds-space-2) var(--ds-space-3);
  background: color-mix(in srgb, var(--ds-trust) 8%, white);
  border: 1px solid color-mix(in srgb, var(--ds-trust) 22%, transparent);
  border-radius: var(--ds-radius-sm);
}
.block-cro-block-15 .peer-icon {
  font-size: 1.1rem;
  line-height: 1;
}
.block-cro-block-15 .peer-text {
  font-size: var(--ds-fs-body-sm);
  font-weight: 600;
  color: var(--ds-trust-dk);
}

/* ── Badge actions (CTAs) ───────────────────────────────── */
.block-cro-block-15 .badge-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ds-space-2);
}
@media (max-width: 480px) {
  .block-cro-block-15 .badge-actions { grid-template-columns: 1fr; }
}
/* Senior-UX T10 (W4-S10): per-badge CTA buttons; primary CTA spec
   = 56 px height (downstream of design-system token), 16 px label,
   filled style. Was 44 px / sm-body. */
.block-cro-block-15 .badge-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ds-space-2);
  padding: var(--ds-space-3) var(--ds-space-5);
  border-radius: var(--ds-radius-sm);
  font-family: var(--ds-font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  min-height: var(--ds-touch-target-primary, 56px);
  transition: background var(--ds-duration-fast), color var(--ds-duration-fast),
              transform var(--ds-duration-fast), box-shadow var(--ds-duration-fast),
              border-color var(--ds-duration-fast);
}
.block-cro-block-15 .badge-cta:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring, 0 0 0 3px var(--ds-cta));
}
.block-cro-block-15 .badge-cta.primary {
  background: var(--ds-cta-aa, var(--ds-cta-dk));
  color: #fff;
  box-shadow: var(--ds-shadow-cta);
}
.block-cro-block-15 .badge-cta.primary:hover {
  background: var(--ds-cta-dk);
  transform: translateY(-1px);
  box-shadow: var(--ds-shadow-cta);
}
.block-cro-block-15 .badge-cta.secondary {
  background: var(--scheme-card-bg, #fff);
  color: var(--ds-ink);
  border-color: var(--ds-rule);
}
.block-cro-block-15 .badge-cta.secondary:hover {
  border-color: var(--ds-ink);
  background: var(--ds-paper);
}
.block-cro-block-15 .badge-cta .external-icon,
.block-cro-block-15 .badge-cta .cta-arrow {
  font-size: var(--ds-fs-body-sm);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Why this matters expand ────────────────────────────── */
/* Senior-UX T10: expand-why control bumped 44 → 48 px, 14 → 16 px label,
   eased letter-spacing for older readers. */
.block-cro-block-15 .expand-why {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px dashed var(--ds-rule);
  border-radius: var(--ds-radius-sm);
  padding: var(--ds-space-3) var(--ds-space-4);
  font-family: var(--ds-font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ds-ink-soft);
  cursor: pointer;
  min-height: var(--ds-touch-target, 48px);
  transition: border-color var(--ds-duration-fast), color var(--ds-duration-fast),
              background var(--ds-duration-fast);
}
.block-cro-block-15 .expand-why:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring, 0 0 0 3px var(--ds-cta));
}
.block-cro-block-15 .expand-why:hover {
  border-color: var(--ds-ink);
  color: var(--ds-ink);
  background: var(--ds-paper);
}
.block-cro-block-15 .expand-icon {
  font-size: var(--ds-fs-body-lg);
  font-weight: 700;
  color: var(--ds-cta);
  transition: transform var(--ds-duration-fast);
}
.block-cro-block-15 .expand-why.active .expand-icon { transform: rotate(45deg); }
.block-cro-block-15 .why-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ds-ease-out);
}
.block-cro-block-15 .why-content.active { max-height: 600px; }
.block-cro-block-15 .why-inner {
  margin-top: var(--ds-space-3);
  padding: var(--ds-space-4);
  background: var(--ds-cream);
  border-left: 3px solid var(--ds-cta);
  border-radius: var(--ds-radius-sm);
}
.block-cro-block-15 .why-inner h4 {
  font-family: var(--ds-font-display);
  font-size: var(--ds-fs-body-lg);
  font-weight: 400;
  color: var(--ds-ink);
  margin: 0 0 var(--ds-space-2);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.block-cro-block-15 .why-inner p {
  font-size: var(--ds-fs-body-sm);
  line-height: 1.55;
  color: var(--ds-ink-soft);
  margin: 0 0 var(--ds-space-2);
}
.block-cro-block-15 .why-inner p:last-child { margin: 0; }
.block-cro-block-15 .why-inner strong { color: var(--ds-ink); }

/* ── Carousel dots (mobile only) ────────────────────────── */
.block-cro-block-15 .carousel-dots {
  display: none;
  justify-content: center;
  gap: var(--ds-space-1);
  margin-top: var(--ds-space-3);
}
@media (max-width: 767px) {
  .block-cro-block-15 .carousel-dots { display: flex; }
}
.block-cro-block-15 .dot {
  width: 44px;
  height: 44px;
  border-radius: var(--ds-radius-pill);
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  touch-action: manipulation;
  transition: background var(--ds-duration-fast), transform var(--ds-duration-fast);
}
.block-cro-block-15 .dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: var(--ds-radius-pill);
  background: rgba(255,255,255,.42);
  transition: width var(--ds-duration-fast), background var(--ds-duration-fast);
}
.block-cro-block-15 .dot.active {
  background: color-mix(in srgb, var(--ds-cream) 10%, transparent);
}
.block-cro-block-15 .dot.active::before {
  width: 24px;
  background: var(--ds-cta-aa, var(--ds-cta-dk));
}
.block-cro-block-15 .dot:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring, 0 0 0 3px var(--ds-cta));
}

/* ── Container width override ────────────────────────────── */
.block-cro-block-15 .container,
.block-cro-block-15 .container-fluid {
  max-width: var(--ds-container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ds-space-5);
  padding-right: var(--ds-space-5);
}
@media (max-width: 767px) {
  .block-cro-block-15 .container,
  .block-cro-block-15 .container-fluid {
    padding-left: var(--ds-space-4);
    padding-right: var(--ds-space-4);
  }
}

/* W2-A20 — Audit team-07 fix #7: 21 sub-14 px text nodes inside any
   comparison-row labels nested in this block. Defensive 14 px floor
   on phone widths. */
@media (max-width: 768px) {
  .block-cro-block-15 .comparison-row,
  .block-cro-block-15 .comparison-row label,
  .block-cro-block-15 .comparison-row span {
    font-size: 14px !important;
  }
}

/* ────────────────────────────────────────────────────────────────
   Senior-UX T10 (W4-S10): AARP / presbyopia floor across this block.
   Every readable text node lifted to ≥ 16 px (badge text spec). The
   eyebrow/mono labels (status-text, gap-bar percent, etc.) stay
   readable; tooltip pills become keyboard-focusable later in this
   pass via the cro-block-17 work.
   ──────────────────────────────────────────────────────────── */
.block-cro-block-15 .status-text,
.block-cro-block-15 .gap-bar-label,
.block-cro-block-15 .gap-bar-percent,
.block-cro-block-15 .timeline-text,
.block-cro-block-15 .client-quote,
.block-cro-block-15 .peer-text,
.block-cro-block-15 .why-inner p {
  font-size: 16px;
  line-height: 1.55;
}
.block-cro-block-15 .gap-label,
.block-cro-block-15 .timeline-label {
  font-size: 14px;
}

/* Senior-UX T10: badge tile = clickable card; ensure ≥ 48 px tap
   target on the whole tile + focus ring visibility. */
.block-cro-block-15 .badge-card-v2 {
  min-height: var(--ds-touch-target, 48px);
}
.block-cro-block-15 .badge-card-inner:focus-within {
  outline: 2px solid var(--ds-cta);
  outline-offset: 2px;
}

/* Senior-UX T10: respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .block-cro-block-15 .status-dot,
  .block-cro-block-15 .gap-bar-fill,
  .block-cro-block-15 .badge-content.active,
  .block-cro-block-15 .client-proof-item {
    animation: none !important;
    transition: none !important;
  }
}

/* Senior-UX T10: visible pause/play control for the trust badges
   carousel (live-status / client-proof rotation). */
.block-cro-block-15 .cro15-pause-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--ds-space-3) auto 0;
  min-height: var(--ds-touch-target, 48px);
  padding: 12px 24px;
  background: var(--scheme-card-bg, #fff);
  color: var(--ds-ink);
  border: 1px solid var(--ds-rule);
  border-radius: var(--ds-radius-sm, 6px);
  font-family: var(--ds-font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: max-content;
  transition: background var(--ds-duration-fast), border-color var(--ds-duration-fast);
}
.block-cro-block-15 .cro15-pause-btn:hover {
  background: var(--ds-cta-aa, var(--ds-cta-dk));
  color: #fff;
  border-color: var(--ds-cta);
}
.block-cro-block-15 .cro15-pause-btn:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring, 0 0 0 3px var(--ds-cta));
}

/* ─────────────────────────────────────────────────────────────────
   SWEEP-C4 (2026-05-08) — emoji glyph font-fallback
   .peer-icon (🏥 🏘️ 🏢 🏪), .consequence-stat (📊 ⚠️ 🚨 🌍),
   .badge-label-v2 (✓ leading) all rendered as broken-square glyphs
   (□) on systems lacking the OS emoji font in the inheritance
   chain. The design CSS sets font-family: var(--ds-font-mono) on
   these classes, blocking emoji codepoints from picking up the
   platform emoji font. Append the emoji-font tail so codepoints
   resolve to Apple/Segoe/Noto/Twemoji/EmojiOne/Android emoji
   without affecting the design font for adjacent text.
   ───────────────────────────────────────────────────────────────── */
.block-cro-block-15 .peer-icon,
.block-cro-block-15 .consequence-stat,
.block-cro-block-15 .badge-label-v2 {
  font-family: var(--ds-font-mono),
               "Apple Color Emoji",
               "Segoe UI Emoji",
               "Noto Color Emoji",
               "Twemoji Mozilla",
               "EmojiOne Color",
               "Android Emoji",
               sans-serif;
}
/* Body-text fallback for any block-15 text that may include emoji
   (renewal/peer text blocks). */
.block-cro-block-15 .renewal-history,
.block-cro-block-15 .peer-list,
.block-cro-block-15 .badge-card .badge-description {
  font-family: var(--ds-font-body),
               "Apple Color Emoji",
               "Segoe UI Emoji",
               "Noto Color Emoji",
               "Twemoji Mozilla",
               "EmojiOne Color",
               "Android Emoji",
               sans-serif;
}

/* 2026-05-09 trust badges redesign layer.
   Scoped hard reset: this module was inheriting broad [class*="badge"]
   polish and dark scheme tokens, producing oval section clipping and
   dark text on charcoal cards. */
.section.block-cro-block-15.cro-trust-badges {
  --cro15-bg: #17222c;
  --cro15-panel: #23313d;
  --cro15-line: rgba(225, 235, 242, 0.18);
  --cro15-line-strong: rgba(225, 235, 242, 0.28);
  --cro15-text: #f7fbff;
  --cro15-muted: #c7d4de;
  --cro15-trust: var(--ds-proof-bg, var(--ds-trust));
  --cro15-warn: var(--ds-warn, #d97706);
  --cro15-risk: var(--ds-risk-bg, var(--ds-danger, #c0392b));
  --cro15-blue: var(--ds-info, #0369a1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0)),
    var(--cro15-bg) !important;
  color: var(--cro15-text) !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.section.block-cro-block-15.cro-trust-badges,
.section.block-cro-block-15.cro-trust-badges .badges-carousel-wrapper,
.section.block-cro-block-15.cro-trust-badges .badges-carousel,
.section.block-cro-block-15.cro-trust-badges .badge-card-v2,
.section.block-cro-block-15.cro-trust-badges .badge-title,
.section.block-cro-block-15.cro-trust-badges .badge-tagline {
  border-radius: 0 !important;
}

.section.block-cro-block-15.cro-trust-badges .section-tag,
.section.block-cro-block-15.cro-trust-badges .section-title,
.section.block-cro-block-15.cro-trust-badges .section-title h2 {
  color: var(--cro15-text) !important;
}

.section.block-cro-block-15.cro-trust-badges .section-subtitle,
.section.block-cro-block-15.cro-trust-badges .section-subtitle p {
  color: var(--cro15-muted) !important;
}

.section.block-cro-block-15.cro-trust-badges .section-tag {
  background: rgba(86, 192, 138, 0.14) !important;
  border: 1px solid rgba(86, 192, 138, 0.38) !important;
  border-radius: 999px !important;
  color: #d9f7e7 !important;
}

.section.block-cro-block-15.cro-trust-badges .badges-carousel-wrapper {
  max-width: 1240px;
  margin-inline: auto;
}

.section.block-cro-block-15.cro-trust-badges .badges-carousel {
  align-items: stretch;
  gap: 20px;
}

@media (min-width: 768px) {
  .section.block-cro-block-15.cro-trust-badges .badges-carousel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .section.block-cro-block-15.cro-trust-badges .badges-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.section.block-cro-block-15.cro-trust-badges .badge-card-v2 {
  display: flex;
  min-width: 0;
}

.section.block-cro-block-15.cro-trust-badges .badge-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: clamp(20px, 2vw, 28px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    var(--cro15-panel) !important;
  color: var(--cro15-text) !important;
  border: 1px solid var(--cro15-line) !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
  transform: none !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.section.block-cro-block-15.cro-trust-badges .badge-card-inner:hover {
  border-color: rgba(86, 192, 138, 0.36) !important;
  box-shadow: 0 22px 56px rgba(0,0,0,0.28);
}

.section.block-cro-block-15.cro-trust-badges .live-status {
  align-self: flex-start;
  min-height: 32px;
  padding: 6px 10px;
  background: rgba(86, 192, 138, 0.12) !important;
  color: #d9f7e7 !important;
  border: 1px solid rgba(86, 192, 138, 0.28);
  border-radius: 999px !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.section.block-cro-block-15.cro-trust-badges .status-dot {
  background: var(--cro15-trust) !important;
  box-shadow: 0 0 0 4px rgba(86, 192, 138, 0.14) !important;
}

.section.block-cro-block-15.cro-trust-badges .badge-visual {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  margin: 18px 0 12px;
}

.section.block-cro-block-15.cro-trust-badges .badge-icon-large {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--cro15-trust) !important;
  border: 1px solid var(--cro15-line);
  border-radius: 8px !important;
  box-shadow: none !important;
}

.section.block-cro-block-15.cro-trust-badges .badge-icon-large svg {
  width: 34px;
  height: 34px;
}

.section.block-cro-block-15.cro-trust-badges .badge-tagline {
  color: var(--cro15-muted) !important;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  text-align: left;
}

.section.block-cro-block-15.cro-trust-badges .badge-title {
  margin: 0 0 14px;
  color: var(--cro15-text) !important;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section.block-cro-block-15.cro-trust-badges .carousel-dots,
.section.block-cro-block-15.cro-trust-badges .cro15-pause-btn {
  display: none !important;
}

.section.block-cro-block-15.cro-trust-badges .risk-reward-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 52px;
  padding: 4px;
  margin: 0 0 14px;
  background: rgba(0, 0, 0, 0.18) !important;
  border: 1px solid var(--cro15-line);
  border-radius: 8px !important;
}

.section.block-cro-block-15.cro-trust-badges .toggle-view {
  min-height: 44px;
  padding: 8px 12px;
  background: transparent !important;
  color: var(--cro15-muted) !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  font-size: 15px;
  font-weight: 500 !important;
  line-height: 1.15;
  box-shadow: none !important;
}

.section.block-cro-block-15.cro-trust-badges .toggle-view.active {
  background: var(--ds-selected-bg, var(--ds-action-bg, var(--ds-cta-aa, var(--ds-cta-dk)))) !important;
  color: var(--ds-selected-fg, var(--ds-action-fg, var(--ds-cta-fg, #ffffff))) !important;
  border-color: var(--ds-selected-border, var(--ds-action-border, var(--ds-selected-bg, var(--ds-action-bg)))) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.24),
    0 8px 18px rgba(28,74,50,.18) !important;
  font-weight: 600 !important;
}

.section.block-cro-block-15.cro-trust-badges .toggle-view:not(.active):hover {
  background: rgba(255, 255, 255, 0.07) !important;
  color: var(--cro15-text) !important;
  border-color: var(--cro15-line);
}

.section.block-cro-block-15.cro-trust-badges .badge-content {
  display: none !important;
}

.section.block-cro-block-15.cro-trust-badges .badge-content.active {
  display: block !important;
  min-height: 150px;
  padding: 16px;
  margin: 0 0 14px;
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid var(--cro15-line);
  border-radius: 8px !important;
}

.section.block-cro-block-15.cro-trust-badges .badge-description {
  color: var(--cro15-muted) !important;
  font-size: 15px;
  line-height: 1.55;
}

.section.block-cro-block-15.cro-trust-badges .badge-label-v2 {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 10px;
  margin-top: 12px;
  background: rgba(86, 192, 138, 0.14) !important;
  color: #d9f7e7 !important;
  border: 1px solid rgba(86, 192, 138, 0.26);
  border-radius: 999px !important;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.section.block-cro-block-15.cro-trust-badges .consequence-stat {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 10px;
  margin-top: 12px;
  background: rgba(226, 108, 98, 0.14) !important;
  color: #ffd9d5 !important;
  border: 1px solid rgba(226, 108, 98, 0.28);
  border-radius: 999px !important;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.section.block-cro-block-15.cro-trust-badges .competitor-gap,
.section.block-cro-block-15.cro-trust-badges .cert-timeline,
.section.block-cro-block-15.cro-trust-badges .client-proof-rotate,
.section.block-cro-block-15.cro-trust-badges .peer-showcase {
  display: block !important;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.045) !important;
  color: var(--cro15-text) !important;
  border: 1px solid var(--cro15-line);
  border-radius: 8px !important;
  box-shadow: none !important;
}

.section.block-cro-block-15.cro-trust-badges .competitor-gap,
.section.block-cro-block-15.cro-trust-badges .cert-timeline {
  padding: 14px;
}

.section.block-cro-block-15.cro-trust-badges .gap-label,
.section.block-cro-block-15.cro-trust-badges .timeline-label {
  color: var(--cro15-muted) !important;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.section.block-cro-block-15.cro-trust-badges .gap-bar {
  grid-template-columns: 58px 1fr 48px;
  gap: 10px;
  margin-bottom: 8px;
}

.section.block-cro-block-15.cro-trust-badges .gap-bar-label,
.section.block-cro-block-15.cro-trust-badges .gap-bar-percent,
.section.block-cro-block-15.cro-trust-badges .timeline-text,
.section.block-cro-block-15.cro-trust-badges .client-quote,
.section.block-cro-block-15.cro-trust-badges .peer-text {
  color: var(--cro15-muted) !important;
}

.section.block-cro-block-15.cro-trust-badges .gap-bar-bg {
  height: 9px;
  background: rgba(255, 255, 255, 0.11) !important;
  border-radius: 999px !important;
  overflow: hidden;
}

.section.block-cro-block-15.cro-trust-badges .winner-bar {
  background: linear-gradient(90deg, var(--ds-proof-bg, var(--ds-trust)), color-mix(in srgb, var(--ds-proof-bg, var(--ds-trust)) 72%, #ffffff 28%)) !important;
}

.section.block-cro-block-15.cro-trust-badges .typical-bar {
  background: linear-gradient(90deg, var(--ds-warn, #d97706), color-mix(in srgb, var(--ds-warn, #d97706) 70%, #ffffff 30%)) !important;
}

.section.block-cro-block-15.cro-trust-badges .cheap-bar {
  background: linear-gradient(90deg, var(--ds-risk-bg, var(--ds-danger, #c0392b)), color-mix(in srgb, var(--ds-risk-bg, var(--ds-danger, #c0392b)) 70%, #ffffff 30%)) !important;
}

.section.block-cro-block-15.cro-trust-badges .cert-timeline {
  padding-bottom: 14px;
}

.section.block-cro-block-15.cro-trust-badges .timeline-track {
  height: auto;
  min-height: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
  gap: 6px;
  margin: 0 0 8px;
  background: transparent !important;
}

.section.block-cro-block-15.cro-trust-badges .timeline-marker {
  position: static !important;
  transform: none !important;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  min-height: 32px;
  padding: 5px 7px;
  background: rgba(255, 255, 255, 0.065) !important;
  color: var(--cro15-muted) !important;
  border: 1px solid var(--cro15-line);
  border-radius: 999px !important;
  font-size: 11px;
  font-weight: 900;
  top: auto;
}

.section.block-cro-block-15.cro-trust-badges .timeline-marker::after {
  content: none !important;
}

.section.block-cro-block-15.cro-trust-badges .timeline-marker.active {
  background: rgba(86, 192, 138, 0.16) !important;
  color: #d9f7e7 !important;
  border-color: rgba(86, 192, 138, 0.34);
  box-shadow: none !important;
}

.section.block-cro-block-15.cro-trust-badges .client-proof-rotate {
  position: relative;
  min-height: 76px;
  overflow: hidden;
  padding: 12px;
}

.section.block-cro-block-15.cro-trust-badges .client-proof-item {
  inset: 12px;
  align-items: flex-start;
  gap: 10px;
}

.section.block-cro-block-15.cro-trust-badges .client-avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background: rgba(130, 183, 255, 0.16) !important;
  color: #dbeaff !important;
  border: 1px solid rgba(130, 183, 255, 0.3);
}

.section.block-cro-block-15.cro-trust-badges .peer-showcase {
  display: flex !important;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  gap: 8px;
}

.section.block-cro-block-15.cro-trust-badges .peer-icon {
  font-size: 17px;
}

.section.block-cro-block-15.cro-trust-badges .badge-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.section.block-cro-block-15.cro-trust-badges .badge-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.07) !important;
  color: var(--cro15-text) !important;
  border: 1px solid var(--cro15-line-strong) !important;
  border-radius: 8px !important;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.section.block-cro-block-15.cro-trust-badges .badge-cta.primary {
  background: var(--ds-action-bg, var(--ds-cta-aa, var(--ds-cta-dk))) !important;
  color: var(--ds-action-fg, var(--ds-cta-fg, #ffffff)) !important;
  border-color: var(--ds-action-border, var(--ds-action-bg, var(--ds-cta-aa, var(--ds-cta-dk)))) !important;
}

.section.block-cro-block-15.cro-trust-badges .badge-cta.primary:hover {
  background: var(--ds-cta-dk, var(--ds-action-bg, var(--ds-cta))) !important;
  color: var(--ds-action-fg, var(--ds-cta-fg, #ffffff)) !important;
}

.section.block-cro-block-15.cro-trust-badges .expand-why {
  min-height: 46px;
  margin-top: 14px;
  background: transparent !important;
  color: var(--cro15-muted) !important;
  border: 1px solid var(--cro15-line) !important;
  border-radius: 8px !important;
  font-size: 14px;
  font-weight: 900;
}

.section.block-cro-block-15.cro-trust-badges .expand-why.active,
.section.block-cro-block-15.cro-trust-badges .expand-why:hover {
  color: var(--cro15-text) !important;
  border-color: rgba(130, 183, 255, 0.38) !important;
  background: rgba(130, 183, 255, 0.08) !important;
}

.section.block-cro-block-15.cro-trust-badges .why-content {
  overflow: hidden;
  transition: max-height 220ms ease;
}

.section.block-cro-block-15.cro-trust-badges .why-inner {
  margin-top: 10px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.18) !important;
  color: var(--cro15-muted) !important;
  border: 1px solid var(--cro15-line);
  border-radius: 8px !important;
}

.section.block-cro-block-15.cro-trust-badges .why-inner h4,
.section.block-cro-block-15.cro-trust-badges .why-inner strong {
  color: var(--cro15-text) !important;
}

.section.block-cro-block-15.cro-trust-badges .why-inner p {
  color: var(--cro15-muted) !important;
  line-height: 1.55;
}

.section.block-cro-block-15.cro-trust-badges .badges-carousel-wrapper::after {
  content: "CBCS verifies WSIB, insurance, safety training, and green-cleaning documentation before service begins. Budget providers often leave those liabilities unknown.";
  display: block;
  max-width: 1040px;
  margin: 22px auto 0;
  padding: 16px 20px;
  background: rgba(86, 192, 138, 0.12);
  color: #d9f7e7;
  border: 1px solid rgba(86, 192, 138, 0.28);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 750;
  text-align: center;
}

.section.block-cro-block-15.cro-trust-badges .toggle-view:focus-visible,
.section.block-cro-block-15.cro-trust-badges .badge-cta:focus-visible,
.section.block-cro-block-15.cro-trust-badges .expand-why:focus-visible {
  outline: 3px solid rgba(130, 183, 255, 0.95) !important;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .section.block-cro-block-15.cro-trust-badges {
    padding-bottom: calc(var(--ds-section-py-sm, 56px) + 92px);
  }

  .section.block-cro-block-15.cro-trust-badges .section-title h2 {
    font-size: clamp(28px, 9vw, 36px) !important;
    line-height: 1.12 !important;
  }

  .section.block-cro-block-15.cro-trust-badges .badges-carousel {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
  }

  .section.block-cro-block-15.cro-trust-badges .badge-card-v2 {
    flex: none !important;
    width: 100% !important;
    scroll-snap-align: none;
  }

  .section.block-cro-block-15.cro-trust-badges .badge-card-inner {
    padding: 18px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.24);
  }

  .section.block-cro-block-15.cro-trust-badges .badge-visual {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .section.block-cro-block-15.cro-trust-badges .badge-icon-large {
    width: 48px;
    height: 48px;
  }

  .section.block-cro-block-15.cro-trust-badges .badge-content.reward-view {
    min-height: auto;
  }

  .section.block-cro-block-15.cro-trust-badges .badges-carousel-wrapper::after {
    margin-top: 16px;
    padding: 14px 16px;
    font-size: 15px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section.block-cro-block-15.cro-trust-badges *,
  .section.block-cro-block-15.cro-trust-badges *::before,
  .section.block-cro-block-15.cro-trust-badges *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Task 4/5 mobile QA: keep the icon/tagline group from colliding on
   phone widths after the dark-card redesign layer. */
@media (max-width: 767px) {
  .section.block-cro-block-15.cro-trust-badges .badge-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 22px 0 18px;
    text-align: center;
  }

  .section.block-cro-block-15.cro-trust-badges .badge-tagline {
    max-width: 18rem;
    color: var(--cro15-muted) !important;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
  }
}
