/* ===================================================
   KRANE DIGITAL × BRENNAN CONSTRUCTION — PITCH DECK
   =================================================== */

/* ── Variables ── */
:root {
  --yellow:      #F5C200;
  --yellow-dark: #C99D00;
  --black:       #0A0A0A;
  --dark:        #111214;
  --dark-2:      #1A1C20;
  --dark-3:      #23262B;
  --mid:         #2E3138;
  --light-bg:    #F4F4F2;
  --light-2:     #E8E8E5;
  --white:       #FFFFFF;
  --text-light:  rgba(255,255,255,0.72);
  --text-muted:  rgba(255,255,255,0.42);
  --text-dark:   #1A1C20;
  --text-mid:    #4A4F5A;

  --font-main:   'Inter', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;

  --slide-w: 100vw;
  --slide-h: 100dvh;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition: 0.65s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; overflow: hidden; background: var(--black); }
body { font-family: var(--font-main); color: var(--white); }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; }
em { font-style: normal; }

/* ── Light-slide chrome overrides ── */
body[data-theme="light"] .slide-counter         { color: rgba(0,0,0,0.35); mix-blend-mode: normal; }
body[data-theme="light"] .slide-counter #currentSlide { color: var(--dark); }
body[data-theme="light"] .nav-arrow             { background: rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.12); color: rgba(0,0,0,0.55); }
body[data-theme="light"] .nav-arrow:hover       { background: var(--dark); color: var(--yellow); border-color: var(--dark); }
body[data-theme="light"] .nav-dot               { background: rgba(0,0,0,0.18); }
body[data-theme="light"] .nav-dot.active        { background: var(--dark); }

/* ── Progress Bar ── */
.progress-bar-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  z-index: 100;
  background: rgba(255,255,255,0.08);
}
.progress-bar {
  height: 100%;
  background: var(--yellow);
  transition: width 0.5s var(--ease);
  width: 5.88%;
}

/* ── Slide Counter ── */
.slide-counter {
  position: fixed;
  bottom: 24px; left: 32px;
  z-index: 100;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  mix-blend-mode: screen;
  pointer-events: none;
}
.slide-counter #currentSlide { color: var(--yellow); }
.slide-counter .sep { margin: 0 4px; }

/* ── Navigation Dots ── */
.nav-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.nav-dot.active {
  background: var(--yellow);
  transform: scale(1.5);
}
.nav-dot:hover { background: rgba(255,255,255,0.6); }

/* ── Arrow Buttons ── */
.nav-arrow {
  position: fixed;
  bottom: 20px;
  z-index: 100;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.3s;
  backdrop-filter: blur(8px);
}
.nav-arrow--prev { right: 82px; }
.nav-arrow--next { right: 24px; }
.nav-arrow:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.nav-arrow:disabled { opacity: 0.2; pointer-events: none; }

/* ── Deck & Slides ── */
.deck {
  width: var(--slide-w);
  height: var(--slide-h);
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  will-change: opacity, transform;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.slide.prev {
  opacity: 0;
  transform: translateX(-60px);
}

/* ── Slide Themes ── */
.slide--dark  { background: var(--dark); }
.slide--light { background: var(--light-bg); color: var(--text-dark); }
.slide--cover {
  background: var(--dark);
  overflow: hidden;
}
/* Amber radial glow — top-right, matching .slide--tier */
.slide--cover::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--yellow);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.slide--cta   { background: var(--black); }

/* Safety: all .slide variants must remain absolutely positioned */
.slide--objectives,
.slide--hiw,
.slide--tier,
.slide--coord,
.slide--ramp { position: absolute !important; }

/* ── Tier Slides ── */
.slide--tier {
  background: var(--dark);
  overflow: hidden;
}
.slide--tier::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--yellow);
  filter: blur(80px);
  pointer-events: none;
}
.slide--tier-2::before { opacity: 0.12; width: 600px; height: 600px; }
.slide--tier-3::before { top: -60px; right: -60px; opacity: 0.16; }

/* ── Slide Inner ── */
.slide-inner {
  width: 100%;
  max-width: 960px;
  padding: 60px 48px;
  position: relative;
  z-index: 2;
}
.slide-inner.centered { text-align: center; }

/* ── Labels ── */
.slide-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

/* ── Titles ── */
.slide-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 32px;
  color: var(--white);
  text-transform: uppercase;
}
.slide--light .slide-title { color: var(--text-dark); }
.slide--light .slide-title .accent { color: var(--dark); }
.slide-title .accent { color: var(--yellow); }

.slide-body {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 36px;
}
.slide--light .slide-body { color: var(--text-mid); }
.slide-body.centered-text { margin: 0 auto 36px; text-align: center; }

/* ── Callout Bar ── */
.callout-bar {
  margin-top: 36px;
  padding: 18px 24px;
  border-left: 3px solid var(--yellow);
  background: rgba(245,194,0,0.06);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  border-radius: 0 8px 8px 0;
}
.callout-bar.dark {
  background: rgba(0,0,0,0.06);
  border-left-color: var(--dark);
  color: var(--text-mid);
}

/* ── Standout Quote ── */
.standout-quote {
  margin-top: 40px;
  padding: 24px 32px;
  border-radius: 12px;
  background: rgba(245,194,0,0.08);
  border: 1px solid rgba(245,194,0,0.2);
  font-family: var(--font-cond);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--yellow);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.standout-quote.dark {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: var(--text-dark);
}

/* ════════════════════════════════════════
   SLIDE 1 — COVER
   ════════════════════════════════════════ */

/* Subtle bottom-left amber undertone — keeps depth without competing with ::before glow */
.cover-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 45% at 0% 100%, rgba(245,194,0,0.045) 0%, transparent 60%);
}

/* Fine dot-grid texture, fades at edges — same as before */
.cover-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 100%);
}

/* ── Top bar ── */
.cover-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cover-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Logo image in topbar */
.cover-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  display: block;
  /* logo is white-on-black; invert not needed on dark bg */
}
.cover-topbar-right {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  font-weight: 600;
}

/* ── Cover body — left-aligned, matches other slides ── */
.cover-body {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Inner uses the same .slide-inner sizing but with extra top offset for topbar */
.cover-inner {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

/* Headline — overrides slide-title size only; all other styles inherited */
.cover-headline {
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

/* Sub-body — identical to .slide-body */
.cover-sub {
  max-width: 560px;
  margin-bottom: 40px;
}

/* Partnership strip — left-aligned, compact */
.cover-partnership {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cover-co {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cover-co-role {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.cover-co-name {
  font-family: var(--font-cond);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cover-krane-logo {
  height: 22px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  opacity: 1;
}
.cover-brennan-logo {
  height: 28px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  opacity: 1;
}
.cover-times {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  padding: 0 4px;
  margin-top: 10px;
}

/* ── Bottom meta strip ── */
.cover-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cover-footer-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}
.cover-footer-sep {
  color: rgba(255,255,255,0.12);
  margin: 0 14px;
  font-size: 11px;
}
.cover-footer-spacer { flex: 1; }
.cover-footer-url { color: rgba(255,255,255,0.3); }

.cover-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.18);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.cover-scroll-hint i { font-size: 10px; color: var(--yellow); }

/* Bounce animation */
.bounce {
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* Cover responsive */
@media (max-width: 768px) {
  .cover-topbar { padding: 18px 24px; }
  .cover-footer  { padding: 14px 24px; flex-wrap: wrap; gap: 4px; }
  .cover-inner { padding: 80px 28px 80px; }
  .cover-headline { font-size: clamp(32px, 10vw, 56px); }
  .cover-partnership { gap: 12px; }
}

/* ════════════════════════════════════════
   SLIDE 2 — EXECUTIVE SUMMARY
   ════════════════════════════════════════ */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}
.summary-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.summary-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.5), transparent);
}
.summary-card:hover {
  border-color: rgba(245,194,0,0.25);
  background: rgba(245,194,0,0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.summary-card strong { font-size: 15px; font-weight: 600; color: var(--white); }
.summary-card p { font-size: 13px; line-height: 1.55; color: var(--text-light); }
.summary-icon { font-size: 24px; color: var(--yellow); }

/* ════════════════════════════════════════
   SLIDE 3 — OBJECTIVES (redesigned)
   ════════════════════════════════════════ */
.slide--objectives {
  background: var(--dark);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}

/* Ghosted watermark */
.obj-watermark {
  position: absolute;
  bottom: -60px;
  right: -40px;
  font-family: var(--font-cond);
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Top label strip */
.obj-toplabel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 36px 64px 0;
  flex-shrink: 0;
}
.obj-toplabel .slide-label {
  font-size: 13px;
  letter-spacing: 0.26em;
}
.obj-tagline {
  font-family: var(--font-cond);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}

/* Panels container — full remaining height */
.obj-panels {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  align-items: stretch;
  padding: 20px 64px 44px;
  gap: 0;
}

/* Each panel */
.obj-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-right: 48px;
  cursor: default;
  transition: flex 0.4s ease;
}
.obj-panel:hover { flex: 1.15; }
.obj-panel:last-child { padding-right: 0; }

/* Vertical divider line */
.obj-panel-line {
  position: absolute;
  top: 0; right: 24px;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.07);
}
.obj-panel:last-child .obj-panel-line { display: none; }

/* Panel inner layout */
.obj-panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: 0;
}

/* Big number */
.obj-panel-num {
  font-family: var(--font-cond);
  font-size: clamp(64px, 8vw, 108px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.06);
  margin-bottom: 24px;
  transition: color 0.35s ease;
}
.obj-panel:hover .obj-panel-num { color: rgba(245,194,0,0.14); }

/* Body block */
.obj-panel-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

/* Icon circle */
.obj-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(245,194,0,0.08);
  border: 1px solid rgba(245,194,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--yellow);
  transition: background 0.3s, border-color 0.3s;
}
.obj-panel:hover .obj-icon-wrap {
  background: rgba(245,194,0,0.15);
  border-color: rgba(245,194,0,0.45);
}

/* Title */
.obj-panel-title {
  font-family: var(--font-cond);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  display: block;
  position: relative;
  padding-bottom: 16px;
  text-transform: uppercase;
}
.obj-panel-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--yellow);
  transition: width 0.4s ease;
}
.obj-panel:hover .obj-panel-title::after { width: 72px; }

/* Description */
.obj-panel-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  max-width: 280px;
  transition: color 0.3s;
  margin-top: 4px;
}
.obj-panel:hover .obj-panel-desc { color: rgba(255,255,255,0.72); }

/* Responsive */
@media (max-width: 768px) {
  .obj-toplabel { padding: 28px 28px 0; }
  .obj-panels { flex-direction: column; padding: 20px 28px 28px; gap: 0; }
  .obj-panel { padding-right: 0; padding-bottom: 24px; flex: none; }
  .obj-panel:hover { flex: none; }
  .obj-panel-line { top: auto; bottom: 0; right: 0; width: 100%; height: 1px; }
  .obj-panel:last-child .obj-panel-line { display: none; }
  .obj-panel-num { font-size: 64px; }
  .obj-panel-title { font-size: 28px; }
  .obj-watermark { display: none; }
}

/* ════════════════════════════════════════
   SLIDE 4 — HOW IT WORKS (timeline)
   ════════════════════════════════════════ */
.slide--hiw {
  background: var(--dark);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}

/* Ambient glow blob */
.hiw-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,194,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Header ── */
.hiw-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 36px 64px 28px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hiw-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hiw-headline {
  font-family: var(--font-cond);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
}
.hiw-accent { color: var(--yellow); }

/* Pills row — spans full width below the 4 step columns */
.hiw-pills-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  grid-column: 1 / -1;
}
.hiw-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.hiw-pill i { color: var(--yellow); font-size: 11px; }

/* ── Horizontal Timeline ── */
.hiw-timeline {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0 64px 40px;
}

/* Steps row — 4-column grid inside the timeline flex container */
.hiw-timeline > .hiw-track,
.hiw-timeline > .hiw-tl-step {
  /* handled by the grid wrapper below */
}

/* Wrap steps in a grid */
.hiw-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
}

/* Pills span all 4 columns, centered */
.hiw-pills-row {
  grid-column: 1 / -1;
}

/* Running track line */
.hiw-track {
  position: absolute;
  top: 68px; /* aligns with centre of node */
  left: calc(64px + 4%);
  right: calc(64px + 4%);
  height: 2px;
  background: rgba(255,255,255,0.07);
  z-index: 1;
}
.hiw-track-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(245,194,0,0.15) 100%);
}

/* ── Each step ── */
.hiw-tl-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
  cursor: default;
}

/* Node */
.hiw-tl-node {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-bottom: 28px;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  position: relative;
  z-index: 2;
}
.hiw-tl-step:hover .hiw-tl-node,
.hiw-tl-node--final {
  background: rgba(245,194,0,0.12);
  border-color: var(--yellow);
  color: var(--yellow);
  transform: scale(1.1);
}

/* Card */
.hiw-tl-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 22px;
  width: 100%;
  max-width: 220px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.hiw-tl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.5), transparent);
}
.hiw-tl-step:hover .hiw-tl-card {
  border-color: rgba(245,194,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.hiw-tl-card--final {
  border-color: rgba(245,194,0,0.2);
  background: rgba(245,194,0,0.05);
}

.hiw-tl-num {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--yellow);
  margin-bottom: 6px;
}
.hiw-tl-title {
  font-family: var(--font-cond);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-transform: uppercase;
}
.hiw-tl-desc {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  transition: color 0.3s;
}
.hiw-tl-step:hover .hiw-tl-desc { color: rgba(255,255,255,0.65); }

.hiw-tl-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.hiw-tl-tag--final {
  color: var(--yellow);
  border-color: rgba(245,194,0,0.3);
  background: rgba(245,194,0,0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .hiw-header { padding: 24px 32px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .hiw-timeline { grid-template-columns: repeat(2, 1fr); padding: 0 32px 32px; gap: 24px; }
  .hiw-track { display: none; }
  .hiw-tl-card { max-width: 100%; }
}
@media (max-width: 600px) {
  .hiw-timeline { grid-template-columns: 1fr; padding: 0 24px 24px; }
  .hiw-header { padding: 20px 24px 16px; }
}

/* ════════════════════════════════════════
   SLIDE 5 — WHAT'S INCLUDED
   ════════════════════════════════════════ */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.included-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.included-item::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.5), transparent);
}
.included-item:hover {
  background: rgba(245,194,0,0.04);
  border-color: rgba(245,194,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.included-item i { font-size: 26px; color: var(--yellow); }
.included-item strong { font-size: 14px; font-weight: 700; color: var(--white); }
.included-item p { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.42); }

/* ════════════════════════════════════════
   SLIDE 6 — COVERAGE FLEXIBILITY
   ════════════════════════════════════════ */
.flex-icons-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 36px 0;
}
.flex-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.flex-icon-item i {
  font-size: 36px;
  color: var(--yellow);
}
.flex-icon-item span {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   TIER SLIDES (7, 8, 9) — redesigned
   ════════════════════════════════════════ */

/* Two-column wrapper */
.tier-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  align-items: stretch;
  position: relative;
}

/* ── Left panel ── */
.tier-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 52px 52px 52px 64px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.tier-left::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,194,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.tier-name {
  font-family: var(--font-cond);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.tier-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0;
}
.tier-price {
  font-family: var(--font-cond);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.03em;
}
.tier-price-sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  padding-bottom: 6px;
}

.tier-tagline {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.tier-best {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 360px;
}

/* ── Right panel ── */
.tier-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 52px 64px 52px 52px;
}

.tier-right-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Deliverable numbers grid */
.tier-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.tier-del {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s, border-color 0.2s;
}
.tier-del:hover {
  background: rgba(245,194,0,0.06);
  border-color: rgba(245,194,0,0.2);
}
.tier-del-val {
  font-family: var(--font-cond);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier-del-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

/* Checklist */
.tier-included-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.tier-inc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.tier-inc-item i {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.tier-inc-item--highlight {
  color: var(--yellow);
}
.tier-inc-item--highlight i {
  background: rgba(245,194,0,0.1);
  border-color: rgba(245,194,0,0.3);
  color: var(--yellow);
}

/* Most Popular badge */
.tier-popular-badge {
  position: absolute;
  top: 28px; right: 40px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
  .tier-wrap { grid-template-columns: 1fr; overflow-y: auto; }
  .tier-left { padding: 40px 28px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .tier-right { padding: 24px 28px 40px; }
  .tier-popular-badge { top: 16px; right: 16px; }
}

/* ════════════════════════════════════════
   SLIDE 10 — ONE-OFF (redesigned)
   ════════════════════════════════════════ */
.oneoff-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  align-items: stretch;
}

/* Left panel */
.oneoff-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 56px 56px 56px 64px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.oneoff-left::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,194,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.oneoff-headline {
  font-family: var(--font-cond);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
}
.oneoff-accent { color: var(--yellow); }

.oneoff-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.oneoff-price {
  font-family: var(--font-cond);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.oneoff-dash { color: rgba(255,255,255,0.3); }
.oneoff-price-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding-bottom: 4px;
}

.oneoff-ideal {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 380px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Right panel */
.oneoff-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 56px 64px 56px 56px;
}

.oneoff-right-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
}

.oneoff-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oneoff-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}
.oneoff-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}
.oneoff-item--optional {
  border-style: dashed;
  border-color: rgba(245,194,0,0.2);
  background: rgba(245,194,0,0.03);
}
.oneoff-item--optional:hover {
  background: rgba(245,194,0,0.06);
  border-color: rgba(245,194,0,0.35);
}

.oneoff-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245,194,0,0.08);
  border: 1px solid rgba(245,194,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--yellow);
  flex-shrink: 0;
}
.oneoff-item--optional .oneoff-item-icon {
  background: rgba(245,194,0,0.1);
  border-color: rgba(245,194,0,0.3);
}

.oneoff-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.oneoff-item-body strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.oneoff-item-body p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.42);
}

.oneoff-opt-badge {
  flex-shrink: 0;
  align-self: center;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245,194,0,0.3);
  border-radius: 100px;
  padding: 4px 10px;
  background: rgba(245,194,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .oneoff-wrap { grid-template-columns: 1fr; overflow-y: auto; }
  .oneoff-left { padding: 40px 28px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .oneoff-right { padding: 28px 28px 40px; }
}

/* ════════════════════════════════════════
   SLIDE 11 — PROJECT COORDINATION
   ════════════════════════════════════════ */
.slide--coord {
  background: var(--dark);
  display: flex;
  align-items: stretch;
}

/* Full-height layout column */
.coord-layout {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  position: relative;
  z-index: 2;
  height: 100%;
  box-sizing: border-box;
}

/* ── Headline ── */
.coord-headline {
  font-family: var(--font-cond);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin: 0 0 48px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.coord-headline .accent { color: var(--yellow); }

/* ── Five cards (mirrors .included-item style) ── */
.coord-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: start;
}

.coord-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.coord-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.5), transparent);
}
.coord-card:hover {
  background: rgba(245,194,0,0.04);
  border-color: rgba(245,194,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.coord-card i {
  font-size: 26px;
  color: var(--yellow);
}
.coord-card strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.coord-card p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* ── BOTTOM: takeover bar ── */
.coord-takeover {
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
}

.coord-takeover-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 14px;
  line-height: 1;
  margin-bottom: 16px;
}

.coord-takeover-krane {
  font-family: var(--font-cond);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.coord-takeover-handles {
  font-family: var(--font-cond);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

.coord-takeover-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.coord-takeover-sub i {
  color: var(--yellow);
  font-size: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ════════════════════════════════════════
   SLIDE 12 — SCHEDULING
   ════════════════════════════════════════ */
.scheduling-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--light-2);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 24px auto;
  max-width: 600px;
  text-align: left;
}
.sched-icon {
  font-size: 32px;
  color: var(--dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.scheduling-callout strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.scheduling-callout p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   SLIDE 13 — RAMP-UP
   ════════════════════════════════════════ */
.slide--ramp {
  background: var(--dark);
}

/* Outer wrapper */
.ramp-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 52px 48px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

/* ── Header ── */
.ramp-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}

/* ── Three-column phase grid ── */
.ramp-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  flex: 1;
  margin: 28px 0 0;
  align-items: stretch;
}

/* Column: label + title above the card */
.ramp-phase-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.ramp-phase-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: center;
}

.ramp-dash {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}

/* The dark card itself */
.ramp-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  flex: 1;
  position: relative;
  overflow: hidden;
}
/* Subtle top amber line accent */
.ramp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.5), transparent);
  border-radius: 0 0 4px 4px;
}
.ramp-card:hover {
  border-color: rgba(245,194,0,0.25);
  background: rgba(245,194,0,0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

/* Icon badge — centered, larger */
.ramp-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(245,194,0,0.1);
  border: 1px solid rgba(245,194,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 20px;
}
.ramp-icon-badge i {
  font-size: 30px;
  color: var(--yellow);
}

/* Phase title inside card */
.ramp-phase-title {
  font-family: var(--font-cond);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Dash-bullet list */
.ramp-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-self: flex-start;
}
.ramp-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}
.ramp-card-list li::before {
  content: '—';
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

/* ════════════════════════════════════════
   SLIDE 14 — DELIVERY
   ════════════════════════════════════════ */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.delivery-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.delivery-item::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.5), transparent);
}
.delivery-item:hover {
  background: rgba(245,194,0,0.04);
  border-color: rgba(245,194,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.delivery-item i { font-size: 26px; color: var(--yellow); }
.delivery-item strong { font-size: 14px; font-weight: 700; color: var(--white); }
.delivery-item p { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.42); margin: 0; }

/* ════════════════════════════════════════
   SLIDE 15 — TERMS
   ════════════════════════════════════════ */
/* Two-column terms layout */
.terms-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.terms-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Stat row under the headline */
.terms-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.terms-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 28px;
}
.terms-stat-num {
  font-family: var(--font-cond);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.terms-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.terms-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  margin-right: 28px;
  flex-shrink: 0;
}
.terms-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Stacked terms items */
.terms-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.terms-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 22px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.terms-item::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.5), transparent);
}
.terms-item:hover {
  border-color: rgba(245,194,0,0.25);
  background: rgba(245,194,0,0.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.terms-item i { font-size: 24px; color: var(--yellow); }
.terms-item strong { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.4; }
.guarantee-box {
  background: linear-gradient(135deg, rgba(245,194,0,0.1) 0%, rgba(245,194,0,0.04) 100%);
  border: 1px solid rgba(245,194,0,0.25);
  border-radius: 14px;
  padding: 28px 32px;
}
.guarantee-header {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.guarantee-box p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* ════════════════════════════════════════
   SLIDE 16 — WHY KRANE
   ════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 8px 0 8px;
}
.why-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.5), transparent);
}
.why-card:hover {
  background: rgba(245,194,0,0.04);
  border-color: rgba(245,194,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245,194,0,0.1);
  border: 1px solid rgba(245,194,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon i { font-size: 20px; color: var(--yellow); }
.why-card strong { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; }
.why-card p { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.42); margin: 0; }

/* ════════════════════════════════════════
   SLIDE 15 — CTA  (redesigned)
   ════════════════════════════════════════ */

/* Slide base */
.slide--cta {
  background: var(--black);
  overflow: hidden;
}

/* Ambient glows */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}
.cta-glow--left {
  width: 500px; height: 500px;
  top: -100px; left: -120px;
  background: radial-gradient(circle, rgba(245,194,0,0.09) 0%, transparent 70%);
}
.cta-glow--right {
  width: 400px; height: 400px;
  bottom: -80px; right: -60px;
  background: radial-gradient(circle, rgba(245,194,0,0.06) 0%, transparent 70%);
}

/* Two-column layout */
.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
}

/* LEFT COLUMN */
.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 52px 64px 72px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.cta-title {
  font-family: var(--font-cond);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 16px 0 28px;
}
.cta-accent {
  color: var(--yellow);
}
.cta-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin: 0 0 44px;
}

/* Contact / logo at bottom of left col */
.cta-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cta-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
}
.cta-url {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

/* RIGHT COLUMN */
.cta-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px 64px 52px;
  gap: 0;
}

/* Step cards */
.cta-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.cta-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: opacity 0.2s;
}
.cta-step:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.cta-step-num {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.25;
  min-width: 52px;
  letter-spacing: -0.03em;
  transition: opacity 0.2s;
}
.cta-step:hover .cta-step-num { opacity: 0.9; }
.cta-step:hover { opacity: 1; }

.cta-step-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.cta-step-body p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

/* CTA button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: #f7d000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,194,0,0.3);
}
.cta-btn i { font-size: 13px; }

/* ════════════════════════════════════════
   RESPONSIVE — full per-slide mobile pass
   ════════════════════════════════════════ */

/* ─────────────────────────────────────────
   GLOBAL: slides must scroll internally
   on mobile so content is never clipped
───────────────────────────────────────── */
@media (max-width: 768px) {
  /* Allow slides that overflow to be scrolled */
  .slide.active          { overflow-y: auto; -webkit-overflow-scrolling: touch; }

  /* Navigation chrome */
  .nav-dots              { display: none; }
  .nav-arrow             { width: 34px; height: 34px; font-size: 12px; bottom: 16px; }
  .nav-arrow--prev       { left: 12px; }
  .nav-arrow--next       { right: 12px; }
  .slide-counter         { bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 11px; }

  /* Generic inner */
  .slide-inner           { padding: 28px 20px 80px; /* bottom pad clears nav arrows */ }
  .slide-label           { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 10px; }
  .slide-title           { font-size: clamp(24px, 6.5vw, 38px); margin-bottom: 16px; line-height: 1.1; }
  .slide-body            { font-size: 13.5px; line-height: 1.65; margin-bottom: 20px; }
  .callout-bar           { font-size: 13px; padding: 14px 16px; }

  /* ─────────────────────────────────────
     SLIDE 1 — COVER
  ───────────────────────────────────── */
  .cover-body            { flex: 1; display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }
  .cover-inner           { padding: 24px 22px 24px; }
  .cover-topbar          { padding: 14px 18px; }
  .cover-topbar-right    { font-size: 10px; }
  .cover-footer          { padding: 10px 18px; flex-wrap: wrap; gap: 3px; font-size: 10px; }
  .cover-headline        { font-size: clamp(28px, 8vw, 46px); margin-bottom: 14px; }
  .cover-sub             { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
  .cover-partnership     { flex-direction: row; flex-wrap: wrap; gap: 16px; align-items: center; }
  .cover-co              { gap: 4px; }
  .cover-co-role         { font-size: 9px; }
  .cover-krane-logo      { height: 18px; }
  .cover-brennan-logo    { height: 22px; }
  .cover-times           { font-size: 14px; opacity: 0.3; }

  /* ─────────────────────────────────────
     SLIDE 2 — EXECUTIVE SUMMARY
  ───────────────────────────────────── */
  .card-row              { grid-template-columns: 1fr; gap: 10px; margin-bottom: 14px; }
  .summary-card          { flex-direction: row; align-items: flex-start; padding: 16px; gap: 12px; }
  .summary-icon          { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
  .summary-card strong   { font-size: 14px; }
  .summary-card p        { font-size: 12.5px; }

  /* ─────────────────────────────────────
     SLIDE 3 — OBJECTIVES
  ───────────────────────────────────── */
  .slide--objectives     { overflow-y: auto; }
  .obj-toplabel          { padding: 20px 20px 0; }
  .obj-tagline           { font-size: clamp(26px, 7vw, 40px); }
  .obj-panels            { flex-direction: column; padding: 14px 20px 24px; gap: 0; overflow: visible; }
  .obj-panel             { padding-right: 0; padding-bottom: 16px; flex: none; }
  .obj-panel:hover       { flex: none; }
  .obj-panel-line        { top: auto; bottom: 0; right: 0; width: 100%; height: 1px; }
  .obj-panel-num         { font-size: 48px; margin-bottom: 12px; }
  .obj-panel-body        { gap: 10px; }
  .obj-icon-wrap         { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; }
  .obj-panel-title       { font-size: clamp(22px, 6vw, 32px); padding-bottom: 10px; }
  .obj-panel-desc        { font-size: 13px; max-width: 100%; }
  .obj-watermark         { display: none; }

  /* ─────────────────────────────────────
     SLIDE 4 — HOW IT WORKS
  ───────────────────────────────────── */
  .slide--hiw            { overflow-y: auto; }
  .hiw-header            { padding: 18px 20px 14px; flex-direction: column; align-items: flex-start; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hiw-headline          { font-size: clamp(24px, 6.5vw, 40px); }
  .hiw-timeline          { display: grid; grid-template-columns: 1fr 1fr; padding: 16px 20px 80px; gap: 14px; }
  .hiw-track             { display: none; }
  .hiw-tl-step           { padding-top: 0; }
  .hiw-tl-node           { width: 44px; height: 44px; font-size: 16px; margin-bottom: 12px; }
  .hiw-tl-card           { max-width: 100%; padding: 16px 14px; border-radius: 12px; }
  .hiw-tl-title          { font-size: 18px; margin-bottom: 6px; }
  .hiw-tl-desc           { font-size: 12px; margin-bottom: 10px; }
  .hiw-pills-row         { grid-column: 1 / -1; gap: 6px; padding-top: 4px; flex-wrap: wrap; }
  .hiw-pill              { font-size: 10.5px; padding: 5px 10px; }

  /* ─────────────────────────────────────
     SLIDE 5 — WHAT'S INCLUDED
  ───────────────────────────────────── */
  .included-grid         { grid-template-columns: 1fr 1fr; gap: 10px; }
  .included-item         { padding: 18px 12px; gap: 8px; border-radius: 12px; }
  .included-item i       { font-size: 20px; }
  .included-item strong  { font-size: 13px; }
  .included-item p       { font-size: 11.5px; }

  /* ─────────────────────────────────────
     SLIDES 6-8 — TIERS
  ───────────────────────────────────── */
  .tier-wrap             { grid-template-columns: 1fr; overflow-y: auto; height: 100%; }
  .tier-left             { padding: 32px 22px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); justify-content: flex-start; gap: 12px; }
  .tier-name             { font-size: clamp(28px, 7vw, 44px); }
  .tier-price            { font-size: clamp(40px, 9vw, 60px); }
  .tier-price-sub        { font-size: 14px; }
  .tier-tagline          { font-size: 11px; }
  .tier-best             { font-size: 13px; padding-top: 10px; }
  .tier-right            { padding: 20px 22px 80px; gap: 16px; }
  .tier-right-label      { font-size: 10px; }
  .tier-deliverables     { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .tier-del              { padding: 14px 12px; border-radius: 10px; }
  .tier-del-val          { font-size: clamp(22px, 5.5vw, 32px); }
  .tier-del-label        { font-size: 11px; }
  .tier-included-list    { gap: 8px; }
  .tier-inc-item         { font-size: 12px; gap: 10px; }
  .tier-popular-badge    { top: 12px; right: 12px; font-size: 9px; padding: 4px 10px; }

  /* ─────────────────────────────────────
     SLIDE 9 (data-index=8) — ONE-OFF
  ───────────────────────────────────── */
  .oneoff-wrap           { grid-template-columns: 1fr; overflow-y: auto; height: 100%; }
  .oneoff-left           { padding: 32px 22px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 16px; }
  .oneoff-headline       { font-size: clamp(28px, 7vw, 44px); }
  .oneoff-price          { font-size: clamp(28px, 6vw, 42px); }
  .oneoff-price-label    { font-size: 11px; }
  .oneoff-ideal          { font-size: 13px; }
  .oneoff-right          { padding: 20px 22px 80px; gap: 12px; }
  .oneoff-right-label    { font-size: 10px; }
  .oneoff-items          { gap: 8px; }
  .oneoff-item           { padding: 12px 14px; gap: 12px; border-radius: 10px; }
  .oneoff-item-icon      { width: 36px; height: 36px; font-size: 15px; border-radius: 9px; flex-shrink: 0; }
  .oneoff-item-body strong { font-size: 13.5px; }
  .oneoff-item-body p    { font-size: 12px; }
  .oneoff-opt-badge      { font-size: 9px; padding: 3px 8px; }

  /* ─────────────────────────────────────
     SLIDE 10 (data-index=9) — COORDINATION
  ───────────────────────────────────── */
  .slide--coord          { overflow-y: auto; }
  .coord-layout          { padding: 24px 20px 80px; gap: 0; justify-content: flex-start; height: auto; min-height: 100%; }
  .coord-headline        { font-size: clamp(24px, 6vw, 38px); margin-bottom: 16px; }
  .coord-cards           { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .coord-card            { padding: 14px 8px; gap: 6px; border-radius: 12px; }
  .coord-card i          { font-size: 18px; }
  .coord-card strong     { font-size: 11.5px; }
  .coord-card p          { font-size: 10.5px; }
  .coord-takeover        { padding-top: 18px; margin-top: 16px; }
  .coord-takeover-line   { gap: 0 8px; margin-bottom: 10px; }
  .coord-takeover-krane,
  .coord-takeover-handles { font-size: clamp(20px, 5vw, 32px); }
  .coord-takeover-sub    { font-size: 12px; }

  /* ─────────────────────────────────────
     SLIDE 11 (data-index=10) — RAMP-UP
  ───────────────────────────────────── */
  .slide--ramp           { overflow-y: auto; }
  .ramp-layout           { padding: 24px 20px 80px; height: auto; min-height: 100%; }
  .ramp-phases           { grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }
  .ramp-phase-col        { height: auto; }
  .ramp-phase-label      { font-size: 12px; letter-spacing: 0.14em; }
  .ramp-card             { padding: 22px 18px; border-radius: 14px; }
  .ramp-icon-badge       { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 14px; }
  .ramp-icon-badge i     { font-size: 22px; }
  .ramp-phase-title      { font-size: 17px; margin-bottom: 14px; padding-bottom: 12px; }
  .ramp-card-list        { gap: 10px; }
  .ramp-card-list li     { font-size: 12.5px; }

  /* ─────────────────────────────────────
     SLIDE 12 (data-index=11) — DELIVERY
  ───────────────────────────────────── */
  .delivery-grid         { grid-template-columns: 1fr 1fr; gap: 10px; }
  .delivery-item         { padding: 18px 12px; gap: 8px; border-radius: 12px; }
  .delivery-item i       { font-size: 20px; }
  .delivery-item strong  { font-size: 13px; }
  .delivery-item p       { font-size: 11.5px; }

  /* ─────────────────────────────────────
     SLIDE 13 (data-index=12) — TERMS
  ───────────────────────────────────── */
  .terms-layout          { grid-template-columns: 1fr; gap: 20px; padding-bottom: 80px; }
  .terms-left            { gap: 0; }
  .terms-stat-row        { margin-top: 16px; gap: 0; }
  .terms-stat            { padding-right: 16px; }
  .terms-stat-num        { font-size: clamp(28px, 7vw, 44px); }
  .terms-stat-label      { font-size: 9px; letter-spacing: 0.12em; }
  .terms-stat-divider    { height: 36px; margin-right: 16px; }
  .terms-right           { gap: 12px; }
  .terms-stack           { gap: 8px; }
  .terms-item            { padding: 13px 14px; gap: 12px; border-radius: 12px; }
  .terms-item i          { font-size: 18px; }
  .terms-item strong     { font-size: 13px; }
  .guarantee-box         { padding: 18px 20px; border-radius: 12px; }
  .guarantee-header      { font-size: 16px; }
  .guarantee-box p       { font-size: 13px; }

  /* ─────────────────────────────────────
     SLIDE 14 (data-index=13) — WHY KRANE
  ───────────────────────────────────── */
  .why-grid              { grid-template-columns: 1fr 1fr; gap: 10px; margin: 6px 0; }
  .why-card              { padding: 18px 14px; gap: 10px; border-radius: 12px; }
  .why-icon              { width: 38px; height: 38px; border-radius: 10px; }
  .why-icon i            { font-size: 16px; }
  .why-card strong       { font-size: 13px; }
  .why-card p            { font-size: 11.5px; }

  /* ─────────────────────────────────────
     SLIDE 15 (data-index=14) — CTA
  ───────────────────────────────────── */
  .cta-layout            { grid-template-columns: 1fr; overflow-y: auto; height: 100%; }
  .cta-left              { padding: 40px 22px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); justify-content: flex-start; }
  .cta-title             { font-size: clamp(36px, 9vw, 58px); margin: 12px 0 16px; line-height: 0.95; }
  .cta-sub               { font-size: 13.5px; line-height: 1.65; margin-bottom: 24px; }
  .cta-contact           { padding-top: 20px; }
  .cta-logo-img          { height: 22px; }
  .cta-right             { padding: 24px 22px 80px; }
  .cta-steps             { margin-bottom: 28px; }
  .cta-step              { padding: 18px 0; gap: 18px; }
  .cta-step-num          { font-size: 30px; min-width: 38px; }
  .cta-step-body strong  { font-size: 14px; }
  .cta-step-body p       { font-size: 12.5px; }
  .cta-btn               { align-self: stretch; justify-content: center; padding: 15px 24px; font-size: 14px; }
}

/* ─────────────────────────────────────────
   SMALL PHONES ≤ 430px — second tighten
───────────────────────────────────────── */
@media (max-width: 430px) {
  .slide-inner           { padding: 22px 16px 80px; }
  .slide-title           { font-size: clamp(22px, 6vw, 34px); }

  /* Cover */
  .cover-inner           { padding: 20px 16px; }
  .cover-headline        { font-size: clamp(24px, 7.5vw, 38px); }
  .cover-sub             { font-size: 12.5px; }
  .cover-partnership     { gap: 12px; }

  /* Exec summary: single col cards */
  .card-row              { gap: 8px; }
  .summary-card          { padding: 13px 12px; }

  /* Objectives */
  .obj-toplabel          { padding: 16px 16px 0; }
  .obj-panels            { padding: 10px 16px 20px; }
  .obj-panel-num         { font-size: 40px; }
  .obj-panel-title       { font-size: clamp(20px, 6vw, 28px); }

  /* How It Works: single column */
  .hiw-timeline          { grid-template-columns: 1fr; padding: 12px 16px 80px; gap: 12px; }
  .hiw-header            { padding: 14px 16px 12px; }
  .hiw-pills-row         { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Included: single col */
  .included-grid         { grid-template-columns: 1fr; gap: 8px; }
  .included-item         { flex-direction: row; text-align: left; padding: 14px 12px; }
  .included-item i       { flex-shrink: 0; }

  /* Tiers */
  .tier-left             { padding: 24px 16px 16px; }
  .tier-right            { padding: 16px 16px 80px; }
  .tier-del              { padding: 10px 8px; }
  .tier-del-val          { font-size: clamp(20px, 5vw, 28px); }

  /* One-off */
  .oneoff-left           { padding: 24px 16px 16px; }
  .oneoff-right          { padding: 16px 16px 80px; }

  /* Coordination: 2-col cards */
  .coord-layout          { padding: 20px 16px 80px; }
  .coord-cards           { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .coord-headline        { font-size: clamp(20px, 5.5vw, 30px); margin-bottom: 12px; }
  .coord-takeover-krane,
  .coord-takeover-handles { font-size: clamp(18px, 4.5vw, 26px); }

  /* Ramp-up */
  .ramp-layout           { padding: 20px 16px 80px; }
  .ramp-card             { padding: 18px 14px; }
  .ramp-icon-badge       { width: 44px; height: 44px; }
  .ramp-icon-badge i     { font-size: 18px; }

  /* Delivery: single col */
  .delivery-grid         { grid-template-columns: 1fr; gap: 8px; }
  .delivery-item         { flex-direction: row; text-align: left; align-items: flex-start; padding: 14px 12px; }
  .delivery-item i       { flex-shrink: 0; margin-top: 2px; }

  /* Terms */
  .terms-layout          { gap: 16px; }
  .terms-stat-row        { flex-wrap: wrap; gap: 12px 0; }
  .terms-stat-divider    { display: none; }
  .terms-stat            { padding-right: 20px; }

  /* Why Krane: single col */
  .why-grid              { grid-template-columns: 1fr; gap: 8px; }
  .why-card              { flex-direction: row; align-items: flex-start; padding: 14px 12px; }
  .why-icon              { flex-shrink: 0; }

  /* CTA */
  .cta-left              { padding: 32px 16px 24px; }
  .cta-right             { padding: 20px 16px 80px; }
  .cta-title             { font-size: clamp(30px, 8vw, 48px); }
}
