/* ============================================
   SEED RISE — Executive Presentation Styles
   Palette: Deep Navy + Gold + Slate
   Fonts: Cormorant Garamond + Manrope
   ============================================ */

:root {
  --navy: #0F1E3C;
  --navy-mid: #1B2F52;
  --navy-light: #2E4A7A;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E9C8;
  --slate: #4A5568;
  --slate-light: #718096;
  --white: #FAFAF8;
  --off-white: #F0EDE6;
  --light-bg: #F7F5F0;
  --text-dark: #1A1A2E;
  --text-mid: #3D3D5C;
  --green: #2D7D46;
  --green-light: #48BB78;
  --red: #C53030;
  --red-light: #FC8181;
  --yellow: #B7791F;
  --yellow-light: #F6E05E;
  --phase-revival: #C9A84C;
  --phase-innovation: #2E86AB;
  --phase-success: #2D7D46;
  --phase-excellence: #7B2D8B;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  background: var(--navy);
}

/* ============ SLIDE BASE ============ */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4vh 6vw;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

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

.slide-dark { background: var(--navy); color: var(--white); }
.slide-light { background: var(--light-bg); color: var(--text-dark); }
.slide-accent { background: var(--navy-mid); color: var(--white); }
.slide-title { background: var(--navy); color: var(--white); align-items: center; }
.slide-closing { background: var(--navy); color: var(--white); align-items: center; }

/* ============ SLIDE LABEL ============ */
.slide-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2vh;
  padding-bottom: 0.6vh;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
}

/* ============ HEADINGS ============ */
.slide-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5vh;
}

.slide-heading.dark { color: var(--navy); }

.slide-subheading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5vh;
  max-width: 70%;
}

.slide-body {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 2vh;
}

.slide-body-center {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 2.5vh;
  text-align: center;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

/* ============ SLIDE NUMBER ============ */
.slide-number {
  position: absolute;
  bottom: 3vh;
  right: 4vw;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  pointer-events: none;
}

/* ============ BG PATTERN ============ */
.slide-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(46,134,171,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ============ SLIDE 1: TITLE ============ */
.title-content {
  text-align: center;
  z-index: 1;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.title-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2vh;
}

.title-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3em;
  margin-bottom: 1.5vh;
}

.title-seed {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

.title-rise {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.title-acronym {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5vh;
  letter-spacing: 0.05em;
}

.title-acronym em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}

.title-acronym .dot { color: var(--gold); opacity: 0.5; }

.title-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2.5vh;
}

.title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2vh;
}

.title-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
}

.title-meta .sep { color: var(--gold); opacity: 0.5; }

/* ============ SLIDE 2: BURNING PLATFORM ============ */
.slide-content-centered {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slide-content-centered .slide-heading,
.slide-content-centered .slide-subheading {
  text-align: center;
  max-width: 100%;
}

.burning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
  width: 100%;
  margin-bottom: 2.5vh;
}

.burning-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 2vh 1.5vw;
  text-align: left;
  transition: border-color 0.3s;
}

.burning-card:hover { border-color: rgba(201,168,76,0.5); }

.burning-icon { font-size: 1.8rem; margin-bottom: 1vh; }

.burning-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8vh;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.burning-text {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.burning-bottom {
  display: flex;
  gap: 4vw;
  justify-content: center;
  padding-top: 2vh;
  border-top: 1px solid rgba(201,168,76,0.15);
  width: 100%;
}

.burning-stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3vh;
}

/* ============ SLIDE 3: OPPORTUNITY ============ */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  width: 100%;
  align-items: start;
}

.asset-list { margin-top: 2vh; }

.asset-item {
  display: flex;
  align-items: baseline;
  gap: 1.5vw;
  padding: 1.2vh 0;
  border-bottom: 1px solid rgba(15,30,60,0.1);
}

.asset-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  min-width: 4vw;
  line-height: 1;
}

.asset-desc {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.opportunity-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5vh 2vw;
  color: var(--white);
}

.opp-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5vh;
}

.opp-matrix { position: relative; }

.matrix-axis-y {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5vh;
  letter-spacing: 0.05em;
}

.matrix-axis-x {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5vh;
  text-align: right;
  letter-spacing: 0.05em;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8vw;
}

.matrix-cell {
  padding: 1.2vh 1vw;
  border-radius: 6px;
  font-size: 0.7rem;
  line-height: 1.4;
}

.matrix-cell strong {
  display: block;
  font-size: 0.72rem;
  margin-bottom: 0.3vh;
}

.matrix-cell span { color: rgba(255,255,255,0.55); font-size: 0.65rem; }

.matrix-cell.occupied {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.matrix-cell.target {
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
}

.matrix-cell.target strong { color: var(--gold); }

/* ============ SLIDE 4: PESTLE ============ */
.pestle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
  width: 100%;
}

.pestle-card {
  display: flex;
  gap: 1vw;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 1.8vh 1.5vw;
  border-left: 3px solid transparent;
  transition: transform 0.2s;
}

.pestle-card:hover { transform: translateY(-2px); }
.pestle-card.green { border-left-color: var(--green-light); }
.pestle-card.critical { border-left-color: var(--gold); background: rgba(201,168,76,0.06); }
.pestle-card.neutral { border-left-color: var(--slate-light); }

.pestle-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
}

.pestle-head {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5vh;
}

.pestle-body {
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.8vh;
}

.pestle-signal {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-green { color: var(--green-light); }
.signal-critical { color: var(--gold); }
.signal-neutral { color: var(--slate-light); }

/* ============ SLIDE 5: SWOT ============ */
.swot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5vw;
  width: 100%;
  flex: 1;
}

.swot-box {
  border-radius: 8px;
  padding: 1.8vh 1.8vw;
  overflow: hidden;
}

.swot-box.strengths { background: rgba(45,125,70,0.1); border: 1px solid rgba(72,187,120,0.3); }
.swot-box.weaknesses { background: rgba(197,48,48,0.08); border: 1px solid rgba(252,129,129,0.3); }
.swot-box.opportunities { background: rgba(46,134,171,0.1); border: 1px solid rgba(46,134,171,0.3); }
.swot-box.threats { background: rgba(183,121,31,0.08); border: 1px solid rgba(246,224,94,0.3); }

.swot-header {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-bottom: 1vh;
}

.swot-box ul {
  list-style: none;
  padding: 0;
}

.swot-box ul li {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-mid);
  padding: 0.3vh 0;
  padding-left: 1em;
  position: relative;
}

.swot-box ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--slate-light);
  font-size: 0.65rem;
}

/* ============ SLIDE 6: COMPETITOR TABLE ============ */
.comp-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 1.5vh;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
}

.comp-table thead tr {
  background: rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.comp-table th {
  padding: 1.2vh 1vw;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.comp-table td {
  padding: 1vh 1vw;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  vertical-align: middle;
}

.comp-table tbody tr:hover td { background: rgba(255,255,255,0.03); }

.comp-name { font-weight: 600; color: var(--white) !important; }

.comp-table tr.seed-current td { background: rgba(255,255,255,0.03); }
.comp-table tr.seed-target td {
  background: rgba(201,168,76,0.08);
  color: var(--gold-light) !important;
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 0.2vh 0.6vw;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge.green { background: rgba(72,187,120,0.15); color: var(--green-light); }
.badge.red { background: rgba(252,129,129,0.15); color: var(--red-light); }
.badge.yellow { background: rgba(246,224,94,0.15); color: var(--yellow-light); }

.comp-insight {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 1.2vh 1.5vw;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.comp-insight em { color: var(--gold); font-style: normal; font-weight: 600; }

/* ============ SLIDE 7: DIFFERENTIATORS ============ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5vw;
  width: 100%;
}

.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2vh 1.5vw;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.diff-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.diff-card:hover::before { opacity: 1; }

.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 0.5vh;
}

.diff-icon { font-size: 1.5rem; margin-bottom: 1vh; }

.diff-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1vh;
  line-height: 1.3;
}

.diff-body {
  font-size: 0.7rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ============ SLIDE 8: REPOSITIONING ============ */
.reposition-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4vw;
  width: 100%;
  align-items: start;
}

.reposition-table { margin-top: 2vh; }

.repo-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1vw;
  align-items: center;
  padding: 1.2vh 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.repo-from {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(252,129,129,0.5);
}

.repo-arrow {
  color: var(--gold);
  font-size: 1rem;
  text-align: center;
}

.repo-to {
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 500;
}

.positioning-statement {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 3vh 2vw;
}

.ps-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5vh;
}

.ps-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5vh;
}

.ps-sub {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2vh;
}

.ps-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 1.5vh;
}

/* ============ SLIDE 9: ROADMAP ============ */
.roadmap-timeline {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

.timeline-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  width: 100%;
  align-items: stretch;
}

.phase-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0 0.5vw;
  opacity: 0.5;
}

.phase-block {
  border-radius: 10px;
  padding: 2vh 1.5vw;
  border-top: 3px solid transparent;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s;
}

.phase-block:hover { transform: translateY(-3px); }

.phase-revival { border-top-color: var(--phase-revival); }
.phase-innovation { border-top-color: var(--phase-innovation); }
.phase-success { border-top-color: var(--phase-success); }
.phase-excellence { border-top-color: var(--phase-excellence); }

.phase-period {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5vh;
}

.phase-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.3vh;
  line-height: 1;
}

.phase-revival .phase-name { color: var(--phase-revival); }
.phase-innovation .phase-name { color: var(--phase-innovation); }
.phase-success .phase-name { color: var(--phase-success); }
.phase-excellence .phase-name { color: var(--phase-excellence); }

.phase-theme {
  font-size: 0.68rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5vh;
}

.phase-actions { margin-bottom: 1.5vh; }

.pa {
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  padding: 0.2vh 0;
  padding-left: 0.8em;
  position: relative;
}

.pa::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

.phase-kpi {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border-radius: 4px;
  padding: 0.5vh 0.8vw;
  line-height: 1.4;
}

/* ============ SLIDE 10: PRODUCTS ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5vw;
  width: 100%;
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2vh 1.5vw;
  transition: border-color 0.3s, transform 0.2s;
}

.product-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }

.product-card.flagship {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.35);
}

.product-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1vh;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.8vh;
}

.product-duration {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5vh;
}

.product-fee {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8vh;
}

.product-usp {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 0.8vh;
  line-height: 1.4;
}

.product-skills {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 0.8vh;
}

.product-target {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ SLIDE 11: TRAINING ============ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5vw;
  width: 100%;
}

.training-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.8vh 1.5vw;
  transition: border-color 0.3s;
}

.training-card:hover { border-color: rgba(201,168,76,0.3); }

.training-card.full-width {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 2vw;
  align-items: center;
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.2);
}

.training-audience {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5vh;
}

.training-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5vh;
  line-height: 1.3;
}

.training-format {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.8vh;
}

.training-focus {
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

/* ============ SLIDE 12: KPI DASHBOARD ============ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
  width: 100%;
}

.kpi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.8vh 1.5vw;
}

.kpi-category {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4vh;
}

.kpi-metric {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2vh;
  line-height: 1.3;
}

.kpi-targets {
  display: flex;
  gap: 0.8vw;
}

.kpi-phase {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 0.6vh 0.3vw;
}

.kpi-phase.highlight {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
}

.kpi-phase-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2vh;
}

.kpi-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.kpi-val.red-val { color: var(--red-light); }
.kpi-val.yellow-val { color: var(--yellow-light); }

/* ============ SLIDE 13: CLOSING ============ */
.closing-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
}

.closing-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2vh;
}

.closing-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.5vh;
}

.closing-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2.5vh;
}

.closing-body {
  max-width: 600px;
  margin: 0 auto 3vh;
}

.closing-body p {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1vh;
}

.closing-body strong { color: var(--gold); }

.closing-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 3vh;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.cp-dot { color: var(--gold); opacity: 0.4; }
.cp-r, .cp-i, .cp-s, .cp-e {
  font-weight: 700;
  font-size: 1.2em;
  color: var(--gold);
}

.closing-meta {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
}

.closing-meta .sep { color: var(--gold); opacity: 0.3; }

/* ============ NAVIGATION ============ */
.slide-nav {
  position: fixed;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5vw;
  z-index: 1000;
  background: rgba(15,30,60,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  padding: 0.8vh 1.5vw;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3vh 0.5vw;
  transition: opacity 0.2s, transform 0.2s;
  line-height: 1;
}

.nav-btn:hover { opacity: 0.7; transform: scale(1.1); }
.nav-btn:disabled { opacity: 0.2; cursor: default; transform: none; }

.nav-dots {
  display: flex;
  gap: 0.5vw;
  align-items: center;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.nav-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ============ KEYBOARD HINT ============ */
.keyboard-hint {
  position: fixed;
  top: 2vh;
  right: 2vw;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  z-index: 100;
}

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