/**
 * Families Landing Page Styles
 * Extracted from routes/families.tsx for maintainability
 */

.landing-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--color-bg, #eff6ff) 0%, #ffffff 100%);
}

/* Header */
.landing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary, #10b981);
}
.landing-logo .logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-primary, #10b981);
}
.landing-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.nav-link {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--color-text, #064e3b);
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-link:hover {
  background: rgba(16, 185, 129, 0.1);
}
.nav-user {
  font-size: 0.875rem;
  color: #6b7280;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-link-primary {
  background: var(--color-secondary-button, var(--color-primary, #10b981));
  color: white;
}
.nav-link-primary:hover {
  background: var(--color-primary-dark, #059669);
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--color-text, #064e3b);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.hero-subtitle-pain {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0 0 0.75rem;
  line-height: 1.5;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.hero-cta {
  margin-bottom: 1rem;
}
.btn-hero-primary {
  display: inline-block;
  background: var(--color-primary, #10b981);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-primary:hover {
  background: var(--color-primary-dark, #059669);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button, 0 4px 12px rgba(16, 185, 129, 0.3));
}
.hero-pwa {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.hero-trust {
  font-size: 0.8rem;
  color: var(--color-primary, #10b981);
  margin: 0.5rem 0 0;
  font-weight: 500;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text, #064e3b);
  margin: 0 0 1.5rem;
}

/* Pain section */
.pain-section {
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pain-card {
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pain-emoji {
  font-size: 1.5rem;
}
.pain-card strong {
  color: var(--color-text, #064e3b);
  font-size: 1rem;
}
.pain-card span {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}
.pain-transition {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary, #10b981);
  margin: 1.5rem 0 0;
}

/* Demo section */
.demo-section {
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg, #f0fdf4) 100%);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.demo-container {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--color-primary-rgb, 16, 185, 129), 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
}
.demo-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary, #10b981);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.demo-subtitle {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text, #064e3b);
  margin: 0.5rem 0 0.5rem;
}
.demo-instruction {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 1rem;
}
.points-explanation {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-bg, #eff6ff);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--color-text, #1e3a8a);
  line-height: 1.5;
}
.points-explanation strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-secondary-button, var(--color-primary, #3b82f6));
}

/* Story Section */
.story-section {
  padding: 2rem 1rem;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.22s both;
}
.story-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Science Section */
.science-section {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.25s both;
}
.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .science-grid {
    grid-template-columns: 1fr;
  }
}
.science-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--color-secondary-button, var(--color-primary, #10b981));
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.science-emoji {
  font-size: 2rem;
}
.science-title {
  font-size: 1rem;
  color: var(--color-text, #064e3b);
}
.science-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.science-link {
  font-size: 0.85rem;
  color: var(--color-secondary-button, var(--color-primary, #3b82f6));
  text-decoration: none;
  font-weight: 500;
}
.science-link:hover {
  text-decoration: underline;
}

/* Mental Load Section */
.mental-load-section {
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.6s ease-out 0.28s both;
}
.mental-load-intro {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.mental-load-card {
  background: linear-gradient(135deg, var(--color-bg, #eff6ff) 0%, #ffffff 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(30, 64, 138, 0.2);
  margin-bottom: 1rem;
}
.mental-load-quote {
  font-size: 1rem;
  color: var(--color-text, #1e3a8a);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.mental-load-solution {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.mental-load-link {
  display: inline-block;
  color: var(--color-secondary-button, var(--color-primary, #3b82f6));
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.mental-load-link:hover {
  text-decoration: underline;
}

/* How it works */
.how-it-works {
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.step-number {
  width: 32px;
  height: 32px;
  background: var(--color-secondary-button, var(--color-primary, #10b981));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.step-content strong {
  color: var(--color-text, #064e3b);
}
.step-content span {
  color: #6b7280;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.35s both;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.faq-item strong {
  color: var(--color-text, #064e3b);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
.faq-item p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.faq-item a {
  color: var(--color-primary, #10b981);
}

/* PWA Steps */
.pwa-steps {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pwa-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #4b5563;
  padding: 0.5rem;
  background: #f9fafb;
  border-radius: 6px;
}
.pwa-step .step-icon {
  font-size: 1rem;
}
.pwa-step strong {
  display: inline;
  margin: 0;
  font-size: 0.85rem;
}

/* Pricing Preview */
.pricing-preview {
  padding: 2rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.6s ease-out 0.38s both;
}
.pricing-intro {
  color: #4b5563;
  margin: 0 0 1.5rem;
  font-size: 1rem;
}
.pricing-tiers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .pricing-tiers {
    flex-direction: column;
    align-items: center;
  }
}
.pricing-tier {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  min-width: 160px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-tier:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--color-secondary-button, var(--color-primary, #10b981));
}
.pricing-tier.featured {
  border-color: var(--color-secondary-button, var(--color-primary, #10b981));
  background: linear-gradient(135deg, var(--color-bg, #f0fdf4) 0%, white 100%);
}
.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary-button, var(--color-primary, #10b981));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}
.tier-price {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary-button, var(--color-primary, #10b981));
}
.tier-period {
  color: #6b7280;
  font-size: 0.9rem;
}
.tier-note {
  display: block;
  color: #4b5563;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.pricing-terms {
  color: #6b7280;
  font-size: 0.85rem;
  margin: 1rem 0 0.75rem;
}
.pricing-onetime-label {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 1.25rem 0 0.75rem;
}
.pricing-onetime {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.onetime-tier {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
}
.onetime-tier:hover {
  border-color: var(--color-secondary-button, var(--color-primary, #10b981));
  transform: translateY(-2px);
}
.onetime-tier.popular {
  border-color: var(--color-secondary-button, var(--color-primary, #10b981));
  background: linear-gradient(135deg, var(--color-bg, #f0fdf4) 0%, white 100%);
}
.onetime-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary-button, var(--color-primary, #10b981));
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
}
.onetime-price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary-button, var(--color-primary, #10b981));
}
.onetime-duration {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 2px;
}
.pricing-link {
  color: var(--color-secondary-button, var(--color-primary, #10b981));
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.pricing-link:hover {
  text-decoration: underline;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--gradient-complete, linear-gradient(135deg, #10b981 0%, #059669 100%));
  color: white;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.cta-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0 0 1.5rem;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.btn-cta-primary {
  display: inline-block;
  background: white;
  color: var(--color-primary, #1e40af);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.2s;
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-cta-gift {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid #f59e0b;
  transition: all 0.2s;
}
.btn-cta-gift:hover {
  background: #fde68a;
  transform: translateY(-1px);
}
.btn-cta-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}
.cta-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  opacity: 0.85;
}

/* Footer */
.landing-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}
.landing-footer a {
  color: #6b7280;
  text-decoration: none;
}
.landing-footer a:hover {
  color: var(--color-primary, #10b981);
}
.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cta-buttons {
    width: 100%;
  }
  .btn-cta-primary,
  .btn-cta-gift,
  .btn-cta-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Ocean Breeze - Bright Vibrant Blue Theme */
:root[data-theme-mode="ocean-breeze"] {
  --color-primary: #2563eb !important;
  --color-text: #1e3a8a !important;
}
:root[data-theme-mode="ocean-breeze"] .landing-page {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 50%, #dbeafe 100%) !important;
}
:root[data-theme-mode="ocean-breeze"] .landing-logo { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .landing-logo .logo-icon { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .nav-link { color: #1e40af !important; }
:root[data-theme-mode="ocean-breeze"] .nav-link:hover { background: rgba(37, 99, 235, 0.1) !important; }
:root[data-theme-mode="ocean-breeze"] .nav-link-primary { background: #2563eb !important; color: white !important; }
:root[data-theme-mode="ocean-breeze"] .nav-link-primary:hover { background: #1d4ed8 !important; }
:root[data-theme-mode="ocean-breeze"] .hero-title { color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .hero-subtitle-pain { color: #64748b !important; }
:root[data-theme-mode="ocean-breeze"] .hero-subtitle { color: #475569 !important; }
:root[data-theme-mode="ocean-breeze"] .hero-trust { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .btn-hero-primary { background: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .btn-hero-primary:hover { background: #1d4ed8 !important; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important; }
:root[data-theme-mode="ocean-breeze"] .section-title { color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .pain-card { background: white !important; border-left: 4px solid #3b82f6 !important; }
:root[data-theme-mode="ocean-breeze"] .pain-card strong { color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .pain-transition { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .demo-section { background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%) !important; }
:root[data-theme-mode="ocean-breeze"] .demo-container { background: rgba(255, 255, 255, 0.9) !important; border: 1px solid rgba(37, 99, 235, 0.2) !important; }
:root[data-theme-mode="ocean-breeze"] .demo-badge { background: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .demo-subtitle { color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .points-explanation { background: #eff6ff !important; color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .points-explanation strong { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .science-card { border-top-color: #3b82f6 !important; }
:root[data-theme-mode="ocean-breeze"] .science-title { color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .mental-load-card { background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%) !important; border-color: rgba(37, 99, 235, 0.2) !important; }
:root[data-theme-mode="ocean-breeze"] .mental-load-quote { color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .step { background: white !important; }
:root[data-theme-mode="ocean-breeze"] .step-number { background: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .step-content strong { color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .faq-item { background: white !important; }
:root[data-theme-mode="ocean-breeze"] .faq-item strong { color: #1e3a8a !important; }
:root[data-theme-mode="ocean-breeze"] .faq-item a { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .pwa-step { background: #eff6ff !important; }
:root[data-theme-mode="ocean-breeze"] .pricing-tier { background: white !important; }
:root[data-theme-mode="ocean-breeze"] .pricing-tier:hover { border-color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .pricing-tier.featured { border-color: #2563eb !important; background: linear-gradient(135deg, #eff6ff 0%, white 100%) !important; }
:root[data-theme-mode="ocean-breeze"] .tier-badge { background: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .tier-price { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .onetime-tier { background: white !important; }
:root[data-theme-mode="ocean-breeze"] .onetime-tier:hover { border-color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .onetime-tier.popular { border-color: #2563eb !important; background: linear-gradient(135deg, #eff6ff 0%, white 100%) !important; }
:root[data-theme-mode="ocean-breeze"] .onetime-badge { background: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .onetime-price { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .pricing-link { color: #2563eb !important; }
:root[data-theme-mode="ocean-breeze"] .cta-section { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important; }
:root[data-theme-mode="ocean-breeze"] .btn-cta-primary { background: white !important; color: #1d4ed8 !important; }
:root[data-theme-mode="ocean-breeze"] .btn-cta-gift { background: #fef3c7 !important; color: #92400e !important; border-color: #f59e0b !important; }
:root[data-theme-mode="ocean-breeze"] .btn-cta-gift:hover { background: #fde68a !important; }
:root[data-theme-mode="ocean-breeze"] .landing-footer a:hover { color: #2563eb !important; }

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .landing-page {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  }
  .landing-logo {
    color: #60a5fa;
  }
  .landing-logo .logo-icon {
    color: #60a5fa !important;
  }
  .nav-link {
    color: #e2e8f0;
  }
  .nav-link:hover {
    background: rgba(96, 165, 250, 0.15);
  }
  .nav-link-primary {
    background: #3b82f6;
  }
  .nav-link-primary:hover {
    background: #2563eb;
  }
  .hero-title {
    color: #f1f5f9;
  }
  .hero-subtitle-pain {
    color: #94a3b8;
  }
  .hero-subtitle {
    color: #cbd5e1;
  }
  .hero-pwa {
    color: #cbd5e1;
  }
  .hero-trust {
    color: #60a5fa;
  }
  .btn-hero-primary {
    background: #3b82f6;
  }
  .btn-hero-primary:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  .section-title {
    color: #f1f5f9;
  }
  .pain-card,
  .step,
  .faq-item,
  .science-card,
  .pricing-tier {
    background: #1e3a5f;
  }
  .pain-card strong,
  .step-content strong,
  .faq-item strong,
  .author-name {
    color: #f1f5f9;
  }
  .pain-card span,
  .step-content span,
  .faq-item p,
  .testimonial-quote,
  .author-detail {
    color: #cbd5e1;
  }
  .pain-transition {
    color: #60a5fa;
  }
  .demo-section {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  }
  .demo-container {
    background: rgba(30, 58, 95, 0.8);
    border: 1px solid rgba(96, 165, 250, 0.2);
  }
  .demo-badge,
  .tier-badge {
    background: #3b82f6;
  }
  .demo-subtitle {
    color: #f1f5f9;
  }
  .demo-instruction {
    color: #cbd5e1;
  }
  .points-explanation {
    background: rgba(30, 58, 95, 0.5);
    color: #e2e8f0;
  }
  .points-explanation strong {
    color: #60a5fa;
  }
  .step-number {
    background: #3b82f6;
  }
  .science-card {
    background: #1e3a5f;
    border-top-color: #3b82f6;
  }
  .science-title {
    color: #fff;
  }
  .science-text {
    color: #cbd5e1;
  }
  .science-link {
    color: #60a5fa;
  }
  .mental-load-intro {
    color: #cbd5e1;
  }
  .mental-load-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, #1e3a5f 100%);
    border-color: rgba(96, 165, 250, 0.3);
  }
  .mental-load-quote {
    color: #f1f5f9;
  }
  .mental-load-solution {
    color: #cbd5e1;
  }
  .mental-load-link {
    color: #60a5fa;
  }
  .pwa-step {
    background: rgba(30, 58, 95, 0.5);
    color: #cbd5e1;
  }
  .pricing-intro,
  .pricing-terms {
    color: #cbd5e1;
  }
  .pricing-onetime-label {
    color: #94a3b8;
  }
  .tier-period {
    color: #fff;
  }
  .tier-note {
    color: #cbd5e1;
  }
  .tier-price {
    color: #60a5fa;
  }
  .pricing-tier:hover {
    border-color: #60a5fa;
  }
  .pricing-tier.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, #1e3a5f 100%);
  }
  .onetime-tier {
    background: #1e3a5f;
    border-color: #334155;
  }
  .onetime-tier:hover {
    border-color: #60a5fa;
  }
  .onetime-tier.popular {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, #1e3a5f 100%);
  }
  .onetime-badge {
    background: #3b82f6;
  }
  .onetime-price {
    color: #60a5fa;
  }
  .onetime-duration {
    color: #fff;
  }
  .pricing-link {
    color: #60a5fa;
  }
  .cta-section {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  }
  .btn-cta-primary {
    color: #d97706;
  }
  .btn-cta-gift {
    background: #fef3c7;
    color: #92400e;
  }
  .faq-item a {
    color: #60a5fa;
  }
  .story-image {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  .landing-footer {
    color: #cbd5e1;
  }
  .landing-footer a {
    color: #cbd5e1;
  }
  .landing-footer a:hover {
    color: #93c5fd;
  }
}
