/* ============================================
   LATAM AIRLINES x TRENDS ON INFLUENCE — 2026
   Executive Presentation — Syngenta-Grade
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coral: #E4002B;
  --dark-coral: #B80023;
  --navy: #0F0A2E;
  --deep-navy: #0B0033;
  --light-bg: #F7F9FC;
  --cyan: #00B4D8;
  --gold: #FFB800;
  --text-dark: #1A1D26;
  --text-light: #E8ECF0;
  --grey-200: #E2E8F0;
  --grey-300: #CBD5E1;
  --grey-400: #94A3B8;
  --grey-500: #64748B;
  --grey-600: #475569;
  --grey-700: #334155;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--navy);
}

/* --- PROGRESS BAR --- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--cyan), var(--gold));
  z-index: 1000;
  transition: width 0.4s ease;
  width: 0;
}

/* --- CONTROLS --- */
.controls {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-counter {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-400);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

.btn-control {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--grey-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  backdrop-filter: blur(8px);
}

.btn-control:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.btn-control.active {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}

/* --- NAV DOTS --- */
.nav-dots {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  gap: 6px;
}

.nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-dot:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.3);
}

.nav-dot.active {
  background: var(--coral);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(228,0,43,0.4);
}

/* --- SPEAKER NOTES --- */
.speaker-notes-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,10,46,0.95);
  backdrop-filter: blur(12px);
  z-index: 950;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.speaker-notes-panel.visible {
  max-height: 200px;
  padding: 16px 32px 24px;
}

.notes-header {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-500);
  margin-bottom: 8px;
  font-weight: 600;
}

.notes-content {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  max-width: 800px;
}

/* --- SLIDES CONTAINER --- */
.slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* --- SLIDE BASE --- */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 10;
}

.slide.prev {
  opacity: 0;
  transform: translateX(-60px);
}

.slide.next {
  opacity: 0;
  transform: translateX(60px);
}

.slide-dark {
  background: var(--navy);
  color: var(--text-light);
}

.slide-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(228,0,43,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.slide-light {
  background: var(--light-bg);
  color: var(--text-dark);
}

.slide-light::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-200), transparent);
  pointer-events: none;
}

.slide-content {
  max-width: 1100px;
  width: 90%;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

/* --- TYPOGRAPHY --- */
.slide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(228,0,43,0.2);
  border-radius: 100px;
}

.tag-light {
  color: var(--coral);
  border-color: rgba(228,0,43,0.3);
}

.slide-title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.title-light {
  color: var(--text-light);
}

/* ============================================
   SLIDE 1 — COVER
   ============================================ */
.slide-cover {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cover-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.logo-t {
  background: linear-gradient(135deg, var(--coral), var(--dark-coral));
}

.logo-l {
  background: linear-gradient(135deg, var(--cyan), #0096B4);
}

.logo-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  color: var(--text-light);
}

.logo-plus {
  font-size: 28px;
  color: var(--grey-500);
  font-weight: 300;
}

.cover-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 30%, var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cover-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--grey-400);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cover-line {
  width: 60px;
  height: 3px;
  background: var(--coral);
  border-radius: 3px;
}

.cover-prepared {
  font-size: 14px;
  color: var(--grey-500);
}

.cover-confidential {
  font-size: 12px;
  color: var(--grey-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   SLIDE 2 — AGENDA
   ============================================ */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px;
}

.agenda-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: border-color 0.3s;
}

.agenda-item:hover {
  border-color: rgba(228,0,43,0.3);
}

.agenda-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--coral);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228,0,43,0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   SLIDE 3 — PILLARS (Quienes Somos)
   ============================================ */
.pillars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pillar {
  text-align: center;
  padding: 24px 28px;
  flex: 0 0 auto;
}

.pillar-icon-box {
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.slide-light .pillar-title {
  color: var(--text-dark);
}

.pillar-connector {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.15);
}

.slide-light .pillar-connector {
  background: var(--grey-300);
}

.highlight-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--coral), var(--dark-coral));
  color: white;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   SLIDE 4 — TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
  transition: border-color 0.3s;
}

.team-card:hover {
  border-color: rgba(228,0,43,0.3);
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--cyan));
  color: white;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral);
  margin-bottom: 12px;
}

.team-desc {
  font-size: 13px;
  color: var(--grey-500);
  line-height: 1.5;
}

.team-ops-bar {
  background: rgba(228,0,43,0.04);
  border: 1px solid rgba(228,0,43,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}

.team-ops-bar h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ops-roles {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.ops-roles span {
  padding: 5px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-600);
}

.ops-note {
  font-size: 12px;
  color: var(--grey-500);
  font-style: italic;
  margin-top: 8px;
}

/* ============================================
   DIVIDER SLIDES
   ============================================ */
.slide-divider-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.divider-num {
  font-size: 72px;
  font-weight: 800;
  color: var(--coral);
  opacity: 0.3;
  line-height: 1;
}

.divider-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-light);
}

/* ============================================
   SLIDE 6 — PROBLEM (Split Panel)
   ============================================ */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  border-radius: var(--radius);
  padding: 28px;
}

.slide-light .panel {
  background: white;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}

.slide-dark .panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.slide-light .panel-header {
  border-bottom: 1px solid var(--grey-200);
}

.slide-dark .panel-header {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.panel-header-coral { color: var(--coral); }
.panel-header-alert { color: var(--gold); }

.panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-list li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.slide-light .panel-list li { color: var(--text-dark); }
.slide-dark .panel-list li { color: var(--text-light); }

.panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.panel-scope .panel-list li::before { background: var(--coral); }
.panel-challenge .panel-list li::before { background: var(--gold); }

/* ============================================
   SLIDE 7 — MANIFESTO / OPPORTUNITY
   ============================================ */
.slide-manifesto {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.manifesto-quote {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.manifesto-line {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--grey-400);
  line-height: 1.4;
}

.manifesto-highlight {
  font-weight: 700;
  color: var(--text-light);
}

.manifesto-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 600px;
}

.manifesto-bullet {
  font-size: 15px;
  color: var(--grey-400);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.manifesto-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.6;
}

/* ============================================
   SLIDE 8 — VENN DIAGRAM
   ============================================ */
.venn-container {
  position: relative;
  width: 480px;
  height: 380px;
  margin: 0 auto;
}

.venn-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.venn-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(228,0,43,0.06);
  border: 2px solid rgba(228,0,43,0.2);
}

.venn-2 {
  bottom: 20px;
  left: 20px;
  background: rgba(0,180,216,0.06);
  border: 2px solid rgba(0,180,216,0.2);
}

.venn-3 {
  bottom: 20px;
  right: 20px;
  background: rgba(255,184,0,0.06);
  border: 2px solid rgba(255,184,0,0.2);
}

.venn-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-dark);
}

.venn-sub {
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 4px;
}

.venn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--coral);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.6;
  box-shadow: 0 4px 20px rgba(228,0,43,0.3);
  z-index: 5;
  display: flex;
  flex-direction: column;
}

/* ============================================
   SLIDE 9 — COMPARISON TABLE
   ============================================ */
.comparison-table {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 32px;
}

.comparison-col { flex: 1; }
.comparison-old { opacity: 0.6; }

.comparison-header {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  color: var(--grey-400);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.comparison-header-coral {
  background: rgba(228,0,43,0.15);
  color: var(--coral);
}

.comparison-item {
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  color: var(--text-light);
}

.comparison-new .comparison-item { color: white; }

.comparison-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.influence-os-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.os-icon {
  background: var(--coral);
  color: white;
  font-weight: 800;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.os-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ============================================
   SLIDE 10 — STRATEGIC QUESTION
   ============================================ */
.slide-question {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.question-text {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  max-width: 800px;
  letter-spacing: -0.5px;
}

.question-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.q-pillar {
  padding: 8px 18px;
  border: 1px solid rgba(228,0,43,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  background: rgba(228,0,43,0.04);
}

/* ============================================
   SLIDE 11 — MANIFESTO FULL
   ============================================ */
.slide-manifesto-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 900px;
}

.manifesto-big {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--grey-400);
  line-height: 1.4;
}

.manifesto-big-highlight {
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 30%, var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   SLIDE 12 — 4 LENSES
   ============================================ */
.lenses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lens-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  position: relative;
  transition: border-color 0.3s;
}

.lens-card:hover {
  border-color: rgba(228,0,43,0.3);
}

.lens-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--coral);
  opacity: 0.3;
  margin-bottom: 8px;
}

.lens-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.lens-card p {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.lens-source {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SLIDE 13 — RFP INSIGHTS
   ============================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.insight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.3s;
}

.insight-card:hover {
  border-color: rgba(228,0,43,0.3);
}

.insight-icon {
  display: block;
  font-size: 20px;
  color: var(--coral);
  margin-bottom: 12px;
}

.insight-card p {
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.6;
}

/* ============================================
   SLIDE 15 — SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: rgba(228,0,43,0.3);
}

.service-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.6;
}

/* ============================================
   SLIDE 16 — TIMELINE (E2E)
   ============================================ */
.timeline-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 120px;
  position: relative;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--coral);
  border: 2px solid rgba(228,0,43,0.3);
}

.slide-light .timeline-icon {
  background: white;
  box-shadow: var(--shadow-sm);
  border-color: var(--grey-200);
  color: var(--coral);
}

.timeline-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}

.slide-light .timeline-label { color: var(--text-dark); }

.timeline-approval {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral);
  background: rgba(228,0,43,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

.timeline-line {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin-top: 24px;
  flex-shrink: 0;
}

.slide-light .timeline-line { background: var(--grey-300); }

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--coral);
}

.stat-label {
  font-size: 12px;
  color: var(--grey-500);
  font-weight: 500;
}

/* ============================================
   SLIDE 17 — CURATION FLOW
   ============================================ */
.flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.flow-step {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  width: 200px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}

.flow-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow-list li {
  font-size: 13px;
  color: var(--grey-600);
}

.flow-arrow {
  flex-shrink: 0;
}

.highlight-box {
  text-align: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(228,0,43,0.06), rgba(0,180,216,0.06));
  border: 1px solid rgba(228,0,43,0.15);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   SLIDE 18 — PLATFORM FEATURES
   ============================================ */
.platform-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-light);
  transition: border-color 0.3s;
}

.platform-item:hover {
  border-color: rgba(228,0,43,0.3);
}

.platform-icon {
  color: var(--coral);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================
   SLIDE 19 — TECH CARDS
   ============================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tech-card {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s;
  box-shadow: var(--shadow-sm);
}

.tech-card:hover {
  border-color: rgba(228,0,43,0.3);
}

.tech-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 8px;
  opacity: 0.4;
}

.tech-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.tech-desc {
  font-size: 12px;
  color: var(--grey-500);
  line-height: 1.5;
  margin-bottom: 20px;
}

.tech-visual {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
}

.tc-1 { margin-right: -12px; opacity: 0.6; }
.tc-2 { opacity: 0.4; }

.tech-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
}

.tech-bar {
  width: 16px;
  border-radius: 4px 4px 0 0;
}

.tb-1 { height: 16px; background: var(--grey-400); }
.tb-2 { height: 30px; background: var(--coral); }
.tb-3 { height: 24px; background: var(--cyan); }

.tech-dashboard {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 70px;
}

.td-row { display: flex; gap: 3px; }
.td-block { height: 14px; border-radius: 2px; }
.td-b1 { flex: 1; background: rgba(228,0,43,0.3); }
.td-b2 { flex: 1; background: rgba(0,180,216,0.3); }
.td-b3 { flex: 1; background: rgba(255,255,255,0.15); }

.tech-sentiment {
  display: flex;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}

.ts-pos { color: var(--cyan); }
.ts-neu { color: var(--grey-400); }
.ts-neg { color: var(--coral); }

/* ============================================
   SLIDE 20 — METRICS / DASHBOARD
   ============================================ */
.metrics-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.metrics-subtitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.slide-dark .metrics-subtitle { color: var(--grey-400); }
.slide-light .metrics-subtitle { color: var(--text-dark); }

.dashboard-views {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-view {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.06);
}

.slide-light .dash-view {
  background: white;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border-color: var(--grey-200);
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.roi-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roi-layer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}

.roi-layer-1 {
  background: rgba(228,0,43,0.08);
  border: 1px solid rgba(228,0,43,0.15);
}

.roi-layer-2 {
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.15);
}

.roi-layer-3 {
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.15);
}

.roi-num {
  width: 28px;
  height: 28px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.roi-info {
  display: flex;
  flex-direction: column;
}

.roi-info strong {
  font-size: 14px;
  color: var(--text-light);
}

.slide-light .roi-info strong { color: var(--text-dark); }

.roi-info span {
  font-size: 12px;
  color: var(--grey-500);
}

/* ============================================
   SLIDE 21 — 29 STAGES
   ============================================ */
.stages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.stage-phase {
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.stage-phase-header {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.stage-count {
  font-size: 28px;
  font-weight: 800;
  color: var(--coral);
}

.stage-approval {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral);
  background: rgba(228,0,43,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

.stages-note {
  font-size: 13px;
  color: var(--grey-500);
  text-align: center;
  font-style: italic;
}

/* ============================================
   SLIDE 22 — GOVERNANCE
   ============================================ */
.governance-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.gov-ritual {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.gov-ritual-alert {
  border-color: rgba(228,0,43,0.2);
  background: rgba(228,0,43,0.04);
}

.gov-freq {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-400);
  width: 100px;
  flex-shrink: 0;
}

.gov-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  flex: 1;
}

.gov-duration {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  background: rgba(0,180,216,0.1);
  padding: 3px 10px;
  border-radius: 100px;
}

.compliance-box {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.compliance-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 12px;
}

.compliance-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compliance-items span {
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 12px;
  color: var(--grey-400);
  font-weight: 500;
}

/* ============================================
   SLIDE 24 — PENTAGON (Influence OS)
   ============================================ */
.pentagon-container {
  position: relative;
  width: 500px;
  height: 400px;
  margin: 0 auto;
}

.pentagon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.pentagon-os {
  display: block;
  font-size: 14px;
  color: var(--grey-500);
  font-weight: 400;
}

.pentagon-os-bold {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -1px;
}

.pentagon-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
  z-index: 4;
}

.pentagon-pos-1 { top: 0; left: 50%; transform: translateX(-50%); }
.pentagon-pos-2 { top: 30%; right: 0; }
.pentagon-pos-3 { bottom: 10%; right: 10%; }
.pentagon-pos-4 { bottom: 10%; left: 10%; }
.pentagon-pos-5 { top: 30%; left: 0; }

.pentagon-num {
  width: 28px;
  height: 28px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.pentagon-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.pentagon-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ============================================
   SLIDE 25 — CALENDAR
   ============================================ */
.calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.cal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
}

.cal-type {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral);
  min-width: 120px;
  flex-shrink: 0;
}

.cal-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.cal-note {
  font-size: 13px;
  color: var(--grey-500);
  text-align: center;
  font-style: italic;
}

/* ============================================
   SLIDE 26 — PYRAMID (Creator Ecosystem)
   ============================================ */
.pyramid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
}

.pyramid-tier {
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-align: center;
  position: relative;
}

.tier-1 {
  width: 50%;
  background: linear-gradient(135deg, var(--coral), var(--dark-coral));
  color: white;
}

.tier-2 {
  width: 65%;
  background: rgba(228,0,43,0.1);
  border: 1px solid rgba(228,0,43,0.2);
  color: var(--text-dark);
}

.tier-3 {
  width: 78%;
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.15);
  color: var(--text-dark);
}

.tier-ugc {
  width: 90%;
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--grey-200);
  color: var(--text-dark);
}

.tier-header {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tier-details {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

.profiles-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.profile-tag {
  padding: 5px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 100px;
  font-size: 11px;
  color: var(--grey-600);
  font-weight: 500;
}

.profiles-note {
  font-size: 12px;
  color: var(--grey-500);
  text-align: center;
  font-style: italic;
}

/* ============================================
   SLIDE 27 — CASES
   ============================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.case-card:hover {
  border-color: rgba(228,0,43,0.3);
}

.case-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(228,0,43,0.15);
  color: var(--coral);
  margin-bottom: 16px;
}

.case-badge-cyan {
  background: rgba(0,180,216,0.15);
  color: var(--cyan);
}

.case-badge-gold {
  background: rgba(255,184,0,0.15);
  color: var(--gold);
}

.case-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.case-highlight {
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 8px;
}

.case-desc {
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.5;
}

.case-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--cyan));
}

/* ============================================
   SLIDE 28 — COVERAGE TABLE
   ============================================ */
.coverage-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}

.cov-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 0;
  padding: 14px 20px;
  background: var(--coral);
  color: white;
}

.cov-header span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cov-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 0;
  padding: 12px 20px;
  background: white;
  border-bottom: 1px solid var(--grey-200);
}

.cov-row:nth-child(even) {
  background: var(--light-bg);
}

.cov-row span {
  font-size: 13px;
  color: var(--grey-600);
}

.cov-row span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================
   SLIDE 30 — BUDGET BAR (Economic Model)
   ============================================ */
.budget-bar {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  height: 80px;
}

.budget-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.budget-creators {
  flex: 85;
  background: linear-gradient(135deg, var(--coral), var(--dark-coral));
  color: white;
}

.budget-fee {
  flex: 15;
  background: var(--cyan);
  color: white;
}

.budget-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.budget-value {
  font-size: 10px;
  opacity: 0.8;
}

.budget-ref {
  font-size: 13px;
  color: var(--grey-500);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.6;
}

.transparency-note {
  text-align: center;
  font-size: 14px;
  color: var(--grey-600);
  font-style: italic;
  padding: 12px 20px;
  background: rgba(228,0,43,0.04);
  border-radius: 100px;
  border: 1px solid rgba(228,0,43,0.1);
}

/* ============================================
   SLIDE 31 — INCLUDED IN MANAGEMENT
   ============================================ */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.included-item {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  transition: border-color 0.3s;
}

.included-item:hover {
  border-color: rgba(228,0,43,0.3);
}

/* ============================================
   SLIDE 32 — TRAVEL RATES
   ============================================ */
.rates-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  margin-bottom: 20px;
}

.rates-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  padding: 14px 24px;
  background: var(--coral);
  color: white;
}

.rates-header span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.rates-header span:first-child {
  text-align: left;
}

.rates-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  padding: 16px 24px;
  background: white;
  border-bottom: 1px solid var(--grey-200);
}

.rates-row:nth-child(even) {
  background: var(--light-bg);
}

.rates-row span {
  font-size: 15px;
  color: var(--text-dark);
  text-align: center;
}

.rates-row span:first-child {
  text-align: left;
  font-weight: 600;
}

.rates-row span:not(:first-child) {
  font-weight: 700;
  color: var(--coral);
}

.rates-note {
  font-size: 13px;
  color: var(--grey-500);
  text-align: center;
  font-style: italic;
}

/* ============================================
   SLIDE 2 — COVER LETTER
   ============================================ */
.cover-letter-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-600);
}

.cover-letter-body p {
  font-size: 14px;
  line-height: 1.7;
}

.letter-signature {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--coral);
  display: inline-block;
}

.letter-signature p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dark);
}

/* ============================================
   SLIDE 31 — CAMPAIGN COSTS
   ============================================ */
.costs-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.costs-header {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 0;
  padding: 14px 24px;
  background: var(--coral);
  color: white;
}

.costs-header span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.costs-header span:first-child {
  text-align: left;
}

.costs-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 0;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.costs-row span {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

.costs-row span:first-child {
  text-align: left;
  font-weight: 500;
  color: white;
}

.costs-note {
  font-size: 12px;
  color: var(--grey-400);
  text-align: center;
  font-style: italic;
}

/* ============================================
   SLIDE 33 — COMMERCIAL TERMS
   ============================================ */
.terms-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.term-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
}

.term-row span:first-child {
  font-size: 14px;
  color: var(--text-light);
}

.term-check {
  color: var(--coral);
  font-size: 18px;
  font-weight: 700;
}

/* ============================================
   SLIDE 34 — RFP CHECKLIST
   ============================================ */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}

.check-icon {
  color: var(--coral);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.check-item span:nth-child(2) {
  flex: 1;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}

.check-ref {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-500);
  background: var(--light-bg);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ============================================
   SLIDE 35 — CLOSING
   ============================================ */
.slide-closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(228,0,43,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0,180,216,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.slide-closing-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.closing-quote {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.closing-line {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--grey-400);
  line-height: 1.4;
}

.closing-highlight {
  font-weight: 700;
  color: var(--text-light);
}

.closing-answer {
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 42px);
  background: linear-gradient(135deg, var(--coral), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.closing-logos {
  opacity: 0.7;
}

.closing-next {
  display: flex;
  align-items: center;
  gap: 16px;
}

.next-step {
  padding: 8px 20px;
  border: 1px solid rgba(228,0,43,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
}

/* ============================================
   SLIDE 36 — THANKS
   ============================================ */
.slide-thanks {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.thanks-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 30%, var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.thanks-sub {
  font-size: 16px;
  color: var(--grey-400);
  max-width: 600px;
  line-height: 1.7;
}

.thanks-contact {
  font-size: 14px;
  color: var(--grey-500);
}

.thanks-contact p {
  font-weight: 600;
}

.thanks-files {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-500);
  font-weight: 600;
}

.thanks-file-list {
  display: flex;
  gap: 12px;
}

.thanks-file-list span {
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 12px;
  color: var(--grey-400);
  font-weight: 500;
}

/* ============================================
   OVERVIEW GRID
   ============================================ */
.overview-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15,10,46,0.97);
  z-index: 2000;
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding: 40px;
  overflow-y: auto;
  align-content: start;
}

.overview-grid.visible { display: grid; }

.overview-thumb {
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative;
  background: var(--navy);
}

.overview-thumb:hover {
  border-color: var(--coral);
  transform: scale(1.03);
}

.overview-thumb.active {
  border-color: var(--coral);
  box-shadow: 0 0 20px rgba(228,0,43,0.3);
}

.overview-num {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  z-index: 5;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  body {
    overflow: visible;
    background: white;
  }

  .progress-bar,
  .controls,
  .nav-dots,
  .speaker-notes-panel,
  .overview-grid {
    display: none !important;
  }

  .slides-container {
    position: static;
  }

  .slide {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    page-break-after: always;
    page-break-inside: avoid;
    height: 100vh;
    width: 100vw;
  }

  .slide.prev, .slide.next {
    opacity: 1;
    transform: none;
  }

  .slide-dark {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .slide-content {
    width: 92%;
    padding: 20px 0;
  }

  .split-panel,
  .lenses-grid,
  .services-grid,
  .metrics-split {
    grid-template-columns: 1fr;
  }

  .tech-grid,
  .checklist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cases-grid,
  .insights-grid,
  .included-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    flex-direction: column;
  }

  .comparison-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
    justify-content: center;
  }

  .flow-container {
    flex-direction: column;
    align-items: center;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-line {
    width: 2px;
    height: 16px;
    margin-top: 0;
  }

  .venn-container {
    width: 320px;
    height: 300px;
  }

  .venn-circle {
    width: 160px;
    height: 160px;
  }

  .pentagon-container {
    width: 320px;
    height: 360px;
  }

  .pentagon-item {
    padding: 8px 10px;
  }

  .pentagon-label {
    font-size: 10px;
  }

  .pillars-row {
    flex-direction: column;
    gap: 8px;
  }

  .pillar-connector {
    width: 2px;
    height: 12px;
  }

  .nav-dots {
    bottom: 64px;
  }

  .closing-next {
    flex-direction: column;
    gap: 12px;
  }

  .closing-next svg {
    transform: rotate(90deg);
  }

  .question-pillars {
    gap: 6px;
  }

  .q-pillar {
    font-size: 11px;
    padding: 6px 12px;
  }

  .budget-bar {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .tech-grid,
  .stages-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .slide-title {
    font-size: 24px;
  }
}
