/* ============================================
   SYNGENTA x TRENDS ON INFLUENCE — 2027
   Executive Presentation Styles
   ============================================ */

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

:root {
  --green: #00A652;
  --dark-green: #006838;
  --navy: #0C1F2C;
  --light-bg: #F7F9FC;
  --accent: #2BB5E0;
  --text-dark: #1A2B3D;
  --text-light: #E8ECF0;
  --red: #E53E3E;
  --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(--green), var(--accent));
  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(--green);
  border-color: var(--green);
  color: white;
}

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

.nav-dot {
  width: 8px;
  height: 8px;
  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(--green);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(0,166,82,0.4);
}

/* --- SPEAKER NOTES --- */
.speaker-notes-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12,31,44,0.92);
  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(0,166,82,0.04) 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(--green);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(0,166,82,0.2);
  border-radius: 100px;
}

.tag-light {
  color: var(--green);
  border-color: rgba(0,166,82,0.3);
}

.slide-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

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

.slide-subtitle-light {
  color: var(--grey-400);
  font-size: 16px;
  margin-top: -28px;
  margin-bottom: 36px;
  font-weight: 400;
}

/* ============================================
   SLIDE 1 — ABERTURA
   ============================================ */
.slide-1-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.logos-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-trends, .logo-syngenta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-t {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.logo-icon-s {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--dark-green), var(--green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
}

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

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

.slide-1-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(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

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

.slide-1-line {
  width: 60px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  margin-top: 8px;
}

/* ============================================
   SLIDE 2 — QUEM 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 {
  margin-bottom: 12px;
}

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

.pillar-connector {
  width: 32px;
  height: 2px;
  background: var(--grey-300);
}

.clients-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.client-badge {
  padding: 8px 20px;
  border: 1px solid var(--grey-300);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-600);
}

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

/* ============================================
   SLIDE 3 — O PROBLEMA
   ============================================ */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.panel-header-green {
  color: var(--green);
}

.panel-header-red {
  color: var(--red);
}

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

.panel-list li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

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

.panel-positive .panel-list li::before {
  background: var(--green);
}

.panel-alert .panel-list li::before {
  background: var(--red);
}

.stat-detail {
  color: var(--grey-500);
  font-size: 13px;
}

/* ============================================
   SLIDE 4 — 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(0,166,82,0.08);
  border: 2px solid rgba(0,166,82,0.2);
}

.venn-2 {
  bottom: 20px;
  left: 20px;
  background: rgba(43,181,224,0.08);
  border: 2px solid rgba(43,181,224,0.2);
}

.venn-3 {
  bottom: 20px;
  right: 20px;
  background: rgba(0,104,56,0.08);
  border: 2px solid rgba(0,104,56,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(--green);
  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(0,166,82,0.3);
  z-index: 5;
  display: flex;
  flex-direction: column;
}

/* ============================================
   SLIDE 5 — 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: 14px;
  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-green {
  background: rgba(0,166,82,0.15);
  color: var(--green);
}

.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(--green);
  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 6 — PENTAGON
   ============================================ */
.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(--green);
  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(--green);
  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 7 — PYRAMID / SQUAD
   ============================================ */
.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(--green), var(--dark-green));
  color: white;
}

.tier-2 {
  width: 65%;
  background: rgba(0,166,82,0.15);
  border: 1px solid rgba(0,166,82,0.25);
  color: var(--text-light);
}

.tier-3 {
  width: 78%;
  background: rgba(43,181,224,0.1);
  border: 1px solid rgba(43,181,224,0.2);
  color: var(--text-light);
}

.tier-ugc {
  width: 90%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
}

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

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

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

.profile-tag {
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 11px;
  color: var(--grey-400);
  font-weight: 500;
}

/* ============================================
   SLIDE 8 — FLOW / CURADORIA
   ============================================ */
.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-icon {
  margin-bottom: 12px;
}

.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(0,166,82,0.06), rgba(43,181,224,0.06));
  border: 1px solid rgba(0,166,82,0.15);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
  max-width: 500px;
  margin: 0 auto;
}

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

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

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

.tech-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
  opacity: 0.5;
}

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

.tech-desc {
  font-size: 12px;
  color: var(--grey-400);
  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(--accent);
}

.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: 20px; background: var(--grey-500); }
.tb-2 { height: 35px; background: var(--green); }
.tb-3 { height: 28px; background: var(--accent); }

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

.td-row {
  display: flex;
  gap: 4px;
}

.td-block {
  height: 16px;
  border-radius: 3px;
}

.td-b1 { flex: 1; background: rgba(0,166,82,0.3); }
.td-b2 { flex: 1; background: rgba(43,181,224,0.3); }
.td-b3 { flex: 1; background: rgba(255,255,255,0.1); }

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

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

/* ============================================
   SLIDE 10 — TIMELINE
   ============================================ */
.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: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--grey-200);
}

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

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

.timeline-line {
  width: 24px;
  height: 2px;
  background: var(--grey-300);
  margin-top: 24px;
  flex-shrink: 0;
}

.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(--green);
}

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

/* ============================================
   SLIDE 11 — GOVERNANCE
   ============================================ */
.governance-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.governance-calendar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.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-month {
  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(--accent);
  font-weight: 600;
  background: rgba(43,181,224,0.1);
  padding: 3px 10px;
  border-radius: 100px;
}

.governance-compliance {
  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(--green);
  margin-bottom: 16px;
}

.compliance-item {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.compliance-item:last-child {
  border-bottom: none;
}

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

.metrics-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.dash-view {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  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(0,166,82,0.08);
  border: 1px solid rgba(0,166,82,0.15);
}

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

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

.roi-num {
  width: 28px;
  height: 28px;
  background: var(--green);
  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-dark);
}

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

/* ============================================
   SLIDE 13 — 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(0,166,82,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(0,166,82,0.15);
  color: var(--green);
  margin-bottom: 16px;
}

.case-badge-blue {
  background: rgba(0,104,56,0.15);
  color: var(--accent);
}

.case-badge-cyan {
  background: rgba(43,181,224,0.15);
  color: var(--accent);
}

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

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

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

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

/* ============================================
   SLIDE 14 — SHIELD / BLINDAGEM
   ============================================ */
.shield-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.shield-layers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 600px;
}

.shield-layer {
  width: 100%;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.shield-1 {
  background: linear-gradient(135deg, var(--green), var(--dark-green));
  color: white;
  width: 70%;
}

.shield-2 {
  background: rgba(0,166,82,0.12);
  border: 1px solid rgba(0,166,82,0.2);
  width: 85%;
}

.shield-3 {
  background: rgba(43,181,224,0.08);
  border: 1px solid rgba(43,181,224,0.15);
  width: 100%;
}

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

.shield-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.shield-2 .shield-num, .shield-3 .shield-num {
  background: rgba(0,166,82,0.15);
  color: var(--green);
}

.shield-content strong {
  font-size: 14px;
}

.shield-2 .shield-content strong {
  color: var(--text-dark);
}

.shield-3 .shield-content strong {
  color: var(--text-dark);
}

.shield-tier {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.competitors-row {
  display: flex;
  gap: 12px;
}

.competitor {
  padding: 6px 16px;
  border: 1px solid var(--grey-300);
  border-radius: 100px;
  font-size: 12px;
  color: var(--grey-500);
  font-weight: 500;
  position: relative;
}

.competitor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 110%;
  height: 1px;
  background: var(--red);
  opacity: 0.4;
}

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

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

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

.budget-fee {
  flex: 20;
  background: var(--accent);
  color: white;
}

.budget-prod {
  flex: 7;
  background: rgba(255,255,255,0.1);
  color: var(--text-light);
}

.budget-cont {
  flex: 3;
  background: rgba(255,255,255,0.05);
  color: var(--grey-400);
}

.budget-pct {
  font-size: 16px;
  font-weight: 800;
}

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

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

.budget-prod .budget-label,
.budget-cont .budget-label,
.budget-prod .budget-pct,
.budget-cont .budget-pct {
  font-size: 9px;
}

.tiers-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.tier-col {
  flex: 1;
  max-width: 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
}

.tier-col-recommended {
  border-color: var(--green);
  position: relative;
}

.tier-col-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-col-header {
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  background: rgba(255,255,255,0.04);
}

.tier-col-header-green {
  background: rgba(0,166,82,0.12);
  color: var(--green);
}

.tier-col-body {
  padding: 14px;
  font-size: 13px;
  color: var(--grey-400);
}

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

/* ============================================
   SLIDE 16 — REASONS
   ============================================ */
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.reason-item:hover {
  border-color: rgba(0,166,82,0.3);
  box-shadow: var(--shadow-md);
}

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

.reason-text {
  display: flex;
  flex-direction: column;
}

.reason-text strong {
  font-size: 15px;
  color: var(--text-dark);
}

.reason-text span {
  font-size: 13px;
  color: var(--grey-500);
  margin-top: 2px;
}

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

.slide-17-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(--green), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.logos-row-closing {
  opacity: 0.7;
}

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

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

/* ============================================
   OVERVIEW GRID
   ============================================ */
.overview-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12,31,44,0.97);
  z-index: 2000;
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(240px, 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(--green);
  transform: scale(1.03);
}

.overview-thumb.active {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(0,166,82,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;
}

.overview-thumb .slide {
  transform: scale(0.25);
  transform-origin: top left;
  pointer-events: none;
  width: 400%;
  height: 400%;
}

/* ============================================
   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 {
    grid-template-columns: 1fr;
  }

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

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

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

  .metrics-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .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;
  }

  .budget-bar {
    height: 100px;
    flex-direction: column;
  }

  .budget-segment {
    flex-direction: row;
    gap: 8px;
  }

  .tiers-row {
    flex-direction: column;
    align-items: center;
  }

  .tier-col {
    width: 100%;
    max-width: none;
  }

  .competitors-row {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

  .logos-row {
    gap: 16px;
  }

  .logo-icon-t, .logo-icon-s {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .shield-1 { width: 90%; }
  .shield-2 { width: 95%; }
  .shield-3 { width: 100%; }
}

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

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