@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root,
[data-theme="dark"] {
  --flame-orange: #e8651a;
  --flame-red: #b8390e;
  --flame-gold: #f5a623;
  --dark-bg: #0a0a0a;
  --dark-card: #111111;
  --text-light: #f0ece4;
  --text-muted: rgba(240, 236, 228, 0.6);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.06);
  --card-bg-hover: rgba(255,255,255,0.08);
  --nav-scrolled-bg: rgba(10, 10, 10, 0.9);
  --nav-border: rgba(255,255,255,0.05);
  --overlay-gradient: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.5) 65%, rgba(10,10,10,1) 100%);
  --overlay-side: linear-gradient(90deg, rgba(10,10,10,0.6) 0%, transparent 50%);
  --mobile-menu-bg: rgba(10, 10, 10, 0.97);
  --footer-bg: #050505;
  --shadow-color: rgba(0,0,0,0.4);
}

[data-theme="light"] {
  --dark-bg: #f5f0e8;
  --dark-card: #ffffff;
  --text-light: #1a1205;
  --text-muted: rgba(26, 18, 5, 0.6);
  --card-bg: rgba(0,0,0,0.03);
  --card-border: rgba(0,0,0,0.08);
  --card-bg-hover: rgba(0,0,0,0.06);
  --nav-scrolled-bg: rgba(245, 240, 232, 0.92);
  --nav-border: rgba(0,0,0,0.08);
  --overlay-gradient: linear-gradient(180deg, rgba(245,240,232,0.3) 0%, rgba(245,240,232,0) 30%, rgba(245,240,232,0.5) 65%, rgba(245,240,232,1) 100%);
  --overlay-side: linear-gradient(90deg, rgba(245,240,232,0.5) 0%, transparent 50%);
  --mobile-menu-bg: rgba(245, 240, 232, 0.97);
  --footer-bg: #e8e0d0;
  --shadow-color: rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.highlight {
  background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange), var(--flame-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--flame-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}

.nav.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--nav-border);
  transition: all 0.4s;
}

.nav__logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--flame-gold);
}

.nav__cta {
  background: linear-gradient(135deg, var(--flame-orange), var(--flame-red));
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--mobile-menu-bg);
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--flame-gold);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.5);
  image-rendering: high-quality;
  -ms-interpolation-mode: bicubic;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: 
    var(--overlay-gradient),
    var(--overlay-side);
  z-index: 1;
  transition: background 0.4s ease;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 6rem 2rem 2rem;
  text-align: center;
  animation: fadeUp 1.2s ease-out;
}

.hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--flame-gold);
  border: 1px solid rgba(245, 166, 35, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  background: rgba(245, 166, 35, 0.08);
  animation: glowPulse 3s ease-in-out infinite;
}

.hero__title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(232, 101, 26, 0.3);
}

.hero__description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero Stats Cards */
.hero__stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-card {
  background: linear-gradient(135deg, var(--card-bg), var(--card-bg));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  min-width: 160px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--flame-orange), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 101, 26, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card__number {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
}

.stat-card__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--flame-orange), var(--flame-red));
  color: #fff;
  box-shadow: 0 4px 30px rgba(232, 101, 26, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(232, 101, 26, 0.55);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange));
  opacity: 0;
  transition: opacity 0.4s;
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary span {
  position: relative;
  z-index: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(240, 236, 228, 0.2);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  border-color: var(--flame-gold);
  color: var(--flame-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.12);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator__text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-indicator__line {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, var(--flame-gold), transparent);
}

/* ===== ABOUT ===== */
.about {
  padding: 8rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 400;
}

.about__list-icon {
  color: var(--flame-gold);
  font-weight: 700;
  font-size: 1rem;
}

/* Book Mockup */
.book-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.book-mockup__inner {
  width: 260px;
  height: 380px;
  display: flex;
  transform: perspective(800px) rotateY(-12deg);
  transition: transform 0.6s;
}

.book-mockup__inner:hover {
  transform: perspective(800px) rotateY(-4deg);
}

.book-mockup__spine {
  width: 30px;
  height: 100%;
  background: linear-gradient(135deg, #1a0a02, #2a1205);
  border-radius: 4px 0 0 4px;
  box-shadow: -4px 0 15px rgba(0,0,0,0.5);
}

.book-mockup__cover {
  flex: 1;
  background: linear-gradient(145deg, #1c0c03, #0f0704);
  border: 1px solid rgba(232, 101, 26, 0.3);
  border-left: none;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.book-mockup__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(232, 101, 26, 0.15), transparent 60%);
}

.book-mockup__content {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.book-mockup__tag {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--flame-gold);
  border: 1px solid rgba(245, 166, 35, 0.4);
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.book-mockup__content h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--text-light);
}

.book-mockup__content em {
  background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.book-mockup__line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--flame-gold), var(--flame-orange));
  margin: 1.5rem auto 0;
}

.book-mockup__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

/* ===== PATHS (12 Caminhos) ===== */
.paths {
  padding: 6rem 0 8rem;
}

.paths__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.path-card {
  background: linear-gradient(135deg, var(--card-bg), var(--card-bg));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--flame-orange), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.path-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 101, 26, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.path-card:hover::before {
  opacity: 1;
}

.path-card__number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}

.path-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.12), rgba(184, 57, 14, 0.08));
  border: 1px solid rgba(232, 101, 26, 0.15);
}

.path-card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.path-card__text {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.85rem;
  font-weight: 300;
}

/* ===== AUTHOR ===== */
.author {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(232, 101, 26, 0.03), transparent);
}

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

.author__avatar {
  position: relative;
}

.author__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.15), rgba(184, 57, 14, 0.1));
  border: 2px solid rgba(232, 101, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author__initials {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.author__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.author__bio {
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.author__achievements {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.achievement {
  text-align: center;
}

.achievement__number {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.2rem;
}

.achievement__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--card-bg), var(--card-bg));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--flame-orange), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 101, 26, 0.2);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card__stars {
  color: var(--flame-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.2), rgba(184, 57, 14, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--flame-gold);
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.testimonial-card__author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== CTA / PRICING ===== */
.cta {
  padding: 6rem 0;
}

.cta__box {
  padding: 4rem 3rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.06), rgba(184, 57, 14, 0.03));
  border: 1px solid rgba(232, 101, 26, 0.12);
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.04) 0%, transparent 60%);
  animation: rotateSlow 25s linear infinite;
}

.cta__content {
  position: relative;
  text-align: center;
}

.cta__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta__text {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta__text strong {
  color: var(--flame-gold);
  font-weight: 600;
}

.cta__pricing {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.price-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 320px;
  text-align: center;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--flame-orange), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 101, 26, 0.2);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card--featured {
  border-color: rgba(232, 101, 26, 0.3);
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.08), rgba(184, 57, 14, 0.04));
}

.price-card--featured::before {
  opacity: 1;
}

.price-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--flame-orange), var(--flame-red));
  padding: 0.35rem 1.2rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.price-card__label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.price-card__price {
  margin-bottom: 1.5rem;
}

.price-card__old {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.3rem;
}

.price-card__current {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price-card__features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.cta__guarantee {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== FAQ ===== */
.faq {
  padding: 6rem 0;
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(232, 101, 26, 0.15);
}

.faq-item__question {
  width: 100%;
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq-item__question:hover {
  color: var(--flame-gold);
}

.faq-item__icon {
  font-size: 1.3rem;
  color: var(--flame-gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-item__answer p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9rem;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

.footer__links h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
  font-weight: 300;
}

.footer__links a:hover {
  color: var(--flame-gold);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--flame-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(245, 166, 35, 0.08); }
  50% { box-shadow: 0 0 25px rgba(245, 166, 35, 0.2); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.3);
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.1), rgba(184, 57, 14, 0.05));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--flame-gold);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.2);
  transform: scale(1.1);
}

.theme-toggle__icon {
  position: absolute;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1;
}

/* Dark mode: show sun (to switch to light), hide moon */
[data-theme="dark"] .theme-toggle__sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-toggle__moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

/* Light mode: show moon (to switch to dark), hide sun */
[data-theme="light"] .theme-toggle__sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .theme-toggle__moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle {
  border-color: rgba(26, 18, 5, 0.2);
  background: linear-gradient(135deg, rgba(232, 101, 26, 0.08), rgba(245, 166, 35, 0.05));
}

/* Light mode specific overrides */
[data-theme="light"] .nav__logo {
  filter: brightness(0.8);
}

[data-theme="light"] .hero__bg img {
  filter: brightness(0.7);
}

[data-theme="light"] .highlight {
  filter: brightness(0.85);
}

[data-theme="light"] .stat-card,
[data-theme="light"] .path-card,
[data-theme="light"] .testimonial-card {
  box-shadow: 0 4px 20px var(--shadow-color);
}

[data-theme="light"] .nav__hamburger span {
  background: var(--text-light);
}

[data-theme="light"] .mobile-menu a {
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about__list {
    align-items: center;
  }

  .about__visual {
    order: -1;
  }

  .author__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .author__avatar {
    display: flex;
    justify-content: center;
  }

  .author__achievements {
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 5rem 1rem 2rem;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 80%;
    max-width: 240px;
  }

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

  .cta__box {
    padding: 3rem 1.5rem;
  }

  .cta__pricing {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    width: 100%;
    max-width: 340px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__links a {
    margin-bottom: 0.5rem;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
  }
}
