@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@500;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400;1,8..60,600&display=swap');

/* ════════════════════════════════════════════════════════════════
   THEME: Concrete & Deep Water (Simon Uncovered Ebook)
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --abyss: #0a0f1a;
  --abyss-2: #111827;
  --abyss-3: #1a2332;
  --concrete: #2a3444;
  --steel: #4a5568;
  --mist: #e2e8f0;
  --frost: #f7fafc;
  
  --cyan: #22d3ee;
  --cyan-bright: #67e8f9;
  --cyan-dk: #0891b2;
  
  --warning: #f59e0b;
  --warning-bright: #fbbf24;
  --warning-dk: #b45309;
  --danger: #ef4444;
  
  --depth-blue: #1e40af;
  
  /* Layout & Effects */
  --radius: 12px;
  --radius-lg: 20px;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-cyan: 0 0 40px rgba(34, 211, 238, 0.45), 0 0 80px rgba(34, 211, 238, 0.2);
  --glow-cyan-sm: 0 0 20px rgba(34, 211, 238, 0.35);
  
  /* Typography */
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Serif 4', serif;
  --font-ui: 'Inter', sans-serif;
}

/* ════════════════════════════════════════════════════════════════
   RESET & BODY
   ════════════════════════════════════════════════════════════════ */

*, *::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-body);
  background-color: var(--abyss);
  color: var(--mist);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--abyss);
}
::-webkit-scrollbar-thumb {
  background: var(--concrete);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 10;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--frost);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--cyan-bright);
}

em {
  font-style: italic;
  color: var(--cyan);
}

strong {
  font-weight: 700;
  color: var(--frost);
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.section-padding { padding: 80px 0; }
.section-padding-lg { padding: 120px 0; }

.highlight-cyan {
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.highlight-warning {
  background: linear-gradient(135deg, var(--warning-bright), var(--warning));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ════════════════════════════════════════════════════════════════
   DEEP WATER BACKGROUND ANIMATIONS
   ════════════════════════════════════════════════════════════════ */

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 15% 50%, rgba(34, 211, 238, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(30, 64, 175, 0.04) 0%, transparent 50%);
  animation: floatBackground 30s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(34, 211, 238, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  animation: twinkleBg 8s infinite alternate;
}

@keyframes floatBackground {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(2%, 2%); }
  100% { transform: scale(1) translate(-2%, -2%); }
}

@keyframes twinkleBg {
  0% { opacity: 0.2; }
  100% { opacity: 0.5; }
}

/* ════════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════════════════════ */

@media (pointer: fine) {
  .custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
  }
  
  .custom-cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(34, 211, 238, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
  }
  
  .custom-cursor-dot.hovered {
    width: 12px;
    height: 12px;
    background-color: var(--warning-bright);
  }
  
  .custom-cursor-outline.hovered {
    width: 60px;
    height: 60px;
    border-color: var(--warning);
    background-color: rgba(245, 158, 11, 0.05);
  }
  
  .cursor-particle {
    position: fixed;
    width: 4px; height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: particleFade 1s forwards;
  }
  
  @keyframes particleFade {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(0); opacity: 0; }
  }
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-warning {
  background: linear-gradient(135deg, var(--warning-bright), var(--warning));
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}

.btn-outline:hover {
  background: rgba(34, 211, 238, 0.1);
  box-shadow: var(--glow-cyan-sm);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════════════
   FOMO BAR
   ════════════════════════════════════════════════════════════════ */

#fomo-bar {
  background: var(--abyss-2);
  border-bottom: 1px solid rgba(34, 211, 238, 0.3);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  animation: slideDown 0.5s ease-out forwards;
  overflow: hidden;
}

#fomo-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.2), transparent);
  animation: sweep 4s infinite linear;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

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

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

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(34,211,238,0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34,211,238,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); }
}

.timer {
  background: rgba(245,158,11,0.1);
  color: var(--warning-bright);
  padding: 4px 12px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 1px;
}

.slots {
  color: var(--danger);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════
   MAIN NAVIGATION
   ════════════════════════════════════════════════════════════════ */

#main-nav {
  position: sticky;
  top: 41px; /* Account for FOMO bar */
  z-index: 999;
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 52, 68, 0.5);
  padding: 15px 0;
  transition: all var(--tr);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(to right, var(--frost), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mist);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width var(--tr);
}

.nav-link:hover::after {
  width: 100%;
}

/* ════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════ */

#hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

#hero::before {
  content: '';
  position: absolute;
  top: 20%; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,211,238,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: floatOrb 8s infinite ease-in-out;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 10%; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,64,175,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: floatOrb 12s infinite ease-in-out reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

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

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-headline em {
  font-style: normal;
  color: var(--cyan);
  display: block;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--mist);
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
  font-style: italic;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.guarantee-note {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ════════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════════ */

#trust-bar {
  background: var(--abyss-2);
  border-top: 1px solid rgba(42, 52, 68, 0.5);
  border-bottom: 1px solid rgba(42, 52, 68, 0.5);
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.5rem;
}

.trust-text {
  font-family: var(--font-ui);
}

.trust-text h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.85rem;
  color: var(--steel);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   PROBLEM SECTION (.why-section)
   ════════════════════════════════════════════════════════════════ */

#problem {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-inline: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--steel);
}

.why-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-col {
  background: var(--concrete);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden;
}

.why-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--cyan-dk), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}

.why-col:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(34,211,238,0.2);
}

.why-col:hover::before {
  transform: scaleX(1);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  color: var(--danger);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-col:hover .why-icon {
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.why-col h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--frost);
}

.why-col p {
  color: var(--mist);
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════════════
   SOLUTION / EBOOK SHOWCASE
   ════════════════════════════════════════════════════════════════ */

#solution {
  background: var(--abyss-2);
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

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

.ebook-showcase {
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.ebook-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  transform: rotateY(-15deg) rotateX(5deg);
}

.ebook-3d:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.ebook-cover-img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: -20px 20px 40px rgba(0,0,0,0.6), 
              0 0 20px rgba(34, 211, 238, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Decorative glow behind ebook */
.ebook-showcase::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(34,211,238,0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(40px);
}

.solution-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.solution-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--mist);
}

.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-family: var(--font-ui);
}

.feature-list i {
  color: var(--cyan);
  font-size: 1.25rem;
  margin-top: 3px;
  text-shadow: var(--glow-cyan-sm);
}

/* ════════════════════════════════════════════════════════════════
   CHAPTERS / CONTENT BREAKDOWN
   ════════════════════════════════════════════════════════════════ */

#chapters {
  position: relative;
}

.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.chapter-item {
  display: flex;
  gap: 20px;
  background: var(--abyss-3);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--tr);
}

.chapter-item:hover {
  background: var(--concrete);
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateX(10px);
}

.chapter-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan-dk), var(--cyan));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(34, 211, 238, 0.3);
}

.chapter-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--frost);
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  text-transform: none;
}

.chapter-content p {
  font-size: 0.95rem;
  color: var(--steel);
  margin: 0;
  font-family: var(--font-body);
}

/* ════════════════════════════════════════════════════════════════
   ABOUT AUTHOR
   ════════════════════════════════════════════════════════════════ */

#about {
  background: var(--abyss-2);
  border-top: 1px solid rgba(42, 52, 68, 0.5);
  border-bottom: 1px solid rgba(42, 52, 68, 0.5);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--abyss-3);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
}

.author-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--concrete);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2), 0 20px 40px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.author-title {
  font-family: var(--font-ui);
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: block;
}

.about-content p {
  color: var(--mist);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* ════════════════════════════════════════════════════════════════
   BONUSES
   ════════════════════════════════════════════════════════════════ */

#bonuses {
  position: relative;
}

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

.bonus-card {
  background: var(--concrete);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-cyan-sm), 0 20px 40px rgba(0,0,0,0.4);
}

.bonus-badge {
  position: absolute;
  top: 15px; right: -35px;
  background: var(--danger);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
}

.bonus-icon {
  width: 70px;
  height: 70px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--cyan);
  font-size: 2rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.bonus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.bonus-card p {
  font-size: 0.95rem;
  color: var(--steel);
}

.bonus-value {
  display: block;
  margin-top: 15px;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--cyan);
  font-size: 1.1rem;
}

/* ════════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════════ */

#pricing {
  background: radial-gradient(circle at center, var(--abyss-3) 0%, var(--abyss) 100%);
}

.book-card-featured {
  max-width: 600px;
  margin: 0 auto;
  background: var(--concrete);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 2px solid rgba(34, 211, 238, 0.5);
}

.book-card-featured::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--cyan), transparent, var(--cyan-dk), transparent);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  animation: borderGlow 4s linear infinite;
  opacity: 0.5;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pricing-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  justify-content: center;
  align-items:baseline;
  gap: 15px;
  margin: 30px 0;
}

.old-price {
  font-size: 1.5rem;
  color: var(--steel);
  text-decoration: line-through;
  font-family: var(--font-ui);
  font-weight: 500;
}

.new-price {
  font-size: 4rem;
  font-family: var(--font-head);
  color: var(--warning-bright);
  line-height: 1;
  text-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.value-breakdown {
  text-align: left;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.05);
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mist);
}

.value-item i {
  color: var(--cyan);
}

.value-price {
  color: var(--steel);
  font-weight: 500;
}

.value-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 15px 0;
}

.total-value {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--mist);
}

.you-pay {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--warning-bright);
  margin-top: 10px;
  background: rgba(245, 158, 11, 0.1);
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px dashed rgba(245, 158, 11, 0.4);
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--steel);
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

.secure-checkout i {
  color: var(--cyan);
}

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════ */

.testimonials-section {
  position: relative;
}

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

.tc-card {
  background: var(--abyss-3);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.tc-quote-icon {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 3rem;
  color: rgba(34, 211, 238, 0.1);
  font-family: serif;
  line-height: 1;
}

.stars {
  color: var(--warning);
  margin-bottom: 15px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.tc-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mist);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

.tc-avatar {
  width: 50px;
  height: 50px;
  background: var(--concrete);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  color: var(--cyan);
  font-size: 1.2rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.tc-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
  text-transform: none;
}

.tc-info span {
  font-size: 0.8rem;
  color: var(--steel);
  font-family: var(--font-ui);
}

/* ════════════════════════════════════════════════════════════════
   GUARANTEE
   ════════════════════════════════════════════════════════════════ */

#guarantee {
  background: var(--abyss-2);
  border-top: 1px solid rgba(42, 52, 68, 0.5);
  border-bottom: 1px solid rgba(42, 52, 68, 0.5);
}

.guarantee-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(34, 211, 238, 0.1);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  font-size: 3rem;
  color: var(--cyan);
  margin-bottom: 30px;
  box-shadow: var(--glow-cyan-sm);
}

.guarantee-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--frost);
}

.guarantee-content p {
  font-size: 1.15rem;
  color: var(--mist);
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */

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

.faq-item {
  background: var(--abyss-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 25px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--frost);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: none;
  letter-spacing: normal;
}

.faq-icon {
  color: var(--cyan);
  font-size: 1.5rem;
  transition: transform var(--tr);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--concrete);
}

.faq-answer-inner {
  padding: 0 25px 25px;
  color: var(--mist);
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════════ */

#final-cta {
  background: linear-gradient(to bottom, var(--abyss), var(--abyss-2));
  text-align: center;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(34,211,238,0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.final-cta-content p {
  font-size: 1.25rem;
  color: var(--mist);
  margin-bottom: 40px;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */

#footer {
  background: #05080c;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(42, 52, 68, 0.8);
  font-family: var(--font-ui);
}

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

.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--frost);
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--steel);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--frost);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--steel);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  text-align: center;
  color: var(--steel);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .why-cols,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .feature-list li {
    justify-content: center;
  }
  
  .about-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .chapter-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Can be toggled with JS mobile menu */
  }
  
  .why-cols,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .fomo-inner {
    flex-direction: column;
    gap: 10px;
  }
  
  .book-card-featured {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 14px 20px;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .tc-card, .bonus-card, .why-col {
    padding: 25px 20px;
  }
}

/* Image Styles for Book Covers & Media */
.book-cover-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(34, 211, 238, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
  margin-bottom: 15px;
}

.book-card:hover .book-cover-img {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(34, 211, 238, 0.3);
}

.bundle-banner-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(34, 211, 238, 0.2);
}

.simon-photo-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(34, 211, 238, 0.2);
  border: 2px solid rgba(34, 211, 238, 0.3);
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════
   HERO IMMERSIVE DAM BACKGROUND
   ════════════════════════════════════════════════════════════════ */

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    linear-gradient(180deg, rgba(10,15,26,0.3) 0%, rgba(10,15,26,0.7) 40%, rgba(10,15,26,0.95) 100%),
    url('hero-dam-bg.jpg') center 30% / cover no-repeat;
  z-index: 0;
  filter: saturate(0.4) brightness(0.6);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 200px;
  background: linear-gradient(to top, var(--abyss) 0%, transparent 100%);
}

/* Water caustic light effect overlay */
.water-caustics {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  background: 
    radial-gradient(ellipse at 20% 60%, rgba(34,211,238,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(34,211,238,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(30,64,175,0.5) 0%, transparent 50%);
  animation: causticShift 12s ease-in-out infinite alternate;
}

@keyframes causticShift {
  0% { transform: scale(1) translate(0, 0); opacity: 0.06; }
  33% { transform: scale(1.1) translate(3%, -2%); opacity: 0.1; }
  66% { transform: scale(0.95) translate(-2%, 3%); opacity: 0.07; }
  100% { transform: scale(1.05) translate(1%, -1%); opacity: 0.09; }
}

/* ════════════════════════════════════════════════════════════════
   WAVE SECTION DIVIDER
   ════════════════════════════════════════════════════════════════ */

.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider .wave-fill {
  fill: var(--abyss-2);
}

.wave-divider.wave-flip {
  transform: rotate(180deg);
}

.wave-divider.wave-dark .wave-fill {
  fill: var(--abyss);
}

/* ════════════════════════════════════════════════════════════════
   BOOK CARDS (INDIVIDUAL PURCHASE)
   ════════════════════════════════════════════════════════════════ */

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

.book-card {
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: flex;
  flex-direction: column;
}

.book-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.4);
}

.book-card-cover {
  position: relative;
  overflow: hidden;
  background: var(--abyss-3);
}

.book-card-cover img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.book-card:hover .book-card-cover img {
  transform: scale(1.05);
}

.book-card-cover::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 20%;
  background: linear-gradient(to top, rgba(26,35,50,0.8) 0%, transparent 100%);
  pointer-events: none;
}

.book-card-body {
  padding: 25px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.book-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.book-card-body .price-row {
  justify-content: flex-start;
  margin: 0 0 20px;
}

.book-card-body .new-price {
  font-size: 2.5rem;
}

.book-card-body .old-price {
  font-size: 1.2rem;
}

.save-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: 0.5px;
}

.book-features {
  list-style: none;
  margin-bottom: 25px;
  flex-grow: 1;
}

.book-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--mist);
  font-size: 0.95rem;
  font-family: var(--font-ui);
}

.book-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ════════════════════════════════════════════════════════════════
   BUNDLE DIVIDER
   ════════════════════════════════════════════════════════════════ */

.bundle-divider {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 30px 0;
  position: relative;
}

.bundle-divider::before,
.bundle-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.3), transparent);
}

.bundle-divider::before { left: 5%; }
.bundle-divider::after { right: 5%; }

/* ════════════════════════════════════════════════════════════════
   FLOATING WATER PARTICLES (BACKGROUND DECORATION)
   ════════════════════════════════════════════════════════════════ */

.water-particles {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.water-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(34, 211, 238, 0.3);
  border-radius: 50%;
  animation: floatUp var(--duration, 15s) var(--delay, 0s) infinite linear;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(10px) scale(1);
  }
  90% {
    opacity: 0.5;
    transform: translateY(10vh) translateX(-10px) scale(0.8);
  }
  100% {
    transform: translateY(-5vh) translateX(5px) scale(0);
    opacity: 0;
  }
}

/* ════════════════════════════════════════════════════════════════
   PULSING CTA BUTTON
   ════════════════════════════════════════════════════════════════ */

.btn-pulse {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.6), 0 0 60px rgba(245, 158, 11, 0.2); }
}

/* ════════════════════════════════════════════════════════════════
   ENHANCED RESPONSIVE FOR NEW ELEMENTS
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .book-card-cover {
    max-height: 280px;
  }
}

@media (max-width: 768px) {
  .books-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .book-card-cover {
    max-height: 350px;
  }
  .bundle-divider::before,
  .bundle-divider::after {
    width: 15%;
  }
}

@media (max-width: 480px) {
  .book-card-body {
    padding: 20px;
  }
}

/* ════════════════════════════════════════════════════════════════
   SPLIT HERO LAYOUT
   ════════════════════════════════════════════════════════════════ */

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  min-height: 80vh;
  position: relative;
  z-index: 10;
}

.hero-text {
  text-align: left;
}

.hero-text .hero-eyebrow {
  margin-bottom: 20px;
}

.hero-text .hero-headline {
  text-align: left;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.hero-text .hero-headline em {
  display: inline;
}

.hero-text .hero-sub {
  text-align: left;
  margin-inline: 0;
}

.hero-text .hero-cta {
  align-items: flex-start;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  animation: heroFloat 6s ease-in-out infinite;
}

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

/* Hero Stats Counters */
.hero-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .counter-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--cyan);
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(34,211,238,0.3);
}

.hero-stat small {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Social Proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-proof-item {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-proof-item .stars-inline {
  color: var(--warning);
  letter-spacing: 1px;
}

/* ════════════════════════════════════════════════════════════════
   CREDIBILITY BAR
   ════════════════════════════════════════════════════════════════ */

.credibility-bar {
  background: rgba(17, 24, 39, 0.8);
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  padding: 15px 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  position: relative;
  z-index: 10;
}

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

.credibility-inner span {
  opacity: 0.6;
}

.credibility-inner .cred-label {
  opacity: 1;
  color: var(--mist);
  font-weight: 600;
}

.credibility-inner .cred-source {
  font-weight: 700;
  color: var(--cyan);
  opacity: 0.8;
}

/* ════════════════════════════════════════════════════════════════
   MID-PAGE CTA BANNER
   ════════════════════════════════════════════════════════════════ */

.mid-cta {
  background: linear-gradient(135deg, rgba(34,211,238,0.08) 0%, rgba(30,64,175,0.08) 100%);
  border-top: 1px solid rgba(34, 211, 238, 0.15);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.mid-cta-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--frost);
}

.mid-cta .btn {
  white-space: nowrap;
}

.cta-proof {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--steel);
}

/* ════════════════════════════════════════════════════════════════
   WHAT YOU'LL DISCOVER SECTION
   ════════════════════════════════════════════════════════════════ */

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.discover-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(26, 35, 50, 0.5);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--tr);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--mist);
}

.discover-item:hover {
  border-color: rgba(34,211,238,0.2);
  background: rgba(26, 35, 50, 0.8);
  transform: translateX(5px);
}

.discover-check {
  color: var(--cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ════════════════════════════════════════════════════════════════ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(34, 211, 238, 0.3);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-cta-price {
  font-family: var(--font-head);
  color: var(--warning-bright);
  font-size: 1.3rem;
  white-space: nowrap;
}

.sticky-cta .btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  flex-grow: 1;
}

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

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE FOR NEW ELEMENTS
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 40px 0;
  }
  .hero-text {
    text-align: center;
    order: 1;
  }
  .hero-text .hero-headline,
  .hero-text .hero-sub {
    text-align: center;
  }
  .hero-text .hero-cta {
    align-items: center;
  }
  .hero-visual {
    order: 0;
  }
  .hero-visual img {
    max-width: 350px;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-proof {
    justify-content: center;
  }
  .discover-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .credibility-inner {
    gap: 15px;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat .counter-value {
    font-size: 1.8rem;
  }
  body {
    padding-bottom: 70px;
  }
}
