﻿/* ============================================================
   URBot.net Interactive Marketing Slideshow - guide.css
   Design System:
     Brand orange:  #FF6B35
     Dark bg:       #1a1a2e / #16213e
     Light bg:      #ffffff / #f8fafc
     Primary blue:  #2563eb
     Success green: #10b981
     Fonts: Segoe UI, Roboto, Arial, sans-serif
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  overflow: hidden;
  background: #1a1a2e;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* === LOGO === */
.urbot-logo {
  position: fixed; top: 24px; left: 28px; z-index: 200;
  display: flex; align-items: center; gap: 6px;
  font-size: 1.2rem; font-weight: 700; color: #ffffff;
  letter-spacing: -0.01em; text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  pointer-events: none; user-select: none;
}
.urbot-logo .logo-dot {
  display: inline-block; width: 10px; height: 10px;
  background: #FF6B35; border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,107,53,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(255,107,53,0.7); }
  50% { box-shadow: 0 0 18px rgba(255,107,53,1), 0 0 30px rgba(255,107,53,0.4); }
}

/* === SLIDESHOW CONTAINER === */
.slideshow-container {
  height: 100vh; overflow-y: scroll;
  scroll-snap-type: y mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.slideshow-container::-webkit-scrollbar { display: none; }

/* === INDIVIDUAL SLIDES === */
.slide {
  height: 100vh; scroll-snap-align: start; scroll-snap-stop: always;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  position: relative; overflow: hidden; padding: 80px 60px 60px;
}

/* === PROGRESS BAR === */
.slide-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.1); z-index: 200;
}
.slide-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #FF6B35 0%, #e879f9 100%);
  transition: width 0.4s ease; border-radius: 0 3px 3px 0;
}

/* ============================================================
   SLIDE 1 - HERO (dark)
   ============================================================ */
.slide-1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: #ffffff; text-align: center;
}
.slide-1::before {
  content: ''; position: absolute; top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none; animation: driftOrb1 18s ease-in-out infinite alternate;
}
.slide-1::after {
  content: ''; position: absolute; bottom: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none; animation: driftOrb2 22s ease-in-out infinite alternate;
}
@keyframes driftOrb1 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(80px,60px) scale(1.15); }
}
@keyframes driftOrb2 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-60px,-40px) scale(1.1); }
}
.slide-1 .slide-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; max-width: 860px;
}
.hero-mascot {
  width: 180px; height: 180px; position: relative;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(255,107,53,0.35));
}
.hero-mascot img, .hero-mascot svg { width: 100%; height: 100%; object-fit: contain; }
.hero-mascot .mascot-arm {
  position: absolute; top: 30%; right: -12px; width: 28px; height: 28px;
  transform-origin: bottom left; animation: wave 2.4s ease-in-out infinite;
}
.hero-headline { font-size: 3.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.hero-headline .gradient-text {
  background: linear-gradient(90deg, #FF6B35 0%, #e879f9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subhead {
  font-size: 1.25rem; font-weight: 400;
  color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.6;
}
.badge-float-group { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.badge-float {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px; font-size: 0.875rem; font-weight: 600;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff; backdrop-filter: blur(8px);
  opacity: 0; animation: badgeFloat 0.5s ease forwards; white-space: nowrap;
}
.badge-float:nth-child(1) { animation-delay: 0.3s; }
.badge-float:nth-child(2) { animation-delay: 0.5s; }
.badge-float:nth-child(3) { animation-delay: 0.7s; }
.badge-float:nth-child(4) { animation-delay: 0.9s; }
.badge-float:nth-child(5) { animation-delay: 1.1s; }
.badge-float:nth-child(6) { animation-delay: 1.3s; }
.badge-float .badge-icon { font-size: 1rem; }

/* ============================================================
   SLIDE 2 - PROBLEM (split grid)
   ============================================================ */
.slide-2 { display: grid; grid-template-columns: 1fr 1fr; padding: 0; height: 100vh; }
.before-side, .after-side {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px; position: relative; overflow: hidden;
}
.before-side { background: #f8fafc; color: #1a1a2e; }
.after-side { background: linear-gradient(150deg, #1a1a2e 0%, #16213e 100%); color: #ffffff; }
.slide-2-divider {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, transparent 0%, #FF6B35 30%, #FF6B35 70%, transparent 100%);
  transform: translateX(-50%); z-index: 5; pointer-events: none;
}
.slide-2-divider::before {
  content: 'VS'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #FF6B35; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(255,107,53,0.5);
}
.split-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px;
}
.before-side .split-label { color: #94a3b8; }
.after-side .split-label { color: #FF6B35; }
.split-title { font-size: 2rem; font-weight: 800; margin-bottom: 32px; line-height: 1.2; }
.before-side .split-title { color: #1a1a2e; }
.after-side .split-title { color: #ffffff; }
.problem-list, .solution-list {
  list-style: none; display: flex; flex-direction: column; gap: 16px;
}
.problem-list li, .solution-list li {
  display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; line-height: 1.5;
}
.problem-list li .bullet {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(239,68,68,0.1); border: 2px solid #ef4444;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #ef4444; font-weight: 800; margin-top: 1px;
}
.problem-list li .bullet::before { content: 00D7; }
.solution-list li .bullet {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(16,185,129,0.15); border: 2px solid #10b981;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #10b981; font-weight: 800; margin-top: 1px;
}
.solution-list li .bullet::before { content: 2713; }
.problem-list li .item-text { color: #475569; }
.solution-list li .item-text { color: rgba(255,255,255,0.88); }
.stat-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 72px;
  background: linear-gradient(90deg, #FF6B35 0%, #e25a2b 100%);
  display: flex; align-items: center; justify-content: center; gap: 60px; z-index: 10;
}
.stat-bar-item { display: flex; flex-direction: column; align-items: center; color: #ffffff; }
.stat-bar-value { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.stat-bar-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.88;
}
.stat-bar-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.3); }

/* ============================================================
   SLIDE 3 - WHAT IS URBOT (light)
   ============================================================ */
.slide-3 { background: #ffffff; color: #1a1a2e; }
.slide-3 .slide-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 48px; width: 100%; max-width: 960px;
}
.slide-3 .section-label { color: #FF6B35; }
.slide-3 .section-title {
  font-size: 2.6rem; font-weight: 800; text-align: center;
  line-height: 1.15; color: #1a1a2e;
}
.slide-3 .section-sub {
  font-size: 1.1rem; color: #64748b; text-align: center;
  max-width: 520px; line-height: 1.6;
}
.orbit-container { position: relative; width: 400px; height: 400px; flex-shrink: 0; }
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35 0%, #e25a2b 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: #ffffff;
  text-align: center; letter-spacing: -0.01em; line-height: 1.3;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4),
    0 0 0 12px rgba(255,107,53,0.1),
    0 0 0 24px rgba(255,107,53,0.05);
  z-index: 10;
}
.orbit-ring {
  position: absolute; top: 50%; left: 50%; width: 320px; height: 320px;
  border: 1.5px dashed rgba(255,107,53,0.25); border-radius: 50%;
  transform: translate(-50%,-50%); animation: orbit 20s linear infinite;
}
.orbit-ring-inner {
  position: absolute; top: 50%; left: 50%; width: 200px; height: 200px;
  border: 1.5px dashed rgba(37,99,235,0.2); border-radius: 50%;
  transform: translate(-50%,-50%); animation: orbit 14s linear infinite reverse;
}
.orbit-bot {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: #ffffff; border: 2px solid rgba(255,107,53,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  animation: counter-orbit 20s linear infinite;
  top: calc(50% - 24px + var(--oy, 0px));
  left: calc(50% - 24px + var(--ox, 0px));
}
.orbit-bot:nth-child(1) { --ox: 160px;  --oy: 0px; }
.orbit-bot:nth-child(2) { --ox: 80px;   --oy: 138.6px; }
.orbit-bot:nth-child(3) { --ox: -80px;  --oy: 138.6px; }
.orbit-bot:nth-child(4) { --ox: -160px; --oy: 0px; }
.orbit-bot:nth-child(5) { --ox: -80px;  --oy: -138.6px; }
.orbit-bot:nth-child(6) { --ox: 80px;   --oy: -138.6px; }
.orbit-bot-label {
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; font-weight: 700; color: #475569;
  white-space: nowrap; letter-spacing: 0.04em;
}
.three-pillars { display: flex; flex-direction: row; gap: 20px; width: 100%; max-width: 780px; }
.pillar-card {
  flex: 1; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 16px;
  padding: 28px 24px; text-align: center; cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: #FF6B35;
}
.pillar-icon  { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.pillar-title { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.pillar-desc  { font-size: 0.85rem; color: #64748b; line-height: 1.5; }

/* ============================================================
   SLIDE 4 - BOT FAMILIES (dark)
   ============================================================ */
.slide-4 {
  background: linear-gradient(150deg, #16213e 0%, #1a1a2e 100%);
  color: #ffffff; align-items: flex-start; overflow-y: auto;
}
.slide-4 .slide-content {
  width: 100%; max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.slide-4 .section-label { color: #FF6B35; }
.slide-4 .section-title { font-size: 2.2rem; font-weight: 800; color: #ffffff; line-height: 1.2; }
.family-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.family-card {
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 22px 20px; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative; overflow: hidden;
}
.family-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--family-color, #FF6B35);
  opacity: 0; transition: opacity 0.25s ease; border-radius: inherit;
}
.family-card:hover::before, .family-card.active::before { opacity: 0.07; }
.family-card:hover {
  border-color: var(--family-color, #FF6B35); transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 0 1px var(--family-color, #FF6B35);
}
.family-card.active {
  border-color: #FF6B35; transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(255,107,53,0.25);
}
.family-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.family-icon  { font-size: 1.8rem; flex-shrink: 0; }
.family-name  { font-size: 1rem; font-weight: 700; color: #ffffff; }
.family-count { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.bot-previews { display: flex; flex-direction: row; gap: 6px; position: relative; z-index: 1; }
.bot-preview-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; overflow: hidden; flex-shrink: 0;
  transition: transform 0.2s ease;
}
.family-card:hover .bot-preview-avatar { transform: scale(1.08); }
.bot-preview-more {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: rgba(255,255,255,0.5); font-weight: 600;
}
.family-detail {
  display: none; overflow: hidden;
  background: rgba(255,107,53,0.05); border: 1.5px solid rgba(255,107,53,0.25);
  border-radius: 14px; padding: 0; margin-top: -8px;
}
.family-detail.open { display: block; animation: slideDown 0.3s ease forwards; }
.family-detail-inner { padding: 24px; display: flex; gap: 32px; align-items: flex-start; }
.family-detail-info { flex: 1; }
.family-detail-title { font-size: 1.1rem; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
.family-detail-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 16px;
}
.family-detail-bots { display: flex; flex-wrap: wrap; gap: 8px; }
.family-detail-bot-chip {
  padding: 4px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem; color: rgba(255,255,255,0.85); cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.family-detail-bot-chip:hover {
  background: rgba(255,107,53,0.2); border-color: #FF6B35; color: #ffffff;
}
.family-detail-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  background: #FF6B35; color: #ffffff;
  font-size: 0.875rem; font-weight: 700; border: none; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease; margin-top: 16px;
}
.family-detail-cta:hover { background: #e25a2b; transform: translateY(-1px); }

/* ============================================================
   SLIDE 5 - HOW THEY WORK (dark)
   ============================================================ */
.slide-5 {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  color: #ffffff;
}
.slide-5 .slide-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 36px; max-width: 900px; width: 100%;
}
.slide-5 .section-label { color: #FF6B35; }
.slide-5 .section-title { font-size: 2.4rem; font-weight: 800; text-align: center; }
.network-diagram {
  width: 100%; max-width: 680px; height: 200px; position: relative;
}
.network-diagram svg { width: 100%; height: 100%; }
.network-node { animation: pulse-ring 3s ease-in-out infinite; }
.network-node:nth-child(2) { animation-delay: 0.5s; }
.network-node:nth-child(3) { animation-delay: 1s; }
.network-node:nth-child(4) { animation-delay: 1.5s; }
.network-node:nth-child(5) { animation-delay: 2s; }
.scenario-cycle {
  width: 100%; max-width: 680px; position: relative; min-height: 120px;
}
.scenario-card {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease; pointer-events: none;
}
.scenario-card.active {
  opacity: 1; transform: translateY(0); position: relative; pointer-events: auto;
}
.scenario-icon    { font-size: 2.2rem; flex-shrink: 0; }
.scenario-text h4 { font-size: 1rem; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.scenario-text p  { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.6; }
.scenario-dots { display: flex; gap: 8px; justify-content: center; }
.scenario-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s ease, transform 0.3s ease; cursor: pointer;
}
.scenario-dot.active { background: #FF6B35; transform: scale(1.4); }
.peerpower-callout {
  background: rgba(37,99,235,0.1); border: 1.5px solid rgba(37,99,235,0.35);
  border-radius: 14px; padding: 20px 28px;
  display: flex; align-items: center; gap: 16px;
  width: 100%; max-width: 680px;
}
.peerpower-callout .pp-icon { font-size: 2rem; flex-shrink: 0; }
.peerpower-callout-text h4 {
  font-size: 0.95rem; font-weight: 700; color: #ffffff; margin-bottom: 4px;
}
.peerpower-callout-text p {
  font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.5;
}

/* ============================================================
   SLIDE 6 - REAL RESULTS (light)
   ============================================================ */
.slide-6 { background: #f8fafc; color: #1a1a2e; }
.slide-6 .slide-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; max-width: 900px; width: 100%;
}
.slide-6 .section-label { color: #FF6B35; }
.slide-6 .section-title { font-size: 2.4rem; font-weight: 800; color: #1a1a2e; text-align: center; }
.scenario-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.scenario-tab {
  padding: 8px 18px; border-radius: 999px;
  border: 1.5px solid #e2e8f0; background: #ffffff;
  font-size: 0.85rem; font-weight: 600; color: #64748b; cursor: pointer;
  transition: all 0.2s ease;
}
.scenario-tab:hover { border-color: #FF6B35; color: #FF6B35; }
.scenario-tab.active {
  background: #FF6B35; border-color: #FF6B35; color: #ffffff;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.scenario-panel {
  display: none; flex-direction: column; gap: 20px;
  width: 100%; animation: fadeInUp 0.35s ease;
}
.scenario-panel.active { display: flex; }
.scenario-panel-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: #ffffff;
  border-radius: 14px; border: 1.5px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.scenario-panel-icon { font-size: 2.2rem; }
.scenario-panel-info h4 {
  font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px;
}
.scenario-panel-info p { font-size: 0.88rem; color: #64748b; line-height: 1.5; }
.bot-row { display: flex; gap: 12px; flex-wrap: wrap; }
.bot-row-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bot-row-avatar {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease; cursor: default;
}
.bot-row-avatar:hover { transform: scale(1.1); border-color: #FF6B35; }
.bot-row-name { font-size: 0.68rem; font-weight: 600; color: #475569; text-align: center; }
.savings-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.savings-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px;
  font-size: 0.85rem; font-weight: 700;
}
.savings-badge.green  { background: rgba(16,185,129,0.1);  color: #10b981; border: 1.5px solid rgba(16,185,129,0.25); }
.savings-badge.orange { background: rgba(255,107,53,0.1);  color: #FF6B35; border: 1.5px solid rgba(255,107,53,0.25); }
.savings-badge.blue   { background: rgba(37,99,235,0.1);   color: #2563eb; border: 1.5px solid rgba(37,99,235,0.25); }

/* ============================================================
   SLIDE 7 - SAFETY (dark)
   ============================================================ */
.slide-7 {
  background: linear-gradient(150deg, #1a1a2e 0%, #0d1b35 100%);
  color: #ffffff;
}
.slide-7 .slide-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 36px; max-width: 900px; width: 100%;
}
.slide-7 .section-label { color: #FF6B35; }
.slide-7 .section-title { font-size: 2.4rem; font-weight: 800; text-align: center; }
.shield-graphic {
  font-size: 5rem; display: block; text-align: center;
  filter: drop-shadow(0 8px 24px rgba(16,185,129,0.4));
  animation: float 5s ease-in-out infinite;
}
.safety-bots { display: flex; gap: 16px; width: 100%; max-width: 680px; }
.safety-bot-card {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08); border-radius: 16px;
  padding: 20px; text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.safety-bot-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.4); }
.safety-bot-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.safety-bot-name { font-size: 0.9rem; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.safety-bot-desc { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.protection-pillars { display: flex; gap: 16px; width: 100%; max-width: 680px; }
.protection-pillar {
  flex: 1; background: rgba(16,185,129,0.06);
  border: 1.5px solid rgba(16,185,129,0.2); border-radius: 16px;
  padding: 22px 18px; text-align: center; transition: transform 0.25s ease;
}
.protection-pillar:hover { transform: translateY(-3px); }
.protection-pillar-icon  { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.protection-pillar-title { font-size: 0.9rem; font-weight: 700; color: #10b981; margin-bottom: 6px; }
.protection-pillar-desc  { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.bold-statement {
  font-size: 1.35rem; font-weight: 800; text-align: center;
  line-height: 1.4; max-width: 600px;
}
.bold-statement .accent { color: #FF6B35; }

/* ============================================================
   SLIDE 8 - COST TABLE (light)
   ============================================================ */
.slide-8 { background: #ffffff; color: #1a1a2e; }
.slide-8 .slide-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; max-width: 900px; width: 100%;
}
.slide-8 .section-label { color: #FF6B35; }
.slide-8 .section-title { font-size: 2.4rem; font-weight: 800; color: #1a1a2e; text-align: center; }
.cost-table-wrap {
  width: 100%; overflow-x: auto; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.cost-table {
  width: 100%; border-collapse: collapse; font-size: 0.92rem; background: #ffffff;
}
.cost-table th {
  background: #FF6B35; color: #ffffff; padding: 14px 18px;
  text-align: left; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.cost-table th:first-child { border-radius: 16px 0 0 0; }
.cost-table th:last-child  { border-radius: 0 16px 0 0; }
.cost-table td {
  padding: 13px 18px; border-bottom: 1px solid #f1f5f9;
  color: #334155; vertical-align: middle;
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:last-child td:first-child { border-radius: 0 0 0 16px; }
.cost-table tr:last-child td:last-child  { border-radius: 0 0 16px 0; }
.cost-table tr:nth-child(odd)  td { background: #ffffff; }
.cost-table tr:nth-child(even) td { background: #f8fafc; }
.cost-table tr:hover td { background: rgba(255,107,53,0.04); }
.urbot-cost     { color: #10b981; font-weight: 700; }
.competitor-cost { color: #ef4444; font-weight: 600; }
.savings-counter { text-align: center; }
.counter-label {
  font-size: 0.85rem; font-weight: 600; color: #64748b;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.counter-value {
  font-size: 4rem; font-weight: 900; color: #FF6B35;
  line-height: 1; letter-spacing: -0.03em; font-feature-settings: 'tnum';
  animation: countUp 0.6s ease forwards;
}
.counter-suffix {
  font-size: 1.2rem; font-weight: 700; color: #FF6B35; opacity: 0.8; margin-top: 2px;
}
.time-block {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px; padding: 20px 32px;
  text-align: center; color: #ffffff; position: relative; overflow: hidden;
}
.time-block::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, transparent 60%);
}
.time-block-value {
  font-size: 3rem; font-weight: 900; color: #FF6B35; line-height: 1; position: relative;
}
.time-block-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  font-weight: 500; margin-top: 6px; position: relative;
}

/* ============================================================
   SLIDE 9 - NETWORK EFFECT (dark)
   ============================================================ */
.slide-9 {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 60%, #0f0f1a 100%);
  color: #ffffff;
}
.slide-9 .slide-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 36px; max-width: 900px; width: 100%;
}
.slide-9 .section-label { color: #FF6B35; }
.slide-9 .section-title { font-size: 2.4rem; font-weight: 800; text-align: center; }
.level-progression { display: flex; flex-direction: row; gap: 16px; width: 100%; max-width: 780px; }
.level {
  flex: 1; background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08); border-radius: 16px;
  padding: 22px 18px; text-align: center; position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.level:hover { transform: translateY(-4px); }
.level-number {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #FF6B35; color: #ffffff;
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.level:nth-child(2) .level-number { background: #2563eb; }
.level:nth-child(3) .level-number { background: #10b981; }
.level-icon  { font-size: 2.4rem; display: block; margin: 8px auto 12px; }
.level-title { font-size: 0.95rem; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.level-desc  { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.level-fill {
  height: 4px; background: rgba(255,255,255,0.08);
  border-radius: 999px; margin-top: 14px; overflow: hidden;
}
.level-fill-bar {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #FF6B35 0%, #e25a2b 100%);
  transform-origin: left; animation: fillBar 1.2s ease forwards;
  transform: scaleX(0);
}
.level:nth-child(1) .level-fill-bar { --fill-pct: 0.33; animation-delay: 0.1s; }
.level:nth-child(2) .level-fill-bar {
  --fill-pct: 0.66; animation-delay: 0.4s;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
}
.level:nth-child(3) .level-fill-bar {
  --fill-pct: 1.0; animation-delay: 0.7s;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}
@keyframes fillBar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(var(--fill-pct, 1)); }
}
.peerpower-box {
  width: 100%; max-width: 680px;
  background: rgba(37,99,235,0.08); border: 1.5px solid rgba(37,99,235,0.3);
  border-radius: 16px; padding: 22px 28px;
  display: flex; align-items: center; gap: 18px;
}
.peerpower-box-icon { font-size: 2.4rem; flex-shrink: 0; }
.peerpower-box-text h4 { font-size: 1rem; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.peerpower-box-text p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.quote-carousel {
  width: 100%; max-width: 680px; min-height: 90px;
  position: relative; text-align: center;
}
.quote-item {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease; pointer-events: none;
}
.quote-item.active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.quote-text {
  font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 10px;
}
.quote-text::before { content: 201C; }
.quote-text::after  { content: 201D; }
.quote-author { font-size: 0.8rem; font-weight: 600; color: #FF6B35; }

/* ============================================================
   SLIDE 10 - GET STARTED (light, orange accents)
   ============================================================ */
.slide-10 {
  background: linear-gradient(160deg, #fff9f6 0%, #fff3ec 50%, #ffffff 100%);
  color: #1a1a2e;
}
.slide-10 .slide-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 40px; max-width: 900px; width: 100%;
}
.slide-10 .section-label { color: #FF6B35; }
.slide-10 .section-title {
  font-size: 2.8rem; font-weight: 900; color: #1a1a2e;
  text-align: center; line-height: 1.1;
}
.slide-10 .section-sub {
  font-size: 1.1rem; color: #64748b; text-align: center;
  max-width: 520px; line-height: 1.6;
}
.steps-row { display: flex; gap: 20px; width: 100%; max-width: 820px; }
.step-card {
  flex: 1; background: #ffffff; border: 1.5px solid #e2e8f0;
  border-radius: 20px; padding: 28px 22px; text-align: center; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.step-number {
  width: 44px; height: 44px; border-radius: 50%;
  background: #FF6B35; color: #ffffff;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}
.step-icon  { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.step-title { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.step-desc  { font-size: 0.83rem; color: #64748b; line-height: 1.55; }
.step-arrow {
  display: flex; align-items: center; color: #FF6B35;
  font-size: 1.6rem; opacity: 0.5; flex-shrink: 0; align-self: center;
}
.cta-group {
  display: flex; flex-direction: row; gap: 14px;
  flex-wrap: wrap; justify-content: center;
}
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 12px;
  background: linear-gradient(135deg, #FF6B35 0%, #e25a2b 100%);
  color: #ffffff; font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(255,107,53,0.4); letter-spacing: 0.01em;
  position: relative; overflow: hidden;
}
.cta-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-20deg); pointer-events: none;
}
.cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255,107,53,0.5);
}
.cta-primary:hover::after { animation: shimmer 0.6s ease forwards; }
.cta-primary:active { transform: translateY(0); }
.cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px;
  background: #2563eb; color: #ffffff;
  font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(37,99,235,0.35); letter-spacing: 0.01em;
}
.cta-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37,99,235,0.45); background: #1d4ed8;
}
.cta-tertiary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 12px;
  background: transparent; color: #1a1a2e;
  font-size: 1rem; font-weight: 700; border: 2px solid #cbd5e1; cursor: pointer;
  transition: all 0.2s ease; letter-spacing: 0.01em;
}
.cta-tertiary:hover { border-color: #FF6B35; color: #FF6B35; transform: translateY(-2px); }

/* ============================================================
   DOT NAVIGATION
   ============================================================ */
.dot-nav {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; z-index: 150;
}
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer; display: block; position: relative;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.2);
}
.dot:hover { background: rgba(255,255,255,0.75); transform: scale(1.2); }
.dot.active {
  background: #FF6B35; border-color: #FF6B35; transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.3), 0 0 0 2px rgba(0,0,0,0.1);
}
.dot::after {
  content: attr(data-label);
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.78); color: #ffffff;
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease; font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}
.dot:hover::after { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-30deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-20deg); }
  80% { transform: rotate(10deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes orbit {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes counter-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to   { opacity: 1; max-height: 600px; }
}
@keyframes badgeFloat {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   SLIDE ENTRANCE ANIMATIONS
   ============================================================ */
.slide-visible .hero-mascot       { animation: fadeInUp 0.7s ease 0.1s both, float 4s ease-in-out 0.8s infinite; }
.slide-visible .hero-headline     { animation: fadeInUp 0.7s ease 0.2s both; }
.slide-visible .hero-subhead      { animation: fadeInUp 0.7s ease 0.35s both; }
.slide-visible .badge-float-group { animation: fadeInUp 0.6s ease 0.45s both; }
.slide-visible .before-side       { animation: slideInLeft 0.7s ease 0.1s both; }
.slide-visible .after-side        { animation: slideInRight 0.7s ease 0.2s both; }
.slide-visible .orbit-container   { animation: fadeInUp 0.8s ease 0.15s both; }
.slide-visible .three-pillars     { animation: fadeInUp 0.7s ease 0.35s both; }
.slide-visible .family-grid       { animation: fadeInUp 0.7s ease 0.2s both; }
.slide-visible .network-diagram   { animation: fadeInUp 0.7s ease 0.1s both; }
.slide-visible .scenario-cycle    { animation: fadeInUp 0.7s ease 0.3s both; }
.slide-visible .peerpower-callout { animation: fadeInUp 0.7s ease 0.45s both; }
.slide-visible .cost-table-wrap   { animation: fadeInUp 0.7s ease 0.1s both; }
.slide-visible .savings-counter   { animation: fadeInUp 0.7s ease 0.3s both; }
.slide-visible .time-block        { animation: fadeInUp 0.7s ease 0.4s both; }
.slide-visible .level-progression { animation: fadeInUp 0.7s ease 0.15s both; }
.slide-visible .peerpower-box     { animation: fadeInUp 0.7s ease 0.35s both; }
.slide-visible .quote-carousel    { animation: fadeInUp 0.7s ease 0.5s both; }
.slide-visible .steps-row         { animation: fadeInUp 0.7s ease 0.15s both; }
.slide-visible .cta-group         { animation: fadeInUp 0.7s ease 0.4s both; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-orange     { color: #FF6B35; }
.text-green      { color: #10b981; }
.text-blue       { color: #2563eb; }
.text-white      { color: #ffffff; }
.text-muted      { color: rgba(255,255,255,0.6); }
.text-muted-dark { color: #64748b; }
.gradient-text {
  background: linear-gradient(90deg, #FF6B35 0%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card {
  background: #ffffff; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  border: 1.5px solid #f1f5f9; padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.dark-card {
  background: #1e2a4a; color: #ffffff; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  border: 1.5px solid rgba(255,255,255,0.07); padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dark-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.flex-row    { display: flex; flex-direction: row; }
.flex-col    { display: flex; flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ============================================================
   MOBILE RESPONSIVE - max-width 768px
   ============================================================ */
@media (max-width: 768px) {
  body { overflow: auto; }
  .slideshow-container { height: auto; overflow-y: auto; scroll-snap-type: none; }
  .slide { height: auto; min-height: 100vh; padding: 80px 20px 60px; scroll-snap-align: none; }
  .hero-mascot { width: 120px; height: 120px; }
  .hero-headline { font-size: 2rem; }
  .hero-subhead { font-size: 1rem; }
  .badge-float { font-size: 0.78rem; padding: 6px 12px; }
  .badge-float-group { gap: 6px; }
  .slide-2 { grid-template-columns: 1fr; height: auto; }
  .before-side { padding: 60px 24px 40px; }
  .after-side  { padding: 60px 24px 80px; }
  .slide-2-divider { display: none; }
  .stat-bar { gap: 20px; padding: 0 16px; }
  .stat-bar-value { font-size: 1.1rem; }
  .stat-bar-label { font-size: 0.6rem; }
  .orbit-container { width: 280px; height: 280px; }
  .orbit-ring { width: 230px; height: 230px; }
  .orbit-center { width: 72px; height: 72px; font-size: 0.65rem; }
  .orbit-bot { width: 36px; height: 36px; font-size: 1rem; }
  .orbit-bot { top: calc(50% - 18px + var(--oy,0px)); left: calc(50% - 18px + var(--ox,0px)); }
  .orbit-bot:nth-child(1) { --ox: 115px;   --oy: 0px; }
  .orbit-bot:nth-child(2) { --ox: 57.5px;  --oy: 99.6px; }
  .orbit-bot:nth-child(3) { --ox: -57.5px; --oy: 99.6px; }
  .orbit-bot:nth-child(4) { --ox: -115px;  --oy: 0px; }
  .orbit-bot:nth-child(5) { --ox: -57.5px; --oy: -99.6px; }
  .orbit-bot:nth-child(6) { --ox: 57.5px;  --oy: -99.6px; }
  .three-pillars { flex-direction: column; gap: 12px; }
  .family-grid { grid-template-columns: 1fr; gap: 12px; }
  .safety-bots, .protection-pillars { flex-direction: column; gap: 12px; }
  .slide-6 .section-title,
  .slide-7 .section-title,
  .slide-8 .section-title,
  .slide-9 .section-title { font-size: 1.8rem; }
  .cost-table { font-size: 0.78rem; }
  .cost-table th, .cost-table td { padding: 10px 12px; }
  .counter-value { font-size: 2.8rem; }
  .time-block-value { font-size: 2.2rem; }
  .level-progression { flex-direction: column; gap: 14px; max-width: 100%; }
  .steps-row { flex-direction: column; gap: 14px; max-width: 100%; }
  .step-arrow { display: none; }
  .cta-group { flex-direction: column; width: 100%; }
  .cta-primary, .cta-secondary, .cta-tertiary {
    width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.95rem;
  }
  .slide-10 .section-title { font-size: 2rem; }
  .dot-nav {
    right: auto; top: auto; bottom: 16px; left: 50%;
    transform: translateX(-50%); flex-direction: row; gap: 8px;
  }
  .dot { width: 8px; height: 8px; }
  .dot::after { display: none; }
  .urbot-logo { font-size: 1rem; top: 16px; left: 16px; }
  .slide-progress { height: 2px; }
}

/* ============================================================
   TABLET - 769px to 1024px
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .slide { padding: 80px 40px 60px; }
  .hero-headline { font-size: 2.8rem; }
  .family-grid { grid-template-columns: repeat(2,1fr); }
  .orbit-container { width: 320px; height: 320px; }
  .orbit-ring { width: 260px; height: 260px; }
  .orbit-bot:nth-child(1) { --ox: 130px;  --oy: 0px; }
  .orbit-bot:nth-child(2) { --ox: 65px;   --oy: 112.6px; }
  .orbit-bot:nth-child(3) { --ox: -65px;  --oy: 112.6px; }
  .orbit-bot:nth-child(4) { --ox: -130px; --oy: 0px; }
  .orbit-bot:nth-child(5) { --ox: -65px;  --oy: -112.6px; }
  .orbit-bot:nth-child(6) { --ox: 65px;   --oy: -112.6px; }
  .cta-primary, .cta-secondary, .cta-tertiary { padding: 13px 22px; font-size: 0.92rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .dot-nav, .urbot-logo, .slide-progress { display: none; }
  body { overflow: visible; }
  .slideshow-container { height: auto; overflow: visible; scroll-snap-type: none; }
  .slide { height: auto; page-break-after: always; scroll-snap-align: none; }
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .hero-mascot { animation: none !important; }
  .badge-float { opacity: 1 !important; animation: none !important; }
  .orbit-ring, .orbit-ring-inner, .orbit-bot { animation: none !important; }
  .slideshow-container { scroll-behavior: auto; scroll-snap-type: none; }
  .level-fill-bar { animation: none !important; transform: scaleX(var(--fill-pct,1)) !important; }
  .urbot-logo .logo-dot { animation: none !important; box-shadow: 0 0 8px rgba(255,107,53,0.7); }
  .slide-1::before, .slide-1::after { animation: none !important; }
  .cta-primary::after { display: none; }
  .scenario-card, .quote-item { transition: none !important; }
  .family-card, .pillar-card, .step-card,
  .safety-bot-card, .protection-pillar, .level { transition: none !important; }
  .shield-graphic { animation: none !important; }
}

/* ============================================================
   HIGH CONTRAST MODE
   ============================================================ */
@media (forced-colors: active) {
  .dot.active { forced-color-adjust: none; background: Highlight; border-color: Highlight; }
  .cta-primary, .cta-secondary {
    forced-color-adjust: none; background: ButtonText;
    color: ButtonFace; border: 2px solid ButtonText;
  }
  .gradient-text { -webkit-text-fill-color: CanvasText; color: CanvasText; }
}

/* ============================================================
   MISSING STYLES — class name fixes + unlisted elements
   ============================================================ */

/* Progress bar track (HTML uses slide-progress-track, not slide-progress) */
.slide-progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.1); z-index: 200;
  overflow: hidden;
}

/* Slide 2 — side-label / side-title (HTML uses these, CSS originally had split-*) */
.side-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px;
}
.before-side .side-label { color: #94a3b8; }
.after-side  .side-label { color: #FF6B35; }

.side-title { font-size: 2rem; font-weight: 800; margin-bottom: 28px; line-height: 1.2; }
.before-side .side-title { color: #1a1a2e; }
.after-side  .side-title { color: #ffffff; }

/* Slide 2 — x-icon / check-icon used in lists */
.x-icon     { color: #ef4444; font-weight: 800; flex-shrink: 0; font-size: 1.1rem; }
.check-icon { color: #10b981; font-weight: 800; flex-shrink: 0; font-size: 1.1rem; }

/* Slide 2 — empathy quote (bottom overlay above stat-bar) */
.empathy-quote {
  position: absolute; bottom: 84px; left: 0; right: 0; z-index: 6;
  text-align: center; font-style: italic;
  font-size: 0.92rem; color: rgba(255,255,255,0.6);
  padding: 0 24px; pointer-events: none;
}

/* Slide 2 — stat bar items (HTML uses stat-item / stat-divider) */
.stat-item {
  display: flex; flex-direction: column; align-items: center; color: #ffffff;
  text-align: center;
}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.3); align-self: center; flex-shrink: 0;
}

/* Slide 3 — comparison quote */
.comparison-quote {
  font-size: 1rem; font-style: italic; color: #64748b;
  text-align: center; max-width: 640px; line-height: 1.65;
}

/* Slide 3 — orbit center text */
.orbit-center img { width: 100%; height: 100%; border-radius: 50%; object-fit: contain; }

/* Slide 4 — family detail panel header + bot grid */
.family-detail-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1.5px solid rgba(255,107,53,0.2);
}
.family-detail-icon  { font-size: 1.5rem; flex-shrink: 0; }
.family-detail-title { font-size: 1rem; font-weight: 700; flex: 1; }
.family-detail-count { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.family-detail-close {
  background: none; border: none; color: rgba(255,255,255,0.45);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  padding: 2px 8px; border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.family-detail-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.family-bot-grid {
  display: flex; flex-direction: column; gap: 0;
  max-height: 300px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(255,107,53,0.35) transparent;
}
.family-bot-card {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85); text-decoration: none;
  transition: background 0.2s ease;
}
.family-bot-card:last-child { border-bottom: none; }
.family-bot-card:hover { background: rgba(255,255,255,0.05); }
.family-bot-img-wrap {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: rgba(255,255,255,0.06); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.family-bot-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.bot-fallback { font-size: 1.4rem; }
.family-bot-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.family-bot-info strong { font-size: 0.88rem; font-weight: 700; color: #ffffff; }
.family-bot-info span  { font-size: 0.75rem; color: rgba(255,255,255,0.52); line-height: 1.4; }
.family-bot-arrow { color: rgba(255,255,255,0.25); font-size: 0.95rem; flex-shrink: 0; transition: color 0.2s ease; }
.family-bot-card:hover .family-bot-arrow { color: var(--fc, #FF6B35); }

/* Family card inner classes (HTML uses these for previews) */
.family-card-icon  { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.family-card-name  { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.family-card-bots  { display: flex; gap: 6px; flex-wrap: wrap; }
.family-card-bots img {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.12);
  object-fit: contain;
}
.family-card-count { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 8px; }

/* Slide 5 — scenario card direct-child <p> */
.scenario-card p { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin: 0; }
.scenario-card strong { color: #FF6B35; }
.scenario-card .scenario-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }

/* Slide 6 — scenario panel inner content */
.scenario-bots {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px;
}
.scenario-bots img {
  width: 56px; height: 56px; border-radius: 12px;
  background: #f1f5f9; border: 2px solid #e2e8f0; object-fit: contain;
}
.scenario-story h3 { font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.scenario-story p  { font-size: 0.88rem; color: #64748b; line-height: 1.6; margin-bottom: 12px; }
.savings-badges    { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.badge-time  {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 9px;
  font-size: 0.82rem; font-weight: 700;
  background: rgba(16,185,129,0.1); color: #10b981;
  border: 1.5px solid rgba(16,185,129,0.25);
}
.badge-money {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 9px;
  font-size: 0.82rem; font-weight: 700;
  background: rgba(255,107,53,0.1); color: #FF6B35;
  border: 1.5px solid rgba(255,107,53,0.25);
}

/* Slide 7 — safety bot images (HTML uses <img> directly) */
.safety-bot-card img {
  width: 64px; height: 64px; border-radius: 12px;
  margin: 0 auto 10px; object-fit: contain; display: block;
}
/* Fallback when img fails (innerHTML='🛡️' etc.) */
.safety-bot-card > span:first-child { font-size: 2.2rem; display: block; margin-bottom: 10px; }

/* Slide 8 — savings stats row + cta text */
.savings-stats-row {
  display: flex; flex-direction: row; gap: 28px;
  align-items: center; justify-content: center; flex-wrap: wrap; width: 100%;
}
.slide-8-cta {
  font-size: 1.05rem; text-align: center; color: #475569;
}
.slide-8-cta strong { color: #1a1a2e; }

/* Slide 9 — revolution statement */
.revolution-statement {
  font-size: 1rem; text-align: center;
  color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 600px;
}
.revolution-statement strong { color: #ffffff; }

/* Quote carousel dots */
.quote-dots { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.quote-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease; padding: 0;
}
.quote-dot.active { background: #FF6B35; transform: scale(1.4); }

/* Slide 10 — CTA mascot */
.cta-mascot {
  width: 140px; height: 140px; margin: 0 auto -12px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(255,107,53,0.28));
}

/* Slide 10 — fine print / promise text */
.no-sub-promise {
  font-size: 1rem; font-weight: 600; color: #334155;
  text-align: center;
}
.fine-print {
  font-size: 0.82rem; color: #94a3b8; text-align: center;
}

/* slide-visible — entrance animation trigger (added by JS IntersectionObserver) */
.slide-visible .hero-mascot       { animation: fadeInUp 0.65s ease 0.05s both, float 4s ease-in-out 0.7s infinite; }
.slide-visible .hero-headline     { animation: fadeInUp 0.65s ease 0.15s both; }
.slide-visible .hero-subhead      { animation: fadeInUp 0.65s ease 0.28s both; }
.slide-visible .badge-float-group { animation: fadeInUp 0.55s ease 0.4s both; }
.slide-visible .before-side       { animation: slideInLeft  0.65s ease 0.1s  both; }
.slide-visible .after-side        { animation: slideInRight 0.65s ease 0.2s  both; }
.slide-visible .stat-bar          { animation: fadeInUp 0.55s ease 0.35s both; }
.slide-visible .orbit-container   { animation: fadeInUp 0.75s ease 0.1s  both; }
.slide-visible .three-pillars     { animation: fadeInUp 0.65s ease 0.35s both; }
.slide-visible .comparison-quote  { animation: fadeInUp 0.55s ease 0.5s  both; }
.slide-visible .family-grid       { animation: fadeInUp 0.65s ease 0.15s both; }
.slide-visible .network-diagram   { animation: fadeInUp 0.65s ease 0.05s both; }
.slide-visible .scenario-cycle    { animation: fadeInUp 0.65s ease 0.25s both; }
.slide-visible .peerpower-callout { animation: fadeInUp 0.65s ease 0.45s both; }
.slide-visible .scenario-tabs     { animation: fadeInUp 0.55s ease 0.05s both; }
.slide-visible .scenario-panel    { animation: fadeInUp 0.55s ease 0.2s  both; }
.slide-visible .safety-bots       { animation: fadeInUp 0.65s ease 0.15s both; }
.slide-visible .protection-pillars{ animation: fadeInUp 0.65s ease 0.35s both; }
.slide-visible .bold-statement    { animation: fadeInUp 0.55s ease 0.5s  both; }
.slide-visible .cost-table-wrap   { animation: fadeInUp 0.65s ease 0.1s  both; }
.slide-visible .savings-stats-row { animation: fadeInUp 0.65s ease 0.3s  both; }
.slide-visible .level-progression { animation: fadeInUp 0.65s ease 0.1s  both; }
.slide-visible .peerpower-box     { animation: fadeInUp 0.65s ease 0.3s  both; }
.slide-visible .quote-carousel    { animation: fadeInUp 0.65s ease 0.5s  both; }
.slide-visible .cta-mascot        { animation: fadeInUp 0.65s ease 0.05s both, float 4s ease-in-out 0.7s infinite; }
.slide-visible .steps-row         { animation: fadeInUp 0.65s ease 0.15s both; }
.slide-visible .cta-group         { animation: fadeInUp 0.65s ease 0.35s both; }

/* Mobile additions for new elements */
@media (max-width: 768px) {
  .savings-stats-row  { flex-direction: column; gap: 16px; }
  .scenario-bots img  { width: 44px; height: 44px; }
  .family-bot-grid    { max-height: 240px; }
  .cta-mascot         { width: 100px; height: 100px; }
  .empathy-quote      { font-size: 0.78rem; bottom: 76px; }
  .comparison-quote   { font-size: 0.9rem; }
}

/* ---- Focus visible ---- */
.dot:focus-visible,
.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.cta-tertiary:focus-visible,
.urbot-logo:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--urbot-primary, #6366f1);
  outline-offset: 2px;
}

/* Reduced motion additions */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  .slideshow-container { scroll-behavior: auto !important; }
  .cta-mascot { animation: none !important; }
  .logo-dot { animation: none !important; }
  .slide-progress-bar { transition: none !important; }
  .card, .dark-card { transition: none !important; }
  .slide-visible * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
