/* ===== VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0e0e0e;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --text: #e8e2d9;
  --text-muted: #a09888;
  --white: #ffffff;
  --accent: #c9a84c;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #a87830);
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); color: var(--dark); }
.btn-primary.btn-large { font-size: 1.2rem; padding: 20px 48px; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-nav {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--gold-light); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { border-radius: 8px; }
.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.main-nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.main-nav a { color: var(--text-muted); font-size: 0.95rem; font-weight: 400; transition: color 0.2s; }
.main-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1c1208 50%, #0e0e0e 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-content {
  position: relative; z-index: 1;
  padding: 80px 24px;
  text-align: center;
  max-width: 800px; margin: 0 auto;
}
.badge-top {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 900;
}
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-rating {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 32px;
}
.stars { color: var(--gold); font-size: 1.4rem; }
.rating-text { color: var(--text-muted); font-size: 0.95rem; }
.hero-note { margin-top: 16px; font-size: 0.88rem; color: var(--text-muted); }

/* ===== SECTIONS COMMON ===== */
section { padding: 80px 0; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 52px;
}

/* ===== REVIEW INTRO ===== */
.review-intro { background: var(--dark2); }
.review-box {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 48px;
}
.founder-img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.review-box-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 18px;
}
.review-box-right p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.quick-scores {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.score-item { text-align: center; }
.score-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.score-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== PROBLEM ===== */
.problem-section { background: var(--dark); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.problem-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(201,168,76,0.3); }
.problem-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.problem-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.solution-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: center;
}
.solution-banner p { font-size: 1.05rem; color: var(--text); }

/* ===== DANCE IMAGE ===== */
.dance-img-section { background: var(--dark2); padding: 60px 0; }
.dance-figure { text-align: center; }
.full-dance-img {
  max-width: 520px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
figcaption { color: var(--text-muted); font-size: 0.9rem; font-style: italic; }

/* ===== METHOD ===== */
.method-section { background: var(--dark); }
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.method-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.25s, transform 0.2s;
}
.method-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.method-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: rgba(201,168,76,0.25);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.method-card h3 { color: var(--gold); font-size: 1rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.method-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

/* ===== FEATURES ===== */
.features-section { background: var(--dark2); }
.features-list { max-width: 750px; margin: 0 auto 40px; }
.feature-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-item:last-child { border-bottom: none; }
.check {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong { color: var(--white); display: block; margin-bottom: 4px; }
.feature-item p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }
.center-cta { text-align: center; }

/* ===== PRICING ===== */
.pricing-section { background: var(--dark); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 800px;
  margin: 0 auto 28px;
}
.pricing-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1f1a0d, var(--dark3));
  transform: scale(1.03);
}
.pricing-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.pricing-badge.best { background: var(--gold); color: var(--dark); }
.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}
.price { font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.price span { font-size: 1.1rem; font-weight: 400; color: var(--text-muted); }
.price-monthly { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { color: var(--text-muted); font-size: 0.93rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.95rem; max-width: 600px; margin: 0 auto; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.testimonial-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.stars-small { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { color: var(--gold); font-weight: 700; font-size: 0.88rem; }
.testimonial-source { text-align: center; color: var(--text-muted); font-size: 0.88rem; }

/* ===== FOR WHOM ===== */
.forwhom-section { background: var(--dark); }
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.forwhom-card {
  border-radius: var(--radius);
  padding: 36px 28px;
}
.forwhom-card.yes {
  background: rgba(40,80,40,0.25);
  border: 1px solid rgba(80,160,80,0.3);
}
.forwhom-card.no {
  background: rgba(80,20,20,0.2);
  border: 1px solid rgba(160,60,60,0.3);
}
.forwhom-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.forwhom-card ul { list-style: none; }
.forwhom-card li { color: var(--text-muted); font-size: 0.95rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.forwhom-card li:last-child { border-bottom: none; }

/* ===== FINAL CTA ===== */
.final-cta-section {
  background: linear-gradient(135deg, #140f03, #1c1208, #0e0e0e);
  padding: 100px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.cta-award-img {
  width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.final-cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta-text p { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; margin-bottom: 24px; line-height: 1.8; }
.cta-bullets {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px;
  margin-bottom: 32px;
}
.cta-bullets span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}
.final-note { margin-top: 16px; color: var(--text-muted); font-size: 0.88rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.footer-inner { text-align: center; }
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 24px;
}
.footer-logo img { border-radius: 6px; }
.footer-logo span { color: var(--text-muted); font-size: 0.95rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-bottom: 24px; }
.footer-nav a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-disclaimer { color: var(--text-muted); font-size: 0.82rem; max-width: 680px; margin: 0 auto 12px; line-height: 1.65; }
.footer-copy { color: rgba(160,152,136,0.5); font-size: 0.82rem; }

/* ===== PAGE STYLES (for sub-pages) ===== */
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 32px;
}
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 32px 0 12px;
}
.page-content p, .page-content li { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.page-content ul { padding-left: 20px; }
.page-content a { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-nav { gap: 14px; }
  .main-nav a:not(.btn-nav) { display: none; }
  .review-box { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .pricing-card.featured { transform: scale(1); }
  .final-cta-inner { flex-direction: column; }
  section { padding: 60px 0; }
}
