/* ========================================
   Novolene — Landing Page Styles
   ======================================== */

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: var(--space-4xl);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse 40% 30% at 30% 20%, rgba(0, 230, 118, 0.08), transparent),
    radial-gradient(ellipse 35% 25% at 70% 60%, rgba(255, 215, 0, 0.05), transparent),
    radial-gradient(ellipse 50% 40% at 50% 40%, rgba(0, 230, 118, 0.03), transparent);
  animation: rotateGlow 30s linear infinite;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: var(--color-accent-subtle);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease forwards;
}

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

.hero-title {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-accent), #69F0AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── Social Proof Bar ── */
.social-proof-bar {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
}

.social-proof-item .icon {
  font-size: 22px;
}

.social-proof-item strong {
  color: var(--color-text-primary);
}

/* ── Problem/Solution Section ── */
.problem-solution {
  background: var(--color-bg-secondary);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.ps-content h2 {
  margin-bottom: var(--space-lg);
}

.ps-content p {
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}

.ps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ps-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.ps-list-item:hover {
  border-color: var(--color-border-accent);
  background: var(--color-accent-subtle);
}

.ps-list-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ps-list-text strong {
  display: block;
  margin-bottom: 2px;
}

.ps-list-text span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.ps-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ps-product-showcase {
  display: flex;
  gap: var(--space-md);
  align-items: flex-end;
}

.ps-product-showcase img {
  width: 120px;
  filter: drop-shadow(0 10px 30px rgba(0, 230, 118, 0.2));
  animation: float 4s ease-in-out infinite;
}

.ps-product-showcase img:nth-child(2) {
  width: 140px;
  animation-delay: 0.5s;
}

.ps-product-showcase img:nth-child(3) {
  width: 120px;
  animation-delay: 1s;
}

/* ── Products Section ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

/* ── How It Works ── */
.steps-container {
  display: flex;
  align-items: stretch;
  gap: var(--space-xl);
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition-base);
}

.step:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  margin: 0 auto var(--space-lg);
}

.step-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
}

.step h4 {
  margin-bottom: var(--space-sm);
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.step-connector {
  display: flex;
  align-items: center;
  color: var(--color-accent);
  font-size: var(--text-2xl);
  opacity: 0.3;
  flex-shrink: 0;
}

/* ── Bundle / CTA Section ── */
.bundle-section {
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.bundle-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05), transparent);
  pointer-events: none;
}

.bundle-content {
  display: flex;
  align-items: center;
  gap: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.bundle-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bundle-image img {
  max-width: 320px;
  filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.15));
  animation: float 5s ease-in-out infinite;
}

.bundle-info {
  flex: 1;
}

.bundle-info h2 {
  margin-bottom: var(--space-md);
}

.bundle-info > p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

.bundle-includes {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.bundle-includes-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-base);
}

.bundle-includes-item .check {
  color: var(--color-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.bundle-price-current {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-gold);
}

.bundle-price-original {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.bundle-savings {
  background: var(--color-sale);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
}

/* ── Testimonials Section ── */
.testimonials-section {
  overflow: hidden;
}

.testimonials-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ── Trust Badges ── */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.trust-badge:hover {
  border-color: var(--color-border-accent);
}

.trust-badge-icon {
  font-size: 28px;
}

.trust-badge-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

.trust-badge-text span {
  display: block;
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

/* ── Newsletter Section ── */
.newsletter-section {
  background: var(--color-bg-secondary);
  text-align: center;
}

/* ── Quiz CTA Section ── */
.quiz-cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quiz-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.06), transparent);
  pointer-events: none;
}

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

.quiz-cta-content h2 {
  margin-bottom: var(--space-md);
}

.quiz-cta-content > p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Particles ── */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 6s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; animation-duration: 8s; }
.particle:nth-child(3) { top: 30%; left: 60%; animation-delay: 2s; animation-duration: 7s; width: 3px; height: 3px; }
.particle:nth-child(4) { top: 70%; left: 20%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(5) { top: 10%; left: 40%; animation-delay: 0.5s; animation-duration: 5s; width: 5px; height: 5px; }
.particle:nth-child(6) { top: 80%; left: 50%; animation-delay: 1.5s; animation-duration: 7s; }
.particle:nth-child(7) { top: 40%; left: 90%; animation-delay: 2.5s; animation-duration: 6s; width: 3px; height: 3px; }
.particle:nth-child(8) { top: 50%; left: 30%; animation-delay: 4s; animation-duration: 8s; opacity: 0.2; }
