/* ========================================
   CannCare - Cinematic Storyboard
   ======================================== */

:root {
  --primary: #c8e64a;
  --primary-dark: #a8c430;
  --primary-glow: rgba(200, 230, 74, 0.3);
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --text: #e0e0e0;
  --text-dim: #888888;
  --text-muted: #555555;
  --white: #ffffff;
  --light: #f8f8f4;
  --light-2: #f0f0ea;
  --border: rgba(255,255,255,0.08);
  --border-light: #e5e5e0;
  --red: #ff4444;
  --blue: #4488ff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Skip to content link (accessibility) */
.skip-to-content {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--primary);
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
}

/* Subtle film grain overlay on dark sections */
.hero::after,
.cta-hero::after,
.approach-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Global focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(200, 230, 74, 0.3);
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 10, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  font-size: 1.25rem;
}

.logo-icon { color: var(--primary); }
.logo strong { font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-accent {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* ========================================
   HERO - Cinematic
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(200,230,74,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(200,230,74,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(200,230,74,0.04) 0%, transparent 40%),
    var(--dark);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 120px 24px 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 230, 74, 0.15);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(200, 230, 74, 0.2);
  text-decoration: none;
  transition: all var(--transition);
}

.badge:hover {
  background: rgba(200, 230, 74, 0.25);
  border-color: rgba(200, 230, 74, 0.4);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title .line { display: block; }

.highlight {
  background: var(--primary);
  color: var(--dark);
  padding: 2px 14px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars { color: #f5a623; letter-spacing: 2px; }
.divider { color: var(--text-muted); }

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: rgba(200, 230, 74, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card-glow {
  background: linear-gradient(135deg, rgba(200,230,74,0.15), rgba(200,230,74,0.05));
  border-color: rgba(200,230,74,0.3);
  box-shadow: 0 0 40px rgba(200, 230, 74, 0.08);
}

.stat-number, .stat-number-text {
  display: inline;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
}

.stat-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

/* ========================================
   STORY TRIGGER CARDS (Hero)
   ======================================== */
.story-triggers {
  padding-top: 24px;
}

.story-triggers-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.story-trigger-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.story-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  font-family: inherit;
  color: var(--text);
}

.story-card:hover {
  background: rgba(200, 230, 74, 0.06);
  border-color: rgba(200, 230, 74, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.story-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-card-icon--police { background: rgba(255, 68, 68, 0.12); color: var(--red); border: 1px solid rgba(255, 68, 68, 0.2); }
.story-card-icon--workplace { background: rgba(255, 170, 0, 0.12); color: #ffaa00; border: 1px solid rgba(255, 170, 0, 0.2); }
.story-card-icon--landlord { background: rgba(255, 120, 50, 0.12); color: #ff8844; border: 1px solid rgba(255, 120, 50, 0.2); }

.story-card-text h3 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin: 0 0 2px; }
.story-card-text p { font-size: 0.75rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

.story-card-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}

.story-card:hover .story-card-arrow { color: var(--primary); transform: translateX(3px); }

/* ========================================
   STORY MODAL
   ======================================== */
.story-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
}

.story-modal.open { pointer-events: auto; visibility: visible; }

.story-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.story-modal.open .story-modal-backdrop { opacity: 1; }

.story-modal-panel {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 36px 32px;
  transform: translateY(40px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s var(--ease-spring), opacity 0.35s var(--ease-out);
}

.story-modal.open .story-modal-panel { transform: translateY(0) scale(1); opacity: 1; }

.story-modal.closing .story-modal-backdrop { opacity: 0; transition: opacity 0.3s var(--ease-out); }
.story-modal.closing .story-modal-panel { transform: translateY(20px) scale(0.98); opacity: 0; transition: transform 0.3s var(--ease-out), opacity 0.25s var(--ease-out); }

.story-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.story-modal-close:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }

.story-modal-header { margin-bottom: 20px; }

/* Theme glow effects */
.theme-police { box-shadow: inset 0 1px 0 rgba(255,40,40,0.15), inset 0 -1px 0 rgba(40,80,255,0.15); }
.theme-workplace { box-shadow: inset 0 1px 0 rgba(255,170,0,0.15); }
.theme-landlord { box-shadow: inset 0 1px 0 rgba(255,120,50,0.15); }

/* Modal resolution CTA */
.story-modal-resolution {
  text-align: center;
  padding: 24px 0 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.modal-res-cta p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.modal-res-cta strong { color: var(--primary); }

/* Modal visual positioning */
.story-modal-body .road-scene,
.story-modal-body .letter-float,
.story-modal-body .email-notif-bar {
  position: relative;
  margin: 0 auto 20px;
}

.story-modal-body .road-scene { opacity: 0.7; }
.story-modal-body .letter-float { opacity: 0.7; }

body.modal-open { overflow: hidden; }

/* ========================================
   SCENE ELEMENTS (shared in modal)
   ======================================== */

.scene-tag {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Scene timestamp */
.scene-time {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.time-stamp {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ========================================
   Road Scene + Cars
   ======================================== */
.road-scene {
  position: relative;
  margin: 0 auto 24px;
  width: 500px;
  height: 100px;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.scene-police.active .road-scene {
  opacity: 0.7;
}

.road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #1a1a2a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 20px;
}

.road-line {
  width: 30px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.car {
  position: absolute;
  bottom: 30px;
}

.your-car {
  right: 60px;
  animation: carPullOver 1.5s var(--ease-out) forwards;
}

.police-car {
  right: 200px;
  animation: policePullUp 2s var(--ease-out) 0.5s forwards;
  opacity: 0;
}

@keyframes carPullOver {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes policePullUp {
  from { transform: translateX(-80px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Siren lights */
.siren-red {
  animation: sirenFlashRed 0.6s ease-in-out infinite alternate;
}

.siren-blue {
  animation: sirenFlashBlue 0.6s ease-in-out infinite alternate-reverse;
}

@keyframes sirenFlashRed {
  0% { opacity: 0.3; fill: #ff2222; }
  100% { opacity: 1; fill: #ff4444; filter: drop-shadow(0 0 6px #ff4444); }
}

@keyframes sirenFlashBlue {
  0% { opacity: 0.3; fill: #2244ff; }
  100% { opacity: 1; fill: #4488ff; filter: drop-shadow(0 0 6px #4488ff); }
}

/* Hazard lights */
.hazard-lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hazard {
  position: absolute;
  width: 8px;
  height: 5px;
  background: #ffaa00;
  border-radius: 2px;
  animation: hazardBlink 1s ease-in-out infinite;
}

.hazard.left { left: 8px; top: 22px; }
.hazard.right { right: 8px; top: 22px; }

@keyframes hazardBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.headlight-beam {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 20px;
  background: radial-gradient(ellipse at right, rgba(255,255,200,0.15), transparent);
  pointer-events: none;
}

/* ========================================
   Chat Bubbles
   ======================================== */
.chat-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 660px;
}

.chat-msg {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.chat-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble {
  display: flex;
  gap: 10px;
  max-width: 92%;
}

.chat-bubble.self {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-avatar.officer {
  background: rgba(255, 68, 68, 0.15);
  color: var(--red);
  border: 1px solid rgba(255, 68, 68, 0.25);
}

.chat-avatar.hr {
  background: rgba(255, 170, 0, 0.15);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.25);
  font-size: 0.6rem;
}

.chat-avatar.landlord {
  background: rgba(255, 120, 50, 0.15);
  color: #ff8844;
  border: 1px solid rgba(255, 120, 50, 0.25);
}

.chat-avatar.cc {
  background: rgba(200, 230, 74, 0.15);
  color: var(--primary);
  border: 1px solid rgba(200, 230, 74, 0.25);
}

.chat-body {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
}

.chat-bubble.self .chat-body {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.chat-name {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.chat-body p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.chat-body p + p {
  margin-top: 8px;
}

.chat-body p strong {
  color: var(--white);
}

.chat-bubble.self .chat-body p {
  color: var(--text-dim);
}

.dim-msg .chat-body p {
  color: var(--text-muted);
  font-style: italic;
}

/* System message */
.chat-bubble.system {
  align-self: center;
  max-width: 100%;
}

.chat-bubble.system .chat-body {
  background: rgba(255, 68, 68, 0.08);
  border-color: rgba(255, 68, 68, 0.15);
  text-align: center;
  border-radius: 8px;
}

.system-text {
  color: rgba(255, 100, 100, 0.9) !important;
  font-weight: 600;
  font-size: 0.85rem !important;
}

/* CannCare advocate bubble */
.chat-bubble.canncare .chat-body {
  background: rgba(200, 230, 74, 0.08);
  border-color: rgba(200, 230, 74, 0.2);
}

.chat-bubble.canncare .chat-body p {
  color: rgba(200, 230, 74, 0.9);
}

.chat-bubble.canncare .chat-name {
  color: var(--primary);
}

/* Resolution bubble */
.chat-bubble.resolution-bubble {
  align-self: center;
  max-width: 100%;
}

.chat-bubble.resolution-bubble .chat-body {
  background: rgba(200, 230, 74, 0.1);
  border: 1px solid rgba(200, 230, 74, 0.25);
  border-radius: 12px;
  text-align: center;
  padding: 16px 24px;
}

.resolution-outcome-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary) !important;
  font-size: 1rem !important;
}

/* Chat divider */
.chat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  position: relative;
}

.chat-divider::before,
.chat-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 230, 74, 0.3), transparent);
}

.chat-divider span {
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* ========================================
   Email Notification Bar (Workplace)
   ======================================== */
.email-notif-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.15);
  color: var(--red);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 520px;
}

.email-notif-bar strong { color: var(--white); }

.notif-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: notifPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes notifPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px rgba(255,68,68,0.5); }
}

/* ========================================
   Office Grid Background (Workplace)
   ======================================== */
.office-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

/* ========================================
   Floating Document (Landlord)
   ======================================== */
.letter-float {
  position: relative;
  margin: 0 auto 20px;
  transform: rotate(2deg);
  opacity: 0;
  transition: opacity 1s var(--ease-out);
  z-index: 1;
}

.scene-landlord.active .letter-float {
  opacity: 0.7;
  animation: docFloat 4s ease-in-out infinite;
}

@keyframes docFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-6px); }
}

.floating-doc {
  width: 220px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}

.doc-header-bar {
  width: 100%;
  height: 3px;
  background: var(--red);
  margin-bottom: 12px;
  border-radius: 2px;
}

.doc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.doc-line {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-bottom: 6px;
  width: 100%;
}

.doc-line.w70 { width: 70%; }
.doc-line.w50 { width: 50%; }

/* (Scene background styles removed — now handled by modal themes) */

/* ========================================
   Interactive Prompt (What would you do?)
   ======================================== */
.interactive-prompt {
  padding: 20px 0;
  text-align: center;
}

.prompt-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.prompt-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.prompt-option {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.prompt-option:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transform: translateY(-2px);
}

.prompt-option.correct:hover,
.prompt-option.selected-correct {
  border-color: var(--primary);
  background: rgba(200, 230, 74, 0.15);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(200, 230, 74, 0.2);
}

.prompt-option.selected-wrong {
  border-color: rgba(255,68,68,0.3);
  background: rgba(255,68,68,0.08);
  color: rgba(255,100,100,0.7);
  opacity: 0.6;
  pointer-events: none;
}

.prompt-option.selected-correct {
  pointer-events: none;
}

.prompt-option.faded {
  opacity: 0.3;
  pointer-events: none;
}

/* ========================================
   Typing Indicator
   ======================================== */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(200, 230, 74, 0.08);
  border: 1px solid rgba(200, 230, 74, 0.15);
  border-radius: 14px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Resolution disclaimer */
.resolution-disclaimer {
  font-size: 0.7rem !important;
  color: var(--text-muted) !important;
  margin-top: 6px !important;
  font-style: italic;
}

/* (Progress dots + resolution scene styles removed — now in modal) */

/* ========================================
   OUR APPROACH - Dialog Over Confrontation
   ======================================== */
.approach-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #0d1a0d 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.approach-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.approach-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(200, 230, 74, 0.1);
  border: 1px solid rgba(200, 230, 74, 0.2);
  color: var(--primary);
  margin-bottom: 20px;
}

.approach-section .section-tag {
  display: inline-block;
  background: rgba(200, 230, 74, 0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.approach-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.approach-lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.approach-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition);
}

.approach-card:hover {
  background: rgba(200, 230, 74, 0.04);
  border-color: rgba(200, 230, 74, 0.15);
  transform: translateY(-4px);
}

.approach-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 230, 74, 0.1);
  color: var(--primary);
  margin-bottom: 16px;
}

.approach-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.approach-footer {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
}

.approach-footer strong {
  color: var(--primary);
}

@media (max-width: 768px) {
  .approach-section {
    padding: 64px 0;
  }

  .approach-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .approach-lead {
    margin-bottom: 32px;
  }
}

/* ========================================
   SERVICES - Light Section
   ======================================== */
.services {
  padding: 120px 0;
  background: var(--light);
  color: #4a4a4a;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-header p {
  color: #7a7a7a;
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e5e5e0;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(200,230,74,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.service-card p {
  color: #7a7a7a;
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-story-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-story-link:hover {
  color: var(--dark);
  letter-spacing: 0.3px;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
  transition: transform 0.4s var(--ease-spring);
}

/* ========================================
   HOW IT WORKS - Timeline
   ======================================== */
.how-it-works {
  padding: 120px 0;
  background: var(--white);
  color: #4a4a4a;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e5e0;
}

.timeline-line-fill {
  width: 100%;
  background: var(--primary);
  height: 0%;
  transition: height 0.1s linear;
}

.timeline-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.step-marker {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--white);
}

.step-time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  background: rgba(200, 230, 74, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.step-content p {
  color: #7a7a7a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-step.visible .step-marker {
  animation: markerPulse 2s ease-out 0.5s;
}

@keyframes markerPulse {
  0% { box-shadow: 0 0 0 6px var(--white); }
  50% { box-shadow: 0 0 0 6px var(--white), 0 0 0 14px rgba(200, 230, 74, 0.3); }
  100% { box-shadow: 0 0 0 6px var(--white); }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 120px 0;
  background: var(--light);
  color: #4a4a4a;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #7a7a7a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #e5e5e0;
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card.featured::before {
  color: rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.featured .testimonial-stars {
  color: #1a1a1a;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: var(--primary);
  border-color: var(--primary);
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  right: 24px;
}

.featured .quote-mark { color: rgba(0,0,0,0.1); }

.testimonial-card p {
  color: #4a4a4a;
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.featured p { color: #1a1a1a; }

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-footer strong {
  display: block;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.testimonial-footer small {
  color: #7a7a7a;
  font-size: 0.8rem;
}

.featured .testimonial-footer small { color: #333; }

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 120px 0;
  background: var(--white);
  color: #4a4a4a;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.faq-header {
  text-align: left;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--light);
  border: 1px solid #e5e5e0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover { border-color: var(--primary); }

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: #7a7a7a;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '\2212';
  color: var(--primary-dark);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out), opacity 0.35s ease;
  opacity: 0;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer > * {
  overflow: hidden;
}

.faq-item p {
  padding: 0 24px 20px;
  color: #7a7a7a;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   CTA HERO
   ======================================== */
.cta-hero {
  padding: 160px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200,230,74,0.15) 0%, rgba(200,230,74,0.05) 35%, transparent 70%);
  pointer-events: none;
  animation: ctaGlowPulse 6s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.cta-title span { display: block; }

.cta-text {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.free-service-strip {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.free-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-pulse {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 230, 74, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(200, 230, 74, 0); }
}

.cta-patient-count {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.cta-patient-count strong {
  color: var(--primary);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact {
  padding: 120px 0;
  background: var(--light);
  color: #4a4a4a;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.contact-info > p {
  color: #7a7a7a;
  line-height: 1.7;
  margin-bottom: 24px;
}

.free-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(200, 230, 74, 0.08);
  border: 1px solid rgba(168, 196, 48, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.free-callout svg { flex-shrink: 0; margin-top: 2px; }

.free-callout strong {
  display: block;
  color: #1a1a1a;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.free-callout span {
  font-size: 0.8rem;
  color: #7a7a7a;
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a4a4a;
  font-size: 0.9rem;
}

.contact-item svg {
  color: var(--primary-dark);
  flex-shrink: 0;
}

.community-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.community-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.community-btn.discord { background: #5865F2; color: var(--white); }
.community-btn.discord:hover { background: #4752c4; transform: translateY(-2px); }
.community-btn.facebook { background: #1877F2; color: var(--white); }
.community-btn.facebook:hover { background: #1565d8; transform: translateY(-2px); }

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid #e5e5e0;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(200, 230, 74, 0.2);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-group { margin-bottom: 24px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8rem !important;
  color: #7a7a7a !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary-dark);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: #7a7a7a;
  margin-top: 12px;
}

.form-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

.form-message.success { background: #eafbe7; border: 1px solid #b2dfab; color: #2d6a2d; }
.form-message.error { background: #fde8e8; border: 1px solid #f5a5a5; color: #9b2c2c; }
.form-message svg { flex-shrink: 0; margin-top: 2px; }
.form-message strong { display: block; margin-bottom: 4px; }
.form-message p { font-size: 0.85rem; margin: 0; }

/* Form validation indicators */
.contact-form input:focus:valid,
.contact-form select:focus:valid,
.contact-form textarea:focus:valid {
  border-color: #4caf50;
}

.contact-form input:focus:invalid:not(:placeholder-shown),
.contact-form select:focus:invalid,
.contact-form textarea:focus:invalid:not(:placeholder-shown) {
  border-color: #f44336;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand .logo-icon { color: var(--primary); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 300px; }

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--primary); }

.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

/* ========================================
   REVEAL ANIMATION SYSTEM
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* Loading spinner */
.btn.loading { pointer-events: none; opacity: 0.7; }

.btn.loading::after {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { max-width: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { text-align: center; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .letter-float { display: none; }
  .road-scene { width: 350px; }
  .free-service-strip { gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: flex; }

  .hero-inner { padding: 100px 24px 60px; }
  .hero-title { font-size: 2.2rem; }

  .story-trigger-cards { grid-template-columns: 1fr; gap: 8px; }
  .story-card-arrow { display: none; }

  .story-modal-panel {
    max-width: 100%;
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
    padding: 20px 16px;
  }

  .road-scene { width: 280px; }
  .chat-bubble { max-width: 100%; }
  .free-service-strip { flex-direction: column; gap: 12px; align-items: center; }

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 85vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }
  .testimonial-card {
    scroll-snap-align: center;
    min-width: 0;
  }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* ========================================
   REDUCED MOTION (Accessibility)
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }

  .chat-msg {
    opacity: 1 !important;
    transform: none !important;
  }

  .cta-pulse { animation: none !important; }
  .cta-glow { animation: none !important; }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .navbar, .scroll-indicator, .hero-particles, .hero-gradient,
  .story-triggers, .story-modal, .cta-hero, .community-links { display: none !important; }

  body { background: white; color: #1a1a1a; }

  .hero { min-height: auto; padding: 40px 0; }
  .services, .how-it-works, .testimonials, .faq, .contact { padding: 40px 0; }

  .service-card, .testimonial-card, .faq-item { break-inside: avoid; }
}
