/* Psychological Design Variables – kept identical, no structural changes except content */
:root {
  --primary: #00c8ff;
  --secondary: #7b2dff;
  --accent: #ff2d7b;
  --dark: #0a0e17;
  --darker: #05080f;
  --light: #f0f5ff;
  --soft-gray: #8a9bb8;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --membrane-medium: rgba(123, 45, 255, 0.3);
  --glow: 0 0 20px rgba(0, 200, 255, 0.3);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #00c8ff 0%, #7b2dff 100%);
  --gradient-dark: linear-gradient(135deg, #05080f 0%, #0a0e17 100%);
}

/* Calming Background Layers – unchanged */
.particle-network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 80%, rgba(123, 45, 255, 0.08) 0%, transparent 65%),
    radial-gradient(circle at 80% 20%, rgba(0, 200, 255, 0.08) 0%, transparent 65%),
    radial-gradient(circle at 40% 40%, rgba(255, 45, 123, 0.05) 0%, transparent 65%);
  opacity: 0.98;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 80%, rgba(123, 45, 255, 0.08) 0%, transparent 85%),
    radial-gradient(circle at 80% 20%, rgba(0, 200, 255, 0.08) 0%, transparent 85%),
    radial-gradient(circle at 40% 40%, rgba(255, 45, 123, 0.05) 0%, transparent 85%);
}

/* Subtle Glow Elements – unchanged */
.glow-element {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.glow-center {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: gentle-pulse 20s ease-in-out infinite;
}

.glow-corner-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: -100px;
  left: -100px;
  animation: gentle-float 25s ease-in-out infinite;
}

.glow-corner-2 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: -80px;
  right: -80px;
  animation: gentle-float 30s ease-in-out infinite reverse;
}

@keyframes gentle-pulse {
  0%, 100% { opacity: 0.08; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes gentle-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, 20px) rotate(120deg); }
  66% { transform: translate(-15px, 15px) rotate(240deg); }
}

/* Main Content Container */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

/* Delightful Divider – unchanged */
.content-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 200, 255, 0.3) 25%, 
    rgba(123, 45, 255, 0.3) 50%, 
    rgba(0, 200, 255, 0.3) 75%, 
    transparent 100%);
  margin: 3rem auto;
  width: 80%;
  position: relative;
}

.content-divider::before,
.content-divider::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  animation: subtle-sparkle 4s infinite;
}

.content-divider::before {
  left: 25%;
  animation-delay: 0.5s;
}

.content-divider::after {
  right: 25%;
  animation-delay: 1.5s;
}

/* Hero Section Styles – layout unchanged, content updated */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 2rem;
  background: var(--darker);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 8, 15, 0.9) 0%, rgba(5, 8, 15, 0.7) 50%, rgba(5, 8, 15, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--soft-gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
  padding: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Cards Section */
.cards-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--soft-gray);
  max-width: 800px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--glow);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.card h3 {
  color: var(--light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--soft-gray);
  line-height: 1.7;
}

/* Image & Content Section */
.image-content-section {
  padding: 5rem 0;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.content-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.content-text h3 {
  color: var(--light);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.content-text p {
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  color: var(--soft-gray);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.content-list li i {
  color: var(--primary);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

/* Lead Magnet Section */
.lead-magnet-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius);
  margin: 4rem 0;
}

.lead-magnet-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.lead-magnet-content h3 {
  color: var(--light);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.lead-magnet-content p {
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lead-magnet-content ul {
  color: var(--soft-gray);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.lead-magnet-content li {
  margin-bottom: 0.75rem;
}

.download-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--primary);
  backdrop-filter: blur(10px);
}

.download-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.download-card h4 {
  color: var(--light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.download-card p {
  color: var(--soft-gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  gap: 0.75rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(0, 200, 255, 0.1);
  transform: translateY(-3px);
}

/* Responsive Design – unchanged */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .content-row {
    grid-template-columns: 1fr;
  }
  
  .lead-magnet-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Animation */
@keyframes subtle-sparkle {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

/* ========== MISSING CSS ADDED BELOW ========== */

/* Mobile & Desktop Headers */
.mobile-header,
.desktop-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 8, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Container */
main-container {
  display: block;
  position: relative;
  z-index: 2;
}

/* Image Text Section */
.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.image-text-section .section-title {
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 2rem;
}

.image-text-section .section-text {
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.doctors-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
}

.doctors-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.image-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.image-icon {
  font-size: 4rem;
  color: var(--primary);
}

.image-placeholder p {
  color: var(--soft-gray);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Eligibility Section */
.eligibility-section {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius);
  margin-bottom: 4rem;
}

.eligibility-section .section-title {
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 2rem;
  text-align: center;
}

.eligibility-section .section-text {
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.eligibility-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.eligibility-list li {
  color: var(--soft-gray);
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--primary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Card Section (for lead magnet) */
.card-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Error message styling */
.error {
  color: var(--accent);
  padding: 1rem;
  background: rgba(255, 45, 123, 0.1);
  border-radius: var(--border-radius-sm);
  text-align: center;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {

  .image-text-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .eligibility-list {
    grid-template-columns: 1fr;
  }
  

}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: var(--primary);
  color: var(--dark);
}

/* Focus outline for accessibility */
:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Hide focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Loading states for partial includes */
[data-include] {
  min-height: 100px;
  position: relative;
}

[data-include]:empty::before {
  content: "Loading...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--soft-gray);
  font-size: 0.9rem;
}
