/* OjasLabs Design System - Sundial-Accurate Theme */
/* SEO Note: Clean, semantic CSS for better page performance and Core Web Vitals */

:root {
  /* === SUNDIAL COLOR PALETTE === */
  /* Backgrounds */
  --bg-warm: #FDF8F6;
  --bg-blush: #F5EBE8;
  --bg-white: #FFFFFF;
  --bg-subtle: #FAFAFA;
  --bg-dark: #1F1F1F;
  --bg-blue-tint: #F0F4F8;

  /* Text Colors */
  --text-primary: #1F1F1F;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;

  /* Accent - Coral */
  --accent-coral: #E07A5F;
  --accent-coral-hover: #D4694F;
  --accent-coral-light: rgba(224, 122, 95, 0.1);
  --accent-coral-glow: rgba(224, 122, 95, 0.25);

  /* Borders */
  --border-warm: #E8E0DC;
  --border-light: #F0ECE9;
  --border-divider: #D1D5DB;

  /* Semantic */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);

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

  /* Section Spacing - Consistent throughout */
  --section-padding-y: clamp(4rem, 8vw, 6rem);
  --section-gap: 0;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  --shadow-coral: 0 4px 12px rgba(224, 122, 95, 0.25);
  --shadow-coral-lg: 0 8px 24px rgba(224, 122, 95, 0.3);

  /* Transitions - Smooth and consistent */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-warm);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: var(--section-padding-y) 0;
  position: relative;
}

/* Section Header - Consistent styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: var(--space-4);
}

/* Accessibility - Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-coral);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  z-index: 9999;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 1rem;
}

/* Visually Hidden - For screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Keyboard navigation focus styles */
.keyboard-nav *:focus {
  outline: 2px solid var(--accent-coral);
  outline-offset: 2px;
}

/* Text Gradient for Coral Italic */
.text-gradient-warm {
  color: var(--accent-coral);
  font-weight: 500;
  font-style: italic;
}

/* ==================== HEADER / NAVIGATION ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background-color var(--transition-base), 
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-warm);
  box-shadow: var(--shadow-xs);
}

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

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast),
              background-color var(--transition-fast);
}

.nav__link:hover {
  color: var(--text-primary);
  background: var(--accent-coral-light);
}

/* CTA Button in Nav */
.nav__cta {
  background: var(--accent-coral);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.nav__cta:hover {
  background: var(--accent-coral-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-coral);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-warm);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-base),
                opacity var(--transition-base),
                visibility var(--transition-base);
  }

  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-warm);
  }

  .nav__menu li:last-child {
    border-bottom: none;
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: left;
  }

  .nav__cta {
    width: 100%;
    margin-top: 1rem;
    padding: 14px 24px;
  }
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 160px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Warm gradient background */
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-blush) 60%, var(--bg-blue-tint) 100%);
}

/* Grid overlay with reduced opacity */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-warm) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-warm) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
}

/* Hero Content - Centered like Sundial */
.hero__content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Stat Pill */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  background: var(--bg-blush);
  border-radius: var(--radius-full);
  color: var(--text-tertiary);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero__pill--stat {
  background: var(--bg-blush);
  color: var(--text-secondary);
}

.hero__pill--stat svg {
  color: var(--accent-coral);
}

/* Hero Title - Sundial Mixed Weight Style */
.hero__title {
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.hero__title .text-gradient-warm {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent-coral);
  background: none;
  -webkit-text-fill-color: var(--accent-coral);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.7;
}

/* CTA Group */
.hero__cta-group {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
}

/* Primary Button - Coral */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.btn-coral {
  background: var(--accent-coral);
  color: #FFFFFF;
  box-shadow: var(--shadow-xs);
}

.btn-coral:hover {
  background: var(--accent-coral-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-coral);
}

/* Legacy class support */
.btn-rose {
  background: var(--accent-coral);
  color: #FFFFFF;
  box-shadow: var(--shadow-xs);
}

.btn-rose:hover {
  background: var(--accent-coral-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-coral);
}

/* Secondary Button - Outline */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-warm);
  padding: 13px 27px;
}

.btn-outline:hover {
  background: var(--bg-warm);
  border-color: var(--accent-coral-hover);
  color: var(--accent-coral-hover);
}

/* Text Link */
.btn-text-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

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

.btn-text-link svg {
  transition: transform var(--transition-fast);
}

.btn-text-link:hover svg {
  transform: translateX(4px);
}

/* Trust Badge */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.trust-icon {
  color: var(--color-success);
}

/* Right Column - Product Visual */
.hero__content-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 5rem;
}

/* Layered Product Visual - Sundial Style */
.product-visual {
  position: relative;
  perspective: 1000px;
  width: 100%;
  max-width: 500px;
  height: 400px;
}

.product-card {
  position: absolute;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  transition: transform var(--transition-slow),
              box-shadow var(--transition-slow);
}

.product-card:nth-child(1) {
  transform: rotateY(-5deg) rotateX(5deg) translateZ(0);
  left: 0;
  top: 20%;
  z-index: 1;
  width: 200px;
}

.product-card:nth-child(2) {
  transform: rotateY(-3deg) rotateX(3deg) translateZ(20px);
  left: 15%;
  top: 10%;
  z-index: 2;
  width: 240px;
}

.product-card:nth-child(3) {
  transform: rotateY(0deg) translateZ(40px);
  left: 30%;
  top: 5%;
  z-index: 3;
  width: 280px;
}

.product-card:hover {
  transform: translateY(-4px) rotateY(0deg) rotateX(0deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-coral);
}

/* Chat Demo */
.chat-demo {
  position: relative;
  width: 100%;
  max-width: 700px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-warm);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-demo__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-warm);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.chat-bubble {
  margin-bottom: 1.25rem;
  display: flex;
  animation: fadeInUp 0.5s ease-out;
}

.chat-bubble:last-child {
  margin-bottom: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-bubble--user {
  justify-content: flex-end;
}

.chat-bubble__content {
  max-width: 90%;
  padding: 1.125rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  line-height: 1.7;
}

.chat-bubble--user .chat-bubble__content {
  background: var(--accent-coral);
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-bubble--ai .chat-bubble__content {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.data-chip {
  display: inline-block;
  background: var(--accent-coral-light);
  color: var(--accent-coral-hover);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8125rem;
  margin: 0.25rem;
}

.data-chip.warning {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FCD34D;
}

.typing-indicator {
  display: flex;
  gap: 0.375rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--text-tertiary);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

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

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* ==================== CAROUSEL COMPONENT ==================== */
.carousel-container {
  position: relative;
  flex: 1;
  min-height: 480px;
  overflow: visible;
  margin: 0;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.carousel-slide--active {
  opacity: 1;
  visibility: visible;
}

/* Material Design 3 Navigation Buttons - Positioned outside chat-demo */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: white;
  border: 2px solid var(--accent-coral);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-base),
              border-color var(--transition-base);
  z-index: 10;
}

.carousel-nav:hover:not(:disabled) {
  background: var(--accent-coral);
  color: white;
  box-shadow: var(--shadow-coral);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-nav--prev {
  left: -76px;
}

.carousel-nav--next {
  right: -76px;
}

.carousel-nav svg {
  width: 22px;
  height: 22px;
}

/* Material Design 3 Indicator Dots */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 0.75rem;
  padding: 0.75rem 0 0.25rem;
  min-height: 28px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background: #D1D5DB;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
}

.carousel-dot:hover {
  background: var(--accent-coral);
  opacity: 0.8;
}

.carousel-dot--active {
  width: 28px;
  background: var(--accent-coral);
  border-radius: 4px;
  opacity: 1;
}

.carousel-dot:focus {
  outline: 2px solid var(--accent-coral);
  outline-offset: 3px;
}

/* Hide scrollbar since content now fits */
.carousel-slide::-webkit-scrollbar {
  width: 0;
  display: none;
}

/* Smooth scrolling for carousel slides */
.carousel-slide {
  scroll-behavior: smooth;
}

/* Ensure carousel works on touch devices */
.carousel-slides {
  -webkit-overflow-scrolling: touch;
}

/* Better spacing for data chips inside carousel */
.carousel-slide .data-chip {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  padding: var(--space-10) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-warm);
  position: relative;
}

/* Smooth transition connector from hero */
.stats-bar::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--bg-white));
  pointer-events: none;
}

.stats-bar__title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-bar__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.stat-item {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-base), transform var(--transition-base);
}

.stat-item:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

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

.stat-divider {
  color: var(--border-divider);
  opacity: 0.5;
}

/* ==================== DATA FLOW SECTION ==================== */
.data-flow-section {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-subtle) 100%);
  position: relative;
}

.flow-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
  align-items: stretch;
}

.flow-column {
  text-align: center;
  position: relative;
}

.flow-column__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-6);
}

.flow-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-warm);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.flow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-coral);
}

.flow-card__text {
  color: var(--text-primary);
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

.flow-card__example {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.flow-list {
  list-style: none;
  text-align: left;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.flow-icon {
  font-size: 1.5rem;
}

/* Animated Connection Constellation */
.connection-constellation {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.constellation-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Connection lines - different colors for different data types */
.connection-line {
  transition: stroke-opacity 0.3s ease;
}

.line-1 {
  stroke: #E07A5F; /* Lab Reports - Coral */
}

.line-2 {
  stroke: #3D5A80; /* Prescriptions - Navy Blue */
}

.line-3 {
  stroke: #98C1D9; /* Medical History - Light Blue */
}

.line-4 {
  stroke: #81B29A; /* Health Records - Sage Green */
}

/* Center orb with pulse animation */
.center-orb {
  filter: drop-shadow(0 0 8px rgba(224, 122, 95, 0.4));
  animation: centerPulse 2s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(224, 122, 95, 0.4));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 16px rgba(224, 122, 95, 0.6));
  }
}

/* Satellite dots - orbit animation */
.satellite {
  animation: orbit 8s linear infinite;
  transform-origin: 50px 50px;
}

.satellite-1 {
  animation: orbit1 8s linear infinite;
}

.satellite-2 {
  animation: orbit2 8s linear infinite;
}

.satellite-3 {
  animation: orbit3 8s linear infinite;
}

.satellite-4 {
  animation: orbit4 8s linear infinite;
}

@keyframes orbit1 {
  0% { cx: 50; cy: 20; }
  25% { cx: 80; cy: 50; }
  50% { cx: 50; cy: 80; }
  75% { cx: 20; cy: 50; }
  100% { cx: 50; cy: 20; }
}

@keyframes orbit2 {
  0% { cx: 80; cy: 50; }
  25% { cx: 50; cy: 80; }
  50% { cx: 20; cy: 50; }
  75% { cx: 50; cy: 20; }
  100% { cx: 80; cy: 50; }
}

@keyframes orbit3 {
  0% { cx: 50; cy: 80; }
  25% { cx: 20; cy: 50; }
  50% { cx: 50; cy: 20; }
  75% { cx: 80; cy: 50; }
  100% { cx: 50; cy: 80; }
}

@keyframes orbit4 {
  0% { cx: 20; cy: 50; }
  25% { cx: 50; cy: 20; }
  50% { cx: 80; cy: 50; }
  75% { cx: 50; cy: 80; }
  100% { cx: 20; cy: 50; }
}

/* Connection flash animation */
.flow-card:hover .connection-line {
  animation: connectionFlash 2s ease-in-out;
}

@keyframes connectionFlash {
  0%, 100% { stroke-opacity: 0.3; }
  25% { stroke-opacity: 0.6; }
  50% { stroke-opacity: 0.3; }
  75% { stroke-opacity: 0.6; }
}

.flow-arrow {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--accent-coral);
}

.checkmark-list {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.checkmark-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.checkmark-list svg {
  color: var(--color-success);
  flex-shrink: 0;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-white) 100%);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.benefit-card {
  background: var(--bg-white);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-coral);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-coral);
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: transform var(--transition-bounce);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-title {
  margin-bottom: var(--space-4);
  font-size: 1.375rem;
  color: var(--text-primary);
  font-weight: 700;
}

.benefit-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.benefit-description strong {
  color: var(--accent-coral);
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  padding: var(--space-10) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  position: relative;
}

.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  position: relative;
  cursor: help;
  transition: transform var(--transition-base);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-item-icon {
  color: var(--accent-coral);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-warm);
}

.trust-item__subtext {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: white;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base),
              bottom var(--transition-base);
  z-index: 10;
}

.trust-item__subtext::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--bg-dark);
}

.trust-item:hover .trust-item__subtext {
  opacity: 1;
  bottom: -45px;
}

/* ==================== FAMILY / SHARE SECTION ==================== */
.family-section {
  padding: var(--space-16) 0;
  background: var(--bg-warm);
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.phone-mockup {
  position: relative;
  text-align: center;
}

.phone-screens {
  position: relative;
  height: 400px;
}

.phone {
  position: absolute;
  width: 180px;
  background: white;
  border-radius: 24px;
  padding: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--bg-dark);
}

.phone--primary {
  left: 0;
  top: 0;
  z-index: 2;
  transform: rotate(-8deg);
}

.phone--secondary {
  right: 0;
  top: 40px;
  z-index: 1;
  transform: rotate(8deg);
}

.phone__label {
  position: absolute;
  top: -30px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.phone__content {
  background: var(--bg-subtle);
  border-radius: 16px;
  padding: 1rem;
  font-size: 0.75rem;
  min-height: 300px;
}

.connection-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--accent-coral) 0px,
    var(--accent-coral) 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 0;
}

.connection-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.connection-heart svg {
  color: var(--accent-coral);
}

.permission-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.permission-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-warm);
  transition: border-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.permission-card:hover {
  border-color: var(--accent-coral);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.permission-card__title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.permission-card__example {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-style: italic;
}

.emotional-copy {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Smaller constellation for How It Works section */
.connection-constellation-small {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.constellation-svg-small {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-subtle) 50%, var(--bg-white) 100%);
  position: relative;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-6);
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.how-step {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-base),
              background-color var(--transition-base);
}

.how-step:hover {
  transform: translateY(-4px);
  background: var(--bg-white);
}

.how-step__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: var(--accent-coral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-base);
}

.how-step:hover .how-step__icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-coral);
}

.how-step__icon svg {
  color: var(--accent-coral);
}

.how-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}

.how-step__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.how-step__description strong {
  color: var(--accent-coral);
}

.how-arrow {
  font-size: 2rem;
  color: var(--accent-coral);
  font-weight: 300;
  align-self: center;
  margin-top: 2rem;
  opacity: 0.7;
}

/* ==================== CLOSING / CTA SECTION ==================== */
.closing-section {
  padding: var(--space-16) 0;
  background: var(--bg-dark);
  text-align: center;
}

.closing-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.email-capture {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  align-items: stretch;
}

.email-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
  border-color: var(--accent-coral);
  box-shadow: 0 0 0 3px var(--accent-coral-glow);
}

.arrow-button {
  width: 56px;
  height: 56px;
  background: var(--accent-coral);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
  box-shadow: var(--shadow-coral);
}

.arrow-button:hover {
  background: var(--accent-coral-hover);
  transform: scale(1.1);
  box-shadow: var(--shadow-coral-lg);
}

.city-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.investor-demo-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.investor-demo-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ==================== VISION SECTION ==================== */
.vision-section {
  padding: var(--section-padding-y) 0;
  background: var(--bg-white);
  position: relative;
}

.vision-callout {
  background: linear-gradient(135deg, var(--accent-coral-light) 0%, rgba(224, 122, 95, 0.05) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-8);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(224, 122, 95, 0.2);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.vision-callout:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-coral);
}

.vision-callout__text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
}

.vision-callout__highlight {
  color: var(--accent-coral);
  font-weight: 700;
}

.vision-callout__location {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: var(--space-4);
  font-weight: 600;
}

.vision-badges {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-6);
}

.vision-badge {
  background: white;
  color: var(--text-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-warm);
  transition: border-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.vision-badge:hover {
  border-color: var(--accent-coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}

/* ==================== MINIMAL FOOTER ==================== */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-warm);
  padding: var(--space-8) 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

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

.footer__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: var(--space-2) var(--space-3);
}

.footer__links a:hover {
  color: var(--accent-coral);
}

.footer__links .divider {
  color: var(--border-divider);
  padding: 0 var(--space-2);
}

/* Legacy footer classes - hide old structure */
.footer__content,
.footer__brand,
.footer__bottom {
  display: none;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for cards */
.benefits-grid .benefit-card,
.flow-diagram .flow-column {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-grid .benefit-card.visible,
.flow-diagram .flow-column.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.benefits-grid .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.3s; }

.flow-diagram .flow-column:nth-child(1) { transition-delay: 0.1s; }
.flow-diagram .flow-column:nth-child(2) { transition-delay: 0.2s; }
.flow-diagram .flow-column:nth-child(3) { transition-delay: 0.3s; }

/* ==================== WHY OJAS MODAL/BOTTOM SHEET ==================== */

/* Trigger Link */
.why-ojas-trigger {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  transition: color var(--transition-base);
}

.why-ojas-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-coral);
  transition: width var(--transition-base);
}

.why-ojas-trigger:hover {
  color: var(--accent-coral);
}

.why-ojas-trigger:hover::after {
  width: 100%;
}

/* Modal Container */
.why-ojas-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base),
              visibility var(--transition-base);
}

.why-ojas-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Overlay */
.why-ojas-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

/* Modal Content */
.why-ojas-content {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  max-width: 540px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-base);
  z-index: 10000;
}

.why-ojas-modal.active .why-ojas-content {
  transform: translateY(0) scale(1);
}

/* Close Button */
.why-ojas-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-subtle);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background-color var(--transition-base),
              color var(--transition-base),
              transform var(--transition-base);
}

.why-ojas-close:hover {
  background: var(--accent-coral-light);
  color: var(--accent-coral);
  transform: rotate(90deg);
}

.why-ojas-close:focus {
  outline: 2px solid var(--accent-coral);
  outline-offset: 2px;
}

/* Modal Title */
.why-ojas-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  padding-right: var(--space-10);
  line-height: 1.3;
}

.sanskrit-text {
  color: var(--accent-coral);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}

/* Modal Body */
.why-ojas-body {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.8;
}

.why-ojas-body p {
  margin-bottom: var(--space-6);
}

.why-ojas-body p:last-child {
  margin-bottom: 0;
}

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

/* Desktop */
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    align-items: center;
  }

  .hero__content-left {
    text-align: left;
    align-items: flex-start;
  }

  .hero__cta-group {
    justify-content: flex-start;
  }

  .hero__trust {
    justify-content: flex-start;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --section-padding-y: clamp(3rem, 6vw, 4rem);
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero__title,
  .hero__title .text-gradient-warm {
    font-size: 2.75rem;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .how-arrow {
    display: none;
  }

  .how-step {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding-y: clamp(2.5rem, 5vw, 3.5rem);
  }

  /* Bottom Sheet for Mobile */
  .why-ojas-modal {
    align-items: flex-end;
  }

  .why-ojas-content {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--space-8);
    transform: translateY(100%);
  }

  .why-ojas-modal.active .why-ojas-content {
    transform: translateY(0);
  }

  .why-ojas-title {
    font-size: 1.5rem;
    padding-right: var(--space-8);
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__title,
  .hero__title .text-gradient-warm {
    font-size: 2.25rem;
  }

  .hero__cta-group {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__content-right {
    padding: 0 3.5rem;
  }

  .chat-demo {
    max-width: 100%;
    min-height: 580px;
    padding: 1.75rem;
  }

  /* Carousel mobile adjustments */
  .carousel-container {
    margin: 0;
    min-height: 440px;
  }

  .carousel-slides {
    min-height: 440px;
  }

  .carousel-nav--prev {
    left: -56px;
  }

  .carousel-nav--next {
    right: -56px;
  }

  .carousel-nav {
    width: 48px;
    height: 48px;
  }

  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-dot--active {
    width: 24px;
  }

  .chat-bubble__content {
    font-size: 0.9375rem;
  }

  .flow-diagram {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .flow-arrow {
    display: none;
  }

  .flow-card {
    min-height: auto;
    padding: var(--space-6);
  }

  .family-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .phone-screens {
    height: 320px;
  }

  .phone {
    width: 140px;
  }

  .email-capture {
    flex-direction: column;
  }

  .arrow-button {
    width: 100%;
    border-radius: var(--radius-full);
    height: 56px;
  }

  .closing-headline {
    font-size: 1.875rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

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

  .stats-bar__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    text-align: center;
  }

  .stat-divider {
    display: none;
  }

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

  .vision-badges {
    flex-wrap: wrap;
  }

  .trust-bar__items {
    flex-direction: column;
    gap: var(--space-4);
  }

  .trust-divider {
    display: none;
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  /* Footer mobile */
  .footer__container {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --section-padding-y: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.875rem;
  }

  .hero__title,
  .hero__title .text-gradient-warm {
    font-size: 1.875rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }

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

  .stat-item {
    padding: var(--space-2) 0;
  }

  .hero__content-right {
    padding: 0 3rem;
  }

  /* Smaller mobile carousel adjustments */
  .chat-demo {
    min-height: 540px;
    padding: 1.5rem;
  }

  .carousel-container {
    margin: 0;
    min-height: 400px;
  }

  .carousel-slides {
    min-height: 400px;
  }

  .carousel-nav--prev {
    left: -52px;
  }

  .carousel-nav--next {
    right: -52px;
  }

  .carousel-nav {
    width: 44px;
    height: 44px;
  }

  .chat-bubble {
    margin-bottom: 1rem;
  }

  .chat-bubble__content {
    font-size: 0.9375rem;
    padding: 1rem 1.25rem;
  }
}

/* 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;
  }

  .fade-in-up,
  .fade-in-up.visible {
    opacity: 1;
    transform: none;
  }

  /* Static constellation for reduced motion */
  .satellite-1 { cx: 50; cy: 20; }
  .satellite-2 { cx: 80; cy: 50; }
  .satellite-3 { cx: 50; cy: 80; }
  .satellite-4 { cx: 20; cy: 50; }

  .connection-line {
    stroke-opacity: 0.4;
  }
}
