/* ===== DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800&display=swap');

:root {
  /* Colors */
  --bg-primary: #0a0f1a;
  --bg-secondary: #111827;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --text-primary: #f0f0f0;
  --text-secondary: #a0aec0;
  --text-muted: #666666;
  --accent-green: #2ECC71;
  --accent-green-dark: #27ae60;
  --accent-orange: #FF6B35;
  --accent-orange-dark: #e55a2b;
  --accent-red: #E74C3C;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --glow-green: rgba(46, 204, 113, 0.15);
  --glow-orange: rgba(255, 107, 53, 0.15);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1100px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-orange);
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 16px;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== SECTION STYLING ===== */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section--alt {
  background: var(--bg-secondary);
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
  border: none;
  margin: 0 0 32px 0;
  border-radius: 2px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-green);
  margin-bottom: 12px;
  display: block;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--accent-orange);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform var(--transition-med);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta.hidden {
  transform: translateY(100%);
}

.sticky-cta .cta-btn {
  padding: 12px 32px;
  font-size: 15px;
  background: var(--accent-orange);
  min-width: unset;
}

.sticky-cta .cta-btn:hover {
  background: var(--accent-orange-dark);
}

.sticky-cta-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition-fast);
}

.sticky-cta-close:hover {
  color: var(--text-primary);
}

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  min-height: 64px;
  padding: 18px 40px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  background: var(--accent-green);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.cta-btn:hover {
  background: var(--accent-green-dark);
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(46, 204, 113, 0.45);
  color: #fff;
}

.cta-btn:active {
  transform: scale(1.02);
}

.cta-block {
  text-align: center;
  padding: 48px 0;
}

.cta-microcopy {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.cta-microcopy span {
  display: inline-block;
  margin: 0 6px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--glow-green) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-orange) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hero-headline {
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff, #a0d9b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-subheadline em {
  color: var(--text-primary);
  font-style: normal;
  font-weight: 500;
}

.hero-book-cover {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-green);
  transition: transform var(--transition-med);
}

.hero-book-cover:hover {
  transform: translateY(-8px) rotate(1deg);
}

/* ===== CONCERN CARDS ===== */
.concern-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all var(--transition-med);
  backdrop-filter: blur(8px);
}

.concern-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(46, 204, 113, 0.2);
  transform: translateY(-2px);
}

.concern-card h4 {
  color: var(--accent-green);
  margin-bottom: 12px;
}

/* ===== VOICES / TESTIMONY CARDS ===== */
.voice-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
  transition: all var(--transition-med);
}

.voice-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(46, 204, 113, 0.2);
}

.voice-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.voice-card h4 {
  color: var(--text-primary);
  margin-bottom: 4px;
}

.voice-card .voice-role {
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: 8px;
}

.voice-card p {
  font-size: 0.95rem;
}

/* ===== WHAT'S INSIDE — PROTOCOL LIST ===== */
.guide-content-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  align-items: start;
}

.guide-book-image {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 100px;
}

.protocol-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.protocol-item:last-child {
  border-bottom: none;
}

.protocol-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-orange));
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-right: 12px;
  flex-shrink: 0;
}

.protocol-item h4 {
  display: inline;
  vertical-align: middle;
}

/* ===== CHECKMARK LIST ===== */
.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 36px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== CREDIBILITY / TRUST CARDS ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--transition-med);
}

.trust-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.trust-card h4 {
  color: var(--accent-green);
}

/* ===== URGENCY SECTION ===== */
.urgency-list {
  list-style: none;
}

.urgency-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.urgency-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  text-align: center;
}

.value-stack {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin: 32px 0;
}

.value-stack li {
  padding: 8px 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 32px;
}

.value-stack li::before {
  content: '✅';
  position: absolute;
  left: 0;
}

.post-click-steps {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.post-click-steps ol {
  list-style: none;
  counter-reset: steps;
}

.post-click-steps ol li {
  counter-increment: steps;
  padding: 10px 0 10px 40px;
  position: relative;
  color: var(--text-secondary);
}

.post-click-steps ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.guarantee-box {
  background: var(--bg-card);
  border: 1px solid var(--accent-green);
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
  margin: 40px auto;
}

.guarantee-box h3 {
  color: var(--accent-green);
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent-green);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent-green);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 600;
  font-style: normal;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESOURCES PAGE ===== */
.page-header {
  padding: 100px 0 60px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.disclaimer-box {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 12px;
  padding: 28px;
  margin: 32px 0;
}

.disclaimer-box h4 {
  color: var(--accent-red);
}

.censorship-note {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
}

.resource-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  transition: all var(--transition-med);
}

.resource-card:hover {
  border-color: rgba(46, 204, 113, 0.2);
}

.resource-card h3 {
  color: var(--text-primary);
}

.context-box {
  background: rgba(46, 204, 113, 0.06);
  border-left: 3px solid var(--accent-green);
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
}

.counter-box {
  background: rgba(255, 107, 53, 0.06);
  border-left: 3px solid var(--accent-orange);
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
}

.link-list {
  list-style: none;
  margin: 16px 0;
}

.link-list li {
  padding: 6px 0;
}

.link-list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-list li a::before {
  content: '→';
  color: var(--accent-green);
}

.our-take {
  font-weight: 600;
  color: var(--text-primary);
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* ===== NAV BAR ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 15, 26, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
  transition: background var(--transition-med);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--accent-green);
}

/* ===== CSS BOOK COVER ===== */
.book-cover-css {
  position: relative;
  width: 380px;
  display: flex;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px var(--glow-green));
  transition: transform var(--transition-med);
}

.book-cover-css:hover {
  transform: perspective(800px) rotateY(-5deg) translateY(-8px);
}

.book-cover-css.small {
  width: 320px;
}

.book-spine {
  width: 28px;
  background: linear-gradient(180deg, #1a3a2a 0%, #0d1f16 100%);
  border-radius: 4px 0 0 4px;
  flex-shrink: 0;
  box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.3);
}

.book-front {
  flex: 1;
  background: linear-gradient(145deg, #0f2a1f 0%, #0a1f16 30%, #061510 100%);
  border: 1px solid rgba(46, 204, 113, 0.15);
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
}

.book-front::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-green));
}

.book-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-green);
  margin-bottom: 24px;
  padding: 4px 12px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 2px;
}

.book-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.book-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.book-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  line-height: 1.5;
}

/* ===== BLOG STYLES ===== */
.blog-featured {
  background: var(--bg-card);
  border: 1px solid var(--accent-green);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.blog-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
}

.blog-featured h2 {
  margin-bottom: 8px;
}

.blog-featured h2 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-featured h2 a:hover {
  color: var(--accent-green);
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(46, 204, 113, 0.12);
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--accent-green);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--accent-orange);
  transform: translateX(4px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(46, 204, 113, 0.2);
  transform: translateY(-3px);
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.blog-card h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-card h3 a:hover {
  color: var(--accent-green);
}

.blog-card p:last-of-type {
  flex: 1;
}

.blog-card .blog-read-more {
  margin-top: auto;
}

.blog-back-link {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.blog-back-link:hover {
  color: var(--accent-green);
}

/* ===== ARTICLE BODY ===== */
.article-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-intro {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.article-body h2 {
  margin-top: 48px;
  margin-bottom: 20px;
}

.article-body h3 {
  margin-top: 32px;
  color: var(--accent-green);
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin: 16px 0;
}

.article-body li {
  padding: 6px 0;
  color: var(--text-secondary);
}

.article-quote {
  border-left: 3px solid var(--accent-green);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(46, 204, 113, 0.04);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
}

.article-callout {
  background: var(--bg-card);
  border: 1px solid var(--accent-green);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.article-callout h4 {
  color: var(--accent-green);
  margin-bottom: 8px;
}

.article-callout p {
  margin: 0;
}

.article-cta {
  background: var(--bg-secondary);
  border: 1px solid var(--accent-green);
  border-radius: 16px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}

.article-cta h3 {
  color: var(--text-primary);
  margin-top: 0;
}

.related-articles {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.related-articles h3 {
  color: var(--text-primary);
  margin-top: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-book-cover {
    max-width: 280px;
    margin: 0 auto;
  }

  .guide-content-grid {
    grid-template-columns: 1fr;
  }

  .guide-book-image {
    max-width: 250px;
    margin: 0 auto;
    position: static;
  }

  .book-cover-css {
    width: 260px;
  }

  .book-cover-css.small {
    width: 220px;
  }

  .book-title {
    font-size: 1.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-btn {
    min-width: 90%;
    width: 90%;
    font-size: 17px;
  }

  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 64px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .nav-links {
    display: none;
  }

  .voice-card {
    flex-direction: column;
    gap: 12px;
  }
}