/* ============================================
   NOURIAM LANDING PAGE STYLES
   The Gentle Start - Postpartum Guide
   ============================================ */

/* CSS Variables */
:root {
  /* Brand Colors - from logo and ebook */
  --purple-primary: #7842D9;
  --purple-dark: #5E2FB8;
  --purple-light: #9B6FE8;
  --navy: #172B55;

  /* Ebook palette */
  --lavender-dark: #8B6FAE;
  --lavender-light: #C4B1D4;
  --lavender-pale: #E8E0F0;
  --coral-primary: #E8A598;
  --coral-dark: #C47B6B;
  --coral-light: #F5D4CE;
  --cream: #FDF8F4;
  --warm-white: #FFFAF5;

  /* Neutrals */
  --text-dark: #2D2D2D;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --border: #E5E5E5;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--purple-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--purple-dark);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--lavender-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(120, 66, 217, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(120, 66, 217, 0.4);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-medium);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--purple-primary);
}

/* Hero Section */
.hero {
  padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding);
  background: linear-gradient(135deg, var(--cream) 0%, var(--lavender-pale) 50%, var(--coral-light) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple-primary);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--lavender-dark);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  margin-bottom: 2rem;
}

.hero-price {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-price strong {
  font-size: 1.75rem;
  color: var(--navy);
}

.launch-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--coral-primary);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
}

.launch-badge-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral-primary);
  background: rgba(232, 165, 152, 0.2);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.hero-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-includes span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-medium);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.hero-includes svg {
  color: var(--purple-primary);
}

/* Book Mockup */
.book-mockup {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.book-cover {
  width: 280px;
  height: 380px;
  background: linear-gradient(145deg, var(--lavender-pale) 0%, var(--cream) 30%, var(--coral-light) 100%);
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    -20px 20px 40px rgba(0,0,0,0.15),
    inset -2px 0 4px rgba(0,0,0,0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotateY(-10deg);
  position: relative;
}

.book-cover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, rgba(0,0,0,0.1), transparent);
  border-radius: 4px 0 0 4px;
}

.book-brand {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  margin-bottom: 2rem;
}

.book-cover h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.book-cover p {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-medium);
}

/* Social Proof Bar */
.social-proof {
  background: var(--navy);
  padding: 2rem 0;
}

.proof-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--coral-primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--lavender-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Problem Section */
.problem {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.problem h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--coral-light);
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: var(--coral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--coral-dark);
}

.problem-card h3 {
  margin-bottom: 1rem;
  color: var(--coral-dark);
}

.problem-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.problem-cta {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
}

/* Solution Section */
.solution {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--lavender-pale) 0%, var(--white) 100%);
}

.solution-content {
  max-width: 900px;
  margin: 0 auto;
}

.solution h2 {
  text-align: center;
}

.solution-intro {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: var(--text-medium);
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  color: var(--purple-primary);
}

.feature h4 {
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.feature p {
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* What You Get Section */
.what-you-get {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.what-you-get h2 {
  text-align: center;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bundle-item {
  background: var(--cream);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--lavender-light);
}

.bundle-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--cream) 100%);
  border: 2px solid var(--lavender-dark);
}

.bundle-icon {
  color: var(--lavender-dark);
  margin-bottom: 1rem;
}

.bundle-item h3 {
  margin-bottom: 0.5rem;
}

.bundle-format {
  font-size: 0.875rem;
  color: var(--purple-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bundle-item > p:last-of-type {
  color: var(--text-medium);
  font-size: 0.9375rem;
}

.bundle-total {
  text-align: center;
  padding: 3rem;
  background: var(--navy);
  border-radius: 16px;
  color: var(--white);
}

.bundle-total .launch-badge {
  margin-bottom: 1rem;
}

.total-price {
  margin-bottom: 0.5rem;
}

.total-price strong {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
}

.price-note {
  font-size: 1rem;
  color: var(--lavender-light);
  margin-bottom: 1.5rem;
}

/* Audio Preview Section */
.audio-preview {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.audio-preview h2 {
  text-align: center;
}

.audio-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-medium);
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audio-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.audio-preview-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--coral-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.audio-card h4 {
  margin-bottom: 0.5rem;
  color: var(--lavender-dark);
}

.audio-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.audio-card audio {
  width: 100%;
  height: 40px;
}

/* Chapters Section */
.chapters {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.chapters h2 {
  text-align: center;
}

.chapters-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-medium);
}

.chapters-list {
  max-width: 900px;
  margin: 0 auto;
}

.chapter-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.chapter-item:last-child {
  border-bottom: none;
}

.chapter-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--lavender-light);
  flex-shrink: 0;
  width: 60px;
}

.chapter-content h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.chapter-content p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--lavender-pale) 0%, var(--cream) 100%);
}

.testimonials h2 {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-stars {
  color: #F5B041;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--navy);
}

.author-info {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* About Section */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  margin-bottom: 2rem;
}

.about > p {
  color: var(--text-medium);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.value {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
}

.value h4 {
  color: var(--lavender-dark);
  margin-bottom: 0.5rem;
}

.value p {
  color: var(--text-medium);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* FAQ Section */
.faq {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.faq h2 {
  text-align: center;
}

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

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--lavender-dark);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Final CTA */
.final-cta {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a82 100%);
  color: var(--white);
}

.final-cta h2 {
  text-align: center;
  color: var(--white);
}

.cta-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--lavender-light);
  font-size: 1.125rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
}

.cta-includes h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-includes ul {
  list-style: none;
}

.cta-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--lavender-light);
}

.cta-includes svg {
  color: var(--coral-primary);
  flex-shrink: 0;
}

.cta-price {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin: 0.5rem 0 1.5rem;
  display: block;
}

.guarantee-text {
  font-size: 0.9375rem;
  color: var(--lavender-light);
  margin-top: 1.25rem;
  font-style: italic;
  opacity: 0.9;
}

/* App Teaser */
.app-teaser {
  padding: 4rem 0;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--lavender-light);
}

.teaser-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lavender-dark);
  margin-bottom: 0.5rem;
}

.app-teaser h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.teaser-text {
  color: var(--text-medium);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 0.9375rem;
}

.waitlist-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--lavender-light);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--purple-primary);
}

.waitlist-form button {
  padding: 0.75rem 1.5rem;
  background: var(--lavender-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: var(--purple-primary);
}

.waitlist-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.waitlist-success {
  display: none;
  color: var(--lavender-dark);
  font-weight: 500;
  font-size: 1rem;
}

@media (max-width: 480px) {
  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input[type="email"],
  .waitlist-form button {
    width: 100%;
  }
}

/* Footer */
.footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  color: var(--lavender-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--lavender-light);
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: var(--lavender-light);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-includes {
    justify-content: center;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .solution-features {
    grid-template-columns: 1fr;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .audio-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .proof-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat {
    flex: 0 0 45%;
  }

  .chapter-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .chapter-number {
    width: auto;
    font-size: 1.5rem;
  }
}
