/* ═══════════════════════════════════════════════════════════════
   SUMEET INFRA SOLUTIONS — PRESENTATION WEBSITE
   Brand: Orange #F47B20 · Blue #0A346D · Green #00A859 · Yellow #FFD100
   Typography: Montserrat (all weights) + Roboto Mono
   Design: Premium Industrial · Dark Mode First · No emojis
 ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand Colors — OFFICIAL ONLY */
  --orange:       #F47B20;
  --orange-mid:   #D96A18;
  --orange-glow:  rgba(244,123,32,0.25);
  --orange-tint:  rgba(244,123,32,0.08);
  --blue:         #0A346D;
  --blue-mid:     #1A5BA8;
  --blue-light:   #4A90D9;
  --blue-tint:    rgba(10,52,109,0.3);
  --green:        #00A859;
  --green-tint:   rgba(0,168,89,0.12);
  --yellow:       #FFD100;

  /* Dark Mode Neutrals — PURE BLACK */
  --bg-1:   #000000;          /* absolute black — cover slide */
  --bg-2:   #080808;          /* main dark bg */
  --bg-3:   #101010;          /* slightly lighter */
  --bg-4:   #161616;          /* card bg */
  --bg-5:   #1C1C1C;          /* elevated card */
  --bg-6:   #222222;          /* hover state */
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);

  /* Text */
  --white:      #FFFFFF;
  --text-1:     #F0F4F8;       /* primary body */
  --text-2:     #A8BECC;       /* secondary */
  --text-3:     #6A8599;       /* muted */

  /* Fonts */
  --f-head: 'Montserrat', sans-serif;
  --f-body: 'Montserrat', sans-serif;
  --f-mono: 'Roboto Mono', monospace;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.35);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.5);
  --shadow-orange: 0 6px 30px rgba(244,123,32,0.35);
  --shadow-blue:   0 6px 30px rgba(10,52,109,0.45);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Transitions */
  --t-base: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-slow: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  background: var(--bg-2);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── UTILITY ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--orange), #FF9D50);
  z-index: 2000;
  transition: width 0.06s linear;
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.pres-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(9,19,31,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--t-base);
}

.pres-nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-shrink: 0;
}

.pres-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
}

.nav-logo-svg {
  height: 38px;
  width: auto;
  display: block;
  max-width: 200px;
}

.brand-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 0.25rem;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pres-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.38rem 0.7rem;
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: var(--orange-tint);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-base);
}

@media (max-width: 900px) {
  .pres-nav__links {
    display: none;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
  }
  .pres-nav__links.open { display: flex; }
  .nav-link { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; }
  .nav-hamburger { display: flex; }
}

/* ══════════════════════════════════════════════
   SLIDES — BASE
══════════════════════════════════════════════ */
.slide {
  min-height: 100vh;
  padding: 8rem 0 6rem;
  position: relative;
}

/* ══════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════ */
.section-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.tag-num {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--text-3);
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-headline {
  font-family: var(--f-head);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-headline em {
  font-style: normal;
  color: var(--orange);
}

.headline-accent {
  font-style: normal;
  color: var(--orange);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Reveal System */
.reveal-stagger {
  --stagger-delay: 0.1s;
}

.reveal-stagger .stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.visible .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible .stagger-item:nth-child(1) { transition-delay: calc(var(--stagger-delay) * 1); }
.reveal-stagger.visible .stagger-item:nth-child(2) { transition-delay: calc(var(--stagger-delay) * 2); }
.reveal-stagger.visible .stagger-item:nth-child(3) { transition-delay: calc(var(--stagger-delay) * 3); }
.reveal-stagger.visible .stagger-item:nth-child(4) { transition-delay: calc(var(--stagger-delay) * 4); }
.reveal-stagger.visible .stagger-item:nth-child(5) { transition-delay: calc(var(--stagger-delay) * 5); }
.reveal-stagger.visible .stagger-item:nth-child(6) { transition-delay: calc(var(--stagger-delay) * 6); }
.reveal-stagger.visible .stagger-item:nth-child(7) { transition-delay: calc(var(--stagger-delay) * 7); }
.reveal-stagger.visible .stagger-item:nth-child(8) { transition-delay: calc(var(--stagger-delay) * 8); }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.85rem;
  border-radius: var(--r-md);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: #FF9040;
  border-color: #FF9040;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(244,123,32,0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.4rem;
  font-size: 0.96rem;
}

/* ══════════════════════════════════════════════
   SLIDE 1 — COVER
══════════════════════════════════════════════ */
.slide--cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 6rem;
  overflow: hidden;
  background: var(--bg-1);
  gap: 0;
}

.cover__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1466611653911-95282fc3656b?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.cover__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.cover__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 700px; height: 700px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(244,123,32,0.12), transparent 65%);
}

.orb-2 {
  width: 600px; height: 600px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(10,52,109,0.3), transparent 65%);
}

.cover__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 2rem 2rem 3rem;
}

.cover__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2rem;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong));
}

.cover__headline {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.cover__sub {
  font-size: 1.12rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.cover__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Cover Stats */
.cover__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.042);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 720px;
  width: calc(100% - 4rem);
  backdrop-filter: blur(12px);
  margin-top: 4rem;
}

.stat-block {
  flex: 1;
  padding: 1.75rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.stat-num {
  font-family: var(--f-head);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.stat-lbl {
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  line-height: 1.4;
}

/* Scroll Cue */
.cover__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ══════════════════════════════════════════════
   SLIDE 2 — PROBLEM / OPPORTUNITY
══════════════════════════════════════════════ */
.slide--problem {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-3) 100%);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .compare-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.compare-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg-4);
}

.compare-card--old { border-color: rgba(255,82,82,0.2); background: rgba(255,50,50,0.04); }
.compare-card--new { border-color: rgba(0,168,89,0.25); background: rgba(0,168,89,0.04); }

.compare-card__header { margin-bottom: 1.5rem; }

.compare-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.compare-badge--old { background: rgba(255,82,82,0.12); color: #FF7070; border: 1px solid rgba(255,82,82,0.25); }
.compare-badge--new { background: rgba(0,168,89,0.12); color: var(--green); border: 1px solid rgba(0,168,89,0.25); }

.compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.compare-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--text-2);
  line-height: 1.5;
}

.ci-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.benchmark-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}

.benchmark-strip__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
}

.benchmark-strip__items {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
}

.bench-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: var(--t-fast);
  cursor: pointer;
}

.bench-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.bench-item__bar {
  width: 4px;
  height: 28px;
  border-radius: 2px;
  flex-shrink: 0;
}

.bench-item__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.bench-item__tag {
  font-size: 0.68rem;
  color: var(--text-3);
  display: none;
}

@media (min-width: 1024px) { .bench-item__tag { display: block; } }

/* ══════════════════════════════════════════════
   SLIDE 3 — BRAND
══════════════════════════════════════════════ */
.slide--brand {
  background: var(--bg-3);
}

.brand-master-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .brand-master-grid { grid-template-columns: 1fr; }
}

.brand-panel {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: var(--t-base);
}

.brand-panel:hover { border-color: var(--border-strong); }

.brand-panel--values {
  grid-column: 1 / -1;
}

.brand-panel__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.bp-icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

.brand-panel__header h3 {
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.brand-panel__intro {
  font-size: 0.87rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 600px) { .color-palette { grid-template-columns: repeat(2, 1fr); } }

.color-chip {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

.color-chip__swatch {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.color-chip--orange .color-chip__swatch { background: #F47B20; }
.color-chip--blue .color-chip__swatch { background: #0A346D; }
.color-chip--green .color-chip__swatch { background: #00A859; }
.color-chip--yellow .color-chip__swatch { background: #FFD100; }
.color-chip--black .color-chip__swatch { background: #231F20; border: 1px solid rgba(255,255,255,0.12); }
.color-chip--white .color-chip__swatch { background: #FFFFFF; border: 1px solid rgba(255,255,255,0.15); }

.color-chip__info { display: flex; flex-direction: column; gap: 2px; }

.chip-name { font-size: 0.78rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.chip-hex { font-family: var(--f-mono); font-size: 0.68rem; color: var(--text-3); }
.chip-role { font-size: 0.65rem; color: var(--text-3); line-height: 1.3; }

.typo-showcase { display: flex; flex-direction: column; gap: 0; }

.ts-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.ts-divider { height: 1px; background: var(--border); }

.ts-meta { display: flex; flex-direction: column; gap: 3px; }

.ts-role { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.ts-spec { font-size: 0.7rem; color: var(--text-3); font-family: var(--f-mono); }

.ts-sample { font-family: var(--f-head); color: var(--text-1); }
.ts-h1 { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.02em; }
.ts-h2 { font-size: 1.5rem; font-weight: 700; }
.ts-body { font-size: 1rem; font-weight: 400; }
.ts-mono { font-family: var(--f-mono); font-size: 0.88rem; font-weight: 500; color: var(--blue-light); }

.personality-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 600px) { .personality-matrix { grid-template-columns: repeat(2, 1fr); } }

.pm-item {
  padding: 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.pm-item--orange { background: rgba(244,123,32,0.06); border-color: rgba(244,123,32,0.2); }
.pm-item--blue   { background: rgba(10,52,109,0.2); border-color: rgba(26,91,168,0.3); }
.pm-item--green  { background: rgba(0,168,89,0.06); border-color: rgba(0,168,89,0.2); }

.pm-word {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.pm-item--orange .pm-word { color: var(--orange); }
.pm-item--blue .pm-word   { color: var(--blue-light); }
.pm-item--green .pm-word  { color: var(--green); }

.pm-item p { font-size: 0.78rem; color: var(--text-2); line-height: 1.5; }

.vm-cards { display: flex; flex-direction: column; gap: 1rem; }

.vm-card {
  padding: 1.5rem;
  border-radius: var(--r-md);
  border-left: 3px solid;
  background: rgba(255,255,255,0.03);
}

.vm-card--vision { border-color: var(--orange); }
.vm-card--mission { border-color: var(--blue-mid); }

.vm-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.vm-card--vision .vm-card__label { color: var(--orange); }
.vm-card--mission .vm-card__label { color: var(--blue-light); }

.vm-card__text {
  font-size: 0.9rem;
  font-style: normal;
  color: var(--text-1);
  line-height: 1.65;
  quotes: none;
}

.values-strip { display: flex; flex-direction: column; gap: 1rem; }

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: var(--t-fast);
}

.value-item:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.05); }

.complimentary-badge {
  margin: 1.5rem 0 2rem;
  background: linear-gradient(135deg, rgba(244,123,32,0.08) 0%, rgba(244,123,32,0.03) 100%);
  border: 1.5px solid rgba(244,123,32,0.35);
  border-radius: 14px;
  padding: 1.2rem 1.8rem;
  max-width: 740px;
}

.comp-badge__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.comp-badge__text {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  flex: 1;
}

.comp-badge__sub {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.comp-badge__sub strong { color: var(--white); }

.value-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon-wrap svg { width: 20px; height: 20px; }

.value-icon-wrap--orange { background: rgba(244,123,32,0.12); color: var(--orange); }
.value-icon-wrap--blue   { background: rgba(10,52,109,0.3); color: var(--blue-light); }
.value-icon-wrap--green  { background: rgba(0,168,89,0.12); color: var(--green); }

.value-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.value-item p { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }

/* ══════════════════════════════════════════════
   SLIDE 4 — SITEMAP
══════════════════════════════════════════════ */
.slide--sitemap {
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
}

.sitemap-container {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

.sitemap-home {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  padding: 0.85rem 2rem;
  background: rgba(244,123,32,0.08);
  border: 2px solid rgba(244,123,32,0.3);
  border-radius: var(--r-md);
  width: fit-content;
  margin: 0 auto 0.75rem;
  letter-spacing: 0.04em;
}

.sitemap-home svg { color: var(--orange); flex-shrink: 0; }

.sitemap-connector {
  width: 2px;
  height: 2rem;
  background: var(--border);
  margin: 0 auto;
  position: relative;
}

.sitemap-branches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  position: relative;
}

.sitemap-branches::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
}

@media (max-width: 960px) {
  .sitemap-branches { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .sitemap-branches { grid-template-columns: repeat(2, 1fr); }
}

.sitemap-branch {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.sitemap-branch::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  width: 1px;
  height: 0.75rem;
  background: var(--border);
}

.sitemap-parent {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.6rem 0.5rem;
  border-radius: var(--r-sm);
  text-align: center;
  line-height: 1.3;
}

.sitemap-parent--orange {
  background: rgba(244,123,32,0.1);
  color: var(--orange);
  border: 1px solid rgba(244,123,32,0.25);
}
.sitemap-parent--blue {
  background: rgba(10,52,109,0.25);
  color: var(--blue-light);
  border: 1px solid rgba(10,52,109,0.5);
}
.sitemap-parent--green {
  background: rgba(0,168,89,0.1);
  color: var(--green);
  border: 1px solid rgba(0,168,89,0.25);
}

.sitemap-children {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sitemap-children li {
  font-size: 0.71rem;
  color: var(--text-2);
  padding: 0.35rem 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 5px;
  text-align: center;
  line-height: 1.3;
  transition: var(--t-fast);
}

.sitemap-children li:hover { border-color: var(--border-strong); color: var(--white); }

.sc-highlight {
  color: var(--orange) !important;
  border-color: rgba(244,123,32,0.2) !important;
  background: rgba(244,123,32,0.06) !important;
  font-weight: 600 !important;
}

.arch-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) { .arch-notes { grid-template-columns: 1fr; } }

.arch-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.arch-note__icon {
  width: 36px;
  height: 36px;
  background: var(--orange-tint);
  border: 1px solid rgba(244,123,32,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.arch-note__icon svg { width: 18px; height: 18px; }

.arch-note strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.arch-note p { font-size: 0.8rem; color: var(--text-2); line-height: 1.55; }

/* ══════════════════════════════════════════════
   SLIDE 5 — SECTION BREAKDOWN
══════════════════════════════════════════════ */
.slide--sections {
  background: var(--bg-2);
}

.psc {
  display: flex;
  gap: 1.75rem;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: var(--t-base);
}

.psc::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 3px 0 0 3px;
}

.psc:hover {
  border-color: rgba(244,123,32,0.2);
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
}

.psc__num {
  font-family: var(--f-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
  width: 3rem;
  text-align: left;
}

.psc__body { flex: 1; min-width: 0; }

.psc__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.psc__title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
}

.psc__badge {
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.psc__badge--orange { background: rgba(244,123,32,0.12); color: var(--orange); border: 1px solid rgba(244,123,32,0.3); }
.psc__badge--blue   { background: rgba(10,52,109,0.25); color: var(--blue-light); border: 1px solid rgba(10,52,109,0.5); }
.psc__badge--green  { background: rgba(0,168,89,0.1); color: var(--green); border: 1px solid rgba(0,168,89,0.25); }

.psc__cols {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 800px) { .psc__cols { grid-template-columns: 1fr; } }

.psc__desc p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.68;
  margin-bottom: 1rem;
}

.psc__callout {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-left: 3px solid var(--orange);
  background: rgba(244,123,32,0.07);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 1rem;
  font-weight: 500;
}

.psc__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.psc__points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.5;
}

.pp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.mini-browser {
  width: 270px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  font-size: 0;
  flex-shrink: 0;
}

.mb-bar {
  background: #1a2535;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mb-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: block;
}

.mb-url {
  flex: 1;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
}

.mb-screen--hero {
  background: linear-gradient(150deg, #08121E 0%, #152132 100%);
  padding: 1rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mb-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mb-logo {
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
}

.mb-logo em { font-style: normal; color: var(--orange); }

.mb-links { font-size: 0.52rem; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }

.mb-headline {
  font-family: var(--f-head);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  padding-top: 0.4rem;
  letter-spacing: -0.01em;
}

.mb-headline span { color: var(--orange); }

.mb-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.32rem 0.7rem;
  border-radius: 4px;
  font-family: var(--f-head);
  font-size: 0.62rem;
  font-weight: 700;
  width: fit-content;
  letter-spacing: 0.04em;
}

.mb-stats {
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.mb-stats span {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.mini-service-grid {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.ms-card {
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-width: 130px;
  text-align: center;
  transition: var(--t-fast);
  position: relative;
  overflow: hidden;
}

.ms-card:hover {
  background: rgba(244,123,32,0.07);
  border-color: rgba(244,123,32,0.3);
  transform: translateY(-2px);
}

.ms-card--featured { border-color: rgba(244,123,32,0.3); background: rgba(244,123,32,0.06); }

.ms-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--orange); }

.ms-card__icon { width: 32px; height: 32px; margin: 0 auto 0.5rem; color: var(--text-2); }

.ms-card--featured .ms-card__icon { color: var(--orange); }

.ms-card__icon svg { width: 100%; height: 100%; }

.ms-card__name { font-size: 0.76rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 0.2rem; }

.ms-card__tag { font-size: 0.63rem; color: var(--orange); font-weight: 600; letter-spacing: 0.04em; }

.equip-category-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.ect {
  padding: 0.28rem 0.75rem;
  background: rgba(10,52,109,0.2);
  border: 1px solid rgba(10,52,109,0.4);
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--blue-light);
}

.ect--green { background: rgba(0,168,89,0.1); border-color: rgba(0,168,89,0.3); color: var(--green); }

/* ══════════════════════════════════════════════
   SLIDE 6 — DESIGN SYSTEM
══════════════════════════════════════════════ */
.slide--design {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) { .design-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .design-grid { grid-template-columns: 1fr; } }

.dcard {
  padding: 1.75rem;
  background: var(--bg-5);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t-base);
}

.dcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.dcard--dark  { background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-5) 100%); border-color: rgba(255,255,255,0.14); }
.dcard--orange { border-color: rgba(244,123,32,0.25); background: linear-gradient(135deg, rgba(244,123,32,0.06) 0%, var(--bg-5) 100%); }
.dcard--blue   { border-color: rgba(10,52,109,0.5); background: linear-gradient(135deg, rgba(10,52,109,0.2) 0%, var(--bg-5) 100%); }
.dcard--green  { border-color: rgba(0,168,89,0.25); background: linear-gradient(135deg, rgba(0,168,89,0.06) 0%, var(--bg-5) 100%); }

.dcard__icon { width: 36px; height: 36px; margin-bottom: 1rem; color: var(--orange); }

.dcard--blue .dcard__icon  { color: var(--blue-light); }
.dcard--green .dcard__icon { color: var(--green); }

.dcard__icon svg { width: 100%; height: 100%; }

.dcard h4 { font-family: var(--f-head); font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; letter-spacing: 0.01em; }
.dcard p { font-size: 0.81rem; color: var(--text-2); line-height: 1.62; }

.hero-preview-block { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border-strong); background: var(--bg-4); }

.hpb__label { display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.5rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); border-bottom: 1px solid var(--border); }
.hpb__label svg { color: var(--orange); }

.hpb__img { width: 100%; display: block; max-height: 500px; object-fit: cover; }
.hpb__caption { padding: 0.85rem 1.5rem; font-size: 0.78rem; color: var(--text-3); line-height: 1.55; border-top: 1px solid var(--border); font-style: italic; }

/* ══════════════════════════════════════════════
   SLIDE 7 — AI CHATBOT
══════════════════════════════════════════════ */
.slide--chatbot {
  background: var(--bg-2);
}

.chatbot-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

@media (max-width: 1024px) { .chatbot-layout { grid-template-columns: 1fr; } }

.cr-title { font-family: var(--f-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 2rem; }

.reason-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.reason-item:last-child { border-bottom: none; }

.ri-num { font-family: var(--f-mono); font-size: 1.4rem; font-weight: 700; color: var(--orange); line-height: 1; min-width: 2rem; flex-shrink: 0; opacity: 0.7; }
.ri-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.ri-body p { font-size: 0.84rem; color: var(--text-2); line-height: 1.65; }

.chatbot-demo-panel { position: sticky; top: 80px; }

.cdp-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.75rem; }

.chat-window { background: var(--bg-4); border: 1px solid var(--border-strong); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-blue); }

.chat-header { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; background: var(--blue); border-bottom: 1px solid rgba(255,255,255,0.1); }

.chat-avatar { width: 36px; height: 36px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.chat-avatar svg { width: 100%; height: 100%; }

.chat-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.chat-online { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: rgba(255,255,255,0.7); }

.online-dot { width: 7px; height: 7px; background: #4DFF91; border-radius: 50%; animation: onlinePulse 2.5s ease-in-out infinite; }

@keyframes onlinePulse { 0%, 100% { opacity: 0.5; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1); } }

.chat-messages { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; max-height: 340px; overflow-y: auto; }

.chat-msg { display: flex; flex-direction: column; gap: 0.2rem; }
.chat-msg--bot { align-items: flex-start; }
.chat-msg--user { align-items: flex-end; }

.cm-bubble { max-width: 85%; padding: 0.75rem 1rem; border-radius: 14px; font-size: 0.82rem; line-height: 1.55; }
.chat-msg--bot .cm-bubble { background: var(--bg-6); color: var(--text-1); border-radius: 4px 14px 14px 14px; border: 1px solid var(--border); }
.chat-msg--user .cm-bubble { background: var(--orange); color: var(--white); border-radius: 14px 14px 4px 14px; }

.cm-time { font-size: 0.65rem; color: var(--text-3); padding: 0 0.25rem; }

.chat-input-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-top: 1px solid var(--border); background: var(--bg-3); }

.chat-input { flex: 1; background: var(--bg-5); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 0.85rem; font-family: var(--f-body); font-size: 0.82rem; color: var(--text-1); outline: none; transition: var(--t-fast); }
.chat-input:focus { border-color: var(--orange); background: var(--bg-6); }
.chat-input::placeholder { color: var(--text-3); }

.chat-send-btn { width: 36px; height: 36px; background: var(--orange); border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--t-fast); flex-shrink: 0; color: var(--white); }
.chat-send-btn:hover { background: #FF9040; transform: scale(1.05); }
.chat-send-btn svg { width: 16px; height: 16px; }

.cdp-notes { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.cdn-item { font-size: 0.76rem; color: var(--text-2); line-height: 1.5; }
.cdn-item strong { color: var(--white); }

.chatbot-capabilities { padding-top: 3rem; border-top: 1px solid var(--border); }
.chatbot-capabilities h3 { font-family: var(--f-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }

.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .cap-grid { grid-template-columns: 1fr; } }

.cap-cap { display: flex; gap: 0.75rem; align-items: center; padding: 1rem; background: var(--bg-4); border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--t-fast); }
.cap-cap:hover { border-color: rgba(244,123,32,0.3); background: rgba(244,123,32,0.05); }

.cap-cap__icon { width: 28px; height: 28px; color: var(--orange); flex-shrink: 0; }
.cap-cap__icon svg { width: 100%; height: 100%; }
.cap-cap span { font-size: 0.8rem; color: var(--text-2); line-height: 1.45; font-weight: 500; }

/* ══════════════════════════════════════════════
   SLIDE 8 — AURA & EXPERIENCE
══════════════════════════════════════════════ */
.slide--aura {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}

.aura-quadrant {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) { .aura-quadrant { grid-template-columns: 1fr; } }

.aura-panel {
  padding: 2.25rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--bg-4);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.aura-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.aura-panel--1::before { background: var(--orange); }
.aura-panel--2::before { background: var(--blue-mid); }
.aura-panel--3::before { background: var(--green); }
.aura-panel--4::before { background: linear-gradient(to right, var(--orange), var(--blue-mid)); }

.aura-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.aura-panel__word { font-family: var(--f-head); font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 1rem; line-height: 1; transition: letter-spacing 0.4s ease; }
.aura-panel--1 .aura-panel__word { color: var(--orange); }
.aura-panel--2 .aura-panel__word { color: var(--blue-light); }
.aura-panel--3 .aura-panel__word { color: var(--green); }
.aura-panel--4 .aura-panel__word { background: linear-gradient(135deg, var(--orange), #FF6B6B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.aura-panel:hover .aura-panel__word { letter-spacing: 0.04em; }

.aura-panel p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }
.aura-panel em { font-style: normal; color: var(--white); font-weight: 600; }

.user-journey { padding: 2.5rem; background: var(--bg-4); border: 1px solid var(--border); border-radius: var(--r-xl); }
.user-journey h3 { font-family: var(--f-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.user-journey > p { font-size: 0.87rem; color: var(--text-2); margin-bottom: 2rem; }

.journey-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }

@media (max-width: 900px) {
  .journey-steps { grid-template-columns: 1fr; gap: 1rem; }
  .journey-arrow { display: none !important; }
}

.journey-step { padding: 1.5rem; background: var(--bg-5); border: 1px solid var(--border); border-radius: var(--r-lg); position: relative; }

.journey-arrow { display: flex; align-items: center; justify-content: center; padding: 0 0.5rem; color: var(--orange); margin-top: 2rem; }
.journey-arrow svg { width: 20px; height: 20px; }

.js-num { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 700; color: var(--orange); margin-bottom: 0.5rem; letter-spacing: 0.08em; }
.js-title { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; line-height: 1.3; }
.journey-step p { font-size: 0.78rem; color: var(--text-2); line-height: 1.55; margin-bottom: 0.75rem; }

.js-action { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); padding: 0.25rem 0.6rem; background: rgba(0,168,89,0.1); border: 1px solid rgba(0,168,89,0.2); border-radius: 4px; display: inline-block; }
.js-action--orange { color: var(--orange); background: rgba(244,123,32,0.1); border-color: rgba(244,123,32,0.2); }

/* ══════════════════════════════════════════════
   SLIDE 9 — NEXT STEPS
══════════════════════════════════════════════ */
.slide--next {
  background: var(--bg-3);
}

.timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 3.5rem; padding-left: 4rem; position: relative; }

.tl-item { display: flex; gap: 2rem; position: relative; padding-bottom: 2.5rem; }
.tl-item:last-child { padding-bottom: 0; }

.tl-side { position: absolute; left: -4rem; top: 0; display: flex; flex-direction: column; align-items: center; }

.tl-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid; flex-shrink: 0; position: relative; z-index: 1; }
.tl-dot--orange { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 12px rgba(244,123,32,0.5); }
.tl-dot--blue   { background: var(--blue-mid); border-color: var(--blue-mid); box-shadow: 0 0 12px rgba(26,91,168,0.4); }
.tl-dot--green  { background: var(--green); border-color: var(--green); box-shadow: 0 0 12px rgba(0,168,89,0.4); }

.tl-connector { width: 2px; flex: 1; background: var(--border); margin-top: 4px; }

.tl-content { padding: 1.5rem 2rem; background: var(--bg-4); border: 1px solid var(--border); border-radius: var(--r-lg); flex: 1; }

.tl-week { font-family: var(--f-mono); font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.tl-phase { font-family: var(--f-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.tl-content > p { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1rem; }

.tl-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tl-tags span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 4px; color: var(--text-3); }

.deliverables-section { margin-bottom: 4rem; }
.deliverables-section h3 { font-family: var(--f-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }

.del-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
@media (max-width: 900px) { .del-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .del-grid { grid-template-columns: 1fr; } }

.del-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1rem; background: var(--bg-4); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 0.82rem; color: var(--text-2); line-height: 1.4; transition: var(--t-fast); }
.del-item:hover { border-color: rgba(0,168,89,0.3); background: rgba(0,168,89,0.05); }

.di-check { width: 18px; height: 18px; flex-shrink: 0; }

.final-cta { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid rgba(244,123,32,0.25); background: linear-gradient(135deg, var(--bg-1) 0%, rgba(10,52,109,0.3) 100%); }

.final-cta__bg { position: absolute; inset: 0; overflow: hidden; }
.fca-orb-1 { position: absolute; width: 400px; height: 400px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(244,123,32,0.12), transparent 65%); border-radius: 50%; filter: blur(40px); }
.fca-orb-2 { position: absolute; width: 300px; height: 300px; bottom: -80px; left: 10%; background: radial-gradient(circle, rgba(10,52,109,0.3), transparent 65%); border-radius: 50%; filter: blur(40px); }

.final-cta__content { position: relative; z-index: 1; padding: 4rem; text-align: center; }
.final-cta__tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem; }
.final-cta__content h3 { font-family: var(--f-head); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1.25rem; }
.final-cta__content p { font-size: 1rem; color: var(--text-2); line-height: 1.75; max-width: 620px; margin: 0 auto 2.5rem; }
.final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.pres-footer { margin-top: 4rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.pf-inner { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-align: center; }
.pf-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--f-head); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; color: var(--white); }
.pf-tagline { font-size: 0.78rem; color: var(--orange); font-weight: 600; letter-spacing: 0.08em; }
.pf-meta { font-size: 0.7rem; color: var(--text-3); font-family: var(--f-mono); }

.chatbot-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; align-items: center; gap: 0.6rem; background: var(--blue); border: none; border-radius: 100px; padding: 0.75rem 1.25rem 0.75rem 0.75rem; cursor: pointer; box-shadow: var(--shadow-blue); transition: var(--t-base); }
.chatbot-float:hover { background: #1A4A8A; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(10,52,109,0.7); }

.cf-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.cf-label { font-family: var(--f-head); font-size: 0.8rem; font-weight: 700; color: var(--white); white-space: nowrap; }
.cf-pulse { position: absolute; top: 6px; right: 6px; width: 10px; height: 10px; border-radius: 50%; background: #4DFF91; animation: floatPulse 2s ease-in-out infinite; }

@keyframes floatPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }

/* ══════════════════════════════════════════════
   RESPONSIVE GLOBAL
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  html { font-size: 14px; }
  .slide { padding: 5rem 0 3rem; }
  .section-headline { font-size: 2.2rem; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 1rem; }
  .section-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; }
  .container { padding: 0 1.5rem; }
  
  .cover__stats { flex-wrap: wrap; border-radius: var(--r-md); margin-top: 2rem; width: 100%; }
  .stat-block { min-width: 50%; padding: 1.25rem 0.5rem; border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(3), .stat-block:nth-child(4) { border-bottom: none; }
  .stat-sep { display: none; }
  .stat-num { font-size: 1.75rem; }

  .psc { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .psc__num { font-size: 2.2rem; min-width: auto; opacity: 0.15; position: absolute; top: 1rem; right: 1.5rem; }
  .psc__cols { gap: 1.5rem; }
  .mini-browser { width: 100%; max-width: 320px; margin: 0 auto; }

  .tl-item { flex-direction: column; gap: 1rem; }
  .tl-side { position: relative; left: auto; flex-direction: row; margin-bottom: 0.5rem; }
  .tl-connector { display: none; }
  .timeline { padding-left: 0; }
  .tl-content { padding: 1.25rem; }

  .chatbot-layout { gap: 2rem; }
  .chat-messages { max-height: 280px; }
  .chatbot-demo-panel { position: relative; top: 0; }

  .journey-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .journey-arrow { display: none !important; }
  .journey-step { padding: 1.25rem; }

  .final-cta__content { padding: 3rem 1.5rem; }
  .final-cta__content h3 { font-size: 2rem; }
  
  .chatbot-float { bottom: 1.5rem; right: 1.5rem; padding: 0.75rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .cf-label { display: none; }
}

@media (max-width: 480px) {
  .section-headline { font-size: 1.8rem; }
  .stat-block { min-width: 100%; border-right: none; }
  .stat-block:nth-child(1), .stat-block:nth-child(2), .stat-block:nth-child(3) { border-bottom: 1px solid var(--border); }
  .cover__ctas { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .color-palette { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .aura-panel { padding: 1.5rem; }
}
