/* Data Cleanup animation — slide 2 (1280×720 stage, matches campaign slide) */
.cleanup-slide {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cleanup-slide.is-paused .stage,
.cleanup-slide.is-paused .stage * {
  animation-play-state: paused !important;
}

.cleanup-slide.is-paused::after {
  content: 'Paused · tap to resume';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 10, 15, 0.72);
  border: 1px solid rgba(83, 189, 235, 0.35);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.cleanup-slide .stage-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cleanup-slide .stage {
  width: 1280px;
  height: 720px;
  flex-shrink: 0;
  transform-origin: center center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.cleanup-slide .scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.55s ease, visibility 0.55s;
}

.cleanup-slide .scene:not(.active) {
  transition: opacity 0s, visibility 0s;
}

.cleanup-slide .scene.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.cleanup-slide .cleanup-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── Scene 1: Upload ── */
.cleanup-slide .cl-brand {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: rgba(212, 175, 55, 0.85);
  margin-bottom: 14px;
  font-weight: 600;
}

.cleanup-slide .upload-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #faf8f5 0%, #d4af37 50%, #53bdeb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  line-height: 1.05;
}

.cleanup-slide .upload-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.cleanup-slide .upload-card {
  position: relative;
  width: min(520px, 92%);
  padding: 28px 32px 32px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(83, 189, 235, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: perspective(900px) rotateX(4deg);
  transform-style: preserve-3d;
}

.cleanup-slide .upload-card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  pointer-events: none;
  animation: clShine 4s ease-in-out infinite;
}

@keyframes clShine {
  0%, 100% { opacity: 0.3; transform: translateX(-30%); }
  50% { opacity: 0.8; transform: translateX(30%); }
}

.cleanup-slide .upload-area-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.cleanup-slide .upload-area-field {
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  color: #53bdeb;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.cleanup-slide .upload-drop {
  position: relative;
  border: 2px dashed rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  margin-bottom: 22px;
}

.cleanup-slide .upload-drop.file-in {
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.15);
  transform: scale(1.02);
}

.cleanup-slide .upload-drop-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(37,211,102,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.cleanup-slide .upload-drop.file-in .upload-drop-glow { opacity: 1; }

.cleanup-slide .excel-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.cleanup-slide .upload-drop.file-in .excel-icon {
  transform: translateY(-8px) scale(1.08);
  animation: clFileBounce 0.6s ease;
}

@keyframes clFileBounce {
  0% { transform: translateY(20px) scale(0.8); opacity: 0; }
  60% { transform: translateY(-10px) scale(1.1); }
  100% { transform: translateY(-8px) scale(1.08); opacity: 1; }
}

.cleanup-slide .upload-drop-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.cleanup-slide .upload-file-name {
  font-size: 1rem;
  font-weight: 600;
  color: #25D366;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.cleanup-slide .upload-file-name.show {
  opacity: 1;
  transform: translateY(0);
}

.cleanup-slide .upload-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

.cleanup-slide .upload-btn {
  position: relative;
  border: none;
  background: none;
  cursor: default;
  padding: 0;
  width: 100%;
}

.cleanup-slide .upload-btn-face {
  display: block;
  width: 100%;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(145deg, #53bdeb 0%, #2d8fc4 40%, #d4af37 100%);
  color: #0a0a0f;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow:
    0 8px 28px rgba(83, 189, 235, 0.35),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}

.cleanup-slide .upload-btn-gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  pointer-events: none;
}

.cleanup-slide .upload-btn.pressed .upload-btn-face {
  transform: scale(0.96);
  box-shadow: 0 4px 16px rgba(83, 189, 235, 0.25);
}

.cleanup-slide .upload-ripple {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

.cleanup-slide .upload-ripple.show {
  animation: clRipple 0.6s ease forwards;
}

@keyframes clRipple {
  to { opacity: 0; transform: scale(1.8); }
}

/* ── Scene 2: Processing ── */
.cleanup-slide .process-panel {
  width: min(680px, 94%);
  text-align: center;
}

.cleanup-slide .process-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.8);
  margin-bottom: 18px;
}

.cleanup-slide .process-glass {
  position: relative;
  padding: 32px 36px 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(10,12,20,0.6) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: perspective(800px) rotateX(3deg);
}

.cleanup-slide .process-shine {
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.cleanup-slide .process-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.cleanup-slide .process-ring-shell {
  position: relative;
  width: 160px;
  height: 160px;
}

.cleanup-slide .process-ring-svg {
  width: 160px;
  height: 160px;
  transform: rotate(-90deg);
}

.cleanup-slide .process-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 6;
}

.cleanup-slide .process-ring-fg {
  fill: none;
  stroke: url(#clProgGrad);
  stroke-width: 6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(83,189,235,0.5));
}

.cleanup-slide .process-counter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #faf8f5;
  text-shadow: 0 0 30px rgba(83,189,235,0.3);
}

.cleanup-slide .process-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.cleanup-slide .process-steps {
  text-align: left;
  margin-bottom: 22px;
  padding: 0 8px;
}

.cleanup-slide .process-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  padding: 6px 0;
  transition: color 0.3s;
}

.cleanup-slide .step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.cleanup-slide .process-step.on {
  color: #53bdeb;
  font-weight: 600;
}

.cleanup-slide .process-step.on .step-dot {
  background: #53bdeb;
  box-shadow: 0 0 12px rgba(83,189,235,0.6);
  animation: clPulse 0.8s ease infinite;
}

.cleanup-slide .process-step.done {
  color: rgba(37, 211, 102, 0.75);
}

.cleanup-slide .process-step.done .step-dot {
  background: #25D366;
}

@keyframes clPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.cleanup-slide .process-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  margin-bottom: 14px;
}

.cleanup-slide .process-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #53bdeb, #d4af37);
  position: relative;
  transition: width 0.05s linear;
}

.cleanup-slide .process-head {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgba(255,255,255,0.8);
}

.cleanup-slide .process-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cleanup-slide .process-pct {
  font-size: 1.4rem;
  font-weight: 700;
  color: #d4af37;
}

.cleanup-slide .process-status {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.cleanup-slide .process-status.done {
  color: #25D366;
  border-color: rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.08);
}

/* ── Scene 3: Stats ── */
.cleanup-slide .stats-scene-title {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.8);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(12px);
}

.cleanup-slide .stats-scene-title.show {
  animation: clFadeUp 0.6s ease forwards;
}

.cleanup-slide .cl-stats-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  perspective: 900px;
}

.cleanup-slide .cl-stat-card {
  width: 168px;
  opacity: 0;
  transform: translateY(30px) rotateX(12deg);
  transform-style: preserve-3d;
}

.cleanup-slide .cl-stat-card.pop {
  animation: clStatPop 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.cleanup-slide .cl-stat-card:nth-child(1).pop { animation-delay: 0s; }
.cleanup-slide .cl-stat-card:nth-child(2).pop { animation-delay: 0.1s; }
.cleanup-slide .cl-stat-card:nth-child(3).pop { animation-delay: 0.2s; }
.cleanup-slide .cl-stat-card:nth-child(4).pop { animation-delay: 0.3s; }

@keyframes clStatPop {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.cleanup-slide .cl-stat-card.pulse .cl-stat-value {
  animation: clStatPulse 0.35s ease;
}

@keyframes clStatPulse {
  50% { transform: scale(1.08); }
}

.cleanup-slide .cl-stat-inner {
  position: relative;
  padding: 22px 16px 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.09) 0%, rgba(0,0,0,0.4) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  overflow: hidden;
}

.cleanup-slide .cl-stat-glow {
  position: absolute;
  inset: -20%;
  opacity: 0.4;
  pointer-events: none;
}

.cleanup-slide .cl-stat-card.total .cl-stat-glow { background: radial-gradient(circle, rgba(83,189,235,0.2), transparent 70%); }
.cleanup-slide .cl-stat-card.clean .cl-stat-glow { background: radial-gradient(circle, rgba(37,211,102,0.2), transparent 70%); }
.cleanup-slide .cl-stat-card.fixed .cl-stat-glow { background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%); }
.cleanup-slide .cl-stat-card.dupes .cl-stat-glow { background: radial-gradient(circle, rgba(239,68,68,0.15), transparent 70%); }

.cleanup-slide .cl-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cleanup-slide .cl-stat-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.cleanup-slide .cl-stat-card.total .cl-stat-value { color: #53bdeb; }
.cleanup-slide .cl-stat-card.clean .cl-stat-value { color: #25D366; }
.cleanup-slide .cl-stat-card.fixed .cl-stat-value { color: #d4af37; }
.cleanup-slide .cl-stat-card.dupes .cl-stat-value { color: #f87171; }

.cleanup-slide .cl-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.cleanup-slide .cl-mini-stats {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  opacity: 0;
}

.cleanup-slide .cl-mini-stats.show {
  animation: clFadeUp 0.5s ease forwards;
}

.cleanup-slide .cl-mini-stats strong {
  color: #faf8f5;
  font-weight: 700;
}

.cleanup-slide .cl-export-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.35);
  color: #25D366;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── Scene 4: Validation table ── */
.cleanup-slide .validation-panel {
  width: min(920px, 96%);
}

.cleanup-slide .validation-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.8);
  margin-bottom: 14px;
  text-align: center;
  opacity: 0;
}

.cleanup-slide #clScene4.active .validation-label { animation: clFadeUp 0.5s ease forwards; }

.cleanup-slide .validation-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  opacity: 0;
}

.cleanup-slide .validation-filters.show { animation: clFadeUp 0.5s ease 0.1s forwards; }

.cleanup-slide .cl-filter {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.cleanup-slide .cl-filter.on {
  color: #53bdeb;
  border-color: rgba(83,189,235,0.4);
  background: rgba(83,189,235,0.1);
}

.cleanup-slide .validation-table-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.35) 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: perspective(900px) rotateX(2deg);
}

.cleanup-slide .validation-table-head,
.cleanup-slide .validation-row {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr 1.1fr 0.7fr;
  gap: 8px;
  padding: 12px 18px;
  align-items: center;
  font-size: 0.78rem;
}

.cleanup-slide .validation-table-head {
  background: rgba(212, 175, 55, 0.08);
  color: rgba(212, 175, 55, 0.9);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.cleanup-slide .validation-row {
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateX(-20px);
}

.cleanup-slide .validation-row.in {
  animation: clRowIn 0.45s ease forwards;
}

@keyframes clRowIn {
  to { opacity: 1; transform: translateX(0); }
}

.cleanup-slide .v-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.cleanup-slide .v-status.valid {
  background: rgba(37,211,102,0.15);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.35);
}

.cleanup-slide .v-status.fixed {
  background: rgba(212,175,55,0.15);
  color: #d4af37;
  border: 1px solid rgba(212,175,55,0.35);
}

.cleanup-slide .v-status.invalid {
  background: rgba(239,68,68,0.12);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
}

/* ── Scene 5: Export ── */
.cleanup-slide .export-panel {
  text-align: center;
  width: min(780px, 94%);
}

.cleanup-slide .export-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #faf8f5;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(16px);
}

.cleanup-slide .export-headline span {
  background: linear-gradient(135deg, #53bdeb, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cleanup-slide .export-headline.show { animation: clFadeUp 0.7s ease forwards; }

.cleanup-slide .export-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  opacity: 0;
}

.cleanup-slide .export-sub.show { animation: clFadeUp 0.7s ease 0.15s forwards; }

.cleanup-slide .export-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
}

.cleanup-slide .export-actions.show { animation: clFadeUp 0.5s ease 0.25s forwards; }

.cleanup-slide .export-btn {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.cleanup-slide .export-btn.pop {
  animation: clBtnPop 0.5s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}

@keyframes clBtnPop {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cleanup-slide .export-btn-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.35) 100%);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.2s;
}

.cleanup-slide .export-btn-inner svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cleanup-slide .export-btn.excel .export-btn-inner {
  border-color: rgba(37,211,102,0.35);
  color: #25D366;
}

.cleanup-slide .export-btn.csv .export-btn-inner {
  border-color: rgba(83,189,235,0.35);
  color: #53bdeb;
}

.cleanup-slide .export-btn.push .export-btn-inner {
  border-color: rgba(212,175,55,0.4);
  color: #d4af37;
  background: linear-gradient(160deg, rgba(212,175,55,0.12) 0%, rgba(0,0,0,0.35) 100%);
}

.cleanup-slide .export-ready-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.35);
  color: #25D366;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: scale(0.9);
}

.cleanup-slide .export-ready-badge.show {
  animation: clBadgeIn 0.55s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}

.cleanup-slide .export-ready-badge svg {
  width: 18px;
  height: 18px;
  stroke: #25D366;
  fill: none;
  stroke-width: 2.5;
}

@keyframes clFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes clBadgeIn {
  to { opacity: 1; transform: scale(1); }
}

/* SVG gradient def (injected via JS fallback — define in HTML) */
.cleanup-slide .stage svg defs { display: none; }

/* ── Mobile ── */
@media (max-width: 767px) {
  .cleanup-slide.is-mobile-layout {
    align-items: stretch;
  }

  .cleanup-slide.is-mobile-layout .stage-wrap {
    align-items: stretch;
  }

  .cleanup-slide.is-mobile-layout .stage {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
  }

  .cleanup-slide.is-mobile-layout .scene {
    padding: 10px 12px;
    box-sizing: border-box;
  }

  .cleanup-slide.is-mobile-layout .upload-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .cleanup-slide.is-mobile-layout .upload-card,
  .cleanup-slide.is-mobile-layout .process-glass,
  .cleanup-slide.is-mobile-layout .validation-table-wrap {
    transform: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cleanup-slide.is-mobile-layout .cl-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .cleanup-slide.is-mobile-layout .cl-stat-card {
    width: 100%;
    transform: none !important;
  }

  .cleanup-slide.is-mobile-layout .cl-stat-value {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .cleanup-slide.is-mobile-layout .validation-table-head,
  .cleanup-slide.is-mobile-layout .validation-row {
    grid-template-columns: 1fr 0.5fr 0.8fr;
    font-size: 0.68rem;
    padding: 10px 12px;
  }

  .cleanup-slide.is-mobile-layout .v-landlord,
  .cleanup-slide.is-mobile-layout .validation-table-head span:nth-child(3) {
    display: none;
  }

  .cleanup-slide.is-mobile-layout .export-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cleanup-slide.is-mobile-layout .export-headline {
    font-size: clamp(1.75rem, 7.5vw, 2.2rem);
  }

  .cleanup-slide.is-mobile-layout .process-steps {
    font-size: 0.72rem;
  }
}
