*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: #ffe800;
  padding: 10px 16px;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}
.ann-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  color: #0f0f0f;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  animation: annTicker 28s linear infinite;
}
.ann-inner:hover {
  animation-play-state: paused;
}
.ann-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e31b23;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.ann-sep {
  color: rgba(0, 0, 0, 0.3);
}
@keyframes annTicker {
  from {
    transform: translateX(20%);
  }
  to {
    transform: translateX(-80%);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.site-header__logo {
    display: block;
    width: auto;
    height: 74px;
    object-fit: contain;
}
.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e31b23;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.12s;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.25);
}
.header-btn:hover {
  background: #b8141b;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero-section {
  position: relative;
  background: linear-gradient(150deg, #07162f 0%, #1a0006 45%, #0d0d22 100%);
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(227, 27, 35, 0.1) 0%,
    transparent 70%
  );
}
.orb-2 {
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 232, 0, 0.05) 0%,
    transparent 70%
  );
}

.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 27, 35, 0.15);
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 800;
  color: #fca5a5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e31b23;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero-h1 {
  font-size: clamp(1rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero-body {
  font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* ── CTA BUTTON ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e31b23;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.12s,
    box-shadow 0.15s;
  box-shadow: 0 6px 24px rgba(227, 27, 35, 0.28);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.cta-btn:hover {
  background: #b8141b;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(227, 27, 35, 0.38);
}
.cta-btn:active {
  transform: scale(0.97);
}

/* ── VIDEO SHELL ── */
.video-shell {
  position: relative;
}
.video-accent {
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(227, 27, 35, 0.4),
    rgba(255, 232, 0, 0.15)
  );
  z-index: 0;
  filter: blur(2px);
}
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  max-height: 420px;
  width: 100%;
  aspect-ratio: 1;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Video overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition:
    opacity 0.3s,
    background 0.2s;
  padding: 24px;
}
.video-overlay:hover {
  background: rgba(0, 0, 0, 0.55);
}
.video-overlay.hidden-ov {
  opacity: 0;
  pointer-events: none;
}

.vid-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.play-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e31b23;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 12px rgba(227, 27, 35, 0.18),
    0 8px 32px rgba(227, 27, 35, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  flex-shrink: 0;
}
.video-overlay:hover .play-ring {
  transform: scale(1.08);
  box-shadow:
    0 0 0 18px rgba(227, 27, 35, 0.12),
    0 12px 48px rgba(227, 27, 35, 0.55);
}

/* Custom video controls */
.vid-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 10px 12px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.vid-controls.visible {
  opacity: 1;
}

.vid-progress-wrap {
  margin-bottom: 8px;
}
.vid-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  outline: none;
  --vp: 0%;
  background: linear-gradient(
    to right,
    #e31b23 var(--vp),
    rgba(255, 255, 255, 0.25) var(--vp)
  );
}
.vid-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.vid-control-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vid-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  cursor: pointer;
  padding: 3px 4px;
  transition: color 0.15s;
}
.vid-btn:hover {
  color: #fff;
}
.vid-time {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  font-variant-numeric: tabular-nums;
  min-width: 80px;
}

/* Founder strip */
.founder-strip {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 16px;
}
.founder-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e31b23;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero quote strip */
.hero-quote-strip {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 14px 16px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: #111827;
  padding: 28px 20px;
}
.stat-block {
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-lbl {
  color: #9ca3af;
  font-size: 13px;
  margin-top: 5px;
  font-weight: 500;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 14px 20px;
}
.trust-chip-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
}

/* ── SECTION TYPOGRAPHY ── */
.eyebrow {
  color: #e31b23;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.section-h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: #0f0f0f;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  color: #6b7280;
  font-size: 16px;
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ── RESULT CARDS ── */
.result-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 24px rgba(7, 22, 47, 0.07);
}

.rev-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
  color: #6b7280;
}
.rev-row:last-child {
  border-bottom: none;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e31b23;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.maths-num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.maths-lbl {
  color: #6b7280;
  font-size: 12px;
  margin-top: 5px;
}

/* ── PILLAR CARDS ── */
.pillar-card {
  background: #f6f8fb;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 28px 24px;
  transition:
    box-shadow 0.2s,
    transform 0.15s;
}
.pillar-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(227, 27, 35, 0.1);
  color: #e31b23;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.pillar-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 8px;
}
.pillar-body {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
}

/* ── CASE STUDY CARDS ── */
.cs-quote {
  border-left: 3px solid #e31b23;
  padding-left: 14px;
  font-style: italic;
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
}
.cs-img-panel {
  min-height: 280px;
}
.cs-big-stat {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.cs-big-lbl {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.cs-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.cs-card-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  gap: 8px;
}
.cs-occ-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  padding: 3px 9px;
  border-radius: 100px;
}
.cs-card-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 12px;
}
.cs-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}
.cs-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 12px;
  color: #6b7280;
}
.cs-row:last-child {
  border-bottom: none;
}
.cs-mini-quote {
  font-size: 11px;
  color: #374151;
  font-style: italic;
  line-height: 1.6;
  background: #f9fafb;
  border-radius: 8px;
  padding: 10px 12px;
}
.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
}

.metric-pill-lg {
  background: #f6f8fb;
  border-radius: 10px;
  padding: 10px 12px;
}
.metric-val-lg {
  font-size: 15px;
  font-weight: 900;
  color: #0f0f0f;
  line-height: 1;
}
.metric-label {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── VIDEO TESTIMONIAL CAROUSEL ── */
.tc-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.tc-wrap:active {
  cursor: grabbing;
}
.tc-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tc-card {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 0;
}
@media (max-width: 1023px) {
  .tc-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 639px) {
  .tc-card {
    flex: 0 0 100%;
  }
}

.tc-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 2px solid rgba(227, 27, 35, 0.25);
  aspect-ratio: 9/16;
}
.tc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tc-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 20px;
  overflow: hidden;
}
#tc-ov-0 {
  background-image: url("https://marketyourdaycare.com/assets/frontend/images/success-stories/mindchamps.png");
}
#tc-ov-1 {
  background-image: url("https://marketyourdaycare.com/assets/frontend/images/success-stories/montessori.jpg");
}

#tc-ov-2 {
  background-image: url("https://marketyourdaycare.com/assets/frontend/images/success-stories/springkids.webp");
}

.tc-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 0, 8, 0.3) 0%,
    rgba(15, 15, 30, 0.6) 100%
  );
  z-index: 0;
}
.tc-overlay.playing {
  opacity: 0;
  pointer-events: none;
}

.tc-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tc-play-wrap {
  margin-bottom: 16px;
}
.tc-play-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e31b23;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 10px rgba(227, 27, 35, 0.18),
    0 6px 24px rgba(227, 27, 35, 0.45);
  transition: transform 0.2s;
}
.tc-overlay:hover .tc-play-ring {
  transform: scale(1.08);
}

.tc-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  margin-top: auto;
}
.tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-name {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
}
.tc-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}
.tc-stars {
  color: #f59e0b;
  font-size: 12px;
  margin-top: 2px;
  letter-spacing: 2px;
}

.tc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 6;
}
.badge-green {
  background: #16a34a;
}
.badge-red {
  background: #e31b23;
}

.tc-duration {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 9px;
  border-radius: 100px;
  z-index: 6;
}
.tc-dur-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e31b23;
  flex-shrink: 0;
}

.tc-bottom-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    transparent 100%
  );
  padding: 32px 16px 16px;
  z-index: 6;
}
.tc-bottom-quote p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 8px;
}
.tc-vimeo-note {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
}

/* Testimonial in-video controls */
.tc-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 8px 12px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}
.tc-ctrl-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  cursor: pointer;
  padding: 3px 5px;
}
.tc-prog {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(
    to right,
    #e31b23 var(--tcp, 0%),
    rgba(255, 255, 255, 0.25) var(--tcp, 0%)
  );
  vertical-align: middle;
}
.tc-prog::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.tc-controls.visible-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Carousel nav */
.tc-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition:
    background 0.15s,
    transform 0.12s;
}
#tc-prev {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}
#tc-prev:hover {
  background: #e31b23;
  color: #fff;
}
#tc-next {
  background: #e31b23;
  color: #fff;
}
#tc-next:hover {
  background: #b8141b;
}
.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  padding: 0;
}
.tc-dot.active {
  background: #e31b23;
  transform: scale(1.3);
}

/* ── NOT FOR / IS FOR ── */
.not-for-item,
.is-for-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
}
.not-for-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #374151;
}
.not-x {
  color: #e31b23;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.is-for-item {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.is-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── STRUGGLE CARDS ── */
.struggle-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: #fff0f0;
  border: 1px solid #fecaca;
  border-radius: 14px;
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
}

/* ── STEP CARDS ── */
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e31b23;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-title {
  font-weight: 800;
  color: #0f0f0f;
  font-size: 16px;
  margin-bottom: 8px;
}
.step-body {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #0f0f0f;
  text-align: left;
  gap: 12px;
  transition: background 0.15s;
}
.faq-q:hover {
  background: #f9fafb;
}
.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #9ca3af;
  font-size: 13px;
}
.faq-icon.open {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open {
  max-height: 500px;
}
.faq-a p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.75;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}

/* ── FINAL CTA SECTION ── */
.final-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e31b23 0%, #b8141b 100%);
}

/* ── MOBILE STICKY ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 2px solid #e5e7eb;
  padding: 12px 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .site-header__logo {
      height: 48px;
  }
  .mobile-sticky {
    display: block;
  }
  .cta-btn {
    transition: none;
    font-size: 12px;
    padding: 12px 20px;
  }
  .trust-eyebrow {
    font-size: 8px;
  }
  .cs-quote {
    font-size: 12px;
  }
  .metric-pill-lg {
    padding: 10px;
  }
  .metric-val-lg {
    font-size: 13px;
  }
  .metric-label {
    font-size: 8px;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .logos-track {
    animation: none;
  }
  .ann-inner {
    animation: none;
  }
  .cta-btn {
    transition: none;
  }
  .play-ring {
    transition: none;
  }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
