:root {
  --bg-base: #020612; /* Very deep blue/black */
  --bg-surface: #0A1024;
  --bg-surface-elevated: #111A3A;
  
  --gold-light: #FDE68A;
  --gold-primary: #D4AF37;
  --gold-secondary: #B48B25;
  --gold-dark: #785A14;
  --gold-glow: rgba(212, 175, 55, 0.2);
  --gold-glow-strong: rgba(212, 175, 55, 0.4);
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.3);
  
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.text-center { text-align: center; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

/* Ambient Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}
.glow-gold {
  background: var(--gold-primary);
  width: 500px;
  height: 500px;
  opacity: 0.08;
}
.glow-blue {
  background: #2563EB;
  width: 600px;
  height: 600px;
  opacity: 0.05;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(
    -45deg, 
    var(--gold-primary) 0%, 
    var(--gold-secondary) 30%, 
    #F8FAFC 50%, /* Silver shine */
    var(--gold-secondary) 70%, 
    var(--gold-primary) 100%
  );
  background-size: 200% auto;
  animation: btn-shimmer-bg 3s linear infinite;
  color: #020612;
  box-shadow: 0 10px 30px var(--gold-glow), inset 0 2px 0 rgba(255,255,255,0.4);
}

@keyframes btn-shimmer-bg {
  0% { background-position: 200% center; }
  100% { background-position: 0% center; }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--gold-glow-strong), inset 0 2px 0 rgba(255,255,255,0.6);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-basic {
  background: #E2E8F0;
  color: #0F172A;
}

.btn-basic:hover, .btn-basic:active {
  background: #CBD5E1;
  transform: translateY(-2px);
  color: #020612;
}

.btn-pulse {
  animation: pulse-glow 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1), btn-shimmer-bg 3s linear infinite;
}

.btn-pulse:hover {
  animation-play-state: paused;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 10px 30px var(--gold-glow), 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px var(--gold-glow-strong), 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 10px 30px var(--gold-glow), 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Glass Cards */
.glass-card {
  background: linear-gradient(145deg, rgba(16, 26, 53, 0.7), rgba(8, 14, 30, 0.9));
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
}

/* Header */
.header {
  padding: 24px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  background: linear-gradient(to bottom, rgba(2,6,18,0.9), transparent);
}

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

.logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}

.logo span { color: var(--gold-primary); }

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background: radial-gradient(ellipse at 50% 0%, #111A3A 0%, var(--bg-base) 70%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 20px var(--gold-glow);
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.vsl-container {
  max-width: 850px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-glass);
  position: relative;
}

.vsl-inner {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.vsl-placeholder {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1438283173091-5dbf5c5a3206?auto=format&fit=crop&w=1200&q=80') center/cover;
  cursor: pointer;
}

.vsl-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(2, 6, 18, 0.7);
  backdrop-filter: blur(3px);
}

.play-button {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 40px var(--gold-glow-strong), 0 0 0 8px rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.vsl-placeholder:hover .play-button {
  transform: scale(1.15);
  box-shadow: 0 0 60px var(--gold-primary), 0 0 0 12px rgba(212, 175, 55, 0.3);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #020612;
  margin-left: 8px;
}

.vsl-text {
  position: relative;
  z-index: 2;
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Pain Section */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pain-card {
  text-align: center;
  padding: 48px 32px;
}

.pain-icon {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  color: #EF4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 36px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

.pain-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #F8FAFC;
}

.pain-desc {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Belief Section */
.belief-section {
  background: linear-gradient(to right, rgba(16, 26, 53, 0.3), rgba(16, 26, 53, 0.8), rgba(16, 26, 53, 0.3));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 100px 0;
}

.belief-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.belief-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 24px;
  opacity: 0.8;
}

.belief-text {
  font-size: 2.25rem;
  line-height: 1.5;
  font-family: var(--font-primary);
  color: var(--text-main);
  font-weight: 600;
}

.belief-text span {
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mockup Digital Library Section */
.mockup-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mockup-visual {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1200px;
}

.mockup-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(circle, var(--gold-glow-strong) 0%, transparent 60%);
  z-index: 0;
}

/* Creating an impressive CSS Digital Library Mockup */
.ipad-frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateY(-15deg) rotateX(10deg);
  width: 480px;
  height: 640px;
  background: #0A1024;
  border-radius: 32px;
  border: 12px solid #1E293B;
  box-shadow: 
    -20px 30px 60px rgba(0,0,0,0.6),
    inset 0 0 0 2px #000,
    inset 0 0 20px rgba(255,255,255,0.1);
  overflow: hidden;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.ipad-frame:hover {
  transform: translate(-50%, -50%) rotateY(-5deg) rotateX(5deg);
}

.ipad-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #111A3A, #020612);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.ipad-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.ipad-logo { color: var(--gold-primary); font-weight: bold; font-size: 1.2rem;}

.ipad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ipad-folder {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.folder-icon { color: var(--gold-primary); font-size: 2rem; }
.folder-title { font-size: 0.9rem; font-weight: 600; }
.folder-count { font-size: 0.7rem; color: var(--text-muted); }

.floating-badge {
  position: absolute;
  top: 10%; right: -5%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: #020612;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 10;
  transform: translateZ(50px);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateZ(50px) translateY(0); }
  50% { transform: translateZ(50px) translateY(-15px); }
  100% { transform: translateZ(50px) translateY(0); }
}

.intro-list { margin-top: 40px; }
.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.intro-list-icon {
  background: rgba(212, 175, 55, 0.1);
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}
.intro-list-text h4 { font-size: 1.375rem; margin-bottom: 8px; }
.intro-list-text p { color: var(--text-muted); font-size: 1.0625rem; }

/* Benefits Section */
.benefits-section { background: var(--bg-surface); padding: 120px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.benefit-card {
  padding: 40px;
  height: 100%;
}
.benefit-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 24px;
  font-size: 28px;
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.1);
}
.benefit-title { font-size: 1.5rem; margin-bottom: 16px; }
.benefit-desc { color: var(--text-muted); font-size: 1.0625rem; }

/* BÔNUS SECTION (NEW & IMPORTANT) */
.bonus-section {
  padding: 140px 0;
  background: radial-gradient(ellipse at center, #0B1229 0%, var(--bg-base) 100%);
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
  position: relative;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.bonus-card {
  background: linear-gradient(to bottom, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 48px 32px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease;
}

.bonus-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), rgba(255,255,255,0.01));
}

.bonus-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: #020612;
  padding: 8px 24px;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  box-shadow: 0 10px 20px var(--gold-glow);
}

/* 3D Book CSS */
.book-container {
  perspective: 1000px;
  width: 200px;
  height: 280px;
  margin: 0 auto 40px;
}

.book-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-20deg) rotateX(10deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-card:hover .book-3d {
  transform: rotateY(-5deg) rotateX(5deg) scale(1.05);
}

.book-front {
  position: absolute;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #111A3A, #020612);
  border: 2px solid var(--gold-primary);
  border-radius: 4px 16px 16px 4px;
  transform: translateZ(16px);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  box-shadow: inset 4px 0 10px rgba(0,0,0,0.5);
  text-align: center;
}

.book-front::before {
  content: ''; position: absolute; top: 0; left: 10px; width: 2px; height: 100%;
  background: rgba(255,255,255,0.1);
}

.book-title {
  color: var(--gold-light);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.book-icon { font-size: 2.5rem; color: var(--gold-primary); margin-bottom: 16px; }

.book-spine {
  position: absolute;
  width: 32px; height: 100%;
  background: #0A1024;
  border: 2px solid var(--gold-dark);
  transform: rotateY(-90deg) translateZ(16px);
  transform-origin: left;
  border-radius: 4px 0 0 4px;
}

.book-pages {
  position: absolute;
  width: 30px; height: 96%;
  top: 2%; right: -30px;
  background: #e0e0e0;
  transform: rotateY(90deg);
  transform-origin: left;
  background-image: repeating-linear-gradient(to bottom, #ccc 0px, #ccc 2px, #f4f4f4 2px, #f4f4f4 4px);
  border-radius: 0 4px 4px 0;
}

.bonus-title { font-size: 1.5rem; margin-bottom: 12px; }
.bonus-desc { color: var(--text-muted); font-size: 1.0625rem; }


/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.result-card { text-align: center; }
.result-value {
  font-size: 4rem;
  font-family: var(--font-primary);
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 16px;
  line-height: 1;
  text-shadow: 0 0 40px var(--gold-glow);
}
.result-title { font-size: 1.5rem; margin-bottom: 12px; }
.result-desc { color: var(--text-muted); font-size: 1.0625rem; }

/* Pricing Section (REFINED) */
.pricing-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(16, 26, 53, 0.4) 0%, var(--bg-base) 70%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Make complete plan wider */
  gap: 0;
  max-width: 1000px;
  margin: 64px auto 0;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pricing-card {
  padding: 48px;
  border-radius: 24px;
  background: rgba(10, 16, 36, 0.8);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
}

.pricing-card.basic {
  border-right: none;
  border-radius: 24px 0 0 24px;
  opacity: 0.9;
  transform: scale(0.95);
  transform-origin: right center;
}

.pricing-card.highlighted {
  background: linear-gradient(145deg, #0A1329, #020612);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px var(--gold-glow-strong), inset 0 0 20px rgba(212,175,55,0.1);
  transform: scale(1.05);
  z-index: 10;
  border-radius: 24px;
  padding: 64px 48px;
}

.popular-ribbon {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #020612;
  padding: 10px 32px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.plan-name { font-size: 1.75rem; margin-bottom: 12px; }
.highlighted .plan-name { font-size: 2rem; color: var(--gold-light); }

.plan-price {
  font-size: 3.5rem;
  font-family: var(--font-primary);
  font-weight: 800;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.highlighted .plan-price { color: var(--gold-primary); font-size: 4.5rem; }

.plan-price span {
  font-size: 1.25rem;
  margin-top: 12px;
  color: var(--text-muted);
}

.plan-features { margin-bottom: 40px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.highlighted .plan-features li { color: var(--text-main); }
.highlighted .plan-features li strong { color: var(--gold-light); }

.feature-icon { font-size: 1.5rem; color: var(--gold-primary); }
.feature-icon.cross { color: rgba(255,255,255,0.2); }
.pricing-card .btn { width: 100%; padding: 20px; font-size: 1.25rem; }

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .mockup-grid { grid-template-columns: 1fr; }
  .mockup-visual { height: 400px; }
  .ipad-frame { transform: translate(-50%, -50%) scale(0.8) rotateY(-5deg); }
  .bonus-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; gap: 40px; margin: 0 auto; }
  .pricing-card.basic { border-radius: 24px; border: 1px solid var(--border-glass); transform: scale(1); }
  .pricing-card.highlighted { transform: scale(1); padding: 48px; order: -1; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2.25rem; }
  .pain-grid, .results-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}

/* Social Proof Popup */
.social-proof-popup {
  position: fixed;
  top: 20px;
  right: -400px;
  max-width: 350px;
  background: rgba(10, 20, 45, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.social-proof-popup.show {
  right: 20px;
  opacity: 1;
}

.social-proof-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.social-proof-content {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.4;
}

.social-proof-content strong {
  color: var(--gold-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .social-proof-popup {
    top: 15px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    width: 92%;
    max-width: 400px;
    justify-content: center;
  }
  .social-proof-popup.show {
    right: auto;
    transform: translateX(-50%) translateY(0);
  }
}
