/* ============================================
   PITCH DECK — Shared Stylesheet
   Epicurean Digital Consultants
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --gold: #c8a951;
  --gold-light: #d4bb6e;
  --gold-dark: #a68b3a;
  --warm-white: #f5f0e8;
  --text-body: #cccccc;
  --text-muted: #888888;
  --white: #ffffff;
  --black: #000000;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ---------- Progress Bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  width: 0%;
  z-index: 10000;
  transition: width 0.15s linear;
}

/* ---------- Top Header ---------- */
.deck-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  z-index: 9000;
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
  pointer-events: none;
}

.deck-header > * { pointer-events: auto; }

.deck-header .logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 700;
}

.deck-header .logo span { color: var(--warm-white); font-weight: 400; }

.deck-header .slide-badge {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ---------- Slide (Section) ---------- */
.slide {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 64px 120px;
}

.slide-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* slide backgrounds */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.85) 100%);
}

/* Slide entrance animation */
.slide .slide-inner {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide.in-view .slide-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Typography ---------- */
.slide h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

.slide h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.slide h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.slide p {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 800px;
}

.slide .subheading {
  font-size: 1.35rem;
  color: var(--warm-white);
  opacity: 0.85;
  margin-bottom: 32px;
}

.slide .small-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.slide .source {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
}

/* ---------- Phase Badge ---------- */
.phase-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ---------- Stat Block ---------- */
.stat-block {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-top: 8px;
}

/* Large single stat */
.key-stat {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  margin: 24px 0;
  line-height: 1.3;
}

.key-stat small {
  display: block;
  font-size: 1rem;
  color: var(--text-body);
  font-family: var(--font-body);
  margin-top: 4px;
}

/* ---------- Grid Layouts ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 24px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 24px 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 24px 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-secondary);
  border: 1px solid rgba(200, 169, 81, 0.15);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: rgba(200, 169, 81, 0.4);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Icon card (for 3-column features) */
.icon-card {
  text-align: center;
  padding: 36px 24px;
}

.icon-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
}

/* Cost block cards */
.cost-card {
  background: var(--bg-tertiary);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 16px;
}

.cost-card h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.cost-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  max-width: none;
}

/* Bottom-line callout */
.callout {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(200, 169, 81, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.callout p {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  max-width: none;
}

/* ---------- Deliverable List ---------- */
.deliverable-list {
  list-style: none;
  columns: 2;
  column-gap: 40px;
  margin: 20px 0;
}

.deliverable-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 1rem;
  color: var(--text-body);
  break-inside: avoid;
}

.deliverable-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 9px;
}

/* ---------- Tables ---------- */
.deck-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.deck-table th {
  background: var(--bg-tertiary);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
}

.deck-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-body);
}

.deck-table tr:hover td { background: rgba(200, 169, 81, 0.04); }

.deck-table .highlight-col {
  background: rgba(200, 169, 81, 0.08);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  color: var(--warm-white);
  font-weight: 600;
}

.deck-table .check { color: var(--gold); }
.deck-table .cross { color: #555; }

/* ---------- Comparison Table ---------- */
.comparison-table th:last-child,
.comparison-table td:last-child {
  background: rgba(200, 169, 81, 0.1);
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  gap: 0;
  margin: 40px 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.timeline-phase {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.timeline-phase::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  display: block;
  margin: 32px auto 16px;
  position: relative;
  z-index: 1;
}

.timeline-weeks {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.timeline-items {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  align-items: start;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(200, 169, 81, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  position: relative;
  box-shadow: 0 0 40px rgba(200, 169, 81, 0.1);
}

.pricing-card.featured:hover { transform: scale(1.06); }

.pricing-card .tier-name {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.pricing-card .price-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card .includes {
  text-align: left;
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card .includes li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 20px;
  position: relative;
}

.pricing-card .includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Team Cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.team-card {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(200, 169, 81, 0.15);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
}

.team-card .team-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-card .team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--warm-white);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
}

/* ---------- Infographic Bars ---------- */
.deliverable-bar {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.deliverable-bar .bar-label {
  width: 220px;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.deliverable-bar .bar-track {
  flex: 1;
  height: 28px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin: 0 16px;
}

.deliverable-bar .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
  transition: width 1s ease;
  width: 0;
}

.deliverable-bar .bar-count {
  width: 40px;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  border: none;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(200, 169, 81, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 90px;
  right: 32px;
  z-index: 8000;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 24px rgba(200, 169, 81, 0.3);
  transition: all var(--transition);
}

.floating-cta a:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 81, 0.4);
}

/* ---------- Bottom Navigation ---------- */
.deck-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200, 169, 81, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 9000;
  padding: 0 32px;
}

.deck-nav button {
  background: none;
  border: 1px solid rgba(200, 169, 81, 0.3);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.deck-nav button:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.deck-nav .slide-counter {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--warm-white);
  min-width: 80px;
  text-align: center;
}

.deck-nav .slide-counter span { color: var(--text-muted); }

.deck-nav .slide-title-indicator {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Scroll Indicator ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-indicator .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(10px); }
  60% { transform: translateX(-50%) translateY(5px); }
}

/* ---------- Founding Client ---------- */
.founding-card {
  background: var(--bg-secondary);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 40px;
  max-width: 800px;
}

.founding-card .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ---------- CTA slide (closing) ---------- */
.slide-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide-cta h2 {
  font-size: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.slide-cta p {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info a { color: var(--gold); }

/* Animated gradient background */
.animated-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,81,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(200,169,81,0.04) 0%, transparent 50%);
  animation: bgShift 8s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ---------- Image in slide ---------- */
.slide-image {
  border-radius: var(--radius);
  margin-top: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-height: 360px;
  object-fit: cover;
  width: 100%;
}

.slide-image-small {
  max-height: 200px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  object-fit: cover;
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 32px 0;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,81,0.1);
}

.process-step .step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-step h3 {
  text-align: center;
}

.process-step p {
  max-width: none;
  text-align: center;
}

.process-step img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

/* ---------- Events Calendar ---------- */
.events-calendar {
  list-style: none;
  margin: 24px 0;
}

.events-calendar li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.events-calendar .day {
  width: 120px;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.events-calendar .event-name {
  color: var(--warm-white);
  font-size: 1rem;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(200,169,81,0.1);
}

.faq-item h4 {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.95rem;
  margin: 0;
  max-width: none;
}

/* ---------- Total badge ---------- */
.total-badge {
  text-align: center;
  margin: 40px 0 20px;
}

.total-badge .total-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  font-weight: 700;
}

.total-badge .total-label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .slide { padding: 80px 40px 100px; }
  .slide h1 { font-size: 2.6rem; }
  .slide h2 { font-size: 2rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { flex-direction: column; gap: 24px; }
  .timeline::before { display: none; }
  .timeline-phase { text-align: left; padding-left: 40px; }
  .timeline-phase::before { position: absolute; left: 0; top: 0; margin: 0; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .slide { padding: 80px 24px 100px; }
  .slide h1 { font-size: 2.1rem; }
  .slide h2 { font-size: 1.7rem; }
  .slide p { font-size: 1rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .deliverable-list { columns: 1; }
  .deck-header { padding: 10px 16px; }
  .deck-nav { padding: 0 16px; gap: 16px; }
  .deck-nav .slide-title-indicator { display: none; }
  .floating-cta { bottom: 74px; right: 16px; }
  .floating-cta a { padding: 10px 18px; font-size: 0.75rem; }
  .stat-number { font-size: 2.2rem; }
  .deck-table { font-size: 0.8rem; }
  .deck-table th, .deck-table td { padding: 8px 10px; }
  .deliverable-bar .bar-label { width: 140px; font-size: 0.8rem; }
  .founding-card { padding: 28px 20px; }
  .slide-cta h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .slide h1 { font-size: 1.7rem; }
  .slide h2 { font-size: 1.4rem; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-block { flex-direction: column; gap: 24px; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--warm-white); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
