/* ========== VARIABLES ========== */
:root {
  /* Brand Colors */
  --midnight-blue: #071936;
  --deep-indigo: #1E2E5C;
  --dream-gold: #F0B56A;
  --soft-cream: #F9E9D2;
  --light-mist: #A7B4D5;
  
  /* Gradients */
  --dream-gradient: linear-gradient(135deg, #071936 0%, #1E2E5C 100%);
  --eureka-gradient: linear-gradient(135deg, #F0B56A 0%, #F9E9D2 100%);
  --dusk-to-dawn: linear-gradient(180deg, #071022 0%, #121C33 40%, #FDEFBD 100%);
  
  /* Spacing */
  --section-padding: 6rem 2rem;
  --card-padding: 2rem;
  --border-radius: 12px;
  
  /* Typography */
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-serif);
  color: #F2E7D0;
  background: var(--dusk-to-dawn);
  scroll-behavior: smooth;
  line-height: 1.6;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 16, 34, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 231, 208, 0.1);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dream-gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--soft-cream);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--dream-gold);
  color: var(--midnight-blue) !important;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 181, 106, 0.3);
}

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

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--soft-cream);
  transition: all 0.3s ease;
}

.privacy-badge {
  position: fixed;
  top: 5rem;
  right: 2rem;
  background: rgba(240, 181, 106, 0.15);
  border: 1px solid rgba(240, 181, 106, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dream-gold);
  backdrop-filter: blur(8px);
  z-index: 999;
  transition: all 0.3s ease;
}

.privacy-badge:hover {
  background: rgba(240, 181, 106, 0.25);
  transform: translateY(-2px);
}

.badge-icon svg {
  width: 16px;
  height: 16px;
}

/* ========== STARFIELD ========== */
canvas#stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}

/* ========== CLOUDS ========== */
.cloud-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 140%;
  background-repeat: repeat-x;
  background-size: 900px auto;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.layer1 {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path d="M0,100 Q300,80 600,100 T1200,100 L1200,200 L0,200 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  animation: moveClouds1 80s linear infinite;
}

.layer2 {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path d="M0,120 Q400,90 800,120 T1600,120 L1600,200 L0,200 Z" fill="rgba(255,255,255,0.02)"/></svg>');
  opacity: 0.1;
  animation: moveClouds2 120s linear infinite;
}

@keyframes moveClouds1 { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-50%); } 
}

@keyframes moveClouds2 { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-70%); } 
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: transparent;
  padding: 8rem 2rem 4rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 180px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(7,16,34,0) 0%,
    rgba(7,16,34,0.35) 45%,
    rgba(7,16,34,0) 100%
  );
}

.hero-content {
  z-index: 3;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(240, 181, 106, 0.15);
  border: 1px solid rgba(240, 181, 106, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dream-gold);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  animation: glowPulse 6s ease-in-out infinite;
  letter-spacing: -0.02em;
}

@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 12px rgba(255,235,190,0.25); }
  50%     { text-shadow: 0 0 22px rgba(255,235,190,0.5); }
}

.tagline { 
  color: #F5E3A8; 
  font-weight: 500; 
  font-size: 1.25rem;
  margin-top: 1rem; 
}

.subtitle { 
  color: #EFECE3; 
  line-height: 1.8; 
  margin: 1.5rem auto 2rem;
  font-size: 1.15rem;
  max-width: 600px;
  font-family: var(--font-sans);
}

.waitlist-counter {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dream-gold);
  font-family: var(--font-serif);
}

.counter-label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--light-mist);
  text-transform: lowercase;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--dream-gold);
  color: var(--midnight-blue);
  border: 2px solid var(--dream-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(240, 181, 106, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--soft-cream);
  border: 2px solid var(--soft-cream);
}

.btn-secondary:hover {
  background: rgba(242, 231, 208, 0.1);
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: var(--midnight-blue);
  color: var(--soft-cream);
}

.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-badges .badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--light-mist);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.trust-badges .badge:hover {
  opacity: 1;
}

.trust-badges .badge-icon {
  width: 20px;
  height: 20px;
  color: var(--dream-gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  z-index: 3;
  animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: translate(-50%, 0); }
  50%     { transform: translate(-50%, 10px); }
}

/* ========== SECTIONS ========== */
.section {
  position: relative;
  padding: var(--section-padding);
  z-index: 2;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* Force white text on sections with dark backgrounds */
.how-it-works h2,
.how-it-works .section-subtitle {
  color: var(--soft-cream);
}

/* Force dark text on light sections */
.light h2,
.light .section-subtitle {
  color: #1B273E;
}

/* Ensure team section headers are white on dark gradient */
.team h2 {
  color: var(--soft-cream);
}

.team .section-subtitle {
  color: var(--light-mist);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: linear-gradient(to bottom, #071022 0%, #0E1A2F 100%);
  color: var(--soft-cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Responsive: 3 cols → 2 cols → 1 col */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.step {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--dream-gold);
  color: var(--midnight-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 2;
}

.step-icon {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.step-icon svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(240, 181, 106, 0.3));
  transition: all 0.3s ease;
}

.step:hover .step-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 16px rgba(240, 181, 106, 0.5));
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dream-gold);
}

.step p {
  font-family: var(--font-sans);
  line-height: 1.7;
  opacity: 0.9;
}

/* ========== FEATURES / CARDS ========== */
.light {
  position: relative;
  overflow: hidden;
  color: #1B273E;
  background: linear-gradient(
    to bottom,
    #0E1A2F 0%,
    #1B273E 20%,
    #F7F0D9 50%,
    #FDEFBD 100%
  );
}

/* Ensure headers are white when on dark part of gradient */
.light .section-header {
  color: var(--soft-cream);
}

.light .section-header h2 {
  color: var(--soft-cream);
}

.light .section-header .section-subtitle {
  color: var(--light-mist);
}

.features {
  min-height: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Responsive: 3 cols → 2 cols → 1 col */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: 0 8px 30px rgba(27,39,62,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(240, 181, 106, 0.2);
}

.card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 12px 40px rgba(240, 181, 106, 0.25);
}

.card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}

.card-icon svg {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
}

.card:hover .card-icon svg {
  transform: scale(1.15) rotate(5deg);
}

.card h3 { 
  color: #1B273E; 
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.card p {
  font-family: var(--font-sans);
  line-height: 1.7;
  color: rgba(27, 39, 62, 0.8);
}

/* ========== EUREKA ========== */
.eureka {
  background: linear-gradient(to bottom, #FDEFBD, #F7EED3);
  color: #1B273E;
  padding: 6rem 2rem;
  text-align: center;
}

.eureka h2 {
  color: #C6A95E;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.eureka-description {
  max-width: 820px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  line-height: 1.8;
  font-family: var(--font-sans);
}

.rotate {
  display: inline-block;
  font-weight: 600;
  color: #C6A95E;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

.rotate.fade-out { 
  opacity: 0; 
  transform: translateY(-0.25em); 
}

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

/* ========== PRICING ========== */
.pricing {
  background: linear-gradient(to bottom, #0E1A2F 0%, #071936 100%);
  color: var(--soft-cream);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive: 3 cols → 1 col (stack vertically on mobile) */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(242, 231, 208, 0.15);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--dream-gold);
  box-shadow: 0 12px 40px rgba(240, 181, 106, 0.2);
}

.pricing-card.featured {
  background: rgba(240, 181, 106, 0.1);
  border-color: var(--dream-gold);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dream-gold);
  color: var(--midnight-blue);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dream-gold);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--soft-cream);
}

.period {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.annual-price {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features-list li {
  font-family: var(--font-sans);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(242, 231, 208, 0.1);
  opacity: 0.9;
}

.early-bird {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--dream-gold);
  font-weight: 600;
}

/* ========== WHY SOMNORA ========== */
.why-somnora {
  background: linear-gradient(to bottom, #F7F0D9 0%, #FDEFBD 100%);
  color: #1B273E;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive: 2 cols → 1 col */
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(198, 169, 94, 0.2);
  transition: all 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(198, 169, 94, 0.2);
  border-color: #C6A95E;
}

.comparison-item h3 {
  color: #C6A95E;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.comparison-item p {
  font-family: var(--font-sans);
  line-height: 1.7;
}

/* ========== TEAM ========== */
.team {
  background: linear-gradient(to bottom, #0E1A2F 0%, #1B273E 30%, #F7F0D9 70%, #FDEFBD 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

/* Responsive: 3 cols → 2 cols → 1 col */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.team-member {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(27, 39, 62, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(240, 181, 106, 0.2);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(240, 181, 106, 0.25);
}

.member-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--dream-gold);
  background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--dream-gold) 100%);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.team-member h3 {
  color: #1B273E;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.role {
  color: #C6A95E;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bio {
  font-family: var(--font-sans);
  line-height: 1.7;
  color: rgba(27, 39, 62, 0.8);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.hiring-cta {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.hiring-cta a {
  color: #C6A95E;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #C6A95E;
  transition: all 0.3s ease;
}

.hiring-cta a:hover {
  opacity: 0.7;
}

/* ========== FAQ ========== */
.faq {
  background: linear-gradient(to bottom, #FDEFBD 0%, #F7EED3 100%);
  color: #1B273E;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  border: 1px solid rgba(198, 169, 94, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(198, 169, 94, 0.15);
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: #C6A95E;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: #C6A95E;
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  font-family: var(--font-sans);
  line-height: 1.7;
  opacity: 0.9;
}

/* ========== STATS ========== */
.stats {
  background: linear-gradient(to bottom, #071936 0%, #0E1A2F 100%);
  color: var(--soft-cream);
  padding: 4rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dream-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(to bottom, #F7EED3, #F2E7D0);
  color: #1B273E;
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer h2 {
  color: #C6A95E;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer > p {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.waitlist-form {
  margin: 2rem auto;
  max-width: 500px;
}

.form-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 2px solid rgba(27, 39, 62, 0.2);
  background: rgba(255,255,255,0.9);
  color: #1B273E;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.waitlist-form input:focus {
  outline: none;
  border-color: #C6A95E;
  box-shadow: 0 0 0 3px rgba(198, 169, 94, 0.1);
}

.waitlist-form button {
  padding: 1rem 2rem;
  border: none;
  background-color: #C6A95E;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 169, 94, 0.3);
  background-color: #B8984D;
}

.form-response {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: #C6A95E;
}

.waitlist-benefits {
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(198, 169, 94, 0.2);
}

.benefits-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #C6A95E;
}

.waitlist-benefits ul {
  list-style: none;
  text-align: left;
  display: inline-block;
  font-family: var(--font-sans);
}

.waitlist-benefits li {
  padding: 0.5rem 0;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
  font-family: var(--font-sans);
}

.footer-links a {
  color: #1B273E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C6A95E;
}

.copyright {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 2rem;
}

/* ========== AUDIO TOGGLE ========== */
.audio-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(240, 181, 106, 0.2);
  border: 2px solid rgba(240, 181, 106, 0.4);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--dream-gold);
  cursor: pointer;
  width: 56px;
  height: 56px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.audio-toggle:hover { 
  background: rgba(240, 181, 106, 0.3);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(240, 181, 106, 0.3);
}

.audio-toggle.muted { 
  color: #888;
  opacity: 0.5;
  border-color: rgba(136, 136, 136, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .privacy-badge {
    top: auto;
    bottom: 6rem;
    right: 1rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .counter-number {
    font-size: 2rem;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .waitlist-form input {
    min-width: 100%;
  }
  
  .audio-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .trust-badges .badge {
    font-size: 0.8rem;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .nav,
  .audio-toggle,
  .scroll-indicator,
  .cloud-layer,
  canvas#stars {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

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