@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════ */
/*  DESIGN SYSTEM — ULTRA LUXURY BLACK & GOLD v6.0           */
/* ═══════════════════════════════════════════════════════════ */

:root {
  --bg-deep: #050507;
  --bg-primary: #08080b;
  --bg-secondary: #0c0c10;
  --bg-tertiary: #131318;
  --bg-card: rgba(16, 16, 22, 0.65);
  --bg-card-solid: #111116;
  --bg-glass: rgba(16, 16, 22, 0.55);
  --bg-glass-strong: rgba(20, 20, 28, 0.75);
  --bg-glass-hover: rgba(28, 28, 36, 0.8);

  --text-primary: #e8e8ec;
  --text-secondary: #9a9aaa;
  --text-muted: #5f5f72;
  --text-bright: #ffffff;

  /* Luxury Gold Palette */
  --gold: #d4a843;
  --gold-light: #e8c87a;
  --gold-bright: #f5deb3;
  --gold-dark: #9c7b2a;
  --gold-deep: #7a5f1e;
  --gold-glow: rgba(212, 168, 67, 0.10);
  --gold-glow-md: rgba(212, 168, 67, 0.16);
  --gold-glow-strong: rgba(212, 168, 67, 0.24);

  /* Accent maps to gold for unified luxury feel */
  --accent: var(--gold);
  --accent-light: var(--gold-light);
  --accent-bright: var(--gold-bright);
  --accent-dark: var(--gold-dark);
  --accent-glow: var(--gold-glow);
  --accent-glow-md: var(--gold-glow-md);
  --accent-glow-strong: var(--gold-glow-strong);

  --green: #4ade80;
  --green-glow: rgba(74, 222, 128, 0.08);
  --red: #f87171;
  --red-glow: rgba(248, 113, 113, 0.06);

  --border: rgba(212, 168, 67, 0.06);
  --border-light: rgba(212, 168, 67, 0.10);
  --border-accent: rgba(212, 168, 67, 0.15);
  --border-accent-md: rgba(212, 168, 67, 0.25);
  --border-accent-strong: rgba(212, 168, 67, 0.40);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 8px 40px rgba(212, 168, 67, 0.06);
  --shadow-accent-md: 0 12px 48px rgba(212, 168, 67, 0.10);
  --shadow-accent-strong: 0 16px 56px rgba(212, 168, 67, 0.16);
  --shadow-gold: 0 8px 40px rgba(212, 168, 67, 0.08);
  --shadow-gold-md: 0 12px 48px rgba(212, 168, 67, 0.14);
  --shadow-gold-strong: 0 16px 56px rgba(212, 168, 67, 0.20);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --max-width: 1140px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease);
  --transition-slow: 0.6s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ═══ AMBIENT BACKGROUND ═══ */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.35;
}

.ambient-glow .orb-1 {
  width: 650px;
  height: 650px;
  top: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.07), transparent 70%);
  animation: orbFloat 22s ease-in-out infinite;
}

.ambient-glow .orb-2 {
  width: 550px;
  height: 550px;
  top: 50%;
  left: -250px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.04), transparent 70%);
  animation: orbFloat 28s ease-in-out infinite reverse;
}

.ambient-glow .orb-3 {
  width: 450px;
  height: 450px;
  bottom: -120px;
  right: 15%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.04), transparent 70%);
  animation: orbFloat 20s ease-in-out infinite 4s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 7, 0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 7, 0.95);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(212, 168, 67, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-md);
  color: var(--bg-deep);
}

.nav-cta:hover::after {
  left: 100%;
}

/* ═══ SECTION BASE ═══ */
section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--text-bright);
}

.section-title .gold {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.9;
}

.section-header {
  text-align: center;
  margin-bottom: 76px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-divider {
  width: 56px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* ═══ GLASS CARD ═══ */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 50%);
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--border-accent-md);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), 0 0 0 1px var(--border-accent), inset 0 1px 0 rgba(212, 168, 67, 0.06);
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  padding: 18px 42px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  font-family: var(--font-sans);
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 0.7s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.35), 0 0 60px rgba(212, 168, 67, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--bg-deep);
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-glass);
  color: var(--text-secondary);
  padding: 18px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* ═══ HERO ═══ */
.hero {
  padding: 120px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(212, 168, 67, 0.04), transparent), radial-gradient(ellipse 60% 50% at 20% 70%, rgba(212, 168, 67, 0.02), transparent);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.025;
}

.hero-grid-overlay::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image: linear-gradient(rgba(212, 168, 67, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border-accent);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-badge-discount {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3), 0 0 40px rgba(220, 38, 38, 0.1);
  animation: discountPulse 2.5s ease-in-out infinite;
}

.hero-badge-discount span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

@keyframes discountPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3), 0 0 40px rgba(220, 38, 38, 0.1);
  }

  50% {
    box-shadow: 0 0 28px rgba(220, 38, 38, 0.5), 0 0 56px rgba(220, 38, 38, 0.2);
  }
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--gold);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--gold);
  }

  50% {
    opacity: 0.4;
    box-shadow: 0 0 2px var(--gold);
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--text-bright);
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item .icon {
  font-size: 0.95rem;
}

/* ═══ HERO SOCIAL PROOF ═══ */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
  margin-bottom: 8px;
  padding: 12px 20px;
  background: rgba(212, 168, 67, 0.04);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-md);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-icon {
  font-size: 1rem;
}

.proof-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.proof-text strong {
  color: var(--gold-light);
  font-weight: 700;
}

.proof-divider {
  width: 1px;
  height: 20px;
  background: rgba(212, 168, 67, 0.15);
}

/* ═══ URGENCY STRIP ═══ */
.urgency-strip {
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.06), rgba(212, 168, 67, 0.12), rgba(212, 168, 67, 0.06));
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
  padding: 14px 0;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.urgency-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.urgency-icon {
  font-size: 1rem;
}

.urgency-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.urgency-text strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.urgency-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@media (max-width: 480px) {
  .hero-social-proof {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 0.75rem;
  }
  .proof-text {
    font-size: 0.72rem;
  }
  .proof-icon {
    font-size: 0.85rem;
  }
  .proof-divider {
    width: 1px;
    height: 16px;
  }
  .urgency-strip {
    padding: 10px 0;
  }
  .urgency-inner {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
  .urgency-text {
    font-size: 0.72rem;
  }
  .urgency-icon {
    font-size: 0.85rem;
  }
  .urgency-dot {
    width: 4px;
    height: 4px;
  }
}
/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* ═══ EBOOK COVER ═══ */

.ebook-golden-frame {
  position: relative;
  padding: 6px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--gold-bright), var(--gold), var(--gold-dark), var(--gold), var(--gold-bright));
  box-shadow:
    0 0 30px rgba(212, 168, 67, 0.25),
    0 0 60px rgba(212, 168, 67, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5);
  animation: coverFloat 6s ease-in-out infinite;
}

.ebook-cover-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 4px);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  position: relative;
  z-index: 2;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes coverFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ebook-cover-wrapper:hover .ebook-golden-frame {
  box-shadow:
    0 0 40px rgba(212, 168, 67, 0.35),
    0 0 80px rgba(212, 168, 67, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.5);
  animation-play-state: paused;
}

.ebook-cover-wrapper:hover .ebook-cover-img {
  transform: scale(1.01);
}

.ebook-cover-glow {
  position: absolute;
  top: 5%;
  left: -20%;
  width: 140%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.12), transparent 55%);
  z-index: 1;
  pointer-events: none;
  filter: blur(30px);
}

.ebook-float-badge {
  position: absolute;
  z-index: 10;
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent-md);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 168, 67, 0.06);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  animation: floatBadge 5s ease-in-out infinite;
}

.ebook-float-badge.top-right {
  top: -28px;
  right: -36px;
}

.ebook-float-badge.bottom-left {
  bottom: -52px;
  left: -36px;
  animation-delay: 2.5s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 44px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.trust-bar-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ═══ STATS ═══ */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 36px 16px;
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ═══ HERO DUAL IMAGES ═══ */
.hero-images {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.ebook-cover-wrapper {
  position: relative;
  z-index: 2;
}

.ebook-interior-wrapper {
  position: absolute;
  right: -40px;
  bottom: -35px;
  width: 50%;
  z-index: 4;
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease);
}

.ebook-interior-wrapper:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.03);
}

.ebook-interior-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1.5px solid rgba(212, 168, 67, 0.3);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.7),
    0 0 12px rgba(212, 168, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .hero-images {
    max-width: 260px;
    margin: 0 auto 20px;
  }

  .ebook-interior-wrapper {
    right: -25px;
    bottom: -25px;
    width: 48%;
  }
}

/* ═══ PROBLEM ═══ */
.problem {
  background: var(--bg-secondary);
}

.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 35% at 50% 0%, var(--red-glow), transparent);
  pointer-events: none;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  padding: 34px 26px;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(248, 113, 113, 0.15), transparent);
}

.problem-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--red-glow);
  border: 1px solid rgba(248, 113, 113, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-bright);
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ═══ SOLUTION ═══ */
.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.solution-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
}

.solution-point .point-num {
  min-width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.18);
  flex-shrink: 0;
}

.solution-point h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-bright);
}

.solution-point p {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.75;
}

.solution-visual {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-accent);
}

.solution-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.03), transparent 40%);
  pointer-events: none;
}

.roadmap-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  color: var(--text-bright);
}

.roadmap-sub {
  color: var(--text-secondary);
  font-size: 0.86rem;
  max-width: 290px;
  margin: 0 auto 24px;
  position: relative;
}

.roadmap-steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  position: relative;
}

.roadmap-step {
  background: rgba(5, 5, 7, 0.5);
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.83rem;
  border-left: 3px solid var(--gold);
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.roadmap-step:hover {
  background: var(--gold-glow);
  color: var(--text-primary);
}

/* ═══ MID CTA ═══ */
.mid-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, var(--gold-glow), transparent);
  pointer-events: none;
}

.mid-cta .container {
  position: relative;
  z-index: 1;
}

.mid-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-bright);
}

.mid-cta p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ═══ MODULES ═══ */
.modules {
  background: var(--bg-secondary);
}

.modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 35% at 50% 100%, var(--gold-glow), transparent);
  pointer-events: none;
}

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

.module-card {
  padding: 34px 28px;
}

.module-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.22), rgba(212, 168, 67, 0.04));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.module-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-bright);
}

.module-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ═══ BENEFITS ═══ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 38px 26px;
  text-align: center;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold-glow-md), var(--gold-glow));
  border: 1px solid var(--border-accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.5s var(--ease-bounce);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.12) rotate(-5deg);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.8;
}

/* ═══ TARGET ═══ */
.target {
  background: var(--bg-secondary);
}

.target-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.target-list li:hover {
  border-color: var(--border-accent);
  transform: translateX(5px);
}

.target-list .check {
  color: var(--green);
  font-size: 1.05rem;
  min-width: 22px;
  font-weight: 700;
}

.target-list .cross {
  color: var(--red);
  font-size: 1.05rem;
  min-width: 22px;
  font-weight: 700;
}

.target-col h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.target-col h3.green {
  color: var(--green);
}

.target-col h3.red {
  color: var(--red);
}

/* ═══ CREDIBILITY ═══ */
.credibility-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 44px;
  align-items: start;
}

.author-card {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-accent-md);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.author-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.04), transparent 50%);
  pointer-events: none;
}

.author-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-deep));
  border: 2px solid var(--border-accent-md);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--text-muted);
  position: relative;
  box-shadow: 0 0 30px var(--gold-glow);
}

.author-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  color: var(--text-bright);
}

.author-card .author-title {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
}

.author-card>p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  position: relative;
  line-height: 1.7;
}

.credibility-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cred-point {
  padding: 28px;
}

.cred-point h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-bright);
}

.cred-point h4 .icon {
  color: var(--gold);
  font-size: 1.05rem;
}

.cred-point p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.85;
}

/* ═══ BONUSES ═══ */
.bonuses {
  background: var(--bg-secondary);
}

.bonuses::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 28% at 50% 0%, var(--gold-glow), transparent);
  pointer-events: none;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.bonus-card {
  padding: 34px 26px;
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.bonus-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--gold-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.bonus-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.8;
}

/* ═══ AI TOOLS ═══ */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.ai-card {
  padding: 30px 22px;
  text-align: center;
}

.ai-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  transition: 0.5s var(--ease-bounce);
}

.ai-card:hover .card-icon {
  transform: scale(1.12);
}

.ai-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-bright);
}

.ai-card p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.75;
}

.ai-recommendation {
  margin-top: 52px;
  background: linear-gradient(135deg, var(--gold-glow), rgba(212, 168, 67, 0.02));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.ai-recommendation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.03), transparent 60%);
  pointer-events: none;
}

.ai-recommendation h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  color: var(--text-bright);
}

.ai-recommendation p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.92rem;
  position: relative;
}

.ai-recommendation a {
  color: var(--gold-light);
  font-weight: 700;
  border-bottom: 1px solid var(--border-accent);
  padding-bottom: 2px;
}

.ai-recommendation a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/* ═══ TESTIMONIALS ═══ */
.testimonials {
  background: var(--bg-secondary);
}

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

.testimonial-card {
  padding: 34px 26px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(212, 168, 67, 0.25);
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.85;
  border-left: 2px solid var(--border-accent);
  padding-left: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-deep));
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-bright);
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 500;
}

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(14px);
}

.faq-item.active {
  border-color: var(--border-accent-md);
  box-shadow: var(--shadow-accent);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 24px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .faq-icon {
  color: var(--gold);
  transition: var(--transition);
  font-size: 1.15rem;
  min-width: 22px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 26px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.85;
}

/* ═══ GUARANTEE ═══ */
.guarantee {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 820px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}

.guarantee-box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.guarantee-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ═══ PRICING ═══ */
.pricing {
  background: var(--bg-secondary);
  padding: 140px 0;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 45% at 50% 50%, var(--gold-glow-md), transparent);
  pointer-events: none;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-value {
  padding-top: 20px;
}

.pricing-value h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-bright);
  line-height: 1.25;
}

.pricing-value p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.value-list .check {
  color: var(--gold);
  font-size: 1rem;
  min-width: 18px;
}

.pricing-box {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-accent-strong);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-accent-md), 0 40px 80px rgba(0, 0, 0, 0.25);
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(160deg, var(--gold) 0%, rgba(212, 168, 67, 0.3) 25%, transparent 50%, rgba(212, 168, 67, 0.2) 75%, var(--gold-dark) 100%);
  border-radius: calc(var(--radius-xl) + 1px);
  z-index: -1;
  opacity: 0.45;
}

.pricing-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.06) 0%, transparent 30%, transparent 70%, rgba(212, 168, 67, 0.03) 100%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.pricing-popular {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 7px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.22);
}

.pricing-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  color: var(--text-bright);
}

.pricing-box .pricing-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.88rem;
  position: relative;
}

.pricing-price {
  position: relative;
  margin-bottom: 32px;
}

.pricing-price .old-price {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.pricing-price .old-price span {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  color: var(--red);
  font-weight: 700;
  font-size: 1.15rem;
  margin-left: 4px;
}

.pricing-price .current-price {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.pricing-price .currency {
  font-size: 1.4rem;
}

.savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0.06));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.3px;
  animation: savingsPulse 2.5s ease-in-out infinite;
}

@keyframes savingsPulse {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.1);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 24px rgba(220, 38, 38, 0.25);
    transform: scale(1.03);
  }
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-features .check {
  color: var(--gold);
  font-size: 0.95rem;
  min-width: 18px;
}

.pricing-box .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1.02rem;
  padding: 20px;
  position: relative;
}

.pricing-guarantee {
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--text-muted);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 50% 50%, var(--gold-glow-md), transparent);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-bright);
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.85;
}

.final-cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}

.final-cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 68px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.82rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: var(--transition);
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════ */
/*  PREMIUM EFFECTS v4.0 — MODERN & STUNNING                 */
/* ═══════════════════════════════════════════════════════════ */

/* ═══ ANIMATED GRADIENT BORDER ON CARDS ═══ */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderRotate {
  to {
    --border-angle: 360deg;
  }
}

.glass-card {
  --border-angle: 0deg;
  position: relative;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--border-angle),
      transparent 40%,
      rgba(212, 168, 67, 0.35) 50%,
      transparent 60%);
  z-index: -1;
  animation: borderRotate 6s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glass-card:hover::after {
  opacity: 1;
}

/* ═══ FLOATING SPARKLES ═══ */
.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: sparkleFloat linear infinite;
}

@keyframes sparkleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.8;
    transform: translateY(90vh) scale(1);
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(0.5);
  }
}

.sparkle:nth-child(1) {
  left: 5%;
  animation-duration: 14s;
  animation-delay: 0s;
  width: 2px;
  height: 2px;
}

.sparkle:nth-child(2) {
  left: 15%;
  animation-duration: 18s;
  animation-delay: 2s;
}

.sparkle:nth-child(3) {
  left: 25%;
  animation-duration: 12s;
  animation-delay: 4s;
  width: 2px;
  height: 2px;
}

.sparkle:nth-child(4) {
  left: 35%;
  animation-duration: 20s;
  animation-delay: 1s;
}

.sparkle:nth-child(5) {
  left: 45%;
  animation-duration: 16s;
  animation-delay: 3s;
  width: 4px;
  height: 4px;
}

.sparkle:nth-child(6) {
  left: 55%;
  animation-duration: 22s;
  animation-delay: 5s;
  width: 2px;
  height: 2px;
}

.sparkle:nth-child(7) {
  left: 65%;
  animation-duration: 15s;
  animation-delay: 0.5s;
}

.sparkle:nth-child(8) {
  left: 75%;
  animation-duration: 19s;
  animation-delay: 3.5s;
  width: 2px;
  height: 2px;
}

.sparkle:nth-child(9) {
  left: 85%;
  animation-duration: 13s;
  animation-delay: 2.5s;
}

.sparkle:nth-child(10) {
  left: 92%;
  animation-duration: 17s;
  animation-delay: 6s;
  width: 4px;
  height: 4px;
}

.sparkle:nth-child(11) {
  left: 10%;
  animation-duration: 21s;
  animation-delay: 7s;
}

.sparkle:nth-child(12) {
  left: 50%;
  animation-duration: 16s;
  animation-delay: 8s;
  width: 2px;
  height: 2px;
}

/* ═══ CTA GLOW PULSE ═══ */
@keyframes ctaGlow {

  0%,
  100% {
    box-shadow:
      0 4px 24px rgba(212, 168, 67, 0.22),
      0 0 0 0 rgba(212, 168, 67, 0);
  }

  50% {
    box-shadow:
      0 4px 32px rgba(212, 168, 67, 0.35),
      0 0 40px 4px rgba(212, 168, 67, 0.12);
  }
}

.btn-primary {
  animation: ctaGlow 3s ease-in-out infinite;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 150%;
  }
}

/* ═══ 3D CARD TILT EFFECT ═══ */
.glass-card {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card.tilt-active {
  will-change: transform;
}

/* ═══ ENHANCED TESTIMONIALS ═══ */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: rgba(212, 168, 67, 0.06);
  pointer-events: none;
  z-index: 0;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  z-index: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  position: relative;
  z-index: 1;
}

/* ═══ SECTION SEPARATORS ═══ */
.section-glow-separator {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.section-glow-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(212, 168, 67, 0.4), var(--gold), transparent);
  animation: separatorPulse 4s ease-in-out infinite;
}

.section-glow-separator::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.15), transparent 70%);
  filter: blur(4px);
}

@keyframes separatorPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* ═══ PREMIUM BORDER ON PRICING BOX ═══ */
.pricing-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(160deg,
      var(--gold) 0%,
      rgba(212, 168, 67, 0.4) 20%,
      rgba(212, 168, 67, 0.12) 40%,
      rgba(212, 168, 67, 0.06) 60%,
      rgba(212, 168, 67, 0.15) 80%,
      var(--gold-dark) 100%);
  border-radius: calc(var(--radius-xl) + 1px);
  z-index: -1;
  opacity: 0.55;
}

/* ═══ ENHANCED STAT ITEMS ═══ */
.stat-number {
  transition: color 0.3s ease;
}

.stat-item {
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

/* ═══ ENHANCED MODULE CARDS ═══ */
.module-num {
  transition: transform 0.4s var(--ease-bounce);
}

.module-card:hover .module-num {
  transform: scale(1.15);
}

/* ═══ REVEAL ANIMATIONS — MULTI-DIRECTION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0) rotateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ═══ ENHANCED HERO ═══ */
.hero-content {
  animation: heroFadeIn 1.2s var(--ease) both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  animation: heroVisualIn 1.4s var(--ease) 0.3s forwards;
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ═══ HERO BADGES ANIMATION ═══ */
.hero-badges-row {
  animation: badgesSlideIn 0.8s var(--ease) 0.5s both;
}

@keyframes badgesSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══ BONUS TAG SHIMMER ═══ */
.bonus-tag {
  position: relative;
  overflow: hidden;
}

.bonus-tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: tagShimmer 3s ease-in-out infinite;
}

@keyframes tagShimmer {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 150%;
  }
}

/* ═══ GUARANTEE BOX GLOW ═══ */
.guarantee-box {
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.04), transparent 50%, rgba(212, 168, 67, 0.02));
  pointer-events: none;
}

/* ═══ ENHANCED FOOTER ═══ */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow-md), transparent);
}

/* ═══ SMOOTH SCROLL INDICATOR ═══ */
@keyframes scrollDown {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ═══ NAVBAR LOGO HOVER GLOW ═══ */
.nav-logo {
  transition: text-shadow 0.4s ease;
}

.nav-logo:hover {
  text-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

/* ═══════════════════════════════════════ */
/*  RESPONSIVE                            */
/* ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .ebook-cover-wrapper {
    max-width: 220px;
    margin: 0 auto;
  }

  .ebook-float-badge {
    display: none;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    display: none;
  }

  .credibility-content {
    grid-template-columns: 1fr;
  }

  .author-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .target-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .pricing-value {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 88px 0;
  }

  .hero {
    padding: 80px 0 32px;
    min-height: auto;
  }

  .hero .container {
    gap: 24px;
  }

  .hero-visual {
    order: 1;
  }

  .ebook-cover-wrapper {
    max-width: 120px;
  }

  .hero-badges-row {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .pricing-box {
    padding: 36px 24px;
  }

  .pricing-price .current-price {
    font-size: 3rem;
  }

  .ebook-float-badge {
    display: none;
  }

  .section-header {
    margin-bottom: 52px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-item {
    padding: 24px 12px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 22px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  /* Mobile CTA group stacks */
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    justify-items: start;
  }

  .trust-item {
    font-size: 0.7rem;
    gap: 5px;
  }

  .trust-item .icon {
    font-size: 0.8rem;
  }

  .trust-bar {
    padding: 16px 0;
  }

  .trust-bar .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    justify-items: start;
  }

  .trust-bar-item {
    font-size: 0.68rem;
    gap: 6px;
  }

  .trust-bar-item .icon {
    font-size: 0.9rem;
  }

  /* Mobile pricing */
  .pricing {
    padding: 88px 0;
  }

  .pricing-wrapper {
    gap: 32px;
  }

  .value-list {
    margin-bottom: 16px;
  }

  /* Mobile cards */
  .problem-card {
    padding: 28px 22px;
  }

  .module-card {
    padding: 28px 22px;
  }

  .bonus-card {
    padding: 28px 22px;
  }

  .benefit-card {
    padding: 30px 22px;
  }

  .cred-point {
    padding: 24px 20px;
  }

  .solution-point {
    padding: 22px;
  }

  .ai-card {
    padding: 24px 18px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .mid-cta {
    padding: 72px 0;
  }

  .final-cta {
    padding: 88px 0;
  }

  .guarantee {
    padding: 56px 0;
  }

  .guarantee-box {
    padding: 28px 22px;
    gap: 20px;
  }

  .guarantee-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 72px 0;
  }

  .hero {
    padding: 72px 0 24px;
  }

  .hero .container {
    gap: 16px;
  }

  .hero-visual {
    order: 1;
  }

  .ebook-cover-wrapper {
    max-width: 90px;
  }

  .ebook-golden-frame {
    padding: 4px;
  }

  .hero h1 {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 0.82rem;
    margin-bottom: 10px;
    line-height: 1.45;
    /* Shorter text on mobile for speed */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Hide trust items on phone - CTA is priority */
  .hero-trust {
    display: none;
  }

  /* Hide secondary button on phone - single CTA focus */
  .btn-secondary {
    display: none;
  }

  /* Hide ebook image on smallest phones - text + CTA first */
  .hero-visual {
    display: none;
  }

  /* Make CTA button HUGE and prominent */
  .hero-cta-group {
    margin-bottom: 8px;
  }

  .hero-cta-group .btn-primary {
    width: 100%;
    max-width: 100%;
    padding: 18px 28px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 4px 30px rgba(212, 168, 67, 0.25);
  }

  /* Social proof more prominent on mobile */
  .hero-social-proof {
    background: rgba(212, 168, 67, 0.06);
    border-color: rgba(212, 168, 67, 0.15);
    padding: 10px 16px;
  }

  .proof-text {
    font-size: 0.73rem;
    font-weight: 600;
  }

  .hero-badges-row {
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 7px 14px;
  }

  .hero-badge-discount {
    font-size: 0.78rem;
    padding: 7px 16px;
  }

  .btn-primary {
    padding: 16px 28px;
    font-size: 0.88rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-item {
    padding: 20px 8px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .pricing-box {
    padding: 28px 18px;
  }

  .pricing-price .current-price {
    font-size: 2.6rem;
  }

  .guarantee-box {
    padding: 24px 18px;
  }

  .faq-question {
    padding: 20px 18px;
    font-size: 0.88rem;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 20px;
  }

  .final-cta-trust {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .ai-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ STICKY MOBILE CTA BAR ═══ */
.sticky-cta-bar {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--border-accent);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, visibility 0.4s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-cta-price .old {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.sticky-cta-price .current {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.sticky-cta-bar .btn-primary {
  padding: 14px 28px;
  font-size: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .sticky-cta-bar {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 768px) {
  .sticky-cta-bar {
    display: block;
  }

  /* Add bottom padding to body so sticky bar doesn't cover footer */
  body.sticky-active {
    padding-bottom: 72px;
  }
}