/* ===================================================================
   50 MICRO SAAS YOU CAN BUILD WITHOUT CODING - PRODUCTION STYLESHEET
   Design System: Modern SaaS, Deep Midnight Navy with Cover-matched Orange & Teal
   =================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #0a1120;
  --bg-secondary: #0f192e;
  --bg-card: #152442;
  --bg-card-hover: #1b2f57;
  --bg-card-subtle: rgba(21, 36, 66, 0.6);
  
  --bg-light: #f8fafc;
  --bg-light-card: #ffffff;
  --bg-light-border: #e2e8f0;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-focus: #ff6b35;

  --accent-orange: #ff6b35;
  --accent-orange-hover: #f1561b;
  --accent-orange-light: rgba(255, 107, 53, 0.12);
  --accent-orange-glow: rgba(255, 107, 53, 0.25);
  
  --accent-teal: #14b8a6;
  --accent-teal-light: rgba(20, 184, 166, 0.12);
  --accent-cyan: #38bdf8;
  --accent-blue: #3b82f6;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --text-dark-main: #0f172a;
  --text-dark-muted: #475569;

  --success-green: #10b981;
  --warning-amber: #f59e0b;
  --danger-rose: #f43f5e;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 10px 25px rgba(255, 107, 53, 0.35);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-primary);
  color: var(--text-main);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* Top Announcement Banner */
.top-banner {
  background: linear-gradient(90deg, #101e38 0%, #172b52 50%, #101e38 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.top-banner .badge-pill {
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-banner a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 17, 32, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: padding var(--transition-fast), background var(--transition-fast);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
}

.logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-teal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 4px;
  position: relative;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width var(--transition-fast);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-price-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.header-price-tag strong {
  color: #ffffff;
  font-size: 1.1rem;
}

/* Button Component Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-fast);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 107, 53, 0.45);
  background: linear-gradient(135deg, #ff7947 0%, #f1561b 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-primary.btn-lg {
  padding: 18px 36px;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary.btn-lg {
  padding: 18px 32px;
  font-size: 1.15rem;
}

/* Layout Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common Layout */
.section {
  padding: 96px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-primary);
}

.section-secondary {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark-main);
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.section-kicker.kicker-teal {
  color: var(--accent-teal);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-light .section-title {
  color: var(--text-dark-main);
}

.section-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-light .section-desc {
  color: var(--text-dark-muted);
}

/* ===================================================================
   SECTION 1 — HERO
   =================================================================== */
.hero-section {
  padding: 70px 0 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 25% 60%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              var(--bg-primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-kicker-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.hero-headline {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-headline .highlight-accent {
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #e2e8f0;
}

.hero-bullet-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-teal-light);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hero-bullet-item strong {
  color: #ffffff;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

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

.trust-item svg {
  color: var(--accent-teal);
}

/* 3D Realistic eBook Showcase */
.hero-book-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  position: relative;
}

.book-card-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-card-mockup-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
}

.book-mockup-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(-15px 25px 35px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 45px rgba(255, 107, 53, 0.2));
  transition: filter 0.4s ease;
}

.book-card-mockup-wrapper:hover .book-mockup-img {
  filter: drop-shadow(-20px 35px 50px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 60px rgba(255, 107, 53, 0.35));
}

.meta-chip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.meta-chip-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.meta-chip-label {
  font-size: 0.7rem;
  color: var(--accent-teal);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===================================================================
   SECTION 2 — THE PROBLEM
   =================================================================== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
}

.problem-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.problem-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(244, 63, 94, 0.1);
  color: var(--danger-rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.8px;
}

.problem-quote {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 12px;
}

.problem-quote::before {
  content: '“';
  color: var(--accent-orange);
  font-size: 1.3rem;
  margin-right: 2px;
}
.problem-quote::after {
  content: '”';
  color: var(--accent-orange);
  font-size: 1.3rem;
  margin-left: 2px;
}

.problem-reality {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.problem-reality strong {
  color: var(--accent-cyan);
}

.problem-solution-bridge {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(255, 107, 53, 0.08));
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.bridge-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.bridge-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
}

/* ===================================================================
   SECTION 3 — WHAT'S INSIDE THE EBOOK
   =================================================================== */
.stats-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: transform var(--transition-fast);
}

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

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "tnum";
}

.stat-num.orange { color: var(--accent-orange); }
.stat-num.teal { color: var(--accent-teal); }
.stat-num.cyan { color: var(--accent-cyan); }

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Categories Grid */
.categories-10-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.category-row-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all var(--transition-fast);
}

.category-row-card:hover {
  background: var(--bg-card);
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.cat-num-badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.cat-content {
  flex-grow: 1;
}

.cat-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.cat-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.cat-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-teal);
  background: var(--accent-teal-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ===================================================================
   SECTION 4 — SAMPLE IDEAS SHOWCASE (From actual book)
   =================================================================== */
.sample-ideas-wrapper {
  margin-top: 20px;
}

.ideas-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
  color: #ffffff;
  border-color: var(--border-medium);
}

.filter-tab-btn.active {
  background: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.sample-idea-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.sample-idea-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-orange);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.sample-idea-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
}

.sample-idea-card:hover::before {
  opacity: 1;
}

.sample-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sample-card-id {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.sample-card-category {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
}

.sample-idea-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.sample-card-field {
  margin-bottom: 14px;
}

.sample-card-field:last-child {
  margin-bottom: 0;
}

.field-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.field-value {
  font-size: 0.92rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.field-value.highlight-green {
  color: var(--accent-teal);
  font-weight: 700;
}

.field-value.highlight-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.stack-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: #f1f5f9;
  font-weight: 500;
}

.sample-cta-banner {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-card-subtle);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-medium);
}

.sample-cta-banner p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* ===================================================================
   SECTION 5 — HOW EACH IDEA IS PRESENTED (5 Cards)
   =================================================================== */
.framework-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.framework-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-fast);
}

.framework-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.framework-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-teal);
  margin-bottom: 12px;
}

.framework-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.framework-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.framework-question {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.framework-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================================================================
   SECTION 6 — WHO THIS EBOOK IS FOR / NOT FOR
   =================================================================== */
.audience-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.audience-card {
  border-radius: var(--radius-xl);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}

.audience-card.for-you {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.07) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.audience-card.not-for-you {
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.07) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(244, 63, 94, 0.25);
}

.audience-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.audience-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.for-you .audience-badge-icon {
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-teal);
}

.not-for-you .audience-badge-icon {
  background: rgba(244, 63, 94, 0.15);
  color: var(--danger-rose);
}

.audience-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.audience-list-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.for-you .audience-list-item svg {
  color: var(--accent-teal);
}

.not-for-you .audience-list-item svg {
  color: var(--danger-rose);
}

/* ===================================================================
   SECTION 7 — WHY MICRO-SAAS? (Diagram & Principles)
   =================================================================== */
.micro-saas-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.pillar-box {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition-fast);
}

.pillar-box:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
  background: var(--bg-card);
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-title svg {
  color: var(--accent-orange);
}

.pillar-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Flowchart Diagram */
.diagram-container {
  background: linear-gradient(135deg, #0e1a33 0%, #152445 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 20px;
  text-align: center;
}

.diagram-caption {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 28px;
}

.flowchart-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.flow-step-node {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 170px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.flow-step-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.flow-step-text {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.flow-step-node.node-highlight {
  border-color: var(--accent-orange);
  background: rgba(255, 107, 53, 0.12);
}

.flow-step-node.node-highlight .flow-step-text {
  color: var(--accent-orange);
}

.flow-arrow {
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================================================
   SECTION 8 — NO-CODE TOOLKIT
   =================================================================== */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--transition-fast);
}

.tool-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.tool-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tool-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.tool-category-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.tool-purpose {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================================================================
   SECTION 9 — VALIDATION ("Don't Build First. Validate First.")
   =================================================================== */
.validation-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.validation-content-col h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.validation-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.val-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.val-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.val-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.val-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.validation-card-quote {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.val-quote-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.val-quote-text {
  font-size: 1.18rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.val-quote-attribution {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ===================================================================
   SECTION 10 — LAUNCH PLAN ROADMAP (30-Day Plan)
   =================================================================== */
.roadmap-visual-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  padding: 20px 10px;
  margin-bottom: 48px;
  gap: 12px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}

.strip-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}

.strip-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent-orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.strip-arrow {
  color: var(--text-dim);
}

/* 4-Week Breakdown Grid */
.weeks-launch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.week-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.week-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-teal);
  box-shadow: var(--shadow-md);
}

.week-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.week-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.week-tasks {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================================
   SECTION 11 — EBOOK PREVIEWS & LIGHTBOX
   =================================================================== */
.previews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.preview-thumb-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.preview-thumb-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-lg);
}

.preview-img-frame {
  background: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 1 / 1.35;
}

.preview-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.preview-thumb-card:hover .preview-img-frame img {
  transform: scale(1.03);
}

.preview-overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 17, 32, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.preview-thumb-card:hover .preview-overlay-icon {
  opacity: 1;
}

.preview-overlay-icon span {
  background: var(--accent-orange);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.preview-card-info {
  padding: 12px 6px 4px 6px;
}

.preview-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.preview-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Modal Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  background: #ffffff;
}

.lightbox-caption {
  margin-top: 14px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===================================================================
   SECTION 12 — VALUE / MAIN OFFER PRICING BOX
   =================================================================== */
.offer-box-container {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card-main {
  background: linear-gradient(180deg, #13223f 0%, #0d172e 100%);
  border: 2px solid var(--accent-orange);
  border-radius: var(--radius-xl);
  padding: 50px 44px;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pricing-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.offer-product-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offer-book-preview {
  width: 220px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-specs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.offer-spec-pill {
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.offer-details-col {
  display: flex;
  flex-direction: column;
}

.offer-heading {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.offer-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.offer-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: #e2e8f0;
}

.offer-item svg {
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.price-main {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-feature-settings: "tnum";
}

.price-strike {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-term {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.offer-cta-btn {
  width: 100%;
  margin-bottom: 14px;
}

.offer-guarantee-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.offer-guarantee-note svg {
  color: var(--accent-teal);
}

/* ===================================================================
   SECTION 13 — FAQ ACCORDION
   =================================================================== */
.faq-accordion-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-toggle-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), background var(--transition-fast);
  color: var(--accent-orange);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--accent-orange);
  color: #ffffff;
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px 24px;
  font-size: 0.96rem;
  color: #cbd5e1;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 14px;
}

/* ===================================================================
   SECTION 14 — FINAL CTA BANNER
   =================================================================== */
.final-cta-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15) 0%, rgba(10, 17, 32, 0) 70%),
              var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.final-cta-box {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-headline {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ===================================================================
   SOCIAL PROOF / TESTIMONIAL PLACEHOLDER SECTION (Part 7)
   =================================================================== */
.social-proof-placeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-placeholder-card {
  background: var(--bg-card);
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.placeholder-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.placeholder-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.placeholder-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.placeholder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.placeholder-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.placeholder-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: #060b14;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px 0;
  color: var(--text-dim);
  font-size: 0.88rem;
}

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

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links-col h4 {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

.footer-disclaimer {
  max-width: 700px;
  line-height: 1.5;
}

/* ===================================================================
   MODAL DIALOGS (Payment Setup & Preview)
   =================================================================== */
.payment-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.payment-modal-backdrop.active {
  display: flex;
}

.payment-modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}

.payment-modal-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.modal-code-block {
  background: #080f1d;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  text-align: left;
  overflow-x: auto;
}

.modal-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.modal-hint code {
  color: var(--accent-orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-action-btn {
  width: 100%;
}

/* ===================================================================
   THANK YOU PAGE SPECIFIC STYLES
   =================================================================== */
.thank-you-page {
  background-color: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thank-you-hero {
  padding: 60px 0 80px 0;
  text-align: center;
}

.success-badge-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  border: 2px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.thank-you-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.thank-you-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px auto;
}

.download-master-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 800px;
  margin: 0 auto 60px auto;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.download-book-mockup {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.download-details-col {
  display: flex;
  flex-direction: column;
}

.download-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.download-book-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.download-specs {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.download-main-btn {
  font-size: 1.1rem;
  padding: 16px 28px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.download-help-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Next Steps Cards on Thank-You */
.next-steps-section {
  padding: 60px 0 100px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.steps-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.step-guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.step-card-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Security Upgrade Callout */
.security-upgrade-box {
  background: rgba(15, 25, 46, 0.7);
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  max-width: 800px;
  margin: 40px auto 0 auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.security-upgrade-box h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.security-upgrade-box h4 svg {
  color: var(--accent-teal);
}

/* ===================================================================
   RESPONSIVE MEDIA QUERIES
   =================================================================== */
@media (max-width: 1080px) {
  .hero-headline {
    font-size: 2.8rem;
  }
  .pricing-card-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }
  .framework-5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .weeks-launch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-kicker-pill {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bullets {
    align-items: flex-start;
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-bar {
    justify-content: center;
  }
  .book-3d {
    width: 270px;
    height: 370px;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .categories-10-grid {
    grid-template-columns: 1fr;
  }
  .stats-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-dual-grid {
    grid-template-columns: 1fr;
  }
  .micro-saas-pillars {
    grid-template-columns: 1fr;
  }
  .framework-5-grid {
    grid-template-columns: 1fr;
  }
  .validation-layout {
    grid-template-columns: 1fr;
  }
  .weeks-launch-grid {
    grid-template-columns: 1fr;
  }
  .social-proof-placeholders {
    grid-template-columns: 1fr;
  }
  .download-master-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .download-book-mockup {
    margin: 0 auto;
    max-width: 200px;
  }
  .download-main-btn {
    align-self: center;
  }
  .steps-3-grid {
    grid-template-columns: 1fr;
  }
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  .btn-primary.btn-lg, .btn-secondary.btn-lg {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }
  .flowchart-chain {
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .author-profile-img {
    width: 200px;
    height: 200px;
  }
}

