/* ═══════════════════════════════════════════════
   MGIC INNOVATION PROJECT — PRESENTATION STYLES
   Palette: Navy #0A1628 · Teal #00C9B1 · Amber #F5A623
   Fonts: Syne (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════ */

:root {
  --navy:       #0A1628;
  --navy-mid:   #0d1f3c;
  --navy-light: #132848;
  --teal:       #00C9B1;
  --teal-dim:   rgba(0,201,177,0.15);
  --teal-glow:  rgba(0,201,177,0.35);
  --amber:      #F5A623;
  --amber-dim:  rgba(245,166,35,0.15);
  --red:        #FF4D6D;
  --red-dim:    rgba(255,77,109,0.15);
  --green:      #2ECC71;
  --green-dim:  rgba(46,204,113,0.15);
  --white:      #FFFFFF;
  --white-80:   rgba(255,255,255,0.8);
  --white-50:   rgba(255,255,255,0.5);
  --white-20:   rgba(255,255,255,0.2);
  --white-10:   rgba(255,255,255,0.1);
  --white-05:   rgba(255,255,255,0.05);
  --border:     rgba(255,255,255,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--navy);
  font-family: var(--font-body);
  color: var(--white);
}

/* ─── SLIDE BASE ─── */
.slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(60px);
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.slide.exit {
  opacity: 0;
  transform: translateX(-60px);
}

/* ─── BACKGROUNDS ─── */
.slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2240 50%, #091520 100%);
  z-index: 0;
}
.dark-bg {
  background: linear-gradient(135deg, #060e1a 0%, #0a1628 50%, #0d1f3c 100%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,177,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,177,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0,201,177,0.08); top: -150px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(245,166,35,0.06); bottom: -100px; left: -80px; }
.orb-teal { width: 600px; height: 600px; background: rgba(0,201,177,0.07); top: -200px; right: -150px; }
.orb-amber { width: 500px; height: 500px; background: rgba(245,166,35,0.08); bottom: -150px; left: -100px; }
.orb-red { width: 500px; height: 500px; background: rgba(255,77,109,0.06); top: -150px; left: -100px; }
.orb-purple { width: 500px; height: 500px; background: rgba(120,80,200,0.07); top: -100px; right: -100px; }

/* ─── SLIDE CONTENT WRAPPER ─── */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 0 60px;
}
.full-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ─── SLIDE HEADER ─── */
.slide-header {
  margin-bottom: 24px;
}
.slide-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--teal);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.slide-subtitle {
  font-size: 14px;
  color: var(--white-50);
  font-weight: 400;
  max-width: 700px;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   SLIDE 1 — TITLE
══════════════════════════════════════ */
.iso-warehouse {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 480px;
  opacity: 0.6;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.title-content {
  max-width: 680px;
  padding-left: 80px;
}
.title-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease both;
}
.title-main {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.accent-text {
  color: var(--teal);
  position: relative;
}
.accent-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
}
.title-sub {
  font-size: 16px;
  color: var(--white-50);
  line-height: 1.6;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.title-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}
.divider-line:last-child {
  background: linear-gradient(90deg, var(--teal), transparent);
}
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--teal);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.title-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}
.meta-value {
  font-size: 14px;
  color: var(--white-80);
  font-weight: 500;
}
.meta-sep {
  width: 1px;
  height: 36px;
  background: var(--white-20);
}

/* ══════════════════════════════════════
   SLIDE 2 — PROBLEM STATEMENT
══════════════════════════════════════ */
.problem-root {
  margin-bottom: 20px;
}
.root-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-dim);
  border: 1px solid rgba(255,77,109,0.3);
  color: #FF4D6D;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
}
.root-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.3);
}
.problem-icon {
  width: 52px; height: 52px;
  margin-bottom: 14px;
}
.problem-icon svg { width: 100%; height: 100%; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.problem-card p {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.6;
  margin-bottom: 14px;
}
.problem-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber);
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   SLIDE 3 — PROPOSED SOLUTION
══════════════════════════════════════ */
.solution-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.solution-goals {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}
.goals-header {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.goals-mission {
  font-size: 13px;
  color: var(--white-50);
  line-height: 1.5;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--white-80);
  line-height: 1.4;
}
.goal-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.goal-icon.teal { color: var(--teal); }
.goal-icon svg { width: 100%; height: 100%; }

.solution-factors {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.factor-card {
  display: flex;
  gap: 18px;
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.factor-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.factor-1::before { background: var(--amber); }
.factor-2::before { background: var(--teal); }
.factor-3::before { background: #7B68EE; }
.factor-card:hover { transform: translateX(4px); }
.factor-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white-10);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.factor-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.factor-body h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.factor-body p {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.5;
  margin-bottom: 10px;
}
.factor-parts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.factor-parts span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--white-10);
  color: var(--white-80);
}
.npi-tag {
  background: rgba(0,201,177,0.2) !important;
  color: var(--teal) !important;
  border: 1px solid rgba(0,201,177,0.3);
}
.phase-tag {
  background: rgba(245,166,35,0.2) !important;
  color: var(--amber) !important;
  border: 1px solid rgba(245,166,35,0.3);
}

/* ══════════════════════════════════════
   SLIDE 4 — SEASONAL DEMAND MAPPING
══════════════════════════════════════ */
.seasonal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.demand-chart-wrap, .zone-map-wrap {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}
.chart-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white-50);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bar-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-group { display: flex; align-items: center; gap: 12px; }
.bar-label {
  font-size: 12px;
  color: var(--white-50);
  width: 90px;
  flex-shrink: 0;
  text-align: right;
}
.bar-track {
  flex: 1;
  height: 10px;
  background: var(--white-10);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), rgba(245,166,35,0.6));
  border-radius: 5px;
  position: relative;
  transition: width 1s ease;
}
.bar-fill::after {
  content: attr(data-val);
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
}
.bar-fill.amber { background: linear-gradient(90deg, #F5A623, rgba(245,166,35,0.5)); }
.bar-fill.teal-bar { background: linear-gradient(90deg, var(--teal), rgba(0,201,177,0.5)); }
.bar-fill.teal-bar::after { color: var(--teal); }

.zone-map { display: flex; flex-direction: column; gap: 12px; }
.zone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white-05);
  transition: transform 0.3s;
}
.zone:hover { transform: translateX(4px); }
.filter-zone { border-left: 3px solid var(--amber); }
.coolant-zone { border-left: 3px solid var(--teal); }
.mhe-zone { border-left: 3px solid #7B68EE; }
.zone-icon { font-size: 22px; flex-shrink: 0; }
.zone-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.zone-desc { font-size: 11px; color: var(--white-50); line-height: 1.4; }
.zone-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.teal-badge { color: var(--teal); background: var(--teal-dim); }

/* ══════════════════════════════════════
   SLIDE 5 — IMPACT SEASONAL
══════════════════════════════════════ */
.impact-layout {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.before-after-col {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.ba-header {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.before-h { color: var(--red); }
.after-h { color: var(--teal); }
.ba-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
}
.ba-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.ba-item.bad { color: var(--white-50); }
.ba-item.bad svg { color: var(--red); }
.ba-item.good { color: var(--white-80); }
.ba-item.good svg { color: var(--teal); }
.ba-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  gap: 4px;
}
.bad-metric { background: var(--red-dim); border: 1px solid rgba(255,77,109,0.2); }
.good-metric { background: var(--teal-dim); border: 1px solid rgba(0,201,177,0.2); }
.metric-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; }
.red-num { color: var(--red); }
.green-num { color: var(--teal); }
.metric-desc { font-size: 11px; color: var(--white-50); text-align: center; }

.impact-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.impact-arrow svg { width: 52px; height: 52px; }
.impact-arrow span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-align: center;
  text-transform: uppercase;
}

.impact-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi-pill {
  background: var(--teal-dim);
  border: 1px solid rgba(0,201,177,0.25);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.kpi-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--teal);
}
.kpi-lbl { font-size: 11px; color: var(--white-50); line-height: 1.4; }

/* ══════════════════════════════════════
   SLIDE 6 — PRODUCT LIFECYCLE
══════════════════════════════════════ */
.plm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plm-criteria, .plm-models {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.criteria-title, .models-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white-50);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.criteria-card {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  transition: transform 0.3s;
}
.criteria-card:hover { transform: translateY(-3px); }
.criteria-icon { font-size: 20px; margin-bottom: 8px; }
.criteria-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.criteria-threshold {
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 6px;
}
.criteria-desc { font-size: 11px; color: var(--white-50); line-height: 1.4; }

.models-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.model-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white-05);
  border: 1px solid var(--border);
}
.model-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.npi-type { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(0,201,177,0.3); }
.phase-type { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(245,166,35,0.3); }
.model-list { display: flex; flex-wrap: wrap; gap: 6px; }
.model-list span {
  font-size: 12px;
  color: var(--white-80);
  background: var(--white-10);
  padding: 3px 10px;
  border-radius: 20px;
}
.plm-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,201,177,0.2);
  border-radius: 8px;
}
.plm-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }
.plm-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}
.teal-stat .plm-num { color: var(--teal); }
.plm-lbl { font-size: 10px; color: var(--white-50); text-align: center; line-height: 1.3; }
.plm-arrow { font-size: 18px; color: var(--teal); flex-shrink: 0; }

/* ══════════════════════════════════════
   SLIDE 7 — DEAD STOCK
══════════════════════════════════════ */
.deadstock-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ds-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ds-zone-card {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.ds-zone-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.mdr::before { background: var(--red); }
.hdr::before { background: var(--amber); }
.sdr::before { background: var(--teal); }
.lk::before { background: #7B68EE; }
.ds-zone-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.ds-stats { display: flex; flex-direction: column; gap: 8px; }
.ds-stat { display: flex; flex-direction: column; gap: 1px; }
.ds-big {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.ds-unit { font-size: 11px; color: var(--white-50); }

.ds-summary {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: center;
}
.ds-col {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}
.before-col { border-top: 2px solid var(--red); }
.after-col { border-top: 2px solid var(--teal); }
.ds-col-header {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.before-col .ds-col-header { color: var(--red); }
.after-col .ds-col-header { color: var(--teal); }
.ds-col-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.ds-col-item:last-child { border-bottom: none; }
.ds-col-label { color: var(--white-50); }
.ds-col-val { font-weight: 700; }
.ds-col-val.red { color: var(--red); }
.ds-col-val.green { color: var(--teal); }

.ds-transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ds-transform svg { width: 36px; height: 72px; }
.ds-transform span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ══════════════════════════════════════
   SLIDE 8 — ROADMAP
══════════════════════════════════════ */
.roadmap-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline-connector {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--teal), #7B68EE);
  z-index: 0;
}
.timeline-connector::before,
.timeline-connector::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.timeline-connector::before { left: 0; }
.timeline-connector::after { right: 0; background: #7B68EE; }

.phase-card {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, border-color 0.3s;
}
.phase-card:hover { transform: translateY(-4px); }
.phase-1 { border-top: 3px solid var(--teal); }
.phase-2 { border-top: 3px solid var(--amber); }
.phase-3 { border-top: 3px solid #FF6B6B; }
.phase-4 { border-top: 3px solid #7B68EE; }

.phase-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.phase-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white-10);
  line-height: 1;
}
.phase-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.phase-2 .phase-label { color: var(--amber); }
.phase-3 .phase-label { color: #FF6B6B; }
.phase-4 .phase-label { color: #7B68EE; }
.phase-content h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.phase-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.phase-content ul li {
  font-size: 11px;
  color: var(--white-50);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.phase-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.phase-2 .phase-content ul li::before { color: var(--amber); }
.phase-3 .phase-content ul li::before { color: #FF6B6B; }
.phase-4 .phase-content ul li::before { color: #7B68EE; }

/* ══════════════════════════════════════
   SLIDE 9 — IMPACTS / BENEFITS
══════════════════════════════════════ */
.results-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.result-big-card {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.result-big-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.picking::before { background: linear-gradient(90deg, var(--teal), transparent); }
.mhe::before { background: linear-gradient(90deg, var(--amber), transparent); }
.space::before { background: linear-gradient(90deg, var(--green), transparent); }

.rbc-icon { font-size: 24px; margin-bottom: 6px; }
.rbc-pct {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.picking .rbc-pct { color: var(--teal); }
.mhe .rbc-pct { color: var(--amber); }
.space .rbc-pct { color: var(--green); }
.rbc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white-80);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.rbc-calc { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.calc-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
.calc-label { color: var(--white-50); }
.calc-val { font-weight: 600; color: var(--white-80); }
.calc-val.red { color: var(--red); }
.calc-val.green { color: var(--green); }
.calc-val.teal-val { color: var(--teal); }
.result-row { padding-top: 5px; border-top: 1px solid var(--border); }

.progress-bar-wrap { display: flex; flex-direction: column; gap: 5px; }
.progress-track {
  height: 6px;
  background: var(--white-10);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(0,201,177,0.5));
  transition: width 1.5s ease;
}
.amber-fill { background: linear-gradient(90deg, var(--amber), rgba(245,166,35,0.5)); }
.green-fill { background: linear-gradient(90deg, var(--green), rgba(46,204,113,0.5)); }
.progress-bar-wrap span { font-size: 10px; color: var(--white-50); }

.location-breakdown {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
}
.lb-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white-50);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lb-items {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--white-10);
  padding: 8px 12px;
  border-radius: 6px;
}
.lb-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.lb-lbl { font-size: 10px; color: var(--white-50); text-align: center; }
.lb-plus, .lb-equals {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-30);
  flex-shrink: 0;
}
.lb-equals { color: var(--teal); font-size: 22px; }
.lb-total { background: var(--teal-dim); border: 1px solid rgba(0,201,177,0.3); }
.lb-total .lb-num { color: var(--teal); font-size: 20px; }

/* ══════════════════════════════════════
   SLIDE 10 — THANK YOU
══════════════════════════════════════ */
.thankyou-iso {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.thankyou-iso svg { width: 80%; max-width: 700px; }
.thankyou-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ty-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.ty-main {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.ty-sub {
  font-size: 16px;
  color: var(--white-50);
  margin-bottom: 28px;
  max-width: 500px;
}
.ty-summary {
  display: flex;
  gap: 32px;
  margin-top: 16px;
}
.ty-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ty-kpi-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
}
.ty-kpi-lbl { font-size: 12px; color: var(--white-50); text-align: center; }

/* ─── NAVIGATION ─── */
.nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 44px; height: 44px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white-80);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.nav-btn:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
}
.nav-btn svg { width: 20px; height: 20px; }
.nav-prev { left: 20px; }
.nav-next { right: 20px; }
.nav-btn:disabled { opacity: 0.2; pointer-events: none; }

.slide-counter {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white-50);
  background: var(--white-05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
#current-slide { color: var(--teal); }

.dot-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white-20);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  border: none;
}
.dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}
.dot:hover { background: var(--white-50); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLLABLE CONTENT ─── */
.full-content {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-dim) transparent;
}
.full-content::-webkit-scrollbar { width: 4px; }
.full-content::-webkit-scrollbar-track { background: transparent; }
.full-content::-webkit-scrollbar-thumb { background: var(--teal-dim); border-radius: 2px; }