/* ============================================
   529 Garage Enterprise — Presentation Styles
   Font: Baloo 2 · Palette: 529 Yellow / Black / White
   ============================================ */

:root {
  --bg-page: #000000;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --bg-accent-soft: rgba(255, 210, 0, 0.08);
  --bg-accent-medium: rgba(255, 210, 0, 0.12);
  --bg-dark: #000000;

  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #707070;
  --text-light: #4a4a4a;

  --accent: #FFD200;
  --accent-dark: #E6BD00;
  --accent-contrast: #000000;

  --border-subtle: rgba(255, 255, 255, 0.07);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 1px 2px rgba(0,0,0,0.4), 0 0 0 1px var(--border-subtle);
  --shadow-card-hover: 0 4px 16px rgba(0,0,0,0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  --shadow-nav: 0 2px 12px rgba(0,0,0,0.4), 0 0 0 1px var(--border-subtle);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg-page);
  font-family: 'Baloo 2', cursive, sans-serif;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Deck container ---- */
.deck {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ---- Slide base ---- */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.slide.exit-up {
  opacity: 0;
  transform: translateY(-12px);
}

.slide.exit-down {
  opacity: 0;
  transform: translateY(12px);
}

.slide-inner {
  width: 100%;
  max-width: 960px;
  padding: var(--sp-xl) var(--sp-xl);
  margin: 0 auto;
}

/* ---- Shared typography ---- */
.slide-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-contrast);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: var(--sp-md);
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: var(--sp-2xl);
}

h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-secondary);
}

.accent-num {
  color: var(--text-primary);
  font-weight: 800;
  background: linear-gradient(to top, var(--accent) 12%, transparent 12%);
  padding: 0 4px;
  margin: 0 -4px;
}

/* ====================
   SLIDE 1 — TITLE
   ==================== */
.title-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}

.title-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-lg);
  filter: drop-shadow(0 0 12px rgba(255, 210, 0, 0.2));
}

.title-content {
  max-width: 640px;
}

.title-tagline {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--sp-md);
  letter-spacing: -0.01em;
}

.title-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: var(--sp-sm);
  font-weight: 500;
}

.title-stats {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-2xl);
}

.stat-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-contrast);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
}

.stat-pill strong {
  font-weight: 700;
  color: var(--accent-contrast);
}

/* ====================
   SLIDE 2 — PROBLEM
   ==================== */
.center-layout {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.problem-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  box-shadow: var(--shadow-card);
}

.problem-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.problem-impact {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border-subtle);
  font-style: italic;
}

.source-note {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ====================
   SLIDES 3–4 — FEATURES
   ==================== */
.feature-layout {
  text-align: center;
}

.feature-header {
  margin-bottom: var(--sp-xl);
}

.feature-header h2 {
  margin-bottom: var(--sp-sm);
}

.feature-sub {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
  text-align: left;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  color: var(--accent-contrast);
}

.feature-card h3 {
  font-size: 15px;
  margin-bottom: var(--sp-xs);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-bottom-stat {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border-subtle);
}

.feature-bottom-stat strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ====================
   SLIDE 5 — HOW IT WORKS
   ==================== */
.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--sp-lg);
  margin-top: var(--sp-md);
}

.step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  box-shadow: var(--shadow-card);
  max-width: 220px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--sp-md);
}

.step h3 {
  margin-bottom: var(--sp-sm);
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 42px;
}

/* ====================
   SLIDE 6 — RESULTS
   ==================== */
.case-study {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-2xl);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--sp-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  border-left: 4px solid var(--accent);
}

.case-location {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: var(--sp-sm);
}

.case-stat {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}

.case-detail {
  font-size: 14px;
  color: var(--text-muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  max-width: 560px;
  margin: 0 auto;
}

.result-card {
  background: var(--bg-accent-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
}

.result-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--sp-xs);
}

.result-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ====================
   SLIDE 7 — PRICING
   ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  border-top: 3px solid var(--accent);
  transition: box-shadow 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.pricing-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: var(--sp-md);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.pricing-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}

.pricing-includes {
  font-size: 13px;
  color: var(--text-secondary);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border-subtle);
}

.pricing-note {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* ====================
   SLIDE 8 — CTA
   ==================== */
.cta-heading {
  font-size: 42px;
  margin-bottom: var(--sp-2xl);
}

.cta-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  max-width: 420px;
  margin: 0 auto var(--sp-2xl);
  text-align: left;
}

.cta-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
}

.cta-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-item h3 {
  font-size: 15px;
  margin-bottom: 2px;
}

.cta-item p {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-footer {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ====================
   NAVIGATION
   ==================== */
.nav-pill {
  position: fixed;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-sm) var(--sp-md);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  box-shadow: var(--shadow-nav);
  z-index: 100;
  user-select: none;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-secondary);
  transition: background 200ms, color 200ms;
}

.nav-btn:hover {
  background: rgba(255, 210, 0, 0.15);
  color: var(--text-primary);
}

.nav-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.nav-btn:disabled:hover {
  background: transparent;
  color: var(--text-secondary);
}

.nav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 250ms var(--ease-out), transform 250ms var(--ease-out);
}

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

.nav-dot:hover:not(.active) {
  background: var(--text-muted);
}

.nav-counter {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 36px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ====================
   SHARED — Images
   ==================== */
.slide-img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-img.rounded {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.img-caption {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: var(--sp-sm);
  text-align: center;
}

/* ====================
   SPLIT LAYOUT (text + image)
   ==================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.split-layout-wide {
  grid-template-columns: 3fr 2fr;
  align-items: end;
}

.split-text {
  text-align: left;
}

.split-text h2 {
  margin-bottom: var(--sp-lg);
}

.split-image {
  display: flex;
  flex-direction: column;
}

/* ====================
   PROBLEM LIST (split variant)
   ==================== */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.problem-item {
  display: flex;
  align-items: baseline;
  gap: var(--sp-md);
}

.problem-item .problem-num {
  font-size: 28px;
  min-width: 72px;
  text-align: right;
}

.problem-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ====================
   FEATURE CARD with IMAGE
   ==================== */
.feature-card-image {
  padding: 0;
  overflow: hidden;
}

.feature-card-image .card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.feature-card-image h3,
.feature-card-image p {
  padding: 0 var(--sp-lg);
}

.feature-card-image h3 {
  padding-top: var(--sp-md);
}

.feature-card-image p {
  padding-bottom: var(--sp-lg);
}

/* ====================
   TESTIMONIAL
   ==================== */
.testimonial {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border-subtle);
  text-align: left;
}

.testimonial-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

.testimonial blockquote {
  font-size: 13px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.testimonial cite {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-style: normal;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ====================
   STEP with IMAGE
   ==================== */
.step-image {
  padding-top: 0;
  overflow: hidden;
}

.step-img {
  width: calc(100% + var(--sp-lg) * 2);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
  margin: 0 calc(var(--sp-lg) * -1);
  margin-bottom: var(--sp-md);
}

.step-image {
  padding-left: var(--sp-lg);
  padding-right: var(--sp-lg);
}

/* ====================
   VANCOUVER CHART
   ==================== */
.vancouver-chart {
  max-width: 680px;
  margin: 0 auto var(--sp-lg);
}

.vancouver-chart img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.chart-caption {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.chart-caption strong {
  color: var(--text-primary);
}

/* ====================
   RECOVERY STORIES
   ==================== */
.recovery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.recovery-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: box-shadow 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.recovery-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.recovery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.recovery-info {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-md) 0;
}

.recovery-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 2px 8px;
  border-radius: 4px;
}

.recovery-location {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.recovery-quote {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  padding: var(--sp-sm) var(--sp-md) var(--sp-md);
  font-style: italic;
}

/* ====================
   COMMUNITY SLIDE
   ==================== */
.community-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}

.community-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.community-stat {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
}

.community-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-contrast);
  line-height: 1.1;
  margin-bottom: var(--sp-xs);
}

.community-stat p {
  font-size: 13px;
  color: var(--accent-contrast);
  opacity: 0.7;
}

/* ====================
   PARTNER LOGO STRIP
   ==================== */
.partner-strip {
  position: absolute;
  bottom: 76px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  padding: var(--sp-md) var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  justify-content: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.partner-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.partner-logo {
  height: 44px;
  width: auto;
  opacity: 0.7;
  object-fit: contain;
  transition: opacity 300ms;
}

.partner-logo:hover {
  opacity: 1;
}

/* Dark logos (Portland, RCMP) — invert for black strip */
.partner-logo-dark {
  filter: invert(1);
  opacity: 0.6;
}

.partner-logo-dark:hover {
  opacity: 0.9;
}

/* ====================
   PRICING — examples & links
   ==================== */
.pricing-examples {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-example {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.pricing-example span {
  color: var(--text-muted);
}

.pricing-example strong {
  color: var(--text-primary);
  font-weight: 700;
}

.pricing-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-contrast);
  background: var(--accent);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: 100px;
  text-decoration: none;
  margin-top: var(--sp-md);
  transition: background 200ms, transform 200ms;
}

.pricing-link:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.pricing-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 0, 0.3);
}

.pricing-note a:hover {
  border-bottom-color: var(--accent);
}

/* ====================
   CTA — links
   ==================== */
a.cta-item {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 300ms var(--ease-out), transform 300ms var(--ease-out);
}

a.cta-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.title-logo-sm {
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* ====================
   RESPONSIVE
   ==================== */
@media (max-width: 768px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; margin-bottom: var(--sp-xl); }

  .slide {
    overflow-y: auto;
    align-items: flex-start;
  }

  .slide-inner {
    padding: var(--sp-xl) var(--sp-lg) 80px;
    min-height: 100vh;
  }

  .title-layout {
    min-height: auto;
    padding-top: var(--sp-3xl);
  }

  .title-tagline {
    font-size: 24px;
  }

  .split-layout,
  .split-layout-wide {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .split-text { text-align: center; }

  .problem-item { justify-content: center; }

  .problem-impact {
    text-align: center;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }

  .feature-card {
    padding: var(--sp-md);
  }

  .testimonial {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-sm);
  }

  .testimonial cite {
    white-space: normal;
  }

  .steps-flow {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .step { max-width: 280px; }

  .recovery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-stats {
    grid-template-columns: 1fr;
  }

  .community-body {
    font-size: 15px;
  }

  .partner-strip {
    flex-direction: column;
    gap: var(--sp-sm);
    padding: var(--sp-sm) var(--sp-md);
    bottom: 68px;
  }

  .partner-logos {
    gap: var(--sp-md);
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-logo {
    height: 32px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .case-study {
    padding: var(--sp-lg);
  }

  .cta-heading {
    font-size: 30px;
  }

  .title-stats {
    flex-direction: column;
    align-items: center;
  }

  .vancouver-chart {
    max-width: 100%;
  }

  .chart-caption {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }

  .title-tagline {
    font-size: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .recovery-grid {
    grid-template-columns: 1fr;
  }

  .recovery-img {
    aspect-ratio: 4 / 3;
  }

  .pricing-amount {
    font-size: 36px;
  }

  .nav-dots { display: none; }

  .step { max-width: 100%; }

  .cta-heading {
    font-size: 26px;
  }
}

/* ---- Subtle page grain ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  z-index: 9999;
}
