/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #F0CC6E;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --dark4: #222222;
  --white: #FFFFFF;
  --gray: #AAAAAA;
  --gray-light: #E5E5E5;
  --text: #1A1A1A;
  --text-light: #555555;
  --accent: #C9A84C;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.3);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: #FAFAF8; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.dark-section { background: var(--dark2); }
.gold { color: var(--gold); }
.white { color: var(--white) !important; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.small-text { font-size: 0.85rem; opacity: 0.8; }

.label {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.label-light {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
}

.section-title { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-subtitle.white { color: rgba(255,255,255,0.75); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 10px 24px;
  font-size: 0.9rem;
}
.btn-header:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-hero {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 1.1rem;
  padding: 18px 40px;
  box-shadow: var(--shadow-gold);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(201,168,76,0.5); }
.btn-primary {
  background: var(--dark);
  color: var(--white);
  margin-top: 24px;
}
.btn-primary:hover { background: var(--dark3); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 800;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-large { font-size: 1.2rem; padding: 22px 50px; }
.btn-cta {
  background: linear-gradient(135deg, #C9A84C, #F0CC6E);
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 22px 48px;
  border-radius: 10px;
  display: block;
  width: fit-content;
  margin: 24px auto;
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-cta:hover { transform: translateY(-4px); box-shadow: 0 12px 50px rgba(201,168,76,0.6); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-icon { color: var(--gold); font-size: 1.4rem; }
.logo-text strong { color: var(--gold); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 700px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.rating-text { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.hero-image-wrap {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 55%;
  max-width: 680px;
}
.hero-img {
  width: 100%;
  object-fit: contain;
}

/* ===== INTRO ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-text h2 { font-family: var(--font-heading); font-size: 2.2rem; margin: 12px 0 20px; }
.intro-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.check-list { margin: 24px 0; }
.check-list li { padding: 8px 0; font-size: 1rem; color: var(--text); border-bottom: 1px solid var(--gray-light); }
.intro-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PROBLEMS ===== */
.problems { text-align: center; }
.problems h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 48px; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 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 22px;
  text-align: left;
}
.prob-icon { font-size: 1.4rem; display: block; margin-bottom: 12px; }
.problem-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.problems-cta-text { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 700px; margin: 0 auto; }

/* ===== BIO ===== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.bio-img-wrap { position: relative; }
.bio-img-wrap img {
  border-radius: 16px;
  width: 100%;
  box-shadow: var(--shadow);
}
.bio-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.bio-text h2 { font-family: var(--font-heading); font-size: 2.2rem; margin: 12px 0 20px; }
.bio-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.plaques-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.plaque {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 6px;
}
.plaque.highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 900;
  border: none;
  box-shadow: var(--shadow-gold);
}

/* ===== MODULES ===== */
.modules { text-align: center; }
.modules h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 12px; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.module-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.module-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.module-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.module-card h3 { color: var(--gold-light); font-size: 1.15rem; margin-bottom: 12px; }
.module-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #FAFAF8; }
.testimonials h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 12px; text-align: center; }
.testimonials .section-subtitle { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.stars-small { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testi-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }

/* ===== REVIEW SUMMARY ===== */
.review-summary h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 40px; }
.review-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
}
.review-score { text-align: center; }
.big-score {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.review-score .stars { font-size: 1.5rem; margin: 8px 0; }
.review-score p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.review-count { font-size: 0.8rem !important; margin-top: 6px; }
.score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.score-row > span:first-child { width: 160px; flex-shrink: 0; }
.bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
}
.score-row > span:last-child { width: 30px; text-align: right; color: var(--gold); font-weight: 700; }
.verdict-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.verdict-box h3 { color: var(--gold-light); font-size: 1.15rem; margin-bottom: 12px; }
.verdict-box p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, #0A0A0A 0%, #1A1500 100%); }
.cta-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner > p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 24px; }
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}
.cta-features span {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
}
.cta-sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 16px; }

/* ===== FAQ ===== */
.faq h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 40px; text-align: center; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q span { color: var(--gold); font-size: 1.5rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; }
.faq-a.open { display: block; }
.faq-a p { color: var(--text-light); font-size: 0.97rem; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 100px 0; }
.final-cta h2 { font-family: var(--font-heading); font-size: 2.6rem; margin-bottom: 20px; }
.final-cta p { font-size: 1.05rem; max-width: 600px; margin: 0 auto 40px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); border-top: 1px solid rgba(201,168,76,0.15); padding: 50px 0 30px; }
.footer-inner { text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--white); font-size: 1.1rem; margin-bottom: 24px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 30px; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-disclaimer { color: rgba(255,255,255,0.35); font-size: 0.78rem; max-width: 800px; margin: 0 auto 20px; line-height: 1.6; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== PAGE STYLES ===== */
.page-hero {
  background: var(--dark);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-heading); font-size: 2.4rem; color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.page-content { padding: 70px 0; max-width: 820px; margin: 0 auto; }
.page-content h2 { font-family: var(--font-heading); font-size: 1.6rem; margin: 36px 0 12px; color: var(--text); }
.page-content p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; }
.page-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.page-content ul li { color: var(--text-light); margin-bottom: 8px; font-size: 1rem; }
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%; border: 1px solid var(--gray-light); border-radius: 8px;
  padding: 12px 16px; font-size: 1rem; font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-image-wrap { display: none; }
  .hero-inner { max-width: 100%; padding-bottom: 40px; }
  .hero-title { font-size: 2.2rem; }
  .intro-grid, .bio-grid { grid-template-columns: 1fr; }
  .bio-grid { gap: 40px; }
  .problems-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 0; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  .problems-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .btn-cta, .btn-large { font-size: 1rem; padding: 18px 28px; }
}
