/* =============================================
   CSS Custom Properties (Design Tokens)
   ============================================= */
:root {
  --color-primary:       #1a1a2e;
  --color-accent:        #c5273d;
  --color-accent-2:      #16213e;
  --color-surface:       #ffffff;
  --color-surface-alt:   #f8f9fc;
  --color-border:        #e2e8f0;
  --color-text:          #1a202c;
  --color-text-secondary:#4a5568;
  --color-text-muted:    #6b7280;
  --color-success:       #38a169;
  --color-warning:       #d69e2e;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  --nav-height: 64px;
  --fomo-bar-height: 44px;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* =============================================
   FOMO Bar
   ============================================= */
.fomo-bar {
  background: #c5273d;
  color: #fff;
  text-align: center;
  padding: 10px 48px;
  font-size: 14px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.fomo-bar a { color: #fff; text-decoration: underline; }
.fomo-bar-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.8;
}
.fomo-bar-close:hover { opacity: 1; }
body.fomo-dismissed .fomo-bar { display: none; }

/* =============================================
   Navigation
   ============================================= */
.nav {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  top: var(--fomo-bar-height);
}
body.fomo-dismissed .nav { top: 0; }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo-text {
  font-weight: 800;
  font-size: 16px;
  color: var(--color-primary);
  line-height: 1.2;
}
.nav-logo-text span { color: #c5273d; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--color-primary); background: var(--color-surface-alt); text-decoration: none; }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  transition: 0.25s;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--fomo-bar-height) + var(--nav-height));
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 998;
  box-shadow: var(--shadow-md);
}
body.fomo-dismissed .nav-mobile-menu { top: var(--nav-height); }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 8px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--color-accent); text-decoration: none; }

/* Body offset for fixed nav + fomo bar */
body { padding-top: calc(var(--nav-height) + var(--fomo-bar-height)); }
body.fomo-dismissed { padding-top: var(--nav-height); }

/* =============================================
   Layout & Container
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 96px 0; }
.section-alt { background: var(--color-surface-alt); }

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
.card h3 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.text-center { text-align: center; }
.text-white { color: #fff; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
.lead { font-size: 1.125rem; color: var(--color-text-secondary); }
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #c5273d;
  margin-bottom: 12px;
  display: block;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary {
  background: #c5273d;
  color: #fff;
  border-color: #c5273d;
}
.btn-primary:hover { background: #a81f31; border-color: #a81f31; color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}
.btn-white:hover { background: var(--color-surface-alt); color: var(--color-accent); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* =============================================
   Cards
   ============================================= */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { border-radius: var(--radius-md) var(--radius-md) 0 0; overflow: hidden; margin: -24px -24px 24px; }
.card-img img { width: 100%; height: 200px; object-fit: cover; }

/* =============================================
   Badge / Pill
   ============================================= */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-primary { background: rgba(233,69,96,0.1); color: var(--color-accent); }
.badge-success { background: rgba(56,161,105,0.1); color: var(--color-success); }
.badge-warning { background: rgba(214,158,46,0.1); color: var(--color-warning); }
.badge-neutral { background: var(--color-surface-alt); color: var(--color-text-secondary); }

/* =============================================
   Hero Section (T1 - dark navy)
   ============================================= */
.section-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-2) 100%);
  color: #fff;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(233,69,96,0.2);
  color: #ff6b8a;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border: 1px solid rgba(233,69,96,0.4);
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-social-proof {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: left; }
.hero-stat .number { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.hero-book-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}

/* =============================================
   Lead Form Component
   ============================================= */
.lead-form {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.lead-form-heading { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; color: var(--color-primary); }
.lead-form-subhead { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.12);
}
.form-input::placeholder { color: var(--color-text-muted); }
.form-phone-row { display: flex; gap: 8px; }
.form-phone-row .form-input:first-child { width: 100px; flex-shrink: 0; }
.form-phone-row .form-input:last-child { flex: 1; }
.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-surface);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(233,69,96,0.12); }
.form-disclaimer {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-success {
  text-align: center;
  padding: 24px;
  display: none;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { color: var(--color-success); margin-bottom: 8px; }
.form-error-msg {
  color: var(--color-accent);
  font-size: 13px;
  margin-top: 8px;
  display: none;
}
.form-error-msg.show { display: block; }

/* =============================================
   Rating Stars
   ============================================= */
.rating { display: inline-flex; gap: 2px; align-items: center; }
.star { color: var(--color-warning); font-size: 16px; }
.star-empty { color: var(--color-border); }
.rating-text { font-size: 14px; font-weight: 600; color: var(--color-text-secondary); margin-left: 6px; }

/* =============================================
   Breadcrumb
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb-sep { color: var(--color-border); }

/* =============================================
   Table of Contents
   ============================================= */
.toc {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 32px 0;
}
.toc-title { font-weight: 700; margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 6px; font-size: 14px; }
.toc a { color: var(--color-text-secondary); }
.toc a:hover { color: var(--color-accent); }

/* =============================================
   Verdict / Quick Summary Box
   ============================================= */
.verdict-box {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}
.verdict-box-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.verdict-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.verdict-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.verdict-pros h4 { color: var(--color-success); }
.verdict-cons h4 { color: var(--color-accent); }
.verdict-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.verdict-list li { font-size: 14px; display: flex; gap: 8px; align-items: flex-start; }
.verdict-pros .verdict-list li::before { content: '✓'; color: var(--color-success); flex-shrink: 0; font-weight: 700; }
.verdict-cons .verdict-list li::before { content: '✗'; color: var(--color-accent); flex-shrink: 0; font-weight: 700; }

/* =============================================
   Pricing Table
   ============================================= */
.pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.pricing-table th, .pricing-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.pricing-table th { background: var(--color-surface-alt); font-weight: 700; color: var(--color-text); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child { font-weight: 600; color: var(--color-accent); }
.table-wrap { overflow-x: auto; }

/* =============================================
   CTA Affiliate Box
   ============================================= */
.affiliate-cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}
.affiliate-cta-box h3 { color: #fff; margin-bottom: 12px; }
.affiliate-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* =============================================
   FAQ Accordion
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: var(--color-surface);
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--color-surface-alt); }
.faq-arrow { transition: transform 0.2s; flex-shrink: 0; color: var(--color-accent); font-size: 18px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 16px 20px; }

/* =============================================
   Tool Card (category hub grids)
   ============================================= */
.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.tool-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tool-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tool-card-header { display: flex; align-items: center; gap: 12px; }
.tool-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  object-fit: contain;
  padding: 4px;
  background: var(--color-surface);
}
.tool-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.tool-name { font-weight: 700; font-size: 16px; color: var(--color-primary); }
.tool-tagline { font-size: 13px; color: var(--color-text-secondary); }
.tool-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* =============================================
   Journey Path Cards
   ============================================= */
.journey-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.journey-card {
  text-align: center;
  padding: 32px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}
.journey-card:hover {
  border-color: var(--color-accent);
  background: rgba(233,69,96,0.03);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.journey-icon { font-size: 40px; margin-bottom: 12px; }
.journey-name { font-weight: 800; font-size: 16px; color: var(--color-primary); margin-bottom: 8px; }
.journey-desc { font-size: 13px; color: var(--color-text-muted); }

/* =============================================
   Category Hub Icons
   ============================================= */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.category-card {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
  background: var(--color-surface);
}
.category-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.category-icon { font-size: 32px; margin-bottom: 10px; }
.category-name { font-weight: 700; font-size: 14px; color: var(--color-primary); margin-bottom: 4px; }
.category-count { font-size: 12px; color: var(--color-text-muted); }

/* =============================================
   Author Block
   ============================================= */
.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 40px 0;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
}
.author-name { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.author-bio { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; }

/* =============================================
   Testimonials
   ============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.testimonial-text { font-size: 15px; color: var(--color-text-secondary); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author-name { font-weight: 700; font-size: 14px; color: var(--color-primary); }
.testimonial-author-role { font-size: 12px; color: var(--color-text-muted); }

/* =============================================
   Progress / Steps (course)
   ============================================= */
.week-nav { display: flex; flex-direction: column; gap: 4px; }
.week-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: all 0.15s;
}
.week-nav-item:hover { background: var(--color-surface-alt); color: var(--color-primary); text-decoration: none; }
.week-nav-item.active { background: rgba(233,69,96,0.08); color: var(--color-accent); font-weight: 600; }
.week-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.week-nav-item.active .week-num { background: var(--color-accent); color: #fff; }

/* =============================================
   Article Layout (sidebar)
   ============================================= */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: flex-start;
}
.article-sidebar { position: sticky; top: calc(var(--nav-height) + var(--fomo-bar-height) + 24px); }
body.fomo-dismissed .article-sidebar { top: calc(var(--nav-height) + 24px); }
.sidebar-widget {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-widget-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 16px; }

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name { font-weight: 800; color: #fff; font-size: 18px; margin-bottom: 12px; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 14px; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* =============================================
   Misc Utilities
   ============================================= */
.divider { border: none; border-top: 1px solid var(--color-border); margin: 32px 0; }
.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-danger { color: var(--color-accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* =============================================
   Responsive Breakpoints
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-book-card { max-width: 480px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --nav-height: 56px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }
  .hero-social-proof { flex-wrap: wrap; gap: 20px; }
  .verdict-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .lead-form { padding: 20px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { padding: 14px 24px; }
}
