/* =============================================
   SOUL MASTER – REVIEW WEBSITE STYLES 2026
   Theme: Dark Mystical Luxury
   ============================================= */

:root {
  --bg-dark: #0c0715;
  --bg-mid: #12102a;
  --bg-card: #1a1535;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --text-main: #e8e0d4;
  --text-muted: #9e97b0;
  --text-light: #f5f0e8;
  --accent: #6b4fa0;
  --border: rgba(201, 168, 76, 0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --shadow: 0 4px 32px rgba(0,0,0,0.5);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ---- TOP BAR ---- */
.topbar {
  background: linear-gradient(90deg, #1a0a2e, #2d1a5e, #1a0a2e);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,7,21,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo { display: flex; align-items: center; gap: 8px; }
.logo-star { color: var(--gold); font-size: 22px; }
.logo-text { font-family: var(--font-serif); font-size: 22px; color: var(--text-light); }
.logo-text strong { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.nav a { font-size: 14px; color: var(--text-muted); font-weight: 400; letter-spacing: 0.03em; }
.nav a:hover { color: var(--gold-light); }

.btn-nav {
  background: var(--gold);
  color: #0c0715 !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107,79,160,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0c0715 0%, #12102a 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}

.badge-top {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  background: var(--gold-glow);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 24px;
  font-weight: 300;
}

.hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-guarantee {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #c9a84c, #e8c97a);
  color: #0c0715;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  color: #0c0715;
}
.btn-primary.large { font-size: 18px; padding: 20px 52px; }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--gold-glow); color: var(--gold-light); }

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #c9a84c, #e8c97a);
  color: #0c0715;
  padding: 20px 52px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  margin-top: 24px;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(201,168,76,0.6); color: #0c0715; }

/* ---- SECTION COMMON ---- */
section { padding: 80px 0; }

.section-label {
  text-align: center;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  font-weight: 500;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 em { font-style: italic; color: var(--gold); }

.intro-text {
  text-align: center;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ---- PRODUCT IMAGE SECTION ---- */
.product-image-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-image-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.product-img {
  border-radius: var(--radius);
  box-shadow: 0 16px 64px rgba(0,0,0,0.6);
  max-width: 420px;
  margin: 0 auto;
}

.product-info h2 { text-align: left; }
.product-info p { color: var(--text-muted); margin-bottom: 20px; }

.check-list { list-style: none; margin-bottom: 32px; }
.check-list li {
  padding: 8px 0;
  color: var(--text-main);
  font-size: 15px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

/* ---- INTEREST SECTION ---- */
.interest-section { background: var(--bg-dark); }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 14px; }

/* ---- AUTHOR SECTION ---- */
.author-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border);
}

.author-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

.author-img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  width: 100%;
  max-width: 400px;
}

.author-text h2 { text-align: left; }
.author-text p { color: var(--text-muted); margin-bottom: 16px; }

.awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.awards span {
  background: var(--gold-glow);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.03em;
}

/* ---- MODULES ---- */
.modules-section { background: var(--bg-dark); }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.module-card:hover { border-color: var(--gold); }

.mod-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  min-width: 40px;
}

.module-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.module-card p { font-size: 13px; color: var(--text-muted); }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--bg-dark), #1c1530);
  box-shadow: 0 0 30px var(--gold-glow);
}

.testimonial-card .stars { font-size: 14px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
}
.testimonial-card cite {
  font-size: 13px;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.celebrity-testimonials { border-top: 1px solid var(--border); padding-top: 48px; }
.celebrity-testimonials h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 32px;
}

.celebrity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.celebrity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.celebrity-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.celebrity-card p { font-size: 13px; color: var(--text-muted); font-style: italic; line-height: 1.7; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0518 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }

.price-box {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 48px 56px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px var(--gold-glow);
  margin-top: 32px;
}
.price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-new {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.price-new strong { color: var(--gold); }

.price-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 8px;
}
.price-includes li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-includes li::before { content: ''; }

.cta-sub { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* ---- FAQ ---- */
.faq-section { background: var(--bg-mid); border-top: 1px solid var(--border); }

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  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: '+';
  color: var(--gold);
  font-size: 22px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  color: var(--text-muted);
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

/* ---- FINAL CTA ---- */
.final-cta {
  background: linear-gradient(135deg, #1a0a2e, #0c0715);
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.final-cta h2 { margin-bottom: 32px; }
.guarantee-text { margin-top: 16px; color: var(--text-muted); font-size: 14px; }

/* ---- FOOTER ---- */
.footer {
  background: #07050f;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner { text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-nav a { font-size: 13px; color: var(--text-muted); }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(158,151,176,0.5); }

/* ---- PAGES (inner pages) ---- */
.page-hero {
  background: linear-gradient(180deg, #12102a 0%, var(--bg-dark) 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-light);
  font-weight: 300;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 15px;
}
.page-content h2 {
  font-family: var(--font-serif);
  text-align: left;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 36px 0 12px;
}
.page-content h3 { font-size: 1.1rem; color: var(--text-light); margin: 24px 0 8px; }
.page-content p { margin-bottom: 16px; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }
.page-content ul li { margin-bottom: 8px; }
.page-content a { color: var(--gold); }
.page-content strong { color: var(--text-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .product-image-inner { grid-template-columns: 1fr; }
  .author-inner { grid-template-columns: 1fr; }
  .author-img { max-width: 300px; margin: 0 auto; }
  .three-col { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .celebrity-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .price-box { padding: 32px 24px; }
  .hero { min-height: 70vh; }
  .btn-cta { font-size: 16px; padding: 16px 32px; }
}
