/* ============================================================
   ALREADY CONVINCED — Landing Page Styles
   Brand: Matte black, neon green #39FF14, Montserrat + Inter
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #1A1A1A;
  --bg-card: #141414;
  --accent: #39FF14;
  --accent-dim: rgba(57, 255, 20, 0.15);
  --accent-glow: rgba(57, 255, 20, 0.4);
  --accent-hover: #B5FF3C;
  --text-primary: #F0F0F0;
  --text-secondary: #B0B0B0;
  --text-dimmed: #9A9A9A;
  --text-strike: #6A6A6A;
  --white: #FFFFFF;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --section-pad: 100px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

a:hover {
  color: var(--accent-hover);
}

/* ---- Utility ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

.section-pad {
  padding: var(--section-pad) 0;
}

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

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

/* ============================================================
   STICKY NAVIGATION
   ============================================================ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.08);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.eyebrow-source {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-style: italic;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  font-style: italic;
  text-shadow: 0 0 40px rgba(57, 255, 20, 0.08);
}

.hero h1 .accent {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.hero-body strong {
  color: var(--accent);
  font-weight: 700;
}

.hero-body-sub {
  font-size: 0.95rem;
  color: var(--text-dimmed);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-btn:hover::before {
  transform: translateX(100%);
}

.cta-btn:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(57, 255, 20, 0.15);
  transform: translateY(-2px);
}

.cta-btn-arrow {
  font-size: 1.2em;
  transition: transform var(--transition);
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(4px);
}

.trust-line {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-dimmed);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-author-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(57, 255, 20, 0.12);
}

.hero-book-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(57, 255, 20, 0.15);
}

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

/* ============================================================
   PROBLEM SECTION (The Quiet Weeks)
   ============================================================ */
.problem {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(57, 255, 20, 0.06);
  border-bottom: 1px solid rgba(57, 255, 20, 0.06);
}

.problem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.problem-header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.problem-header .stat-source {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
  display: block;
}

.problem-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.problem-body strong {
  color: var(--white);
}

.problem-punch {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 28px;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.stat-card {
  background: var(--bg-primary);
  border: 1px solid rgba(57, 255, 20, 0.08);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  border-color: rgba(57, 255, 20, 0.2);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.06);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stat-source-small {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-dimmed);
  font-style: italic;
}

/* ============================================================
   WHAT'S INSIDE SECTION
   ============================================================ */
.inside {
  position: relative;
}

.inside-header {
  text-align: center;
  margin-bottom: 20px;
}

.inside-header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.inside-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Book showcase */
.book-showcase {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.book-showcase img {
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(57, 255, 20, 0.1);
}

.density-proof {
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 50px;
}

/* Chapter Cards */
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.chapter-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(57, 255, 20, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.chapter-card:hover {
  border-color: rgba(57, 255, 20, 0.2);
  background: rgba(26, 26, 26, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.chapter-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.chapter-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.chapter-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.chapter-days {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.8;
}

.chapter-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   WHO IS THIS FOR / NOT FOR
   ============================================================ */
.audience {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(57, 255, 20, 0.06);
  border-bottom: 1px solid rgba(57, 255, 20, 0.06);
}

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

.audience-left h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.1;
}

.for-list, .not-for-list {
  list-style: none;
}

.for-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.for-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.not-for-box {
  margin-top: 40px;
  padding: 28px;
  background: rgba(74, 74, 74, 0.1);
  border: 1px solid rgba(74, 74, 74, 0.2);
  border-radius: var(--radius);
}

.not-for-box h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dimmed);
  margin-bottom: 12px;
}

.not-for-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-dimmed);
  line-height: 1.6;
}

.not-for-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--text-dimmed);
  font-weight: 700;
}

.audience-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.audience-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(57, 255, 20, 0.1);
}

/* ============================================================
   ABOUT THE AUTHOR
   ============================================================ */
.author {
  position: relative;
  overflow: hidden;
}

.author::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

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

.author-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.author-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(57, 255, 20, 0.15);
}

.author-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  max-width: 424px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, var(--accent) 100%);
  opacity: 0.15;
  z-index: -1;
}

.author-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.author-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.author-text strong {
  color: var(--white);
  font-weight: 600;
}

.author-highlight {
  padding: 20px 24px;
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.author-links {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 50px;
  transition: all var(--transition);
}

.author-link:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-hover);
}

/* ============================================================
   OBJECTION WALL
   ============================================================ */
.objections {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(57, 255, 20, 0.06);
  border-bottom: 1px solid rgba(57, 255, 20, 0.06);
}

.objections-inner {
  max-width: 800px;
  margin: 0 auto;
}

.objection-item {
  margin-bottom: 48px;
  position: relative;
}

.objection-strike {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-strike);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.objection-rebuttal {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

.objection-rebuttal .source {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.objections-cta {
  text-align: center;
  margin-top: 60px;
}

.objections-cta .cta-sub {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-dimmed);
}

/* ============================================================
   LEAD CAPTURE FORM
   ============================================================ */
.lead-form-section {
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.form-container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.form-container h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}

.form-container .form-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dimmed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2339FF14' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  padding: 18px;
  margin-top: 8px;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.form-submit-btn:hover::before {
  transform: translateX(100%);
}

.form-submit-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(57, 255, 20, 0.15);
  transform: translateY(-2px);
}

.form-privacy {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-dimmed);
}

/* ============================================================
   DONE-FOR-YOU BRIDGE
   ============================================================ */
.bridge {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(57, 255, 20, 0.06);
  border-bottom: 1px solid rgba(57, 255, 20, 0.06);
}

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

.bridge-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.bridge-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.bridge-text strong {
  color: var(--accent);
  font-weight: 700;
}

.bridge-offer {
  padding: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: var(--radius);
  margin: 24px 0;
}

.bridge-offer p {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.bridge-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 50px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.cta-outline:hover {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 30px var(--accent-glow);
}

.bridge-photo {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(57, 255, 20, 0.1);
  margin: 0 auto;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 8px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(57, 255, 20, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.3;
  padding-right: 20px;
  transition: color var(--transition);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

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

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.final-book-img {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

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

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(57, 255, 20, 0.06);
  background: var(--bg-secondary);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dimmed);
}

.footer-brand span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dimmed);
  transition: color var(--transition);
}

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

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dimmed);
  margin-top: 16px;
}

/* ============================================================
   SCANNER BEAM — Top of hero
   ============================================================ */
.scanner-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scan 3s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .hero-grid,
  .author-grid,
  .audience-grid,
  .bridge-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-author-img {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-book-float {
    width: 140px;
    bottom: -20px;
    right: 10px;
  }

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

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

  .audience-right {
    order: -1;
  }

  .author-photo-wrap {
    order: -1;
  }

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

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

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

  .bridge-photo {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

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

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

  .stat-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

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

  .cta-btn {
    padding: 16px 32px;
    font-size: 0.9rem;
  }

  .hero-book-float {
    width: 110px;
    bottom: -15px;
    right: 0;
  }

  .objection-strike {
    font-size: 1.1rem;
  }

  .bridge-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-outline {
    justify-content: center;
  }
}
