/* ─────────────────────────────────────────────────────────────────
   CRO Block 3 — Hero Video (final override)
   Loaded last via base.html.twig 1..17 loop. Token-bound rebuild
   that overrides legacy cro-hero-video.css cosmetic rules.
   Scheme: paper-2 (alternating ivory) so the video card lifts.
   ───────────────────────────────────────────────────────────── */

/* ── Section shell ───────────────────────────────────────────── */
.section.cro-hero-video,
.section.block-cro-block-3,
.section.hero-compact-video,
.section.hero-video-container {
  background: var(--ds-paper-2) !important;
  color: var(--ds-ink) !important;
  padding: var(--ds-section-py-lg) 0 !important;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section.cro-hero-video,
  .section.block-cro-block-3 {
    padding: var(--ds-section-py-sm) 0 !important;
  }
}

/* ── Industry stats widget (top) ─────────────────────────────── */
.cro-hero-video .hero-industry-stats {
  margin: 0 auto var(--ds-space-6) !important;
  max-width: 1180px;
}
.cro-hero-video .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ds-space-2);
}
@media (min-width: 768px) {
  .cro-hero-video .stats-grid { grid-template-columns: repeat(4, 1fr); gap: var(--ds-space-3); }
}
.cro-hero-video .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ds-space-2);
  padding: var(--ds-space-3) var(--ds-space-2);
  background: #fff;
  border: 1px solid var(--ds-rule);
  border-radius: var(--ds-radius);
  cursor: pointer;
  font-family: var(--ds-font-body);
  transition: all var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .stat-item:hover {
  border-color: var(--ds-cta);
  transform: translateY(-2px);
  box-shadow: var(--ds-shadow-md);
}
.cro-hero-video .stat-item.active {
  border-color: var(--ds-cta);
  background: color-mix(in srgb, var(--ds-cta) 6%, white);
}
.cro-hero-video .stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ds-cta) 14%, white);
  color: var(--ds-cta);
}
.cro-hero-video .stat-icon svg,
.cro-hero-video .stat-icon img,
.cro-hero-video .stat-svg,
.cro-hero-video .stat-svg svg {
  width: 18px !important;
  height: 18px !important;
}
.cro-hero-video .stat-label {
  font-size: var(--ds-fs-body-sm);
  font-weight: 600;
  color: var(--ds-ink);
  text-align: center;
}
.cro-hero-video .stat-count {
  font-family: var(--ds-font-display);
  font-size: var(--ds-fs-display-sm);
  color: var(--ds-cta);
  letter-spacing: 0.005em;
  line-height: 1;
}

/* ── Container columns ───────────────────────────────────────── */
/* The .row contains: [hero-industry-stats][col-lg-6 video][col-lg-6 right][hero-modal].
   Use a single-column flex flow on mobile, then a two-column grid where
   the industry-stats and modal span the full row. */
.cro-hero-video .container > .row {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-5);
  align-items: stretch;
}
.cro-hero-video .container > .row > .hero-industry-stats {
  order: -1;
  width: 100%;
}
.cro-hero-video .container > .row > .hero-modal {
  order: 99;
}
@media (min-width: 992px) {
  .cro-hero-video .container > .row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: var(--ds-space-6) var(--ds-space-6);
    align-items: start;
  }
  .cro-hero-video .container > .row > .hero-industry-stats {
    grid-column: 1 / -1;
  }
  .cro-hero-video .container > .row > .hero-modal {
    grid-column: 1 / -1;
    /* keep modal off-flow visually */
  }
}
.cro-hero-video .col-lg-6 {
  width: 100%; max-width: 100%; flex: none; padding: 0;
}

/* ── Video card ──────────────────────────────────────────────── */
.cro-hero-video .hero-video-card {
  background: #fff !important;
  border: 1px solid var(--ds-rule);
  border-radius: var(--ds-radius-lg) !important;
  box-shadow: var(--ds-shadow-lg);
  overflow: hidden;
}
.cro-hero-video .video-card-header {
  padding: var(--ds-space-3) var(--ds-space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ds-space-3);
  border-bottom: 1px solid var(--ds-rule);
  flex-wrap: wrap;
}
.cro-hero-video .video-card-title {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-lg);
  font-weight: 700;
  color: var(--ds-ink) !important;
  margin: 0;
  flex-wrap: wrap;
}
.cro-hero-video .live-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ds-cta);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  position: relative;
}
.cro-hero-video .live-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  margin-right: 0.4rem;
  animation: cro-hero-video-pulse 1.4s ease-in-out infinite;
}
@keyframes cro-hero-video-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.cro-hero-video .video-card-meta {
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  color: var(--ds-ink-soft);
}

/* Video container 16:9 + .ds-image-hero recipe */
.cro-hero-video .video-embed-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ds-ink);
  overflow: hidden;
}
.cro-hero-video .hero-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video controls overlay */
.cro-hero-video .video-controls-overlay {
  position: absolute;
  bottom: var(--ds-space-3);
  right: var(--ds-space-3);
  display: flex;
  gap: var(--ds-space-2);
  z-index: 2;
}
.cro-hero-video .video-control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(14,15,12,.70);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--ds-duration-fast) var(--ds-ease-out),
              transform var(--ds-duration-fast) var(--ds-ease-out);
  padding: 0;
}
.cro-hero-video .video-control-btn:hover {
  background: var(--ds-cta);
  transform: scale(1.06);
}
.cro-hero-video .video-control-btn svg {
  width: 18px !important;
  height: 18px !important;
}

/* Centered play button (decorative — when present) */
.cro-hero-video .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--ds-cta);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--ds-shadow-cta);
  transition: transform var(--ds-duration-fast) var(--ds-ease-out),
              background var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--ds-cta-dk);
}
.cro-hero-video .video-play-button svg {
  width: 28px !important;
  height: 28px !important;
}

/* Chapter pills */
.cro-hero-video .video-chapters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ds-space-2);
  padding: var(--ds-space-3) var(--ds-space-4);
  border-bottom: 1px solid var(--ds-rule);
}
.cro-hero-video .chapter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  font-weight: 600;
  background: #fff;
  color: var(--ds-ink);
  border: 1px solid var(--ds-rule);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .chapter-pill:hover { border-color: var(--ds-cta); color: var(--ds-cta); }
.cro-hero-video .chapter-pill.active {
  background: var(--ds-ink);
  color: #fff;
  border-color: var(--ds-ink);
}
.cro-hero-video .chapter-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ds-cta) 18%, white);
  color: var(--ds-cta-dk);
  font-size: var(--ds-fs-eyebrow);
  font-weight: 700;
}
.cro-hero-video .chapter-pill.active .chapter-number { background: var(--ds-cta); color: #fff; }

/* Quick facts (3-up benefit pills) */
.cro-hero-video .video-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ds-space-2);
  padding: var(--ds-space-3) var(--ds-space-4);
}
@media (min-width: 768px) {
  .cro-hero-video .video-quick-facts { grid-template-columns: repeat(3, 1fr); }
}
.cro-hero-video .fact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
  padding: var(--ds-space-2);
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  color: var(--ds-ink-soft);
}
.cro-hero-video .fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ds-trust) 14%, white);
  color: var(--ds-trust);
  flex-shrink: 0;
}
.cro-hero-video .fact-icon svg,
.cro-hero-video .fact-icon img,
.cro-hero-video .fact-svg,
.cro-hero-video .fact-svg svg {
  width: 14px !important;
  height: 14px !important;
}

/* ── Right column: contact + tabs ────────────────────────────── */
.cro-hero-video .hero-contact-card-compact {
  background: #fff;
  border: 1px solid var(--ds-rule);
  border-radius: var(--ds-radius);
  padding: var(--ds-space-4) !important;
  box-shadow: var(--ds-shadow-sm);
}
.cro-hero-video .contact-compact-title {
  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);
  margin: 0 0 var(--ds-space-3);
}
.cro-hero-video .contact-methods-compact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ds-space-2);
}
.cro-hero-video .contact-method-compact {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
  padding: 0.5rem 0.9rem;
  background: color-mix(in srgb, var(--ds-cta) 8%, white);
  color: var(--ds-cta-dk);
  border: 1px solid color-mix(in srgb, var(--ds-cta) 24%, transparent);
  border-radius: 999px;
  text-decoration: none !important;
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  font-weight: 600;
  transition: all var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .contact-method-compact:hover {
  background: var(--ds-cta);
  color: #fff;
  border-color: var(--ds-cta);
}
.cro-hero-video .contact-icon-compact,
.cro-hero-video .contact-svg,
.cro-hero-video .contact-method-compact svg,
.cro-hero-video .contact-method-compact img {
  width: 16px !important;
  height: 16px !important;
}

/* Tabs card */
.cro-hero-video .hero-tabs-card-compact {
  background: #fff;
  border: 1px solid var(--ds-rule);
  border-radius: var(--ds-radius);
  padding: var(--ds-space-4) !important;
  box-shadow: var(--ds-shadow-sm);
}
.cro-hero-video .tabs-pill-nav-compact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ds-space-2);
  margin-bottom: var(--ds-space-4);
  padding-bottom: var(--ds-space-3);
  border-bottom: 1px solid var(--ds-rule);
}
.cro-hero-video .tab-pill-compact {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
  padding: 0.45rem 0.85rem;
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  font-weight: 600;
  background: #fff;
  color: var(--ds-ink-soft);
  border: 1px solid var(--ds-rule);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .tab-pill-compact:hover { border-color: var(--ds-cta); color: var(--ds-cta); }
.cro-hero-video .tab-pill-compact.active,
.cro-hero-video .tab-pill-compact[aria-selected="true"] {
  background: var(--ds-cta);
  color: #fff;
  border-color: var(--ds-cta);
}
.cro-hero-video .pill-icon-compact,
.cro-hero-video .pill-icon-compact svg,
.cro-hero-video .pill-icon-compact img,
.cro-hero-video .tab-svg,
.cro-hero-video .tab-svg svg {
  width: 14px !important;
  height: 14px !important;
}
.cro-hero-video .tab-compact-pane { display: none; }
.cro-hero-video .tab-compact-pane.active { display: block; }

/* Trust score */
.cro-hero-video .trust-score-compact {
  text-align: center;
  margin-bottom: var(--ds-space-3);
}
.cro-hero-video .trust-number-compact {
  font-family: var(--ds-font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.005em;
  color: var(--ds-cta);
  line-height: 1;
}
.cro-hero-video .trust-denom-compact {
  font-size: 0.45em;
  color: var(--ds-ink-mute);
}
.cro-hero-video .trust-bar-compact {
  height: 6px;
  background: var(--ds-rule);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: var(--ds-space-3);
}
.cro-hero-video .trust-bar-fill-compact {
  height: 100%;
  background: linear-gradient(90deg, var(--ds-cta), var(--ds-trust));
  transition: width 1.2s var(--ds-ease-out);
}
.cro-hero-video .trust-badges-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ds-space-2);
  margin-bottom: var(--ds-space-3);
}
.cro-hero-video .trust-badges-compact-grid .trust-badge-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: var(--ds-paper);
  color: var(--ds-ink);
  border: 1px solid var(--ds-rule);
  border-radius: var(--ds-radius-sm);
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .trust-badges-compact-grid .trust-badge-compact:hover {
  border-color: var(--ds-cta);
  background: #fff;
}
.cro-hero-video .badge-icon-compact,
.cro-hero-video .badge-svg,
.cro-hero-video .badge-svg svg {
  width: 14px !important;
  height: 14px !important;
}
.cro-hero-video .verify-btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ds-space-2);
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  font-weight: 700;
  color: #fff;
  background: var(--ds-cta);
  border: none;
  border-radius: var(--ds-radius-sm);
  cursor: pointer;
  transition: background var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .verify-btn-compact:hover { background: var(--ds-cta-dk); }
.cro-hero-video .verify-icon,
.cro-hero-video .verify-svg,
.cro-hero-video .verify-btn-compact svg {
  width: 14px !important;
  height: 14px !important;
}

/* Testimonial carousel (proof tab) */
.cro-hero-video .testimonial-compact-slide { display: none; }
.cro-hero-video .testimonial-compact-slide.active { display: block; }
.cro-hero-video .testimonial-compact-stars { display: inline-flex; gap: 0.15rem; margin-bottom: var(--ds-space-2); }
.cro-hero-video .testimonial-compact-stars svg { width: 12px !important; height: 12px !important; }
.cro-hero-video .testimonial-compact-quote {
  font-family: var(--ds-font-serif);
  font-style: italic;
  font-size: var(--ds-fs-body);
  color: var(--ds-ink);
  line-height: 1.5;
  margin: 0 0 var(--ds-space-2);
}
.cro-hero-video .testimonial-compact-author {
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  color: var(--ds-ink-soft);
  margin: 0;
}
.cro-hero-video .testimonial-compact-author strong { color: var(--ds-ink); }
.cro-hero-video .author-detail-compact { color: var(--ds-ink-mute); }

.cro-hero-video .carousel-compact-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ds-space-2);
  margin-top: var(--ds-space-3);
}
.cro-hero-video .carousel-compact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ds-paper);
  color: var(--ds-ink);
  border: 1px solid var(--ds-rule);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ds-duration) var(--ds-ease-out);
  padding: 0;
}
.cro-hero-video .carousel-compact-btn:hover { border-color: var(--ds-cta); color: var(--ds-cta); }
.cro-hero-video .carousel-compact-btn svg { width: 14px !important; height: 14px !important; }
.cro-hero-video .carousel-compact-counter {
  font-family: var(--ds-font-mono);
  font-size: var(--ds-fs-body-sm);
  color: var(--ds-ink-mute);
}

/* Benefits tab */
.cro-hero-video .benefits-compact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-2);
}
@media (min-width: 576px) {
  .cro-hero-video .benefits-compact-grid { grid-template-columns: 1fr 1fr; }
}
.cro-hero-video .benefit-compact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
  padding: var(--ds-space-2);
  background: var(--ds-paper);
  border: 1px solid var(--ds-rule);
  border-radius: var(--ds-radius-sm);
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  color: var(--ds-ink);
}
.cro-hero-video .benefit-icon-compact,
.cro-hero-video .benefit-svg,
.cro-hero-video .benefit-svg svg {
  width: 16px !important;
  height: 16px !important;
  color: var(--ds-trust);
  stroke: var(--ds-trust);
}

/* VoC card */
.cro-hero-video .hero-voc-card-compact {
  background: var(--ds-ink);
  color: #fff;
  border-radius: var(--ds-radius);
  padding: var(--ds-space-4) !important;
  box-shadow: var(--ds-shadow-md);
}
.cro-hero-video .voc-stars { display: inline-flex; gap: 0.15rem; margin-bottom: var(--ds-space-2); }
.cro-hero-video .voc-stars svg { width: 14px !important; height: 14px !important; }
.cro-hero-video .voc-testimonial-item { display: none; }
.cro-hero-video .voc-testimonial-item.active { display: block; }
.cro-hero-video .voc-quote {
  font-family: var(--ds-font-serif);
  font-style: italic;
  font-size: var(--ds-fs-body-lg);
  line-height: 1.5;
  color: rgba(255,247,227,.95);
  margin: 0 0 var(--ds-space-2);
}
.cro-hero-video .voc-author {
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  color: rgba(255,247,227,.72);
  margin: 0;
}
.cro-hero-video .voc-author strong { color: #fff; display: block; }
.cro-hero-video .voc-progress-dots {
  display: flex;
  gap: var(--ds-space-2);
  margin-top: var(--ds-space-3);
}
.cro-hero-video .voc-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  cursor: pointer;
  transition: background var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .voc-dot.active { background: var(--ds-cta); }

/* ── Cert modal ──────────────────────────────────────────────── */
.cro-hero-video .hero-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.cro-hero-video .hero-modal.active { display: flex; }
.cro-hero-video .modal-overlay {
  position: absolute; inset: 0;
  background: rgba(14,15,12,.65);
}
.cro-hero-video .modal-content {
  position: relative;
  background: #fff;
  color: var(--ds-ink);
  border-radius: var(--ds-radius-lg);
  box-shadow: var(--ds-shadow-lg);
  max-width: 560px;
  max-height: 88vh;
  overflow: auto;
  padding: var(--ds-space-5);
  margin: var(--ds-space-3);
}
.cro-hero-video .modal-close {
  position: absolute;
  top: var(--ds-space-3);
  right: var(--ds-space-3);
  width: 32px;
  height: 32px;
  background: var(--ds-paper);
  border: 1px solid var(--ds-rule);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.cro-hero-video .modal-close svg { width: 16px !important; height: 16px !important; }
.cro-hero-video .modal-header h3 {
  font-family: var(--ds-font-display);
  font-size: var(--ds-fs-display-sm);
  letter-spacing: 0.005em;
  color: var(--ds-ink);
  margin: 0 0 var(--ds-space-3);
  text-transform: uppercase;
}
.cro-hero-video .cert-section {
  margin-bottom: var(--ds-space-4);
}
.cro-hero-video .cert-section h4 {
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-lg);
  font-weight: 700;
  color: var(--ds-ink);
  margin: 0 0 var(--ds-space-2);
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
}
.cro-hero-video .cert-title-icon,
.cro-hero-video .cert-svg,
.cro-hero-video .cert-svg svg {
  width: 18px !important;
  height: 18px !important;
}
.cro-hero-video .cert-details {
  font-size: var(--ds-fs-body-sm);
  color: var(--ds-ink-soft);
  line-height: 1.55;
}
.cro-hero-video .cert-divider {
  height: 1px;
  background: var(--ds-rule);
  margin: var(--ds-space-3) 0;
}
.cro-hero-video .cert-actions a.cert-link {
  color: var(--ds-cta);
  font-weight: 600;
  text-decoration: none;
}
.cro-hero-video .cert-verified {
  display: inline-flex;
  align-items: center;
  gap: var(--ds-space-2);
  margin: var(--ds-space-3) 0;
  padding: var(--ds-space-2) var(--ds-space-3);
  background: color-mix(in srgb, var(--ds-trust) 12%, white);
  color: var(--ds-trust-dk);
  font-family: var(--ds-font-body);
  font-size: var(--ds-fs-body-sm);
  font-weight: 600;
  border-radius: var(--ds-radius-sm);
}
.cro-hero-video .verified-icon,
.cro-hero-video .verified-svg,
.cro-hero-video .verified-svg svg {
  width: 16px !important;
  height: 16px !important;
}
.cro-hero-video .modal-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--ds-cta);
  color: #fff;
  border-radius: var(--ds-radius-sm);
  font-weight: 700;
  text-decoration: none !important;
  transition: background var(--ds-duration) var(--ds-ease-out);
}
.cro-hero-video .modal-cta-btn:hover { background: var(--ds-cta-dk); }

/* Universal icon hard-cap */
.cro-hero-video svg, .cro-hero-video img { max-width: 100%; }

/* Mobile tightening */
@media (max-width: 575px) {
  .cro-hero-video .video-card-header { padding: var(--ds-space-3); }
  .cro-hero-video .video-chapters,
  .cro-hero-video .video-quick-facts {
    padding: var(--ds-space-3);
  }
  .cro-hero-video .hero-contact-card-compact,
  .cro-hero-video .hero-tabs-card-compact,
  .cro-hero-video .hero-voc-card-compact {
    padding: var(--ds-space-3) !important;
  }
}
