/* MANDALA ART THERAPY - MARKETING HOMEPAGE STYLES */

.home-view-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 24px 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* --- HERO SECTION --- */

.hero-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, rgba(26, 16, 60, 0.85) 0%, rgba(13, 17, 26, 0.95) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lux), inset 0 0 60px rgba(229, 184, 66, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(229, 184, 66, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid var(--border-active);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.hero-guarantee-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero 3D Book Showcase Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-book-card-3d {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 
    -20px 25px 50px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(229, 184, 66, 0.25);
  transform: rotateY(-12deg) rotateX(6deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid var(--gold-primary);
  cursor: pointer;
}

.hero-book-card-3d:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.04);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(229, 184, 66, 0.4);
}

.hero-book-card-3d img {
  width: 100%;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: var(--gold-gradient);
  color: #0F172A;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- SECTION HEADINGS --- */

.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 750px;
  margin: 0 auto;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-main);
  line-height: 1.25;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- FEATURES 4-GRID SHOWCASE --- */

.features-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-lux);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-main);
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- CHAPTERS SHOWCASE STRIP --- */

.chapters-preview-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.chapter-pill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.chapter-pill-card:hover {
  border-color: var(--gold-primary);
  background: rgba(229, 184, 66, 0.05);
}

.chapter-pill-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
}

.chapter-pill-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.chapter-pill-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- TESTIMONIALS SECTION --- */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-lux);
}

.stars-rating {
  color: var(--gold-primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-quote);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.5;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(229, 184, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--border-subtle);
}

.reviewer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.reviewer-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- HOMEPAGE BOTTOM SUBSCRIPTION CTA --- */

.home-pricing-cta-card {
  background: linear-gradient(135deg, rgba(229, 184, 66, 0.12) 0%, rgba(19, 26, 41, 0.95) 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(229, 184, 66, 0.15);
}

.home-pricing-cta-card h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-main);
}

.home-price-tag {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-light);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.home-price-tag span {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 600;
}

.home-plan-features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  max-width: 800px;
  margin: 10px 0;
  font-size: 0.95rem;
  color: var(--text-main);
}

.home-plan-features-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-plan-features-list li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: 900;
}

@media (max-width: 900px) {
  .hero-banner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-stats-row {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-book-card-3d {
    max-width: 240px;
    transform: none;
  }
}
