/* =====================================================
   SAFETY NET - Main Stylesheet
   Bold & Modern Design System
   ===================================================== */

/* =====================================================
   CSS VARIABLES / DESIGN TOKENS
   ===================================================== */
:root {
  /* Primary Colors */
  --color-primary: #3B82F6;
  --color-primary-dark: #2563EB;
  --color-primary-light: #60A5FA;

  /* Accent Colors */
  --color-accent: #10B981;
  --color-accent-dark: #059669;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;

  /* Neutral Colors - WCAG AA compliant contrast ratios */
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #4B5563;  /* Improved contrast - meets WCAG AA for normal text */
  --color-gray-500: #374151;  /* Improved contrast - meets WCAG AA */
  --color-gray-600: #1F2937;  /* Improved contrast - meets WCAG AA */
  --color-gray-700: #111827;
  --color-gray-800: #030712;
  --color-gray-900: #000000;
  --color-black: #000000;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --gradient-accent: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
  --gradient-dark: linear-gradient(180deg, #111827 0%, #1F2937 100%);
  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-max: 1280px;
  --container-narrow: 768px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-6xl); }
  h2 { font-size: var(--text-5xl); }
  h3 { font-size: var(--text-4xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-7xl); }
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .lead { font-size: var(--text-2xl); }
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-24) 0;
  }
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--color-white);
}

.section-dark .lead {
  color: var(--color-gray-300);
}

.section-gray {
  background-color: var(--color-gray-50);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

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

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

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

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
}

.nav.scrolled {
  padding: var(--space-3) 0;
  box-shadow: var(--shadow-md);
}

.nav-dark {
  background: rgba(17, 24, 39, 0.9);
  border-bottom-color: var(--color-gray-800);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-xl);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: var(--text-lg);
}

.nav-links {
  display: none;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--color-gray-600);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-dark .nav-link {
  color: var(--color-gray-300);
}

.nav-dark .nav-link:hover {
  color: var(--color-white);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

@media (min-width: 1024px) {
  .nav-mobile-toggle {
    display: none;
  }
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gray-700);
  transition: var(--transition-fast);
}

.nav-dark .nav-mobile-toggle span {
  background: var(--color-white);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: var(--space-20) var(--space-6);
}

.nav-mobile.active {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.nav-mobile a {
  font-size: var(--text-2xl);
  font-weight: 600;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-gray-900);
  border: 2px solid var(--color-gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-gray-900);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
}

.btn-ghost:hover {
  background: rgba(59, 130, 246, 0.1);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-gray-900);
  color: var(--color-white);
  overflow: hidden;
  padding-top: var(--space-20);
}

/* Animated mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 60% 60%, rgba(59, 130, 246, 0.3) 0%, transparent 30%);
  animation: heroGradient 15s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

@keyframes heroGradient {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(5%, 5%) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.hero-title {
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-300);
  margin-bottom: var(--space-8);
  max-width: 700px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-2xl);
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-primary-light);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  margin-top: var(--space-1);
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-gray-200);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-dark {
  background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-900) 100%);
  color: var(--color-white);
  border-color: var(--color-gray-700);
}

.card-dark:hover {
  border-color: var(--color-gray-600);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-gray-900);
}

.card-dark .card-title {
  color: var(--color-white);
}

.card-text {
  color: var(--color-gray-600);
  line-height: 1.8;
}

.card-dark .card-text {
  color: var(--color-gray-300);
}

/* Feature Card Variant */
.feature-card {
  text-align: center;
  padding: var(--space-10);
}

.feature-card .card-icon {
  margin: 0 auto var(--space-6);
}

/* Gradient border card variant */
.card-gradient-border {
  background: var(--color-white);
  border: none;
  position: relative;
}

.card-gradient-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-label {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-dark .section-label {
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary-light);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: var(--text-xl);
  }
}

.section-dark .section-subtitle {
  color: var(--color-gray-400);
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
}

.stat-value {
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: var(--text-5xl);
  }
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  margin-top: var(--space-2);
  font-weight: 500;
}

/* =====================================================
   QUOTE / TESTIMONIAL
   ===================================================== */
.quote-block {
  position: relative;
  padding: var(--space-10) var(--space-10) var(--space-10) var(--space-12);
  background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
}

.quote-text {
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-gray-700);
  line-height: 1.9;
  position: relative;
}

.quote-author {
  margin-top: var(--space-4);
  font-weight: 600;
  color: var(--color-gray-900);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  position: relative;
  background: var(--gradient-primary);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-20) 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.cta-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: var(--text-5xl);
  }
}

.cta-text {
  font-size: var(--text-xl);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-tagline {
  line-height: 1.7;
}

.footer-title {
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  color: var(--color-gray-400);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-gray-800);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-800);
  border-radius: var(--radius-md);
  color: var(--color-gray-400);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-8) 0;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--color-gray-200);
}

.comparison-table th {
  background: var(--color-gray-50);
  font-weight: 600;
  color: var(--color-gray-900);
}

.comparison-table tbody tr:hover {
  background: var(--color-gray-50);
}

.check-icon {
  color: var(--color-accent);
  font-weight: bold;
}

.x-icon {
  color: var(--color-gray-400);
}

/* =====================================================
   TIMELINE
   ===================================================== */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gray-200);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) - 6px);
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.timeline-date {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.timeline-text {
  color: var(--color-gray-600);
}

/* =====================================================
   FORM ELEMENTS
   ===================================================== */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-gray-700);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* =====================================================
   ACCESSIBILITY ENHANCEMENTS
   ===================================================== */

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Enhanced focus ring for dark backgrounds */
.nav-dark a:focus-visible,
.nav-dark button:focus-visible,
.section-dark a:focus-visible,
.section-dark button:focus-visible,
.hero a:focus-visible,
.hero button:focus-visible,
.footer a:focus-visible,
.footer button:focus-visible {
  outline-color: var(--color-primary-light);
  outline-offset: 3px;
}

/* Current page indicator in navigation */
.nav-link[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
}

.nav-link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.nav-dark .nav-link[aria-current="page"] {
  color: var(--color-white);
}

.nav-dark .nav-link[aria-current="page"]::after {
  background: var(--color-white);
}

/* Skip link styling */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: white;
  z-index: 9999;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

/* Mobile menu aria-expanded styling */
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Form field required indicator */
.form-label[data-required]::after {
  content: ' *';
  color: var(--color-danger);
}

/* Form error states */
.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--color-danger);
}

.form-input.error:focus,
.form-textarea.error:focus,
.form-select.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Screen reader only content - WCAG compliant */
.sr-only,
.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus,
.screen-reader-only:focus {
  position: fixed;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  padding: 1rem 2rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--color-primary);
  color: white;
  z-index: 10000;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

/* Live region for screen reader announcements */
.sr-live,
[aria-live] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.form-error {
  color: var(--color-danger);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

/* Live region for screen reader announcements */
.sr-live {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion preference */
@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;
  }

  .hero::before {
    animation: none !important;
  }

  .card:hover {
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-gray-400: #666666;
    --color-gray-500: #555555;
    --color-gray-600: #333333;
  }

  .btn-primary {
    border: 2px solid white;
  }

  .card {
    border: 2px solid var(--color-gray-300);
  }

  .nav-link[aria-current="page"]::after {
    height: 3px;
  }

  a:focus-visible,
  button:focus-visible {
    outline-width: 4px;
  }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Make sr-only visible on focus for skip links */
.sr-only:focus {
  position: fixed;
  width: auto;
  height: auto;
  clip: auto;
}

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }
.block { display: block; }

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
}

/* =====================================================
   IMPROVED MOBILE RESPONSIVE STYLES
   ===================================================== */

/* Mobile-first improvements */
@media (max-width: 767px) {
  /* Better touch targets */
  .btn {
    min-height: 48px;
    padding: var(--space-4) var(--space-6);
  }

  .nav-link {
    padding: var(--space-3);
  }

  /* Improved mobile typography */
  h1 {
    font-size: var(--text-4xl);
    line-height: 1.15;
  }

  h2 {
    font-size: var(--text-3xl);
  }

  h3 {
    font-size: var(--text-2xl);
  }

  .hero-subtitle {
    font-size: var(--text-lg);
  }

  .lead {
    font-size: var(--text-lg);
  }

  /* Better mobile spacing */
  .section {
    padding: var(--space-12) 0;
  }

  .container {
    padding: 0 var(--space-4);
  }

  /* Stack hero stats on mobile */
  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
  }

  .hero-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
  }

  .hero-stat-value {
    font-size: var(--text-3xl);
  }

  /* Full width buttons on mobile */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Better mobile cards */
  .card {
    padding: var(--space-6);
  }

  /* Reduce card hover effect on touch */
  .card:hover {
    transform: none;
  }

  .card:active {
    transform: scale(0.98);
  }

  /* Improve stats grid mobile */
  .stats-grid {
    gap: var(--space-4);
  }

  .stat-value {
    font-size: var(--text-3xl);
  }

  /* Mobile navigation improvements */
  .nav-mobile {
    padding-top: 100px;
    background: var(--color-gray-900);
  }

  .nav-mobile a {
    color: var(--color-white);
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-gray-800);
    display: block;
  }

  .nav-mobile a:hover,
  .nav-mobile a:focus {
    background: var(--color-gray-800);
  }

  /* Quote block mobile */
  .quote-block {
    padding: var(--space-6);
  }

  .quote-text {
    font-size: var(--text-lg);
  }

  /* Footer mobile */
  .footer-grid {
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
  }

  /* Form improvements for mobile */
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: var(--space-4);
  }

  /* CTA section mobile */
  .cta-title {
    font-size: var(--text-3xl);
  }

  .cta-text {
    font-size: var(--text-lg);
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Grid adjustments for mobile */
  .grid {
    gap: var(--space-6);
  }

  /* Timeline mobile */
  .timeline {
    padding-left: var(--space-6);
  }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 45%;
  }

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

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

/* Large screen improvements */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--space-8);
  }

  h1 {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: var(--text-2xl);
  }
}

/* =====================================================
   POLISH ANIMATIONS & MICRO-INTERACTIONS
   ===================================================== */

/* Floating animation for icons */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.card-icon {
  animation: float 3s ease-in-out infinite;
  animation-play-state: paused;
}

.card:hover .card-icon {
  animation-play-state: running;
}

/* Pulse animation for stats */
@keyframes pulseSoft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.9; }
}

.stat-value {
  transition: all 0.3s ease;
}

.stat-item:hover .stat-value {
  animation: pulseSoft 1s ease-in-out;
}

/* Hero badge shimmer */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-badge {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Section label entrance */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-label {
  animation: slideInFromLeft 0.5s ease-out;
}

/* Link hover underline animation */
.footer-link,
.nav-link:not([aria-current="page"]) {
  position: relative;
}

.footer-link::after,
.nav-link:not([aria-current="page"])::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.footer-link:hover::after,
.nav-link:not([aria-current="page"]):hover::after {
  width: 100%;
}

/* Button click ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Card icon glow on hover */
.card:hover .card-icon {
  box-shadow:
    0 8px 20px rgba(59, 130, 246, 0.3),
    0 0 40px rgba(59, 130, 246, 0.2);
}

/* Quote block entrance */
.quote-block {
  position: relative;
}

.quote-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-primary);
  transition: height 0.6s ease;
}

.quote-block.animate-visible::after {
  height: 100%;
}

/* Stats counter glow effect */
.hero-stat-value {
  text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
  transition: text-shadow 0.3s ease;
}

.hero-stat:hover .hero-stat-value {
  text-shadow: 0 0 40px rgba(96, 165, 250, 0.5);
}

/* Page load fade-in */
@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: pageLoad 0.4s ease-out;
}

/* Smooth scroll indicator (subtle bounce at bottom of hero) */
@keyframes scrollIndicator {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  animation: scrollIndicator 2s ease-in-out infinite;
  color: var(--color-gray-400);
}

/* Mobile nav transition */
.nav-mobile {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.nav-mobile a {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.nav-mobile.active a {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile.active a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.active a:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile.active a:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.active a:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile.active a:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile.active a:nth-child(6) { transition-delay: 0.3s; }
.nav-mobile.active a:nth-child(7) { transition-delay: 0.35s; }

/* Hamburger animation */
.nav-mobile-toggle span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Card border gradient animation on hover */
@keyframes borderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.card:hover::before {
  animation: borderGlow 2s ease-in-out infinite;
}

/* Social icon hover bounce */
.footer-social a {
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

/* Timeline dot pulse on hover */
.timeline-item::before {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Loading skeleton placeholder */
@keyframes skeleton {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-gray-200) 25%,
    var(--color-gray-100) 50%,
    var(--color-gray-200) 75%
  );
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

/* =====================================================
   APP PREVIEW / AED MAP FEATURE
   ===================================================== */

.app-preview {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .app-preview {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-12);
  }
}

.app-preview-window {
  background: var(--color-gray-900);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 500px;
  position: relative;
}

/* App Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.app-logo-small {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: var(--text-sm);
}

.app-title {
  font-weight: 600;
  color: white;
}

.app-header-right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 500;
}

.app-status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* App Search */
.app-search {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-search-icon {
  color: var(--color-gray-400);
  flex-shrink: 0;
}

.app-search-text {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
}

/* App Filters */
.app-filters {
  display: flex;
  gap: var(--space-2);
  padding: 0 var(--space-4) var(--space-4);
  overflow-x: auto;
  scrollbar-width: none;
}

.app-filters::-webkit-scrollbar {
  display: none;
}

.app-filter {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-gray-400);
  font-size: var(--text-xs);
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.app-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.app-filter svg {
  width: 14px;
  height: 14px;
}

/* App Map */
.app-map {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1319 100%);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-streets {
  position: absolute;
  inset: 0;
}

.map-street {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.map-street-h {
  height: 3px;
  left: 0;
}

.map-street-v {
  width: 3px;
  top: 0;
}

.map-street-main {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.map-label {
  position: absolute;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Map Markers */
.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.map-marker-you {
  z-index: 20;
}

.map-marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.map-marker-dot {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.5);
  position: relative;
  z-index: 1;
}

.map-marker-label {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.map-marker-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  border: 2px solid white;
}

.map-marker-icon svg {
  transform: rotate(45deg);
  color: white;
}

.map-marker-icon-responder {
  background: linear-gradient(135deg, var(--color-accent) 0%, #059669 100%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: none;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.map-marker-icon-responder svg {
  transform: none;
  width: 14px;
  height: 14px;
}

.map-marker-distance {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.map-marker-aed {
  animation: markerBounce 0.5s ease-out;
}

@keyframes markerBounce {
  0% { transform: translate(-50%, -100%); opacity: 0; }
  60% { transform: translate(-50%, -45%); }
  100% { transform: translate(-50%, -50%); opacity: 1; }
}

.map-marker-aed:nth-child(2) { animation-delay: 0.1s; }
.map-marker-aed:nth-child(3) { animation-delay: 0.2s; }
.map-marker-aed:nth-child(4) { animation-delay: 0.3s; }

/* App Info Card */
.app-info-card {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-4);
}

.app-info-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.app-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.app-info-details {
  flex: 1;
  min-width: 0;
}

.app-info-details h4 {
  color: white;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 2px;
}

.app-info-details p {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
}

.app-info-distance {
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary-light);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.app-info-card-body {
  margin-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.app-info-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gray-400);
  font-size: var(--text-sm);
}

.app-info-status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.app-info-actions {
  display: flex;
  gap: var(--space-2);
}

.app-btn {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.app-btn-primary {
  background: var(--color-primary);
  color: white;
}

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

.app-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Feature Callouts */
.app-preview-callouts {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  max-width: 500px;
}

@media (min-width: 1024px) {
  .app-preview-callouts {
    max-width: 350px;
  }
}

.app-callout {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.app-callout:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.app-callout-number {
  min-width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.app-callout-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-callout-text strong {
  color: white;
  font-size: var(--text-base);
  font-weight: 600;
}

.app-callout-text span {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
}

.app-callout-1 .app-callout-number {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.app-callout-2 .app-callout-number {
  background: linear-gradient(135deg, var(--color-accent) 0%, #059669 100%);
}

.app-callout-3 .app-callout-number {
  background: var(--gradient-primary);
  font-size: var(--text-lg);
}

/* Mobile adjustments for app preview */
@media (max-width: 767px) {
  .app-preview-window {
    max-width: 100%;
  }

  .app-map {
    height: 250px;
  }

  .app-filters {
    padding-bottom: var(--space-3);
  }

  .app-info-card-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-info-actions {
    width: 100%;
  }

  .app-btn {
    flex: 1;
    text-align: center;
  }
}

/* =====================================================
   SAFETY NET KIT SHOWCASE
   ===================================================== */

.kit-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .kit-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

/* Kit Visual / Bag */
.kit-visual {
  display: flex;
  justify-content: center;
}

.kit-bag {
  background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-900) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 450px;
  width: 100%;
}

.kit-bag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #EF4444, #F59E0B, #10B981, #3B82F6);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.kit-bag-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-6);
}

.kit-logo {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: var(--text-lg);
}

.kit-bag-label span {
  color: white;
  font-weight: 700;
  font-size: var(--text-xl);
}

/* Kit Items Grid */
.kit-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .kit-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kit-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  transition: all 0.3s ease;
}

.kit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.kit-item-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.kit-item-tourniquet .kit-item-icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.1));
  color: #FCA5A5;
}

.kit-item-bandage .kit-item-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
  color: #93C5FD;
}

.kit-item-seal .kit-item-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.1));
  color: #6EE7B7;
}

.kit-item-gauze .kit-item-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.1));
  color: #FCD34D;
}

.kit-item-gloves .kit-item-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1));
  color: #C4B5FD;
}

.kit-item-qr .kit-item-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.kit-item-icon-qr {
  padding: var(--space-2);
}

.qr-code {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 4px;
}

.qr-grid {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, #000 25%, transparent 25%, transparent 75%, #000 75%),
    linear-gradient(#000 25%, transparent 25%, transparent 75%, #000 75%),
    linear-gradient(90deg, transparent 25%, #000 25%, #000 75%, transparent 75%),
    linear-gradient(transparent 25%, #000 25%, #000 75%, transparent 75%);
  background-size: 8px 8px;
  background-position: 0 0, 8px 8px, 8px 0, 0 8px;
}

.kit-item-name {
  display: block;
  color: white;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.kit-item-tag {
  display: block;
  color: var(--color-gray-400);
  font-size: var(--text-xs);
}

/* Kit Cost Badge */
.kit-cost {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
}

.kit-cost-label {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kit-cost-value {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #6EE7B7;
  margin: var(--space-1) 0;
}

.kit-cost-note {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}

/* Kit Info */
.kit-info {
  padding: var(--space-4);
}

.kit-info-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.kit-info-text {
  color: var(--color-gray-600);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

/* Kit Steps - Stop the Bleed Protocol */
.kit-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-xl);
}

.kit-step {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.kit-step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.kit-step-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kit-step-content strong {
  color: var(--color-gray-900);
  font-weight: 600;
  font-size: var(--text-base);
}

.kit-step-content span {
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

/* Kit Features */
.kit-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.kit-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.kit-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.kit-feature strong {
  display: block;
  color: var(--color-gray-900);
  font-weight: 600;
  margin-bottom: 2px;
}

.kit-feature span {
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

/* Kit CTA */
.kit-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.kit-cta-note {
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

/* Kit Distribution Stats */
.kit-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
  padding: var(--space-8);
  background: var(--color-gray-50);
  border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
  .kit-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kit-stat {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
}

.kit-stat-icon {
  font-size: var(--text-3xl);
  flex-shrink: 0;
}

.kit-stat-info {
  display: flex;
  flex-direction: column;
}

.kit-stat-info strong {
  color: var(--color-gray-900);
  font-weight: 600;
}

.kit-stat-info span {
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

/* Mobile kit adjustments */
@media (max-width: 767px) {
  .kit-bag {
    padding: var(--space-6);
  }

  .kit-items {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .kit-item {
    padding: var(--space-3);
  }

  .kit-item-icon {
    width: 44px;
    height: 44px;
  }

  .kit-item-icon svg {
    width: 24px;
    height: 24px;
  }

  .kit-info-title {
    font-size: var(--text-2xl);
  }

  .kit-feature-icon {
    width: 40px;
    height: 40px;
  }
}

/* =====================================================
   STORYTELLING ELEMENTS
   ===================================================== */

/* Story Section */
.story-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  max-width: 800px;
  margin: 0 auto;
}

.story-block {
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
}

.story-block-highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border: 2px solid var(--color-primary);
}

.story-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.story-block h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--color-gray-900);
}

.story-text {
  font-size: var(--text-lg);
  line-height: 1.9;
  color: var(--color-gray-600);
  margin-bottom: var(--space-4);
}

.story-text:last-child {
  margin-bottom: 0;
}

/* Visual Timeline */
.visual-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 700px;
  margin: 0 auto;
}

.timeline-story-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}

.timeline-time {
  min-width: 60px;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
  font-family: monospace;
  padding-top: var(--space-2);
}

.timeline-event {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  flex: 1;
  padding: var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: var(--space-1);
}

.timeline-content p {
  color: var(--color-gray-600);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
}

/* Promise List */
.promise-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.promise-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.promise-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.promise-content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: var(--space-1);
}

.promise-content p {
  color: var(--color-gray-600);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
}

/* Mobile adjustments for storytelling */
@media (max-width: 767px) {
  .story-block {
    padding: var(--space-6);
  }

  .story-icon {
    font-size: 2.5rem;
  }

  .story-block h2 {
    font-size: var(--text-xl);
  }

  .story-text {
    font-size: var(--text-base);
  }

  .timeline-story-item {
    flex-direction: column;
    gap: var(--space-3);
  }

  .timeline-time {
    min-width: auto;
  }

  .timeline-event {
    flex-direction: column;
    text-align: center;
  }

  .timeline-icon {
    margin: 0 auto;
  }

  .promise-item {
    flex-direction: column;
    text-align: center;
  }

  .promise-number {
    margin: 0 auto;
  }
}

/* =====================================================
   HOW IT WORKS PAGE - STORYTELLING ELEMENTS
   ===================================================== */

/* Simple Steps Overview */
.how-it-works-simple {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.simple-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.simple-step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.simple-step-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.simple-step h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.simple-step p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

.simple-step-arrow {
  display: flex;
  align-items: center;
  font-size: var(--text-2xl);
  color: var(--color-primary);
  padding-top: var(--space-10);
}

/* Comparison Box */
.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  background: var(--color-gray-50);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
}

.comparison-side {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
}

.comparison-side h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.comparison-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.comparison-side li {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

.comparison-bad {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-bad h4 {
  color: #DC2626;
}

.comparison-good {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.comparison-good h4 {
  color: #059669;
}

/* Training Steps */
.training-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.training-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.training-step-time {
  min-width: 70px;
  padding: var(--space-2) var(--space-3);
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
}

.training-step-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-gray-900);
}

.training-step-content p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Alert Demo (Phone Mockup) */
.alert-demo {
  display: flex;
  justify-content: center;
  margin: var(--space-8) 0;
}

.alert-demo-phone {
  width: 280px;
  background: white;
  border-radius: 24px;
  padding: var(--space-4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.alert-demo-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

.alert-demo-urgent {
  background: #DC2626;
  color: white;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  animation: pulse-alert 2s infinite;
}

@keyframes pulse-alert {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.alert-demo-body {
  text-align: center;
  padding: var(--space-4) 0;
}

.alert-demo-icon {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-3);
}

.alert-demo-body p {
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.alert-demo-distance {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
}

.alert-demo-buttons {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.alert-demo-btn {
  flex: 1;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 600;
  font-size: var(--text-sm);
}

.alert-demo-btn-yes {
  background: #059669;
  color: white;
}

.alert-demo-btn-no {
  background: var(--color-gray-200);
  color: var(--color-gray-600);
}

/* Privacy Promises */
.privacy-promises {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.privacy-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-gray-700);
}

.privacy-icon {
  font-size: var(--text-lg);
}

/* Simple List */
.simple-list {
  list-style: none;
  counter-reset: list-counter;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.simple-list li {
  counter-increment: list-counter;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-gray-700);
  line-height: 1.6;
}

.simple-list li::before {
  content: counter(list-counter);
  min-width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
}

/* Level Path */
.level-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.level-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.level-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.level-badge {
  font-size: var(--text-3xl);
  min-width: 50px;
  text-align: center;
}

.level-info h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-gray-900);
}

.level-info p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  margin-bottom: var(--space-2);
}

.level-req {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.level-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, var(--color-gray-300), var(--color-gray-200));
}

/* Summary Points */
.summary-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 500px;
  margin: var(--space-8) auto;
}

.summary-point {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.summary-number {
  min-width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
}

.summary-point p {
  color: white;
  font-size: var(--text-base);
  margin: 0;
}

.summary-point strong {
  color: var(--color-primary-light);
}

/* Result Box */
.result-box {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
}

.result-stat {
  text-align: center;
  min-width: 120px;
}

.result-number {
  display: block;
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.result-unit {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  margin-top: var(--space-1);
}

.result-text {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: 1.7;
}

.result-text strong {
  color: var(--color-gray-900);
}

/* =====================================================
   HOW IT WORKS - MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
  .how-it-works-simple {
    flex-direction: column;
    align-items: center;
  }

  .simple-step {
    max-width: 100%;
    width: 100%;
  }

  .simple-step-arrow {
    transform: rotate(90deg);
    padding: var(--space-2) 0;
  }

  .comparison-box {
    grid-template-columns: 1fr;
  }

  .training-step {
    flex-direction: column;
    text-align: center;
  }

  .training-step-time {
    align-self: center;
  }

  .alert-demo-phone {
    width: 100%;
    max-width: 280px;
  }

  .level-item {
    flex-direction: column;
    text-align: center;
  }

  .level-item:hover {
    transform: translateY(-4px);
  }

  .result-box {
    flex-direction: column;
    text-align: center;
  }

  .summary-point {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   FOR CITIES PAGE - STORYTELLING ELEMENTS
   ===================================================== */

/* Problem Cards */
.problem-card {
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  text-align: center;
}

.problem-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.problem-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.problem-card p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Solution Steps */
.solution-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.solution-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
}

.solution-step-number {
  min-width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
}

.solution-step-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-gray-900);
}

.solution-step-content p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Big Price Display */
.big-price {
  padding: var(--space-8);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  margin: var(--space-6) 0;
}

.price-amount {
  display: block;
  font-size: var(--text-7xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.price-label {
  display: block;
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  margin-top: var(--space-2);
}

/* Cost Breakdown */
.cost-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cost-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.cost-check {
  color: var(--color-accent);
  font-weight: 700;
}

.cost-item span:nth-child(2) {
  flex: 1;
  text-align: left;
  color: var(--color-gray-700);
}

.cost-value {
  font-weight: 700;
  color: var(--color-accent);
}

/* Compare Table */
.compare-table-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.compare-option {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.compare-option-highlight {
  border: 2px solid var(--color-primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
  transform: scale(1.02);
}

.compare-header {
  margin-bottom: var(--space-4);
}

.compare-header h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gray-900);
}

.compare-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  margin-top: var(--space-2);
}

.compare-price {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.compare-option-highlight .compare-price {
  color: var(--color-accent);
}

.compare-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.compare-features li {
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.compare-yes {
  color: var(--color-accent);
}

.compare-no {
  color: var(--color-danger);
}

.compare-maybe {
  color: var(--color-gray-500);
}

/* Success Metrics */
.success-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.success-metric {
  text-align: center;
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.success-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.success-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  margin-top: var(--space-2);
}

/* Start Steps */
.start-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.start-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
}

.start-step-icon {
  font-size: var(--text-3xl);
  min-width: 50px;
  text-align: center;
}

.start-step-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-gray-900);
}

.start-step-content p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  padding: var(--space-5);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
}

.faq-item h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.faq-item p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* =====================================================
   FOR CITIES - MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
  .compare-table-wrapper {
    grid-template-columns: 1fr;
  }

  .compare-option-highlight {
    transform: none;
    order: -1;
  }

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

  .solution-step {
    flex-direction: column;
    text-align: center;
  }

  .solution-step-number {
    margin: 0 auto;
  }

  .start-step {
    flex-direction: column;
    text-align: center;
  }

  .start-step-icon {
    margin: 0 auto;
  }

  .big-price .price-amount {
    font-size: var(--text-5xl);
  }
}

/* =====================================================
   FOR LAW ENFORCEMENT PAGE - STORYTELLING ELEMENTS
   ===================================================== */

/* LE Features */
.le-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.le-feature {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
}

.le-feature-icon {
  font-size: var(--text-4xl);
  min-width: 60px;
  text-align: center;
}

.le-feature-content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.le-feature-content p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.le-feature-example {
  font-size: var(--text-sm);
  padding: var(--space-3);
  background: var(--color-gray-50);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  color: var(--color-gray-700);
  line-height: 1.6;
}

/* Scenario Timeline */
.scenario-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  padding-left: var(--space-4);
  border-left: 2px solid var(--color-gray-200);
}

.scenario-item {
  display: flex;
  gap: var(--space-4);
  position: relative;
}

.scenario-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-4) - 5px);
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--color-gray-300);
  border-radius: 50%;
}

.scenario-item-highlight::before {
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.scenario-time {
  min-width: 70px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

.scenario-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-gray-900);
}

.scenario-content p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Can/Cannot Do Lists */
.can-do-list,
.cannot-do-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.can-do-list li,
.cannot-do-list li {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}

.can-do-list li {
  background: rgba(16, 185, 129, 0.1);
  color: #6EE7B7;
}

.cannot-do-list li {
  background: rgba(239, 68, 68, 0.1);
  color: #FCA5A5;
}

/* Camera Types */
.camera-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.camera-type {
  text-align: center;
  padding: var(--space-5);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
}

.camera-type-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.camera-type h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.camera-type p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.5;
}

/* Privacy Block */
.privacy-block {
  padding: var(--space-6);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
}

.privacy-block h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-gray-900);
}

/* =====================================================
   FOR LAW ENFORCEMENT - MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
  .le-feature {
    flex-direction: column;
    text-align: center;
  }

  .le-feature-icon {
    margin: 0 auto;
  }

  .le-feature-example {
    text-align: left;
  }

  .scenario-item {
    flex-direction: column;
    gap: var(--space-2);
  }

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

/* =====================================================
   GET INVOLVED PAGE - STORYTELLING ELEMENTS
   ===================================================== */

/* Involvement Options */
.involvement-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.involvement-card {
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  position: relative;
  display: flex;
  flex-direction: column;
}

.involvement-primary {
  border: 2px solid var(--color-primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.involvement-number {
  position: absolute;
  top: -12px;
  left: var(--space-6);
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.involvement-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.involvement-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.involvement-desc {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.involvement-details {
  flex: 1;
  margin-bottom: var(--space-4);
}

.involvement-details h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-500);
  margin-bottom: var(--space-2);
}

.involvement-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.involvement-details li {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  padding-left: var(--space-4);
  position: relative;
}

.involvement-details li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.involvement-commitment {
  padding: var(--space-3);
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  display: flex;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.commitment-label {
  font-weight: 600;
  color: var(--color-gray-500);
}

.commitment-value {
  color: var(--color-gray-700);
}

/* Journey Path */
.journey-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: var(--space-8) auto 0;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  transition: transform var(--transition-base);
}

.journey-step:hover {
  transform: translateX(8px);
}

.journey-marker {
  font-size: var(--text-3xl);
  min-width: 50px;
  text-align: center;
}

.journey-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-gray-900);
}

.journey-content p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  margin-bottom: var(--space-2);
}

.journey-time {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.journey-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, var(--color-gray-300), var(--color-gray-200));
}

/* Training Modules */
.training-modules {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 700px;
  margin: var(--space-6) auto 0;
}

.training-module {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
}

.module-time {
  min-width: 70px;
  padding: var(--space-2) var(--space-3);
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  align-self: flex-start;
}

.module-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.module-content p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* People Stories */
.people-stories {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.person-story {
  padding: var(--space-6);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.person-quote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.person-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.person-info strong {
  font-size: var(--text-base);
  color: var(--color-gray-900);
}

.person-info span {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

/* =====================================================
   GET INVOLVED - MOBILE RESPONSIVE
   ===================================================== */

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

  .journey-step {
    flex-direction: column;
    text-align: center;
  }

  .journey-step:hover {
    transform: translateY(-4px);
  }

  .training-module {
    flex-direction: column;
    text-align: center;
  }

  .module-time {
    align-self: center;
  }
}

/* =====================================================
   BIGGER PICTURE - COMMUNITY STORIES
   ===================================================== */

.story-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.story-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.story-card-highlight {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.story-card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.story-card-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  display: block;
}

.story-card-content h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
}

.story-card-content p {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.story-card-content p strong {
  color: var(--color-primary-dark);
}

.story-card-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--space-4);
}

/* =====================================================
   BIGGER PICTURE - COMMUNITY PILLARS
   ===================================================== */

.pillars-section {
  margin-bottom: var(--space-12);
}

.pillars-section h3 {
  text-align: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-8);
}

.pillar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-200);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: block;
}

.pillar-card h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.pillar-card p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* =====================================================
   BIGGER PICTURE - VISION STATEMENT
   ===================================================== */

.vision-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-10);
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.vision-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vision-statement p {
  position: relative;
  z-index: 1;
  font-size: var(--text-xl);
  color: var(--color-gray-300);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.vision-statement p:last-child {
  margin-bottom: 0;
}

.vision-highlight {
  font-size: var(--text-2xl) !important;
  color: var(--color-white) !important;
  font-weight: 700;
}

/* =====================================================
   BIGGER PICTURE - MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
  .story-cards {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .story-card {
    padding: var(--space-6);
  }

  .story-card-icon {
    font-size: 2.5rem;
  }

  .story-card-content h3 {
    font-size: var(--text-xl);
  }

  .pillars-section .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .pillar-card {
    padding: var(--space-4);
  }

  .pillar-icon {
    font-size: 2rem;
  }

  .vision-statement {
    padding: var(--space-6);
  }

  .vision-statement p {
    font-size: var(--text-base);
  }

  .vision-highlight {
    font-size: var(--text-xl) !important;
  }
}

@media (max-width: 480px) {
  .pillars-section .grid-4 {
    grid-template-columns: 1fr;
  }
}
