/* ============================================================
   NUMEROLOGIST.COM — Complete Stylesheet
   Design: Luxury Mystical Dark with Gold Accents
   Fonts: Montserrat Bold (headings) + Open Sans (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-dark: #0a0a1a;
  --bg-mid: #0f0f2e;
  --bg-card: #12122a;
  --bg-card2: #16163a;
  --gold: #d4a843;
  --gold-light: #f0c060;
  --gold-dark: #a87c28;
  --accent: #7b5ef8;
  --accent2: #5b3fda;
  --teal: #00d4c8;
  --white: #ffffff;
  --text-main: #e8e8f0;
  --text-muted: #9090b0;
  --text-dark: #c0c0d8;
  --border: rgba(212, 168, 67, 0.2);
  --border-hover: rgba(212, 168, 67, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(212, 168, 67, 0.15);
  --shadow-gold-hover: 0 0 50px rgba(212, 168, 67, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.max-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.mt-20 { margin-top: 20px; }
.w-full { width: 100%; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION PADDING ===== */
.section-padded { padding: 80px 0; }

/* ===== SECTION LABELS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  min-height: 48px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a1a;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  transform: scale(1.05);
}
.btn-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a1a;
  font-size: 0.875rem;
  padding: 10px 20px;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}
.btn-cta:hover { transform: scale(1.05); }
.btn-lg { font-size: 1.1rem; padding: 16px 36px; min-height: 56px; }
.btn-xl { font-size: 1.2rem; padding: 20px 44px; min-height: 64px; }

/* Pulse animation for hero CTA */
.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35); }
  50% { box-shadow: 0 8px 50px rgba(212, 168, 67, 0.7), 0 0 80px rgba(212, 168, 67, 0.2); }
}

/* Touch feedback */
@media (hover: none) {
  .btn:active { transform: scale(0.98); }
}

/* ===== NAVBAR ===== */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
}
.navbar {
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 26, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(212, 168, 67, 0.08); }
.nav-cta { white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(123, 94, 248, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 100%, rgba(0, 212, 200, 0.05) 0%, transparent 50%),
              linear-gradient(180deg, #0a0a1a 0%, #0f0f2e 100%);
  z-index: 0;
}
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle linear infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123, 94, 248, 0.25), transparent);
  top: -100px; left: -100px;
  animation-duration: 8s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.2), transparent);
  top: 50%; right: -50px;
  animation-duration: 10s;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0, 212, 200, 0.15), transparent);
  bottom: 0; left: 40%;
  animation-duration: 12s;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-image-wrap { position: relative; }
.hero-img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.15), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212, 168, 67, 0.1);
  position: relative;
  z-index: 1;
}
.floating { animation: floating 6s ease-in-out infinite; }
@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a1a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.title-line-1 {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-line-2 { display: block; color: var(--white); }
.title-line-3 {
  display: block;
  color: var(--text-dark);
  font-size: 0.7em;
  font-weight: 700;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  -webkit-text-fill-color: var(--gold-light);
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}
.hero-timer-wrap {
  margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}
.timer-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.hero-timer, .final-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.timer-unit, .ftimer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timer-unit span, .ftimer-unit span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.timer-unit small, .ftimer-unit small {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.timer-sep, .ftimer-sep {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.discount-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.05) 20px,
    rgba(255,255,255,0.05) 40px
  );
}
.discount-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #0a0a1a;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

/* ===== PRICE SECTION ===== */
.price-section { padding: 60px 0; }
.price-img-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}
.price-img-wrap:hover { box-shadow: var(--shadow-gold-hover); }
.price-img { width: 100%; border-radius: var(--radius-lg); }

/* ===== TWO COLUMN LAYOUT ===== */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.section-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
}
.img-overlay-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(123, 94, 248, 0.4);
}

/* ===== ABOUT / HOW SECTIONS ===== */
.about-section { background: var(--bg-dark); }
.how-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.how-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.how-card:hover::before { opacity: 1; }
.how-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 168, 67, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.how-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.how-card p { font-family: var(--font-body); color: var(--text-dark); font-size: 0.95rem; }
.how-body-text { margin: 0 0 40px; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg-dark); }
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.review-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.review-stars { color: var(--gold); font-size: 1rem; }
.review-text {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--text-dark);
  line-height: 1.8;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
}

/* ===== INSIDE SECTION ===== */
.inside-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.inside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.inside-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.inside-icon { font-size: 2.5rem; margin-bottom: 16px; }
.inside-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.inside-card p { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark); }
.featured-inside {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), rgba(212, 168, 67, 0.02));
  border-color: var(--gold-dark);
}

/* ===== HOW TO USE ===== */
.use-section { background: var(--bg-dark); }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--accent), var(--gold));
  opacity: 0.3;
}
.step-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a1a;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}
.step-content { flex: 1; padding-top: 12px; }
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-content p { font-family: var(--font-body); color: var(--text-dark); font-size: 0.95rem; }

/* ===== GUARANTEE ===== */
.guarantee-section {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-dark));
}
.guarantee-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212, 168, 67, 0.06), transparent 60%);
  pointer-events: none;
}
.guarantee-badge { max-width: 220px; margin: 0 auto; }
.guarantee-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

/* ===== BENEFITS ===== */
.benefits-section { background: var(--bg-dark); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.benefit-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.benefit-icon { font-size: 2rem; flex-shrink: 0; }
.benefit-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.benefit-item p { font-family: var(--font-body); font-size: 0.875rem; color: var(--text-dark); }

/* ===== BONUSES ===== */
.bonuses-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.bonus-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.bonus-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.bonus-img-wrap { overflow: hidden; border-radius: var(--radius); }
.bonus-img { border-radius: var(--radius); width: 100%; }
.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a1a;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.bonus-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.bonus-content p { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); }

/* ===== BUY SECTION ===== */
.buy-section { background: var(--bg-dark); }
.buy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.buy-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.buy-reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.reason-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.buy-reason strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.buy-reason p { font-family: var(--font-body); font-size: 0.875rem; color: var(--text-dark); margin: 0; }
.buy-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.buy-img:hover { box-shadow: var(--shadow-gold); }

/* ===== FAQ SECTION ===== */
.faq-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  min-height: 48px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p { font-family: var(--font-body); color: var(--text-dark); font-size: 0.95rem; line-height: 1.8; }

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(123, 94, 248, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}
.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.f-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12), transparent);
  top: -100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite;
}
.f-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123, 94, 248, 0.12), transparent);
  bottom: -100px; right: -100px;
  animation: orbFloat 14s ease-in-out infinite reverse;
}
.f-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 200, 0.08), transparent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 8s ease-in-out infinite;
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.final-cta-sub { font-family: var(--font-body); color: var(--text-dark); font-size: 1.1rem; }
.final-img-wrap { max-width: 700px; width: 100%; }
.final-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}
.final-img:hover { box-shadow: var(--shadow-gold-hover); }
.final-timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.final-timer-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.final-timer {
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 32px;
}
.final-timer .ftimer-unit span { font-size: 3rem; }
.final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.trust-item {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== INTERNAL LINKS ===== */
.links-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.int-link {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.int-link:hover { border-color: var(--gold); background: rgba(212, 168, 67, 0.08); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.footer-contact { font-size: 0.875rem; color: var(--text-muted); }
.footer-contact a { color: var(--gold); }
.footer-links h4, .footer-legal h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links ul, .footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-legal a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-legal a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a1a;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  border: none;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-4px) scale(1.1); }

/* ===== PURCHASE NOTIFICATION POPUP ===== */
.notif-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  max-width: 320px;
  z-index: 1100;
  box-shadow: var(--shadow);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.notif-popup.show { transform: translateX(0); }
.notif-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.notif-avatar { font-size: 2rem; }
.notif-text { flex: 1; font-size: 0.85rem; color: var(--text-dark); }
.notif-text strong { color: var(--white); }
.notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}

/* ===== MAIN POPUP ===== */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.popup-backdrop.show { opacity: 1; pointer-events: auto; }
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.popup-box {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), var(--shadow-gold);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition);
}
.popup-overlay.show .popup-box { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.3rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.popup-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.popup-icon { font-size: 3.5rem; margin-bottom: 16px; }
.popup-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.popup-text {
  font-family: var(--font-body);
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.popup-timer {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.popup-skip {
  display: block;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  width: 100%;
  text-align: center;
}
.popup-skip:hover { color: var(--white); }

/* ===== ANIMATIONS (Intersection Observer) ===== */
.reveal, .fade-in-left, .fade-in-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.reveal.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; max-width: 500px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .two-col-layout { grid-template-columns: 1fr; gap: 40px; }
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .buy-content { grid-template-columns: 1fr; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; }
  .guarantee-badge { max-width: 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bonus-card { grid-template-columns: 150px 1fr; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .section-padded { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 20px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta { display: none; }
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .timer-unit span { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .how-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr; }
  .bonus-card { grid-template-columns: 1fr; }
  .bonus-img-wrap { max-width: 200px; }
  .guarantee-card { padding: 32px 24px; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .notif-popup { left: 10px; right: 10px; max-width: none; bottom: 10px; }
  .popup-box { padding: 32px 24px; }
  .popup-title { font-size: 1.3rem; }
  .steps-list::before { left: 24px; }
  .step-num { width: 48px; height: 48px; font-size: 1rem; }
  .hero-timer-wrap { width: 100%; }
  .hero-badge { font-size: 0.75rem; padding: 8px 16px; }
  .img-overlay-badge { font-size: 0.7rem; padding: 8px 14px; right: -8px; bottom: -12px; }
  .final-cta-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .final-timer .ftimer-unit span { font-size: 2rem; }
  .review-header { flex-direction: column; align-items: flex-start; }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-timer-wrap { flex-direction: column; }
  .btn-xl { font-size: 1rem; padding: 16px 28px; }
  .final-trust { flex-direction: column; align-items: center; gap: 12px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .fade-in-left, .fade-in-right {
    opacity: 1;
    transform: none;
  }
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.show { display: block; }
