/* ===== CSS VARIABLES ===== */
:root {
  --color-bg: #0d0918;
  --color-bg2: #160d2a;
  --color-purple: #6b21a8;
  --color-purple-light: #a855f7;
  --color-violet: #7c3aed;
  --color-gold: #f0c040;
  --color-gold-light: #fde68a;
  --color-pink: #ec4899;
  --color-white: #f8f4ff;
  --color-text: #e2d9f3;
  --color-muted: #a89dc5;
  --color-card: rgba(30, 15, 55, 0.85);
  --color-border: rgba(168, 85, 247, 0.25);
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(107, 33, 168, 0.35);
  --shadow-gold: 0 0 30px rgba(240, 192, 64, 0.25);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: var(--color-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== COSMIC BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(107, 33, 168, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 60% 10%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-white); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
.display-title { font-family: var(--font-display); }
.gold-text { color: var(--color-gold); }
.highlight { color: var(--color-purple-light); }
p { margin-bottom: 1.1rem; color: var(--color-text); }
strong { color: var(--color-white); }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ===== STARS DECORATION ===== */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.stars::before, .stars::after {
  content: '✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦';
  position: absolute;
  color: rgba(240, 192, 64, 0.15);
  font-size: 0.6rem;
  letter-spacing: 12px;
  white-space: nowrap;
}
.stars::before { top: 15%; left: 0; animation: drift 20s linear infinite; }
.stars::after { bottom: 20%; left: 0; animation: drift 25s linear infinite reverse; }

@keyframes drift { from { transform: translateX(-10%); } to { transform: translateX(10%); } }

/* ===== DIVIDER ===== */
.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 20px auto;
}
.divider-full {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), var(--color-purple-light), var(--color-border), transparent);
  margin: 0;
}

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 9, 24, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--color-muted);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--color-gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--color-gold), #e8a800);
  color: #1a0a00 !important;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(240, 192, 64, 0.3);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(240, 192, 64, 0.45); color: #1a0a00 !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(107, 33, 168, 0.15) 0%, transparent 55%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: var(--color-purple-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title span { color: var(--color-gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 550px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.stars-row { color: var(--color-gold); font-size: 1.3rem; letter-spacing: 2px; }
.rating-text { color: var(--color-muted); font-size: 0.9rem; }
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(107, 33, 168, 0.5), 0 0 120px rgba(124, 58, 237, 0.2);
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.1), transparent 50%, rgba(240, 192, 64, 0.05));
  pointer-events: none;
}
.hero-image-wrap img { width: 100%; border-radius: 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #f0c040, #e8950a);
  color: #1a0700;
  box-shadow: 0 6px 30px rgba(240, 192, 64, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(240, 192, 64, 0.55);
  color: #1a0700;
}
.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.btn-secondary:hover {
  background: rgba(240, 192, 64, 0.1);
  transform: translateY(-2px);
  color: var(--color-gold);
}
.btn-large { padding: 20px 52px; font-size: 1.2rem; }
.btn-full { width: 100%; justify-content: center; }
.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(240, 192, 64, 0.4); }
  50% { box-shadow: 0 6px 50px rgba(240, 192, 64, 0.7); }
}

/* ===== PRICE BADGE ===== */
.price-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(30, 15, 55, 0.8);
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  padding: 14px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-gold);
}
.price-old { font-size: 1rem; color: var(--color-muted); text-decoration: line-through; }
.price-new { font-size: 2rem; font-weight: 900; color: var(--color-gold); font-family: var(--font-heading); }
.price-discount {
  background: var(--color-pink);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: rgba(22, 13, 42, 0.8);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.trust-icon { font-size: 1.4rem; }

/* ===== CARDS ===== */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-purple-light), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: rgba(168, 85, 247, 0.5); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 12px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  backdrop-filter: blur(10px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.4;
  font-family: var(--font-heading);
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple), var(--color-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid var(--color-gold);
}
.author-name { font-weight: 700; color: var(--color-white); font-size: 0.95rem; }
.author-role { font-size: 0.82rem; color: var(--color-muted); }
.testimonial-stars { color: var(--color-gold); font-size: 0.95rem; margin-bottom: 12px; }

/* ===== REVIEW SUMMARY ===== */
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}
.review-tag {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--color-purple-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.review-date { color: var(--color-muted); font-size: 0.85rem; }

/* ===== PROS/CONS ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros, .cons { padding: 28px; border-radius: var(--radius); }
.pros { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.25); }
.cons { background: rgba(239, 68, 68, 0.07); border: 1px solid rgba(239, 68, 68, 0.2); }
.pros h4, .cons h4 { margin-bottom: 16px; font-size: 1.1rem; }
.pros h4 { color: #6ee7b7; }
.cons h4 { color: #fca5a5; }
.pros li, .cons li {
  padding: 7px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: #6ee7b7; font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: #fca5a5; }

/* ===== RATING TABLE ===== */
.rating-table { width: 100%; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.rating-label { flex: 0 0 180px; font-size: 0.9rem; color: var(--color-muted); }
.rating-bar-wrap { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.rating-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--color-purple), var(--color-gold)); }
.rating-score { flex: 0 0 40px; text-align: right; font-weight: 700; color: var(--color-gold); font-size: 0.9rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(107, 33, 168, 0.3) 0%, transparent 70%);
}
.cta-box {
  background: var(--color-card);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(168, 85, 247, 0.2);
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-guarantee {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--color-card);
}
.faq-q {
  padding: 20px 28px;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  user-select: none;
}
.faq-q:hover { color: var(--color-gold); }
.faq-q .faq-icon { transition: var(--transition); font-size: 1.1rem; color: var(--color-gold); }
.faq-a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--color-muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ===== FLOATING STARS BG ===== */
.cosmic-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.star-dot {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}

/* ===== FOOTER ===== */
footer {
  background: rgba(8, 5, 16, 0.98);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-gold); margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; color: var(--color-muted); line-height: 1.8; }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-white); margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--color-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--color-gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--color-muted);
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: rgba(240, 192, 64, 0.07);
  border: 1px solid rgba(240, 192, 64, 0.2);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--color-muted);
  text-align: center;
  margin: 40px 0 0;
  line-height: 1.6;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 60px;
}
.page-content { max-width: 820px; margin: 0 auto 80px; }
.page-content h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.page-content h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--color-purple-light); }
.page-content p, .page-content li { font-size: 0.98rem; color: var(--color-muted); line-height: 1.9; margin-bottom: 14px; }
.page-content ul { list-style: disc; padding-left: 28px; }
.page-content a { color: var(--color-gold); }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--color-white); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--color-purple-light);
  background: rgba(168, 85, 247, 0.06);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .cta-box { padding: 36px 24px; }
  .hero { padding: 80px 0 60px; }
  .rating-label { flex: 0 0 120px; font-size: 0.82rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
