/* =====================================================
   THE TAPPING SOLUTION - SHARED STYLES
   ===================================================== */

:root {
  /* Colors */
  --cream: #FAF7F2;
  --warm-white: #FFFCF8;
  --sand: #E8E0D5;
  --sage: #87A878;
  --sage-dark: #5A6B5A;
  --sage-light: #B8C5B8;
  --sage-muted: #E8EDE8;
  --navy: #1a2a3a;
  --navy-light: #2d4a5e;
  --coral: #E07B5C;
  --coral-soft: rgba(224, 123, 92, 0.15);
  --charcoal: #2D2D2D;
  --text: #3D3D3D;
  --text-light: #6B6B6B;
  --text-muted: #8B8B8B;
  
  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-body); 
  background: var(--cream); 
  color: var(--text); 
  line-height: 1.7; 
}

/* Typography */
h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-display); 
  font-weight: 400; 
  line-height: 1.2; 
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 300; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 300; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 400; }
p { font-size: 1.1rem; color: var(--text-light); }
a { text-decoration: none; color: inherit; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* =====================================================
   NAVIGATION
   ===================================================== */

.nav-wrapper { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000; 
}

.utility-nav { 
  background: var(--charcoal); 
  padding: 0.5rem 4%; 
  display: flex; 
  justify-content: flex-end; 
  gap: 2rem; 
}

.utility-nav a { 
  color: rgba(255,255,255,0.7); 
  font-size: 0.8rem; 
  font-weight: 500; 
  transition: color 0.3s; 
}

.utility-nav a:hover { color: white; }

.main-nav { 
  background: var(--warm-white); 
  padding: 1rem 4%; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  border-bottom: 1px solid var(--sand);
}

.logo { 
  font-family: var(--font-display); 
  font-size: 1.4rem; 
  color: var(--navy); 
  font-weight: 500; 
}

.nav-links { 
  display: flex; 
  gap: 2.5rem; 
  list-style: none; 
}

.nav-links a { 
  color: var(--text); 
  font-weight: 500; 
  font-size: 0.95rem; 
  transition: color 0.3s; 
  position: relative;
}

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

.nav-links a.active { color: var(--coral); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
}

.nav-cta { 
  background: var(--coral); 
  color: white; 
  padding: 0.75rem 1.5rem; 
  border-radius: 100px; 
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(224, 123, 92, 0.3); 
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .mobile-menu-toggle { display: block; }
  
  .nav-links { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--sand);
  }
  
  .nav-links.active { display: flex; }
  
  .utility-nav { display: none; }
}

/* =====================================================
   BREADCRUMB
   ===================================================== */

.breadcrumb { 
  padding: 120px 4% 1rem; 
  font-size: 0.9rem; 
  color: var(--text-muted); 
}

.breadcrumb a { 
  color: var(--coral); 
  transition: opacity 0.3s; 
}

.breadcrumb a:hover { opacity: 0.7; }

/* =====================================================
   HERO SECTIONS
   ===================================================== */

.hero { 
  padding: 2rem 4% 3rem; 
  max-width: 900px; 
}

.hero-badge { 
  display: inline-block; 
  background: var(--sage-muted); 
  color: var(--sage-dark); 
  padding: 0.5rem 1rem; 
  border-radius: 100px; 
  font-size: 0.85rem; 
  font-weight: 600; 
  margin-bottom: 1.5rem; 
}

.hero h1 { margin-bottom: 1rem; }

.hero-subtitle { 
  font-size: 1.3rem; 
  color: var(--text-light); 
  max-width: 700px; 
}

/* Dark Hero Variant */
.hero-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 4% 4rem;
  color: white;
}

.hero-dark h1 { color: white; }
.hero-dark .hero-subtitle { color: rgba(255,255,255,0.9); }
.hero-dark p { color: rgba(255,255,255,0.9); }

.hero-dark .hero-badge {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* Hero Dark - Improved spacing between stats and quote */
.hero-dark .hero__stats {
  margin-bottom: 3rem;
}

.hero-dark .hero__quote {
  margin-top: 3rem;
}

/* Stats Banner */
.stats-banner { 
  display: flex; 
  gap: 3rem; 
  margin-top: 2rem; 
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number { 
  font-family: var(--font-display); 
  font-size: 2rem; 
  color: var(--coral); 
  font-weight: 500;
  display: block;
}

.hero-dark .stat-number { color: var(--coral); }

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}

.hero-dark .stat-label {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* =====================================================
   CONTENT SECTIONS
   ===================================================== */

.content { 
  max-width: 800px; 
  margin: 0 auto; 
  padding: 3rem 4%; 
}

.content h2 { margin: 2.5rem 0 1rem; }
.content h3 { margin: 2rem 0 0.75rem; }
.content p { margin-bottom: 1.25rem; }

/* Cards */
.card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Quick Version Box */
.quick-version { 
  background: var(--warm-white); 
  border-radius: 16px; 
  padding: 2rem; 
  margin: 2rem 0; 
  border-left: 4px solid var(--sage);
}

.quick-version h3 { margin-bottom: 1rem; color: var(--navy); }
.quick-version p { margin: 0; }

/* Highlight Box */
.highlight-box {
  background: var(--coral-soft);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--coral);
}

/* =====================================================
   DATA VISUALIZATION
   ===================================================== */

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.data-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.data-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--coral);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.data-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Effect Size Bar */
.effect-bar {
  background: var(--sand);
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.effect-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--coral));
  border-radius: 6px;
  transition: width 1s var(--ease-smooth);
}

/* =====================================================
   TABLES
   ===================================================== */

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--sand);
}

.data-table th {
  background: var(--navy);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr:hover td { background: var(--cream); }

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  border: none;
}

.btn-primary {
  background: var(--coral);
  color: white;
}

.btn-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 123, 92, 0.3);
}

.btn-sage {
  background: #75a293;
  color: white;
}

.btn-sage:hover {
  background: #5d8a7a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(117, 162, 147, 0.3);
}

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

.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--navy);
}

/* =====================================================
   CITATIONS
   ===================================================== */

.citation {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  background: var(--sand);
  border-radius: 8px;
  margin: 0.5rem 0;
}

.citation a {
  color: var(--coral);
  text-decoration: underline;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem;
  border-radius: 24px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* =====================================================
   FOOTER - Updated to match Figma design
   ===================================================== */

/* Base footer element styling (backwards compatibility) */
footer {
  background: var(--charcoal, #2c3e50);
  color: white;
  padding: 4rem 4% 2rem;
}

/* Legacy footer classes for backwards compatibility */
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-links h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.site-footer {
  background: #2c3e50;
  color: white;
  padding: 48px 0 0;
}

.footer-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #fffcf5;
  margin: 0;
}

.footer-heading--brand {
  font-size: 18px;
  line-height: 28px;
}

.footer-description {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #d1d5dc;
  margin: 0;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #d1d5dc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fffcf5;
}

.footer-contact-intro {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #d1d5dc;
  margin: 0;
}

.footer-email {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #d1d5dc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: #fffcf5;
}

.footer-address {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  font-style: normal;
  color: #d1d5dc;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #d1d5dc;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #fffcf5;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover svg path {
  fill: #fffcf5;
}

.footer-bottom {
  border-top: 1px solid #364153;
  padding: 32px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Lato', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #d1d5dc;
  margin: 0;
}

/* Disclaimer Notice */
.disclaimer-notice {
  background: #F8F6F3;
  border-top: 1px solid #E5E1DC;
  padding: 24px 0;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-notice p {
  font-size: 0.875rem;
  color: #6B6B6B;
  line-height: 1.6;
  margin: 0;
}

/* Footer Responsive Styles */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =====================================================
   DISCLAIMER (Legacy styles - keeping for compatibility)
   ===================================================== */

.disclaimer {
  background: var(--sand);
  padding: 2rem 4%;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.disclaimer .container {
  max-width: 800px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

.fade-in {
  animation: fadeIn 0.6s var(--ease-smooth) forwards;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
  .hero { padding: 1.5rem 4% 2rem; }
  .hero-dark { padding: 120px 4% 3rem; }
  .content { padding: 2rem 4%; }
  .stats-banner { gap: 1.5rem; }
  .stat-number { font-size: 1.5rem; }
  .cta-section { padding: 2.5rem 1.5rem; margin: 2rem 1rem; }
  .card-grid { grid-template-columns: 1fr; }
}
:root {
  --color-cream: #FDF8F3;
  --color-cream-dark: #F5EDE4;
  --color-teal: #1AA6B7;
  --color-teal-dark: #158A98;
  --color-teal-light: #E8F6F8;
  --color-terracotta: #C4715B;
  --color-terracotta-light: #F9EFEC;
  --color-navy: #2C3E50;
  --color-charcoal: #333333;
  --color-gray-600: #666666;
  --color-gray-400: #999999;
  --color-gray-200: #E5E5E5;
  --color-white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 1.5rem;
  --space-xl: 2rem; --space-2xl: 3rem; --space-3xl: 4rem; --space-4xl: 6rem;
  --container-max: 1200px; --container-narrow: 720px;
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px; --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08); --shadow-md: 0 4px 12px rgba(0,0,0,0.1); --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.8; color: var(--color-charcoal); background: var(--color-white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-teal); text-decoration: none; }
a:hover { color: var(--color-teal-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.3; color: var(--color-navy); margin: 0 0 var(--space-md); }
p { margin: 0 0 var(--space-lg); }
em { font-style: italic; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-lg); }
.container--narrow { max-width: var(--container-narrow); }
.site-header { background: var(--color-white); padding: var(--space-md) 0; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header__logo img { height: 40px; width: auto; }
.site-header__nav { display: flex; align-items: center; gap: var(--space-xl); }
.site-header__nav a { color: var(--color-charcoal); font-weight: 500; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.5px; }
.site-header__nav a:hover, .site-header__nav a.is-active { color: var(--color-teal); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: var(--space-md) var(--space-xl); font-family: var(--font-body); font-size: 1rem; font-weight: 600; border-radius: var(--radius-full); border: 2px solid transparent; cursor: pointer; transition: all 0.2s ease; }
.btn--primary { background: var(--color-teal); color: var(--color-white); border-color: var(--color-teal); }
.btn--primary:hover { background: var(--color-teal-dark); border-color: var(--color-teal-dark); color: var(--color-white) !important; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--secondary { background: transparent; color: var(--color-teal); border-color: var(--color-teal); }
.btn--secondary:hover { background: var(--color-teal); color: var(--color-white); }
.btn--sm { padding: var(--space-sm) var(--space-lg); font-size: 0.875rem; }
.btn--large { padding: var(--space-lg) var(--space-2xl); font-size: 1.125rem; }
.btn--ghost { background: transparent; color: var(--color-gray-600); border-color: transparent; }
.section { padding: var(--space-4xl) 0; }
.section--cream { background: var(--color-cream); }
.section--teal { background: var(--color-teal); color: var(--color-white); }
.breadcrumb { background: var(--color-cream); padding: var(--space-md) 0; font-size: 0.875rem; }
.breadcrumb a { color: var(--color-gray-600); }
.breadcrumb__sep { margin: 0 var(--space-sm); color: var(--color-gray-400); }
.hero { background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%); padding: var(--space-4xl) 0; }
.hero .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-3xl); align-items: center; }
.hero__eyebrow { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-teal); font-weight: 600; margin-bottom: var(--space-md); }
.hero__title { font-size: 3rem; margin-bottom: var(--space-lg); line-height: 1.15; }
.hero__stats { display: flex; gap: var(--space-2xl); margin-top: var(--space-xl); }
.stat { text-align: center; }
.stat__number { display: block; font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--color-teal); }
.stat__label { font-size: 0.8125rem; color: var(--color-gray-600); text-transform: uppercase; letter-spacing: 1px; }
.hero__quote { background: var(--color-white); padding: var(--space-2xl); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__quote blockquote { margin: 0; }
.hero__quote p { font-family: var(--font-display); font-size: 1.375rem; font-style: italic; line-height: 1.5; margin-bottom: var(--space-lg); color: var(--color-navy); }
.hero__quote cite { font-style: normal; font-size: 1rem; color: var(--color-gray-600); }
.prose { max-width: var(--container-narrow); margin: 0 auto; }
.prose h2 { font-size: 2rem; margin-top: var(--space-3xl); margin-bottom: var(--space-lg); }
.prose h3 { font-size: 1.5rem; margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.prose p { margin-bottom: var(--space-lg); }
.prose .highlight { background: var(--color-teal-light); border-left: 4px solid var(--color-teal); padding: var(--space-lg) var(--space-xl); border-radius: var(--radius-md); margin: var(--space-2xl) 0; }
.prose .highlight p { margin-bottom: 0; }
.prose .highlight .stat-big { font-family: var(--font-display); font-size: 1.375rem; color: var(--color-teal-dark); margin-bottom: var(--space-sm); }
.prose .highlight .stat-source { font-size: 0.875rem; color: var(--color-gray-600); }
.featured-story { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-2xl); box-shadow: var(--shadow-lg); margin: var(--space-2xl) 0; }
.featured-story__header { display: flex; align-items: center; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.avatar { width: 70px; height: 70px; border-radius: var(--radius-full); background: var(--color-teal); color: var(--color-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; flex-shrink: 0; }
.featured-story__name { font-size: 1.5rem; margin-bottom: 0; }
.featured-story__location { color: var(--color-gray-600); font-size: 0.9375rem; margin: 0; }
.badge { display: inline-block; padding: var(--space-xs) var(--space-md); border-radius: var(--radius-full); font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; background: var(--color-terracotta-light); color: var(--color-terracotta); margin-top: var(--space-xs); }
.featured-story__pullquote { background: var(--color-cream); padding: var(--space-xl); border-radius: var(--radius-md); margin-bottom: var(--space-xl); border-left: 4px solid var(--color-teal); }
.featured-story__pullquote p { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--color-navy); margin: 0; line-height: 1.5; }
.story-arc { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); margin: var(--space-xl) 0; }
.story-arc__section { padding: var(--space-lg); background: var(--color-cream); border-radius: var(--radius-md); }
.story-arc__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--color-teal); margin-bottom: var(--space-sm); font-weight: 600; }
.story-arc__section p { margin: 0; font-size: 0.9375rem; color: var(--color-gray-600); line-height: 1.7; }
.try-session { background: var(--color-teal-light); padding: var(--space-lg); border-radius: var(--radius-md); margin-top: var(--space-xl); }
.try-session__label { font-size: 0.875rem; color: var(--color-gray-600); margin-bottom: var(--space-sm); }
.try-session__link { display: flex; align-items: center; gap: var(--space-md); background: var(--color-white); padding: var(--space-md) var(--space-lg); border-radius: var(--radius-md); color: var(--color-charcoal); transition: all 0.2s ease; }
.try-session__link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--color-teal); }
.try-session__icon { width: 44px; height: 44px; background: var(--color-teal); color: var(--color-white); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.try-session__name { flex: 1; font-weight: 600; }
.try-session__duration { color: var(--color-gray-400); font-size: 0.875rem; }
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); margin: var(--space-2xl) 0; }
.story-card { background: var(--color-white); border-radius: var(--radius-md); padding: var(--space-xl); box-shadow: var(--shadow-sm); transition: all 0.2s ease; }
.story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.story-card__header { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md); }
.story-card .avatar { width: 50px; height: 50px; font-size: 1.25rem; }
.story-card__name { font-size: 1.125rem; margin: 0; }
.story-card__location { font-size: 0.8125rem; color: var(--color-gray-400); margin: 0; }
.story-card__quote { font-family: var(--font-display); font-style: italic; font-size: 1.0625rem; color: var(--color-navy); line-height: 1.5; margin-bottom: var(--space-md); }
.story-card__excerpt { color: var(--color-gray-600); font-size: 0.9375rem; margin-bottom: var(--space-md); }
.story-card__link { font-size: 0.875rem; font-weight: 600; }
.pattern-section { text-align: center; }
.pattern-section h2 { color: var(--color-white); margin-bottom: var(--space-xl); }
.pattern-section__text { font-family: var(--font-display); font-size: 1.375rem; font-style: italic; line-height: 1.6; max-width: 700px; margin: 0 auto var(--space-xl); }
.reflection { background: rgba(255,255,255,0.15); padding: var(--space-xl); border-radius: var(--radius-md); max-width: 600px; margin: 0 auto; }
.reflection p { font-size: 1.0625rem; font-style: italic; margin: 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); margin: var(--space-2xl) 0; }
.cta-card { padding: var(--space-2xl); border-radius: var(--radius-lg); }
.cta-card--primary { background: var(--color-cream); }
.cta-card--secondary { background: var(--color-teal-light); }
.cta-card h3 { margin-bottom: var(--space-md); }
.cta-card p { color: var(--color-gray-600); margin-bottom: var(--space-xl); }
.sessions-list { margin-bottom: var(--space-xl); }
.sessions-list__label { font-size: 0.875rem; font-weight: 600; color: var(--color-gray-600); margin-bottom: var(--space-sm); }
.session-chip { display: flex; align-items: center; gap: var(--space-sm); background: var(--color-white); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); margin-bottom: var(--space-sm); color: var(--color-charcoal); font-size: 0.9375rem; transition: all 0.15s ease; }
.session-chip:hover { background: var(--color-teal); color: var(--color-white); }
.session-chip__icon { color: var(--color-teal); }
.session-chip:hover .session-chip__icon { color: var(--color-white); }
.faq-list { max-width: 700px; margin: var(--space-2xl) auto 0; }
.faq-item { border-bottom: 1px solid var(--color-gray-200); }
.faq-item__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: var(--space-lg) 0; background: none; border: none; text-align: left; cursor: pointer; font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; color: var(--color-navy); }
.faq-item__question:hover { color: var(--color-teal); }
.faq-item__icon { font-size: 1.5rem; font-weight: 300; color: var(--color-teal); }
.faq-item__answer { padding-bottom: var(--space-xl); color: var(--color-gray-600); line-height: 1.8; }
.faq-item__answer[hidden] { display: none; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); margin: var(--space-2xl) 0; }
.category-card { background: var(--color-cream); padding: var(--space-xl); border-radius: var(--radius-md); text-align: center; transition: all 0.2s ease; color: var(--color-charcoal); }
.category-card:hover { background: var(--color-teal); color: var(--color-white); transform: translateY(-4px); }
.category-card__icon { font-size: 2rem; display: block; margin-bottom: var(--space-sm); }
.category-card__name { font-weight: 600; display: block; margin-bottom: var(--space-xs); }
.category-card__count { font-size: 0.8125rem; opacity: 0.7; }
.share-cta { text-align: center; background: var(--color-white); padding: var(--space-2xl); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); max-width: 550px; margin: 0 auto; }
.share-cta h3 { margin-bottom: var(--space-md); }
.share-cta p { color: var(--color-gray-600); margin-bottom: var(--space-xl); }
.back-link { text-align: center; margin-top: var(--space-xl); }
.site-footer { background: var(--color-navy); color: var(--color-white); padding: var(--space-4xl) 0 var(--space-xl); }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); margin-bottom: var(--space-3xl); }
.site-footer__brand img { margin-bottom: var(--space-md); filter: brightness(0) invert(1); }
.site-footer__tagline { color: rgba(255,255,255,0.7); font-size: 0.875rem; max-width: 280px; }
.site-footer__links h4 { color: var(--color-white); font-size: 1rem; margin-bottom: var(--space-lg); }
.site-footer__links ul { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: var(--space-sm); }
.site-footer__links a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.site-footer__links a:hover { color: var(--color-white); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-xl); text-align: center; }
.site-footer__bottom p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin: 0; }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.25rem; }
  .story-arc, .cta-grid, .story-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================================
   REWIRED BOOK SECTION COMPONENT
   =========================================== */
.rewired-section {
  background: var(--cream, #ebe8e1);
  padding: 40px 0;
  position: relative;
  overflow: visible;
}

.rewired-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}

.rewired-book-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rewired-book-image img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rewired-content {
  padding: 20px 0;
  max-width: 500px;
}

.rewired-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 58px;
  color: var(--navy, #2c3e50);
  text-transform: capitalize;
  margin-bottom: 32px;
}

.rewired-content p {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted, #8d939b);
  margin-bottom: 32px;
  opacity: 0.9;
}

.rewired-section .btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
  color: white;
  background: #75a293;
  height: 60px;
  padding: 0 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.rewired-section .btn-teal:hover {
  background: #5a8a7a;
}

.rewired-section .btn-teal svg {
  width: 20px;
  height: 20px;
}

/* Rewired Section Responsive */
@media (max-width: 1024px) {
  .rewired-section .container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rewired-book-image {
    height: 400px;
  }

  .rewired-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 100%;
  }

  .rewired-content h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

/* ===========================================
   HOMEPAGE STYLES - Migrated from index.php
   =========================================== */
  /* ===========================================
     NEW HOME PAGE STYLES - Based on Figma Design
     =========================================== */

  /* Typography Variables - homepage specific (prefixed to avoid conflicts) */
  :root {
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Open Sans", -apple-system, sans-serif;
    --font-button: "Lato", sans-serif;

    /* Homepage-specific colors from Figma (prefixed to avoid overriding global vars) */
    --navy-dark: #23313f;
    --home-cream: #ebe8e1;
    --coral: #e58a6a;
    --coral-light: #f1a37a;
    --teal-green: #75a293;
    --teal-dark: #4a5f5c;
    --home-text-dark: #3d3d3d;
    --home-text-muted: #8d939b;
    --home-text-light: #d1d5dc;
    --quote-blue: #3e5f78;
    --subtitle-gray: #7a8a87;
  }

  /* ===========================================
     HERO SECTION
     =========================================== */
  .home-hero {
    background: var(--navy-dark);
    position: relative;
    min-height: 714px;
    overflow: hidden;
  }

  .home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(https://assets.thetappingsolution.com/images/hero-bg.webp);
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  .home-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44,62,80,0.93);
    z-index: 1;
  }

  .hero-energyman {
    position: absolute;
    top: 32px;
    right: 0;
    width: 534px;
    height: 650px;
    background-image: url(https://assets.thetappingsolution.com/images/hero-energyman.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    z-index: 2;
    pointer-events: none;
  }

  .home-hero .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px 80px;
    text-align: center;
  }

  .hero-content {
    max-width: 896px;
    margin: 0 auto;
  }

  .home-hero h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 72px;
    line-height: 82px;
    color: var(--warm-white);
    margin-bottom: 32px;
  }

  .home-hero .hero-subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 22px;
    line-height: 34px;
    color: var(--home-text-light);
    max-width: 670px;
    margin: 0 auto 32px;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 44px;
  }

  .btn-primary {
    font-family: var(--font-button);
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    background: var(--coral);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-primary:hover {
    background: #d96f54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229,138,106,0.3);
  }

  .btn-outline {
    font-family: var(--font-button);
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    background: rgba(255,255,255,0.05);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    border: 1.667px solid rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.85);
  }

  .hero-stats {
    display: flex;
    gap: 64px;
    justify-content: center;
  }

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

  .hero-stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: var(--coral-light);
    display: block;
  }

  .hero-stat-label {
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: var(--warm-white);
  }

  /* ===========================================
     AS SEEN ON SECTION
     =========================================== */
  .as-seen-on {
    background: var(--warm-white);
    padding: 24px 200px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
  }

  .as-seen-on .label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    color: #6a7282;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 24px;
  }

  .as-seen-on .logos {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1152px;
    margin: 0 auto;
  }

  .as-seen-on .logos img {
    opacity: 0.5;
  }

  /* Logo-specific dimensions - use img selector for proper specificity */
  .as-seen-on img.logo-cnn { height: 28px; width: 61px; }
  .as-seen-on img.logo-foxnews { height: 20px; width: 31px; }
  .as-seen-on img.logo-psychology-today { height: 22px; width: 130px; }
  .as-seen-on img.logo-today { height: 20px; width: 130px; }
  .as-seen-on img.logo-womens-health { height: 20px; width: 128px; }

  @media (max-width: 1200px) {
    .as-seen-on {
      padding: 24px 40px;
    }
  }

  @media (max-width: 768px) {
    .as-seen-on {
      padding: 24px 20px;
    }

    .as-seen-on .logos {
      gap: 24px;
    }

    .as-seen-on .logos img {
      height: 20px;
    }
  }

  /* ===========================================
     REWIRED BOOK SECTION
     =========================================== */
  .rewired-section {
    background: var(--home-cream, #ebe8e1);
    padding: 40px 0;
    position: relative;
    overflow: visible;
  }

  .rewired-section .container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
  }

  .rewired-book-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .rewired-book-image img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .rewired-content {
    padding: 20px 0;
    max-width: 500px;
  }

  .rewired-content h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 42px;
    line-height: 58px;
    color: var(--navy);
    text-transform: capitalize;
    margin-bottom: 32px;
  }

  .rewired-content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    color: var(--text-muted);
    margin-bottom: 32px;
    opacity: 0.9;
  }

  .btn-teal {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    background: var(--teal-green);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
  }

  .btn-teal:hover {
    background: #5A8376;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(117,162,147,0.3);
  }

  .btn-teal svg {
    width: 20px;
    height: 20px;
  }

  /* ===========================================
     TESTIMONIALS SECTION
     =========================================== */
  .testimonials-section {
    background: var(--warm-white, #fffcf5);
    padding: 64px 4%;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 405px);
    gap: 32px;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
  }

  .testimonial-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.1);
  }

  /* Legacy class support for existing markup */
  .testimonial-card .image,
  .testimonial-card__image {
    height: 256px !important;
    min-height: 256px !important;
    max-height: 256px !important;
    overflow: hidden;
  }

  .testimonial-card .image img,
  .testimonial-card__image img {
    width: 100% !important;
    height: 256px !important;
    object-fit: cover !important;
    display: block;
  }

  /* Center Iyanla's face in the image */
  .testimonial-card:nth-child(2) .testimonial-card__image img {
    object-position: center top;
  }

  .testimonial-card .content,
  .testimonial-card__content {
    padding: 32px;
  }

  .testimonial-card .name,
  .testimonial-card__name {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-weight: 700;
    font-size: 32px;
    line-height: 30px;
    color: #4a5f5c;
    text-align: center;
    margin-bottom: 4px;
  }

  .testimonial-card .title,
  .testimonial-card__title {
    font-family: var(--font-body, 'Open Sans', -apple-system, sans-serif);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #7a8a87;
    text-align: center;
    margin-bottom: 24px;
  }

  .testimonial-card .quote,
  .testimonial-card__quote {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #3e5f78;
    text-align: center;
  }

  /* ===========================================
     NEW TO TAPPING SECTION
     =========================================== */
  .new-to-tapping {
    background: #ebe8e1;
    padding: 64px 200px 96px;
    text-align: center;
  }

  .new-to-tapping h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #2c3e50;
    margin-bottom: 16px;
  }

  .new-to-tapping .subtitle {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-size: 22px;
    line-height: 28px;
    color: #4a5565;
    margin-bottom: 72px;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 352px);
    gap: 48px;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto 64px;
  }

  .step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    background: #5b8a7b;
  }

  /* Step icon images from Figma design */
  .step-card img.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 32px;
    object-fit: contain;
  }

  .step-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #2c3e50;
    margin-bottom: 0;
  }

  .step-card p {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4a5565;
    max-width: 320px;
    margin: 0;
  }

  .new-to-tapping .btn-sage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #75a293;
    color: white;
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .new-to-tapping .btn-sage:hover {
    background: #5d8a7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 162, 147, 0.3);
  }

  .new-to-tapping .btn-sage svg {
    width: 20px;
    height: 20px;
  }

  /* ===========================================
     THE SCIENCE SECTION
     =========================================== */
  .science-section {
    background: #fffcf5;
    padding: 100px 200px 64px;
    text-align: center;
  }

  .science-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #2c3e50;
    margin-bottom: 16px;
  }

  .science-section .subtitle,
  .science-section__subtitle {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-size: 22px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 8px;
  }

  .science-section .tagline,
  .science-section__tagline {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #4a5565;
    margin-bottom: 48px;
  }

  .science-grid,
  .science-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 352px);
    gap: 48px;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto 48px;
  }

  .science-card,
  .science-section__card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .science-card .icon,
  .science-section__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .science-card .icon img,
  .science-section__icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .science-card h3,
  .science-section__card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #2c3e50;
    margin: 0;
  }

  .science-card p,
  .science-section__card p {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4a5565;
    max-width: 300px;
    margin: 0;
  }

  .link-coral,
  .science-section__cta {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    color: #e58a6a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
  }

  .link-coral:hover,
  .science-section__cta:hover {
    color: #d96f54;
  }

  .science-section__cta svg {
    width: 20px;
    height: 20px;
  }

  /* Responsive styles for science section */
  @media (max-width: 1200px) {
    .science-section {
      padding: 80px 40px 64px;
    }

    .science-grid,
    .science-section__grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      padding: 0 20px;
    }
  }

  @media (max-width: 768px) {
    .science-section {
      padding: 60px 20px 48px;
    }

    .science-section h2 {
      font-size: 32px;
      line-height: 38px;
    }

    .science-section .subtitle,
    .science-section__subtitle {
      font-size: 18px;
      line-height: 28px;
    }

    .science-section .tagline,
    .science-section__tagline {
      font-size: 16px;
      line-height: 24px;
    }

    .science-grid,
    .science-section__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .science-card h3,
    .science-section__card h3 {
      font-size: 20px;
    }
  }

  /* ===========================================
     VIDEO SECTION
     =========================================== */
  .video-section {
    background: var(--warm-white);
    padding: 64px 4%;
    text-align: center;
  }

  /* Dark variant - matches Figma design */
  .video-section--dark {
    background: #2c3e50;
    padding: 64px 328px;
  }

  .video-section h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .video-section--dark h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #fffcf5;
    margin-bottom: 24px;
  }

  .video-section .subtitle,
  .video-section__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 33px;
    color: var(--text-muted);
    margin-bottom: 32px;
  }

  .video-section--dark .video-section__subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 32.5px;
    color: #d1d5dc;
    margin-bottom: 32px;
  }

  .video-wrapper,
  .video-section__wrapper {
    max-width: 896px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  .video-section--dark .video-section__wrapper {
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    max-width: 896px;
    margin: 0 auto;
  }

  .video-js {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  /* Responsive styles for video section */
  @media (max-width: 1400px) {
    .video-section--dark {
      padding: 64px 100px;
    }
  }

  @media (max-width: 1024px) {
    .video-section--dark {
      padding: 64px 40px;
    }
  }

  @media (max-width: 768px) {
    .video-section--dark {
      padding: 48px 20px;
    }

    .video-section--dark h2 {
      font-size: 32px;
      line-height: 38px;
    }

    .video-section--dark .video-section__subtitle {
      font-size: 18px;
      line-height: 28px;
    }
  }

  /* ===========================================
     WHAT IT HELPS SECTION
     =========================================== */
  .what-helps-section {
    background: var(--warm-white);
    padding: 80px 4%;
  }

  .what-helps-section h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
  }

  .what-helps-section .subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
  }

  .help-grid {
    display: grid;
    grid-template-columns: repeat(3, 363px);
    gap: 32px;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto;
  }

  .help-card {
    background: white;
    border-radius: 16px;
    padding: 52px 24px 32px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }

  .help-card .icon {
    width: 63px;
    height: 63px;
    margin: 0 auto 20px;
  }

  .help-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .help-card .icon.emoji-icon {
    font-size: 48px;
    line-height: 63px;
  }

  .help-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .help-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .help-card .explore {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--coral);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  /* ===========================================
     IMPACT SECTION COMPONENT
     =========================================== */
  .impact-section {
    background: #2c3e50;
    padding: 64px 200px;
    text-align: center;
  }

  .impact-section__container {
    max-width: 1152px;
    margin: 0 auto;
  }

  .impact-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #fffcf5;
    margin-bottom: 48px;
    text-align: center;
  }

  .impact-section__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    justify-content: center;
  }

  .impact-section__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .impact-section__number {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #f1a37a;
    display: block;
  }

  .impact-section__label {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #fffcf5;
    display: block;
  }

  /* Legacy class support for backward compatibility */
  .impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 352px);
    gap: 48px;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto;
  }

  .impact-stat {
    text-align: center;
  }

  .impact-stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: var(--coral-light);
    display: block;
    margin-bottom: 24px;
  }

  .impact-stat-label {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 28px;
    color: rgba(255,255,255,0.85);
  }

  /* Impact Section Responsive */
  @media (max-width: 1200px) {
    .impact-section {
      padding: 64px 40px;
    }

    .impact-section__stats {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .impact-section {
      padding: 48px 20px;
    }

    .impact-section__title {
      font-size: 32px;
      line-height: 38px;
      margin-bottom: 32px;
    }

    .impact-section__stats {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .impact-section__number {
      font-size: 40px;
      line-height: 48px;
    }

    .impact-section__label {
      font-size: 18px;
      line-height: 26px;
    }
  }

  /* ===========================================
     RESEARCH SECTION
     =========================================== */
  .research-section {
    background: #fffcf5;
    padding: 64px 200px 48px;
  }

  .research-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 48px;
  }

  /* New component classes */
  .research-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 363px);
    gap: 32px;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto 48px;
  }

  .research-section__card {
    background: white;
    border: 0.556px solid #e5e7eb;
    border-radius: 10px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .research-section__stat {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #75a293;
    margin: 0;
  }

  .research-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #3e5f78;
    margin: 0;
  }

  .research-section__description {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4a5565;
    margin: 0;
    max-width: 250px;
  }

  .research-section__cta {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    color: #e58a6a;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.2s ease;
  }

  .research-section__cta:hover {
    color: #d96f54;
  }

  .research-section__cta svg {
    width: 20px;
    height: 20px;
  }

  /* Legacy classes for backward compatibility */
  .research-grid {
    display: grid;
    grid-template-columns: repeat(3, 363px);
    gap: 32px;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto 48px;
  }

  .research-card {
    background: white;
    border: 0.556px solid #e5e7eb;
    border-radius: 10px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .research-card .number {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #75a293;
    margin: 0;
  }

  .research-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #3e5f78;
    margin: 0;
  }

  .research-card p {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4a5565;
    margin: 0;
    max-width: 250px;
  }

  /* Responsive styles for research section */
  @media (max-width: 1200px) {
    .research-section {
      padding: 64px 40px 48px;
    }

    .research-section__grid,
    .research-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      padding: 0 20px;
    }
  }

  @media (max-width: 768px) {
    .research-section {
      padding: 48px 20px 40px;
    }

    .research-section h2 {
      font-size: 32px;
      line-height: 38px;
      margin-bottom: 32px;
    }

    .research-section__grid,
    .research-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .research-section__card,
    .research-card {
      padding: 32px 24px;
    }

    .research-section__stat,
    .research-card .number {
      font-size: 40px;
      line-height: 40px;
    }

    .research-section__title,
    .research-card h3 {
      font-size: 18px;
      line-height: 24px;
    }
  }

  /* ===========================================
     FAQ SECTION
     =========================================== */
  .faq-section {
    background: #f2efe9;
    padding: 64px 4% 48px;
  }

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

  .faq-section h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 48px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
  }

  .faq-question {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 24px;
    list-style: none;
    width: 100%;
  }

  .faq-question::-webkit-details-marker {
    display: none;
  }

  .faq-question span {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .faq-q {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #e58a6a;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #666;
    transition: transform 0.2s ease;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    color: #666;
    padding: 0 24px 24px;
  }

  .faq-answer p {
    margin: 0;
  }

  .faq-cta {
    text-align: center;
    margin-top: 32px;
  }

  .faq-cta .link-coral {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .faq-cta .link-coral svg {
    width: 20px;
    height: 20px;
  }

  /* Legacy FAQ styles for backward compatibility */
  .faq-item.open .faq-answer {
    display: block;
  }

  .faq-question .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #666;
  }

  /* FAQ Section Responsive */
  @media (max-width: 768px) {
    .faq-section {
      padding: 48px 4% 32px;
    }

    .faq-section h2 {
      font-size: 32px;
      line-height: 38px;
      margin-bottom: 32px;
    }

    .faq-question {
      font-size: 16px;
      line-height: 24px;
      padding: 20px;
    }

    .faq-answer {
      padding: 0 20px 20px;
      font-size: 15px;
      line-height: 24px;
    }
  }

  /* ===========================================
     FAQ PAGE (Main FAQ page styles)
     =========================================== */
  .faq-page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 6rem 4% 4rem;
    text-align: center;
  }

  .faq-page-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
  }

  .faq-page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .faq-page-content {
    padding: 6rem 4%;
    background: white;
  }

  .faq-page-content .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-category {
    margin-bottom: 4rem;
  }

  .faq-category-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--coral);
    font-family: var(--font-display);
  }

  .faq-page-content .faq-item {
    border-bottom: 1px solid #E5E1DC;
    padding: 2rem 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }

  .faq-page-content .faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: default;
    padding: 0;
  }

  .faq-page-content .faq-question::before {
    content: "Q:";
    color: var(--coral);
    font-family: var(--font-display);
    flex-shrink: 0;
  }

  .faq-page-content .faq-answer {
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 1.05rem;
    padding-left: 2.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .faq-page-content .faq-answer p {
    margin-bottom: 1rem;
  }

  .faq-page-content .faq-answer p:last-child {
    margin-bottom: 0;
  }

  .faq-page-content .faq-answer ul {
    margin: 1rem 0 1rem 1.5rem;
  }

  .faq-page-content .faq-answer li {
    margin-bottom: 0.5rem;
  }

  .faq-page-cta {
    background: var(--warm-white);
    padding: 4rem 4%;
    text-align: center;
  }

  .faq-page-cta h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
  }

  .faq-page-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }

  /* FAQ Page Responsive */
  @media (max-width: 768px) {
    .faq-page-hero {
      padding: 4rem 4% 3rem;
    }

    .faq-page-content .faq-answer {
      padding-left: 0;
    }

    .faq-page-content .faq-question::before {
      display: none;
    }
  }

  /* ===========================================
     CTA FINAL SECTION
     =========================================== */
  .cta-final {
    background: #fffcf5;
    padding: 64px 4%;
    text-align: center;
  }

  .cta-final__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 896px;
    margin: 0 auto;
  }

  /* Legacy support for .container class */
  .cta-final .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 896px;
    margin: 0 auto;
  }

  .cta-final__heading,
  .cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #2c3e50;
    margin: 0;
  }

  .cta-final__description,
  .cta-final p {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #4a5565;
    max-width: 884px;
    margin: 0;
    text-align: center;
  }

  .cta-final__app-preview,
  .app-preview {
    width: 456px;
    max-width: 100%;
    height: auto;
  }

  .cta-final__app-preview img,
  .app-preview img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .cta-final__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #75a293;
    color: white;
    font-family: 'Lato', 'Open Sans', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    height: 60px;
    padding: 0 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .cta-final__btn:hover {
    background: #5d8a7a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 162, 147, 0.3);
  }

  /* Responsive styles for CTA Final Section */
  @media (max-width: 768px) {
    .cta-final {
      padding: 48px 20px;
    }

    .cta-final__container,
    .cta-final .container {
      gap: 24px;
    }

    .cta-final__heading,
    .cta-final h2 {
      font-size: 32px;
      line-height: 38px;
    }

    .cta-final__description,
    .cta-final p {
      font-size: 18px;
      line-height: 26px;
    }

    .cta-final__app-preview,
    .app-preview {
      width: 320px;
    }

    .cta-final__btn {
      height: 54px;
      padding: 0 32px;
      font-size: 16px;
    }
  }

  /* ===========================================
     RESPONSIVE
     =========================================== */
  @media (max-width: 1200px) {
    .testimonials-grid,
    .steps-grid,
    .science-grid,
    .help-grid,
    .impact-stats,
    .research-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      padding: 0 20px;
    }

    .rewired-section .container {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .rewired-book-image {
      height: 400px;
    }

    .rewired-content {
      padding: 40px 20px;
      text-align: center;
    }

    .new-to-tapping {
      padding: 64px 40px 80px;
    }
  }

  @media (max-width: 1200px) {
    .hero-energyman {
      width: 400px;
      height: 500px;
      opacity: 0.15;
    }
  }

  @media (max-width: 768px) {
    .hero-energyman {
      display: none;
    }

    .home-hero h1 {
      font-size: 40px;
      line-height: 48px;
    }

    .home-hero .hero-subtitle {
      font-size: 18px;
      line-height: 28px;
    }

    .home-hero .container {
      padding: 60px 20px;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }

    .hero-stats {
      flex-direction: column;
      gap: 24px;
    }

    .testimonial-card .name {
      font-size: 24px;
    }

    .testimonial-card .quote {
      font-size: 18px;
      line-height: 28px;
    }

    .new-to-tapping h2,
    .science-section h2,
    .video-section h2,
    .what-helps-section h2,
    .impact-section h2,
    .research-section h2,
    .faq-section h2,
    .cta-final h2 {
      font-size: 32px;
      line-height: 38px;
    }

    .rewired-content h2 {
      font-size: 32px;
      line-height: 42px;
    }

    .new-to-tapping {
      padding: 48px 20px 64px;
    }

    .new-to-tapping .subtitle {
      font-size: 18px;
      line-height: 26px;
      margin-bottom: 48px;
    }

    .steps-grid {
      gap: 32px;
      margin-bottom: 48px;
    }

    .step-card .icon {
      width: 50px;
      height: 50px;
      font-size: 22px;
    }

    .step-card img.step-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 24px;
    }

    .step-card h3 {
      font-size: 18px;
    }

    .step-card p {
      font-size: 15px;
    }
  }

  /* ===========================================
     WHAT IT HELPS SECTION COMPONENT (New)
     Based on Figma design node 287-743
     =========================================== */
  .what-it-helps-section {
    background: #f7f5f0;
    padding: 80px 200px;
  }

  .what-it-helps-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 16px;
  }

  .what-it-helps-section__subtitle {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-size: 22px;
    line-height: 28px;
    color: #4a5565;
    text-align: center;
    margin-bottom: 32px;
  }

  .what-it-helps-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 363px);
    gap: 32px;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto;
  }

  .what-it-helps-section__card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 51px 24px 36px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.1);
  }

  .what-it-helps-section__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .what-it-helps-section__icon {
    width: 63px;
    height: 63px;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .what-it-helps-section__icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .what-it-helps-section__card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #2c3e50;
    margin-bottom: 12px;
  }

  .what-it-helps-section__card p {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4a5565;
    margin-bottom: 16px;
    max-width: 289px;
  }

  .what-it-helps-section__link {
    font-family: 'Open Sans', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #e58a6a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
  }

  .what-it-helps-section__card:hover .what-it-helps-section__link {
    color: #d96f54;
  }

  .what-it-helps-section__link svg {
    width: 16px;
    height: 16px;
  }

  /* Responsive styles for what-it-helps section */
  @media (max-width: 1200px) {
    .what-it-helps-section {
      padding: 80px 40px;
    }

    .what-it-helps-section__grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      padding: 0 20px;
    }
  }

  @media (max-width: 768px) {
    .what-it-helps-section {
      padding: 60px 20px;
    }

    .what-it-helps-section h2 {
      font-size: 32px;
      line-height: 38px;
    }

    .what-it-helps-section__subtitle {
      font-size: 18px;
      line-height: 26px;
      margin-bottom: 24px;
    }

    .what-it-helps-section__grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .what-it-helps-section__card {
      padding: 40px 20px 32px;
    }

    .what-it-helps-section__card h3 {
      font-size: 18px;
    }
  }

/* =====================================================
   SCIENCE PAGE SECTIONS

   Note: These sections intentionally use 'Playfair Display' and 'Open Sans'
   directly rather than the site-wide CSS variables (--font-display, --font-body)
   to match the specific Figma design for the Science pages, which has a
   distinct typographic style from the rest of the site.
   ===================================================== */

/* Science Hero Section */
.science-hero-section {
  background: linear-gradient(180deg, #2c3e50 0%, #304659 100%);
  padding: 140px 4% 80px;
}

.science-hero-section__container {
  max-width: 896px;
  margin: 0 auto;
}

.science-hero-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 24px;
}

.science-hero-section__subtitle {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #d1d5dc;
  max-width: 522px;
  margin-bottom: 60px;
}

.science-hero-section__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.science-hero-section__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.science-hero-section__stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: #e58a6a;
}

.science-hero-section__stat-label {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #99a1af;
}

@media (max-width: 768px) {
  .science-hero-section {
    padding: 120px 20px 60px;
  }

  .science-hero-section__title {
    font-size: 36px;
  }

  .science-hero-section__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .science-hero-section__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .science-hero-section__stat-number {
    font-size: 36px;
  }
}

/* Effect Sizes Section */
.effect-sizes-section {
  background: #fffcf5;
  padding: 64px 4%;
}

.effect-sizes-section__container {
  max-width: 896px;
  margin: 0 auto;
}

.effect-sizes-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 12px;
}

.effect-sizes-section__subtitle {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
  text-align: center;
  margin-bottom: 40px;
}

.effect-sizes-section__chart {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.effect-sizes-section__explanation {
  background: #f2efe9;
  border-left: 4px solid #75a293;
  border-radius: 4px;
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.effect-sizes-section__explanation-icon {
  width: 18px;
  height: 28px;
  flex-shrink: 0;
}

.effect-sizes-section__explanation-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.effect-sizes-section__explanation-text strong {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #2c3e50;
}

.effect-sizes-section__explanation-text span {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 19.5px;
  color: #4a5565;
}

.effect-sizes-section__bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.effect-sizes-section__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.effect-sizes-section__label {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #2c3e50;
  width: 192px;
  flex-shrink: 0;
}

.effect-sizes-section__bar-container {
  flex: 1;
  height: 28px;
  background: #e5dfd0;
  border-radius: 14px;
  overflow: hidden;
}

.effect-sizes-section__bar {
  height: 100%;
  border-radius: 14px;
  transition: width 1s ease-out;
}

.effect-sizes-section__bar--app {
  background: linear-gradient(90deg, #d8806d 0%, #c9a882 50%, #7b9b7c 100%);
}

.effect-sizes-section__bar--published {
  background: #2d3e50;
}

.effect-sizes-section__bar--comparison {
  background: #8a8a8a;
}

.effect-sizes-section__value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 64px;
  flex-shrink: 0;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #2c3e50;
}

.effect-sizes-section__legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-top: 16px;
}

.effect-sizes-section__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #4a5565;
}

.effect-sizes-section__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.effect-sizes-section__legend-dot--app {
  background: linear-gradient(180deg, #d8806d 0%, #c9a882 50%, #7b9b7c 100%);
}

.effect-sizes-section__legend-dot--published {
  background: #2d3e50;
}

.effect-sizes-section__legend-dot--comparison {
  background: #8a8a8a;
}

@media (max-width: 768px) {
  .effect-sizes-section {
    padding: 48px 20px;
  }

  .effect-sizes-section__title {
    font-size: 28px;
    line-height: 32px;
  }

  .effect-sizes-section__row {
    flex-wrap: wrap;
  }

  .effect-sizes-section__label {
    width: 100%;
    font-size: 13px;
  }

  .effect-sizes-section__bar-container {
    flex: 1;
    min-width: 150px;
  }

  .effect-sizes-section__value {
    width: auto;
    flex-direction: row;
    gap: 4px;
  }

  .effect-sizes-section__legend {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* Condition Cards Section */
.condition-cards-section {
  background: #ebe8e1;
  padding: 64px 4%;
}

.condition-cards-section__container {
  max-width: 1152px;
  margin: 0 auto;
}

.condition-cards-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 16px;
}

.condition-cards-section__subtitle {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
  text-align: center;
  margin-bottom: 32px;
}

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

.condition-cards-section__card {
  background: #ffffff;
  border: 1px solid #c4d1da;
  border-radius: 8px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.condition-cards-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.condition-cards-section__card--dark {
  background: #2d3e50;
  border-color: #2d3e50;
}

.condition-cards-section__card--dark .condition-cards-section__card-title {
  color: #ffffff;
}

.condition-cards-section__card--dark .condition-cards-section__card-description {
  color: #d1d5dc;
}

.condition-cards-section__card--dark .condition-cards-section__stat strong {
  color: #e58a6a;
}

.condition-cards-section__card--dark .condition-cards-section__stat span {
  color: #99a1af;
}

.condition-cards-section__icon {
  width: 49px;
  height: 49px;
  margin-bottom: 16px;
}

.condition-cards-section__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.condition-cards-section__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #2c3e50;
  margin-bottom: 12px;
}

.condition-cards-section__card-description {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 22.75px;
  color: #4a5565;
  margin-bottom: 24px;
  flex-grow: 1;
}

.condition-cards-section__stats {
  display: flex;
  gap: 32px;
}

.condition-cards-section__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.condition-cards-section__stat strong {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #e58a6a;
}

.condition-cards-section__stat span {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #4a5565;
}

@media (max-width: 1024px) {
  .condition-cards-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .condition-cards-section {
    padding: 48px 20px;
  }

  .condition-cards-section__title {
    font-size: 28px;
  }

  .condition-cards-section__grid {
    grid-template-columns: 1fr;
  }
}

/* Mechanism Cards Section */
.mechanism-cards-section {
  background: #fffcf5;
  padding: 64px 4%;
}

.mechanism-cards-section__container {
  max-width: 1152px;
  margin: 0 auto;
}

.mechanism-cards-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 16px;
}

.mechanism-cards-section__subtitle {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
  text-align: center;
  margin-bottom: 32px;
}

.mechanism-cards-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mechanism-cards-section__card {
  background: #2d3e50;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mechanism-cards-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mechanism-cards-section__icon {
  width: 24px;
  height: 32px;
  margin-bottom: 12px;
}

.mechanism-cards-section__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mechanism-cards-section__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24.75px;
  color: #ffffff;
  margin-bottom: 12px;
}

.mechanism-cards-section__card-description {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 22.75px;
  color: #d1d5dc;
  margin-bottom: 18px;
  flex-grow: 1;
}

.mechanism-cards-section__link {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #e58a6a;
}

@media (max-width: 1024px) {
  .mechanism-cards-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mechanism-cards-section {
    padding: 48px 20px;
  }

  .mechanism-cards-section__title {
    font-size: 28px;
  }

  .mechanism-cards-section__grid {
    grid-template-columns: 1fr;
  }
}

/* Science CTA Section */
.science-cta-section {
  background: #75a293;
  padding: 64px 4%;
}

.science-cta-section__container {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.science-cta-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 24px;
}

.science-cta-section__description {
  margin-bottom: 32px;
}

.science-cta-section__description p {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin: 0;
}

.science-cta-section__button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.science-cta-section__button:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .science-cta-section {
    padding: 48px 20px;
  }

  .science-cta-section__title {
    font-size: 32px;
  }

  .science-cta-section__description {
    font-size: 14px;
  }
}

/* ===========================================
   HOW TAPPING WORKS PAGE COMPONENTS
   =========================================== */

/* HTW Hero Section */
.htw-hero {
  background: linear-gradient(135deg, #1a2a3a 0%, #2d4a5e 100%);
  padding: 140px 24px 64px;
  color: white;
}

.htw-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.htw-hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.htw-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}

.htw-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  max-width: 700px;
}

/* HTW 60-Second Version Section */
.htw-quick {
  background: #fffcf5;
  padding: 64px 24px;
}

.htw-quick__container {
  max-width: 768px;
  margin: 0 auto;
}

.htw-quick__card {
  background: white;
  border-left: 4px solid #6fa8a3;
  border-radius: 10px;
  padding: 40px;
}

.htw-quick__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.875rem;
  color: #2c3e50;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.htw-quick__icon {
  width: 25px;
  height: 32px;
  flex-shrink: 0;
}

.htw-quick__content {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: #5f6f78;
  margin: 0;
}

/* HTW Steps Section */
.htw-steps {
  background: #ebe8e1;
  padding: 64px 24px;
}

.htw-steps__container {
  max-width: 900px;
  margin: 0 auto;
}

.htw-steps__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.1;
  color: #2c3e50;
  margin-bottom: 48px;
}

.htw-steps__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.htw-steps__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.htw-steps__number {
  width: 48px;
  height: 48px;
  background: #2c3e50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  flex-shrink: 0;
}

.htw-steps__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.htw-steps__item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.33;
  color: #2c3e50;
  margin: 0;
}

.htw-steps__description {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: #5f6f78;
  margin: 0;
}

.htw-steps__science {
  background: #f2f6f4;
  border-left: 4px solid #6fa8a3;
  border-radius: 4px;
  padding: 20px 20px 20px 24px;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43;
  color: #2c3e50;
}

.htw-steps__science strong {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* HTW Tapping Points Section */
.htw-points {
  background: #fffcf5;
  padding: 64px 24px;
}

.htw-points__container {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.htw-points__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: #2c3e50;
  margin-bottom: 48px;
}

.htw-points__illustration {
  max-width: 672px;
  margin: 0 auto;
}

.htw-points__illustration img {
  width: 100%;
  height: auto;
}

/* HTW Stats Section */
.htw-stats {
  background: #2c3e50;
  padding: 80px 24px;
  color: white;
}

.htw-stats__container {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.htw-stats__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: #fffcf5;
  margin-bottom: 16px;
}

.htw-stats__subtitle {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #d1d5dc;
  margin-bottom: 32px;
}

.htw-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.htw-stats__card {
  background: #1a2936;
  border: 1px solid #2a3f52;
  padding: 32px;
  border-radius: 10px;
  text-align: center;
}

.htw-stats__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: #e58a6a;
  font-weight: 400;
  display: block;
  margin-bottom: 16px;
}

.htw-stats__label {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43;
  color: #d1d5dc;
}

/* HTW Go Deeper Section */
.htw-deeper {
  background: #fffcf5;
  padding: 80px 24px;
}

.htw-deeper__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.htw-deeper__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #1a2a3a;
  margin-bottom: 8px;
}

.htw-deeper__subtitle {
  color: #6b6b6b;
  margin-bottom: 48px;
}

.htw-deeper__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.htw-deeper__card {
  background: white;
  border: 1px solid #c4d1da;
  border-radius: 10px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.htw-deeper__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.htw-deeper__icon {
  width: 63px;
  height: 63px;
  margin-bottom: 16px;
}

.htw-deeper__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.htw-deeper__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: #2c3e50;
  margin: 0 0 8px 0;
}

.htw-deeper__card-description {
  font-family: 'Open Sans', sans-serif;
  color: #5f6f78;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* HTW CTA Section */
.htw-cta {
  background: #fffcf5;
  padding: 0 24px 80px;
  text-align: center;
}

.htw-cta__container {
  max-width: 672px;
  margin: 0 auto;
  background: #2c3e50;
  border-radius: 16px;
  padding: 48px;
}

.htw-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 36px;
  color: #fffcf5;
  margin-bottom: 16px;
}

.htw-cta__description {
  font-family: 'Open Sans', sans-serif;
  color: #d1d5dc;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 32px;
}

.htw-cta__button {
  display: inline-block;
  background: #e58a6a;
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.htw-cta__button:hover {
  background: #d96f54;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 138, 106, 0.3);
  color: white;
}

/* HTW Responsive Styles */
@media (max-width: 768px) {
  .htw-hero {
    padding: 120px 20px 48px;
  }

  .htw-quick {
    padding: 48px 20px;
  }

  .htw-quick__card {
    padding: 24px;
  }

  .htw-quick__title {
    font-size: 1.5rem;
  }

  .htw-steps {
    padding: 48px 20px;
  }

  .htw-steps__title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  .htw-steps__list {
    gap: 32px;
  }

  .htw-steps__item {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .htw-steps__number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .htw-steps__item-title {
    font-size: 1.25rem;
  }

  .htw-deeper__grid {
    grid-template-columns: 1fr;
  }

  .htw-deeper__card {
    padding: 20px;
  }

  .htw-deeper__icon {
    width: 60px;
    height: 60px;
  }

  .htw-stats {
    padding: 64px 20px;
  }

  .htw-stats__title {
    font-size: 2rem;
  }

  .htw-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .htw-stats__card {
    padding: 24px 16px;
  }

  .htw-stats__number {
    font-size: 2.25rem;
  }

  .htw-cta {
    padding: 0 20px 64px;
  }

  .htw-cta__container {
    padding: 32px 24px;
  }

  .htw-cta__title {
    font-size: 28px;
  }

  .htw-cta__description {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ========================================
   AMYGDALA PAGE STYLES
   ======================================== */

/* Amygdala Hero Section */
.amygdala-hero {
  background: linear-gradient(156deg, #2c3e50 0%, #304659 100%);
  padding: 64px 24px 80px;
}

.amygdala-hero__container {
  max-width: 896px;
  margin: 0 auto;
}

.amygdala-hero__badge {
  display: inline-block;
  background: #3a4c5e;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.amygdala-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 48px;
  color: #fffcf5;
  margin-bottom: 24px;
}

.amygdala-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 88px;
}

.amygdala-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.amygdala-hero__state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.amygdala-hero__icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amygdala-hero__icon--stressed {
  background: #574346;
  animation: amygdala-pulse-stress 1.5s infinite;
}

.amygdala-hero__icon--calm {
  background: #3a514e;
  animation: amygdala-pulse-calm 3s infinite;
}

@keyframes amygdala-pulse-stress {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 123, 92, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 0 30px 10px rgba(224, 123, 92, 0.3); }
}

@keyframes amygdala-pulse-calm {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(135, 168, 120, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 20px 5px rgba(135, 168, 120, 0.3); }
}

.amygdala-hero__icon img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.amygdala-hero__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: white;
}

.amygdala-hero__arrow {
  color: #e58a6a;
  animation: amygdala-arrow-move 1.5s infinite;
}

@keyframes amygdala-arrow-move {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(10px); opacity: 1; }
}

/* Amygdala Quick Section */
.amygdala-quick {
  background: #fffcf5;
  padding: 80px 24px;
}

.amygdala-quick__container {
  max-width: 768px;
  margin: 0 auto;
}

.amygdala-quick__card {
  background: white;
  border-left: 4px solid #6fa8a3;
  border-radius: 10px;
  padding: 40px;
}

.amygdala-quick__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #2c3e50;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amygdala-quick__title img {
  flex-shrink: 0;
}

.amygdala-quick__content {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #5f6f78;
  margin: 0;
}

/* Amygdala Cascade Section */
.amygdala-cascade {
  background: #f4f1e9;
  padding: 80px 24px;
}

.amygdala-cascade__container {
  max-width: 1088px;
  margin: 0 auto;
  text-align: center;
}

.amygdala-cascade__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 36px;
  color: #2c3e50;
  margin-bottom: 16px;
}

.amygdala-cascade__intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  max-width: 707px;
  margin: 0 auto 48px;
}

.amygdala-cascade__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.amygdala-cascade__card {
  text-align: center;
}

.amygdala-cascade__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.amygdala-cascade__icon img {
  width: 56px;
  height: 84px;
  object-fit: contain;
}

.amygdala-cascade__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.amygdala-cascade__card-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
  margin: 0;
}

.amygdala-cascade__outro {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  max-width: 756px;
  margin: 0 auto;
}

/* Amygdala Timeline Section */
.amygdala-timeline {
  background: #fffcf5;
  padding: 80px 24px;
}

.amygdala-timeline__container {
  max-width: 832px;
  margin: 0 auto;
}

.amygdala-timeline__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 36px;
  color: #2c3e50;
  margin-bottom: 48px;
}

.amygdala-timeline__content {
  display: flex;
  gap: 20px;
}

.amygdala-timeline__scale {
  width: 12px;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
}

.amygdala-timeline__scale::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 4px;
  width: 4px;
  background: linear-gradient(to bottom, #ff8904 0%, #ffb86a 50%, #05df72 100%);
  border-radius: 2px;
}

.amygdala-timeline__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
}

.amygdala-timeline__dot--1 {
  top: 0;
  background: #fe8c0b;
}

.amygdala-timeline__dot--2 {
  top: 28.57%;
  background: #ffa33d;
}

.amygdala-timeline__dot--3 {
  top: 57.14%;
  background: #ddbd6b;
}

.amygdala-timeline__dot--4 {
  top: 85.71%;
  background: #4ed470;
}

.amygdala-timeline__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.amygdala-timeline__step {
  padding-left: 12px;
}

.amygdala-timeline__step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #2c3e50;
  margin-bottom: 12px;
}

.amygdala-timeline__step-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  margin: 0;
}

/* Amygdala Evidence Section */
.amygdala-evidence {
  background: #ebe8e1;
  padding: 80px 24px;
}

.amygdala-evidence__container {
  max-width: 832px;
  margin: 0 auto;
}

.amygdala-evidence__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 36px;
  color: #2c3e50;
  margin-bottom: 32px;
}

.amygdala-evidence__subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #2c3e50;
  margin-bottom: 16px;
}

.amygdala-evidence__intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  margin-bottom: 24px;
}

.amygdala-evidence__quote {
  background: #f9f9f9;
  border-left: 4px solid #75a293;
  border-radius: 4px;
  padding: 24px 24px 24px 28px;
  margin: 0 0 24px;
}

.amygdala-evidence__quote p {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 30px;
  color: #4a5565;
  margin: 0;
}

.amygdala-evidence__outro {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  margin: 0;
}

/* Amygdala Quote Section */
.amygdala-quote {
  background: #fffcf5;
  padding: 40px 24px;
}

.amygdala-quote__container {
  max-width: 832px;
  margin: 0 auto;
}

.amygdala-quote__card {
  background: #2c3e50;
  border-radius: 8px;
  padding: 48px;
  text-align: center;
}

.amygdala-quote__text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: #fffcf5;
  margin: 0 0 20px;
}

.amygdala-quote__author {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* Amygdala Benefits Section */
.amygdala-benefits {
  background: #fffcf5;
  padding: 40px 24px 80px;
}

.amygdala-benefits__container {
  max-width: 832px;
  margin: 0 auto;
}

.amygdala-benefits__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 36px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.amygdala-benefits__intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 32px;
}

.amygdala-benefits__list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 32px;
}

.amygdala-benefits__item {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 16px;
}

.amygdala-benefits__item:last-child {
  margin-bottom: 0;
}

.amygdala-benefits__item strong {
  font-weight: 700;
}

.amygdala-benefits__back {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #e58a6a;
  text-decoration: none;
}

.amygdala-benefits__back:hover {
  text-decoration: underline;
}

/* Amygdala Responsive Styles */
@media (max-width: 768px) {
  .amygdala-hero {
    padding: 48px 20px 64px;
  }

  .amygdala-hero__title {
    font-size: 36px;
    line-height: 40px;
  }

  .amygdala-hero__subtitle {
    margin-bottom: 48px;
  }

  .amygdala-hero__visual {
    flex-direction: column;
    gap: 32px;
  }

  .amygdala-hero__arrow {
    transform: rotate(90deg);
    animation: amygdala-arrow-move-mobile 1.5s infinite;
  }

  @keyframes amygdala-arrow-move-mobile {
    0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.5; }
    50% { transform: rotate(90deg) translateX(10px); opacity: 1; }
  }

  .amygdala-hero__icon {
    width: 120px;
    height: 120px;
  }

  .amygdala-hero__icon img {
    width: 64px;
    height: 64px;
  }

  .amygdala-quick {
    padding: 48px 20px;
  }

  .amygdala-quick__card {
    padding: 24px;
  }

  .amygdala-quick__title {
    font-size: 24px;
  }

  .amygdala-cascade {
    padding: 64px 20px;
  }

  .amygdala-cascade__title {
    font-size: 32px;
  }

  .amygdala-cascade__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amygdala-timeline {
    padding: 64px 20px;
  }

  .amygdala-timeline__title {
    font-size: 32px;
  }

  .amygdala-evidence {
    padding: 64px 20px;
  }

  .amygdala-evidence__title {
    font-size: 32px;
  }

  .amygdala-quote {
    padding: 32px 20px;
  }

  .amygdala-quote__card {
    padding: 32px 24px;
  }

  .amygdala-quote__text {
    font-size: 20px;
    line-height: 28px;
  }

  .amygdala-benefits {
    padding: 32px 20px 64px;
  }

  .amygdala-benefits__title {
    font-size: 32px;
  }
}

/* ========================================
   SCIENCE BREADCRUMB
   ======================================== */
.science-breadcrumb {
  background: #fffcf5;
  border-bottom: 1px solid #c4d1da;
  padding: 12px 24px;
}

.science-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.science-breadcrumb__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.6px;
  line-height: 20px;
  color: #9ea4a7;
  text-decoration: none;
  transition: color 0.2s;
}

.science-breadcrumb__link:hover {
  color: #75a293;
}

.science-breadcrumb__separator {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.6px;
  color: #9ea4a7;
}

.science-breadcrumb__current {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.6px;
  line-height: 20px;
  color: #2c3e50;
}

/* ========================================
   CORTISOL HERO SECTION
   ======================================== */
.cortisol-hero {
  background: linear-gradient(156deg, #2c3e50 0%, #304659 100%);
  padding: 64px 24px 80px;
}

.cortisol-hero__container {
  max-width: 896px;
  margin: 0 auto;
}

.cortisol-hero__badge {
  display: inline-block;
  background: #3a4c5e;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 20px;
  border-radius: 24px;
  margin-bottom: 32px;
}

.cortisol-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 48px;
  color: #fffcf5;
  margin-bottom: 8px;
}

.cortisol-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 88px;
}

.cortisol-hero__stat-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cortisol-hero__stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 128px;
  line-height: 128px;
  color: #e58a6a;
}

.cortisol-hero__stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: white;
  opacity: 0.9;
}

/* Cortisol Hero Mobile Styles */
@media (max-width: 768px) {
  .cortisol-hero {
    padding: 48px 20px 64px;
  }

  .cortisol-hero__title {
    font-size: 36px;
    line-height: 40px;
  }

  .cortisol-hero__subtitle {
    margin-bottom: 48px;
  }

  .cortisol-hero__stat {
    font-size: 80px;
    line-height: 80px;
  }

  .cortisol-hero__stat-container {
    gap: 16px;
  }
}

/* Cortisol Studies Section */
.cortisol-studies {
  background: #f4f1e9;
  padding: 48px 24px;
}

.cortisol-studies__container {
  max-width: 1024px;
  margin: 0 auto;
}

.cortisol-studies__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
}

.cortisol-studies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.cortisol-studies__card {
  background: #ffffff;
  border: 1px solid #c4d1da;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.cortisol-studies__card-citation {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.cortisol-studies__card-percentage {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: #e58a6a;
  margin-bottom: 12px;
}

.cortisol-studies__card-description {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

.cortisol-studies__callout {
  background: #fef7f0;
  border-left: 3px solid #e58a6a;
  border-radius: 4px;
  padding: 20px 24px;
}

.cortisol-studies__callout-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 24px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.cortisol-studies__callout-text {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #4a5565;
}

/* Cortisol Studies Mobile Styles */
@media (max-width: 768px) {
  .cortisol-studies {
    padding: 48px 20px;
  }

  .cortisol-studies__title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 32px;
  }

  .cortisol-studies__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .cortisol-studies__card-percentage {
    font-size: 48px;
  }

  .cortisol-studies__callout {
    padding: 16px 20px;
  }
}

/* ========================================
   CORTISOL QUICK SECTION
   ======================================== */
.cortisol-quick {
  background: #fffcf5;
  padding: 80px 24px;
}

.cortisol-quick__container {
  max-width: 768px;
  margin: 0 auto;
}

.cortisol-quick__card {
  background: #ffffff;
  border-left: 3.8px solid #6fa8a3;
  border-radius: 10px;
  padding: 40px;
}

.cortisol-quick__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #2c3e50;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cortisol-quick__content {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #5f6f78;
  margin: 0;
}

@media (max-width: 768px) {
  .cortisol-quick {
    padding: 48px 20px;
  }

  .cortisol-quick__card {
    padding: 24px;
  }

  .cortisol-quick__title {
    font-size: 24px;
    line-height: 30px;
  }

  .cortisol-quick__content {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ========================================
   CORTISOL EFFECTS SECTION
   ======================================== */
.cortisol-effects {
  background: #fffcf5;
  padding: 60px 24px;
}

.cortisol-effects__container {
  max-width: 896px;
  margin: 0 auto;
}

.cortisol-effects__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.cortisol-effects__card {
  background: #f5f5f0;
  border-radius: 10px;
  padding: 40px;
}

.cortisol-effects__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #6b7c76;
  margin-bottom: 32px;
}

.cortisol-effects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
}

.cortisol-effects__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cortisol-effects__icon {
  flex-shrink: 0;
  width: 29px;
  height: 43px;
}

.cortisol-effects__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cortisol-effects__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7c76;
  margin: 0;
}

.cortisol-effects__text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .cortisol-effects {
    padding: 48px 20px;
  }

  .cortisol-effects__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .cortisol-effects__card {
    padding: 24px;
  }

  .cortisol-effects__subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .cortisol-effects__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========================================
   CORTISOL PROGRESS SECTION
   ======================================== */
.cortisol-progress {
  background: #fffcf5;
  padding: 48px 24px 80px;
}

.cortisol-progress__container {
  max-width: 896px;
  margin: 0 auto;
}

.cortisol-progress__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 48px;
}

.cortisol-progress__card {
  background: #f5f5f0;
  border-radius: 10px;
  padding: 48px;
}

.cortisol-progress__subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 24px;
}

.cortisol-progress__visualization {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.cortisol-progress__endpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.cortisol-progress__label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 4px;
}

.cortisol-progress__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: #e58a6a;
}

.cortisol-progress__bar-wrapper {
  flex: 1;
  height: 40px;
  background: #e8e8e0;
  border-radius: 20px;
  overflow: hidden;
}

.cortisol-progress__bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #d47a5c, #7fa383);
  border-radius: 20px;
}

.cortisol-progress__footer {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #9ea4a7;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .cortisol-progress {
    padding: 48px 20px 64px;
  }

  .cortisol-progress__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .cortisol-progress__card {
    padding: 24px;
  }

  .cortisol-progress__subtitle {
    font-size: 20px;
  }

  .cortisol-progress__visualization {
    flex-direction: column;
    gap: 16px;
  }

  .cortisol-progress__bar-wrapper {
    width: 100%;
    height: 30px;
  }

  .cortisol-progress__endpoint {
    flex-direction: row;
    gap: 12px;
  }

  .cortisol-progress__value {
    font-size: 24px;
  }
}

/* ========================================
   CORTISOL MATTERS SECTION
   ======================================== */
.cortisol-matters {
  background: #ebe8e1;
  padding: 64px 24px;
}

.cortisol-matters__container {
  max-width: 896px;
  margin: 0 auto;
}

.cortisol-matters__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 32px;
  line-height: 1.2;
}

.cortisol-matters__intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 33px;
  color: #6b7c76;
  margin-bottom: 24px;
}

.cortisol-matters__list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}

.cortisol-matters__item {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.cortisol-matters__item:last-child {
  margin-bottom: 0;
}

.cortisol-matters__item strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .cortisol-matters {
    padding: 48px 20px;
  }

  .cortisol-matters__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .cortisol-matters__intro {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .cortisol-matters__item {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

/* ========================================
   CORTISOL CASCADE SECTION
   ======================================== */
.cortisol-cascade {
  background: #fffcf5;
  padding: 48px 24px 80px;
}

.cortisol-cascade__container {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.cortisol-cascade__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
}

.cortisol-cascade__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #6b7c76;
  margin-bottom: 68px;
}

.cortisol-cascade__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cortisol-cascade__card {
  background: #ffffff;
  border: 1px solid #c4d1da;
  border-radius: 10px;
  padding: 31px;
  text-align: center;
}

.cortisol-cascade__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.cortisol-cascade__icon img {
  width: 63px;
  height: 63px;
  object-fit: contain;
}

.cortisol-cascade__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.cortisol-cascade__card-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: #6b7c76;
  margin: 0;
}

@media (max-width: 992px) {
  .cortisol-cascade__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cortisol-cascade {
    padding: 48px 20px 64px;
  }

  .cortisol-cascade__title {
    font-size: 28px;
  }

  .cortisol-cascade__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .cortisol-cascade__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cortisol-cascade__card {
    padding: 24px 20px;
  }

  .cortisol-cascade__card-title {
    font-size: 20px;
  }
}

/* ========================================
   CORTISOL BACK LINK SECTION
   ======================================== */
.cortisol-back {
  background: #fffcf5;
  padding: 32px 24px;
}

.cortisol-back__container {
  max-width: 1024px;
  margin: 0 auto;
}

.cortisol-back__link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  color: #e58a6a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cortisol-back__link:hover {
  text-decoration: underline;
}

/* ========================================
   MEMORY RECONSOLIDATION PAGE STYLES
   ======================================== */

/* Memory Hero Section */
.memory-hero {
  background: linear-gradient(157deg, #2c3e50 0%, #304659 100%);
  padding: 64px 24px 48px;
}

.memory-hero__container {
  max-width: 896px;
  margin: 0 auto;
}

.memory-hero__badge {
  display: inline-block;
  background: #3a4c5e;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 20px;
  border-radius: 9999px;
  margin-bottom: 32px;
}

.memory-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 48px;
  color: #fffcf5;
  margin-bottom: 16px;
}

.memory-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .memory-hero {
    padding: 48px 20px 64px;
  }

  .memory-hero__title {
    font-size: 36px;
    line-height: 40px;
  }

  .memory-hero__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Memory Stages Section */
.memory-stages {
  background: linear-gradient(157deg, #2c3e50 0%, #304659 100%);
  padding: 48px 24px 80px;
}

.memory-stages__container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.memory-stages__card {
  background: #3d4f5e;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  width: 276px;
  min-height: 146px;
  flex-shrink: 0;
}

.memory-stages__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.memory-stages__icon img {
  width: 36px;
  height: 40px;
  object-fit: contain;
}

.memory-stages__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: white;
  margin-bottom: 4px;
}

.memory-stages__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.memory-stages__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1300px) {
  .memory-stages__container {
    flex-wrap: wrap;
    max-width: 900px;
  }

  .memory-stages__card {
    flex-shrink: 1;
    width: calc(50% - 40px);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .memory-stages__container {
    flex-direction: column;
    gap: 16px;
  }

  .memory-stages__card {
    width: 100%;
    max-width: 300px;
  }

  .memory-stages__arrow {
    transform: rotate(90deg);
  }
}

/* Memory Quick Section */
.memory-quick {
  background: #fffcf5;
  padding: 80px 24px;
}

.memory-quick__container {
  max-width: 768px;
  margin: 0 auto;
}

.memory-quick__card {
  background: #ffffff;
  border-left: 3.8px solid #6fa8a3;
  border-radius: 10px;
  padding: 40px;
}

.memory-quick__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #2c3e50;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.memory-quick__icon {
  width: 25px;
  height: 32px;
  object-fit: contain;
}

.memory-quick__content {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #5a5a5a;
  margin: 0;
}

@media (max-width: 768px) {
  .memory-quick {
    padding: 48px 20px;
  }

  .memory-quick__card {
    padding: 24px;
  }

  .memory-quick__title {
    font-size: 24px;
    line-height: 30px;
  }

  .memory-quick__content {
    font-size: 15px;
    line-height: 24px;
  }
}

/* Memory Process Section */
.memory-process {
  background: #f4f1e9;
  padding: 64px 24px;
}

.memory-process__container {
  max-width: 1152px;
  margin: 0 auto;
}

.memory-process__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  color: #2c3e50;
  margin-bottom: 64px;
}

.memory-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.memory-process__card {
  background: #ffffff;
  border: 1px solid #dee5e8;
  border-radius: 16px;
  padding: 31px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.memory-process__icon {
  margin-bottom: 24px;
}

.memory-process__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.memory-process__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #2c3e50;
  margin-bottom: 16px;
}

.memory-process__card-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #6b6b6b;
  margin: 0;
}

@media (max-width: 992px) {
  .memory-process__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .memory-process {
    padding: 48px 20px;
  }

  .memory-process__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 40px;
  }

  .memory-process__card {
    padding: 24px;
  }

  .memory-process__card-title {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Memory Quote Section */
.memory-quote {
  background: #fffcf5;
  padding: 80px 24px;
}

.memory-quote__container {
  max-width: 976px;
  margin: 0 auto;
}

.memory-quote__card {
  background: #e8f2ee;
  border-left: 6px solid #75a293;
  border-radius: 0 16px 16px 0;
  padding: 48px 48px 48px 54px;
  margin: 0;
}

.memory-quote__text {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 20px;
  line-height: 32.5px;
  color: #6b6b6b;
  margin: 0 0 24px 0;
}

.memory-quote__source {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #999;
  display: block;
}

@media (max-width: 768px) {
  .memory-quote {
    padding: 48px 20px;
  }

  .memory-quote__card {
    padding: 24px 28px;
  }

  .memory-quote__text {
    font-size: 16px;
    line-height: 26px;
  }

  .memory-quote__source {
    font-size: 14px;
  }
}

/* Memory Comparison Section */
.memory-comparison {
  background: #f4f1e9;
  padding: 64px 24px;
}

.memory-comparison__container {
  max-width: 1152px;
  margin: 0 auto;
}

.memory-comparison__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  color: #2c3e50;
  margin-bottom: 48px;
}

.memory-comparison__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.memory-comparison__card {
  background: white;
  border-radius: 16px;
  padding: 34px;
}

.memory-comparison__card--good {
  border: 2px solid #75a293;
}

.memory-comparison__card--bad {
  border: 2px solid #e58a6a;
}

.memory-comparison__card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.memory-comparison__icon {
  flex-shrink: 0;
}

.memory-comparison__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #2c3e50;
}

.memory-comparison__sublabel {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #6b6b6b;
}

.memory-comparison__list {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.memory-comparison__list li {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #2c3e50;
  margin-bottom: 12px;
}

.memory-comparison__list li:last-child {
  margin-bottom: 0;
}

.memory-comparison__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #3e5f78;
  border-radius: 50%;
  margin: 80px -20px 0;
  z-index: 1;
  position: relative;
}

.memory-comparison__vs span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: white;
}

@media (max-width: 992px) {
  .memory-comparison__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .memory-comparison__vs {
    margin: 0 auto;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .memory-comparison {
    padding: 48px 20px;
  }

  .memory-comparison__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .memory-comparison__card {
    padding: 24px;
  }
}

/* Memory Lasting Results Section */
.memory-lasting {
  background: #fffcf5;
  padding: 64px 24px;
}

.memory-lasting__container {
  max-width: 720px;
  margin: 0 auto;
}

.memory-lasting__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.memory-lasting__intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 32px;
}

.memory-lasting__list {
  list-style: disc;
  margin: 0;
  padding-left: 22px;
}

.memory-lasting__item {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
  margin-bottom: 24px;
}

.memory-lasting__item:last-child {
  margin-bottom: 0;
}

.memory-lasting__item strong {
  color: #2c3e50;
}

@media (max-width: 768px) {
  .memory-lasting {
    padding: 48px 20px;
  }

  .memory-lasting__title {
    font-size: 32px;
    line-height: 36px;
  }

  .memory-lasting__intro {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Memory Research Section */
.memory-research {
  background: #fffcf5;
  padding: 64px 24px 80px;
}

.memory-research__container {
  max-width: 1152px;
  margin: 0 auto;
}

.memory-research__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  color: #3d4a54;
  margin-bottom: 48px;
}

.memory-research__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.memory-research__card {
  background: #f2efe9;
  border-radius: 10px;
  padding: 32px;
}

.memory-research__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #3d4a54;
  margin-bottom: 16px;
}

.memory-research__card-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #6b6b6b;
  margin: 0;
}

.memory-research__callout {
  background: #fef7f0;
  border-left: 3px solid #e58a6a;
  border-radius: 10px;
  padding: 24px 24px 24px 27px;
}

.memory-research__callout-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #3d4a54;
  margin-bottom: 12px;
}

.memory-research__callout-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #6b6b6b;
  margin: 0;
}

@media (max-width: 768px) {
  .memory-research {
    padding: 48px 20px 64px;
  }

  .memory-research__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .memory-research__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .memory-research__card {
    padding: 24px;
  }

  .memory-research__card-title {
    font-size: 18px;
  }

  .memory-research__callout {
    padding: 20px 24px;
  }
}

/* Memory Back Link Section */
.memory-back {
  background: #fffcf5;
  padding: 32px 24px 64px;
}

.memory-back__container {
  max-width: 1024px;
  margin: 0 auto;
}

.memory-back__link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  color: #e58a6a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.memory-back__link:hover {
  text-decoration: underline;
}

/* ========================================
   POLYVAGAL MATTERS SECTION
   ======================================== */
.polyvagal-matters {
  background: #fffcf5;
  padding: 64px 24px;
}

.polyvagal-matters__container {
  max-width: 896px;
  margin: 0 auto;
}

.polyvagal-matters__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #3d4a5c;
  margin-bottom: 32px;
  line-height: 1.2;
  text-align: left;
}

.polyvagal-matters__list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}

.polyvagal-matters__list::marker {
  color: #3d4a5c;
  font-size: 20px;
}

.polyvagal-matters__item {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 30.6px;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.polyvagal-matters__item::marker {
  color: #3d4a5c;
  font-weight: 700;
  font-size: 20px;
}

.polyvagal-matters__item:last-child {
  margin-bottom: 0;
}

.polyvagal-matters__item strong {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #3d4a5c;
}

@media (max-width: 768px) {
  .polyvagal-matters {
    padding: 48px 20px;
  }

  .polyvagal-matters__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .polyvagal-matters__item {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .polyvagal-matters__item strong {
    font-size: 16px;
  }
}

/* ========================================
   POLYVAGAL QUICK SECTION
   ======================================== */
.polyvagal-quick {
  background: #fffcf5;
  padding: 64px 24px;
}

.polyvagal-quick__container {
  max-width: 767px;
  margin: 0 auto;
}

.polyvagal-quick__card {
  background: white;
  border-left: 3.8px solid #6fa8a3;
  border-radius: 10px;
  padding: 40px;
}

.polyvagal-quick__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 24px 0;
  line-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.polyvagal-quick__title img {
  flex-shrink: 0;
}

.polyvagal-quick__content {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 32.4px;
  color: #5a5a5a;
  margin: 0;
}

@media (max-width: 768px) {
  .polyvagal-quick {
    padding: 48px 20px;
  }

  .polyvagal-quick__card {
    padding: 24px;
  }

  .polyvagal-quick__title {
    font-size: 24px;
    line-height: 30px;
  }

  .polyvagal-quick__content {
    font-size: 16px;
    line-height: 28px;
  }
}

/* ========================================
   POLYVAGAL BACK SECTION
   ======================================== */
.polyvagal-back {
  background-color: #fffcf5;
  padding: 40px 20px;
}

.polyvagal-back__container {
  max-width: 1200px;
  margin: 0 auto;
}

.polyvagal-back__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e88166;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.polyvagal-back__link:hover {
  opacity: 0.8;
}

.polyvagal-back__link svg {
  flex-shrink: 0;
}

.polyvagal-back__icon {
  flex-shrink: 0;
}

/* ========================================
   POLYVAGAL HERO SECTION
   ======================================== */
.polyvagal-hero {
  background: #2e4154;
  padding: 80px 24px 64px;
}

.polyvagal-hero__container {
  max-width: 896px;
  margin: 0 auto;
  padding-left: 0;
}

.polyvagal-hero__badge {
  display: inline-block;
  background: #3a4c5e;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 9999px;
  margin-bottom: 12px;
  line-height: 20px;
}

.polyvagal-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 57.6px;
}

.polyvagal-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 64px 0;
  line-height: 28px;
}

.polyvagal-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.polyvagal-hero__state {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.polyvagal-hero__circle {
  width: 160px;
  height: 160px;
  background: #3d4f5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.polyvagal-hero__circle img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.polyvagal-hero__heart {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -17px;
  width: 34px;
  height: 33px;
  object-fit: contain;
}

.polyvagal-hero__heart--top-left {
  right: auto;
  left: -17px;
}

.polyvagal-hero__scale {
  display: flex;
  align-items: center;
}

.polyvagal-hero__scale-bar {
  width: 204px;
  height: 6px;
  background: linear-gradient(90deg, #ff8904 0%, #ffb86a 50%, #05df72 100%);
  border-radius: 9999px;
  position: relative;
}

.polyvagal-hero__scale-bar::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #fe8c0b;
  border-radius: 50%;
}

.polyvagal-hero__scale-bar::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #4ed470;
  border-radius: 50%;
}

.polyvagal-hero__connection {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 28px;
  text-align: center;
}

@media (max-width: 768px) {
  .polyvagal-hero {
    padding: 60px 20px 48px;
  }

  .polyvagal-hero__title {
    font-size: 32px;
    line-height: 40px;
  }

  .polyvagal-hero__subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .polyvagal-hero__circle {
    width: 120px;
    height: 120px;
  }

  .polyvagal-hero__circle img {
    width: 64px;
    height: 64px;
  }

  .polyvagal-hero__scale-bar {
    width: 140px;
    height: 5px;
  }

  .polyvagal-hero__scale-bar::before,
  .polyvagal-hero__scale-bar::after {
    width: 12px;
    height: 12px;
    left: -4px;
  }

  .polyvagal-hero__scale-bar::after {
    left: auto;
    right: -4px;
  }

  .polyvagal-hero__heart {
    width: 28px;
    height: 27px;
    right: -14px;
  }

  .polyvagal-hero__heart--top-left {
    right: auto;
    left: -14px;
  }
}

@media (max-width: 480px) {
  .polyvagal-hero__title {
    font-size: 28px;
    line-height: 34px;
  }

  .polyvagal-hero__visual {
    gap: 16px;
  }

  .polyvagal-hero__circle {
    width: 100px;
    height: 100px;
  }

  .polyvagal-hero__circle img {
    width: 52px;
    height: 52px;
  }

  .polyvagal-hero__scale-bar {
    width: 100px;
    height: 4px;
  }

  .polyvagal-hero__scale-bar::before,
  .polyvagal-hero__scale-bar::after {
    width: 10px;
    height: 10px;
    left: -3px;
  }

  .polyvagal-hero__scale-bar::after {
    left: auto;
    right: -3px;
  }

  .polyvagal-hero__heart {
    width: 24px;
    height: 23px;
    right: -12px;
  }

  .polyvagal-hero__heart--top-left {
    right: auto;
    left: -12px;
  }

  .polyvagal-hero__connection {
    font-size: 16px;
  }
}

/* ========================================
   POLYVAGAL STATES SECTION
   ======================================== */
.polyvagal-states {
  background: #f4f1e9;
  padding: 64px 4%;
}

.polyvagal-states__container {
  max-width: 1152px;
  margin: 0 auto;
}

.polyvagal-states__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 57.6px;
  color: #2d3e50;
  text-align: center;
  margin: 0 0 48px 0;
}

.polyvagal-states__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.polyvagal-states__card {
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* State card modifiers */
.polyvagal-states__card--ventral {
  background: #f0f5f3;
  border: 3px solid #8b9d8a;
}

.polyvagal-states__card--sympathetic {
  background: #fef3f0;
  border: 3px solid #e58a6a;
}

.polyvagal-states__card--dorsal {
  background: #f3f4f6;
  border: 3px solid #9ca3af;
}

.polyvagal-states__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.polyvagal-states__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.polyvagal-states__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #2d3e50;
  margin: 0 0 16px 0;
}

.polyvagal-states__card-subtitle {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2d3e50;
  margin-bottom: 16px;
}

.polyvagal-states__card-description {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 27.2px;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 1024px) {
  .polyvagal-states__title {
    font-size: 40px;
  }

  .polyvagal-states__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .polyvagal-states__card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .polyvagal-states {
    padding: 48px 20px;
  }

  .polyvagal-states__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .polyvagal-states__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .polyvagal-states__card {
    padding: 24px;
  }

  .polyvagal-states__card-title {
    font-size: 22px;
  }
}

/* ========================================
   POLYVAGAL LADDER SECTION
   ======================================== */
.polyvagal-ladder {
  background-color: #fffcf5;
  padding: 80px 20px;
}

.polyvagal-ladder__container {
  max-width: 800px;
  margin: 0 auto;
}

.polyvagal-ladder__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 48px;
  color: #2d3e50;
  text-align: center;
  margin: 0 0 40px 0;
}

.polyvagal-ladder__card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 48px 40px;
}

.polyvagal-ladder__subtitle {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  color: #4a5568;
  text-align: center;
  margin: 0 0 32px 0;
}

.polyvagal-ladder__rungs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.polyvagal-ladder__rung {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 16px;
}

.polyvagal-ladder__rung--highlighted {
  background-color: #e8f2ed;
}

.polyvagal-ladder__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Circle color modifiers */
.polyvagal-ladder__circle--ventral {
  background-color: #7fae96;
}

.polyvagal-ladder__circle--sympathetic {
  background-color: #e58a6a;
}

.polyvagal-ladder__circle--dorsal {
  background-color: #8b92a0;
}

.polyvagal-ladder__circle img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.polyvagal-ladder__rung-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.polyvagal-ladder__rung-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: #2d3e50;
  margin: 0;
}

.polyvagal-ladder__rung-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #9ca3af;
  margin: 0;
}

.polyvagal-ladder__footer {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #9ca3af;
  text-align: center;
  margin: 32px 0 0 0;
}

@media (max-width: 768px) {
  .polyvagal-ladder {
    padding: 60px 16px;
  }

  .polyvagal-ladder__title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .polyvagal-ladder__card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .polyvagal-ladder__subtitle {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .polyvagal-ladder__rung {
    padding: 16px 20px;
  }

  .polyvagal-ladder__circle {
    width: 48px;
    height: 48px;
  }

  .polyvagal-ladder__rung-title {
    font-size: 18px;
  }

  .polyvagal-ladder__rung-subtitle {
    font-size: 14px;
  }

  .polyvagal-ladder__footer {
    font-size: 14px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .polyvagal-ladder__title {
    font-size: 28px;
  }

  .polyvagal-ladder__card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .polyvagal-ladder__subtitle {
    font-size: 20px;
  }

  .polyvagal-ladder__rung {
    gap: 16px;
    padding: 12px 16px;
  }

  .polyvagal-ladder__circle {
    width: 44px;
    height: 44px;
  }

  .polyvagal-ladder__circle img {
    width: 20px;
    height: 20px;
  }

  .polyvagal-ladder__rung-title {
    font-size: 16px;
  }
}

/* ========================================
   POLYVAGAL VAGUS SECTION
   ======================================== */
.polyvagal-vagus {
  background-color: #f4f1e9;
  padding: 64px 20px;
}

.polyvagal-vagus__container {
  max-width: 1152px;
  margin: 0 auto;
}

.polyvagal-vagus__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 57.6px;
  color: #3d4a5c;
  text-align: center;
  margin: 0 0 16px 0;
}

.polyvagal-vagus__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 28.8px;
  color: #7a7a7a;
  text-align: center;
  margin: 0 auto 48px auto;
  max-width: 1024px;
}

.polyvagal-vagus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.polyvagal-vagus__card {
  background-color: #ffffff;
  border: 1px solid #dae3e8;
  border-radius: 16px;
  padding: 32px;
  text-align: left;
}

.polyvagal-vagus__card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  color: #2d3e50;
  margin: 0 0 12px 0;
}

.polyvagal-vagus__card-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  color: #888888;
  margin: 0;
}

.polyvagal-vagus__diagram {
  text-align: center;
  margin-bottom: 48px;
}

.polyvagal-vagus__diagram img {
  width: 600px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.polyvagal-vagus__callout {
  background-color: #f9f9f9;
  border-left: 3px solid #75a293;
  border-radius: 10px;
  padding: 24px 24px 24px 27px;
}

.polyvagal-vagus__callout-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
  color: #2d3e50;
  margin: 0 0 12px 0;
}

.polyvagal-vagus__callout-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 32.4px;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 1024px) {
  .polyvagal-vagus__title {
    font-size: 40px;
  }

  .polyvagal-vagus__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .polyvagal-vagus {
    padding: 60px 16px;
  }

  .polyvagal-vagus__title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .polyvagal-vagus__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .polyvagal-vagus__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .polyvagal-vagus__card {
    padding: 24px;
  }

  .polyvagal-vagus__card-title {
    font-size: 20px;
  }

  .polyvagal-vagus__card-description {
    font-size: 15px;
    line-height: 24px;
  }

  .polyvagal-vagus__diagram {
    margin-bottom: 32px;
  }

  .polyvagal-vagus__callout {
    padding: 24px;
  }

  .polyvagal-vagus__callout-title {
    font-size: 24px;
  }

  .polyvagal-vagus__callout-text {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .polyvagal-vagus__title {
    font-size: 28px;
  }

  .polyvagal-vagus__callout-title {
    font-size: 22px;
  }
}

/* =====================================================
   ANXIETY RESEARCH PAGE COMPONENTS
   ===================================================== */

/* =====================================================
   SCIENCE HERO SECTION (shared across all science pages)
   ===================================================== */

.science-hero {
  background: linear-gradient(158deg, #2c3e50 0%, #304659 100%);
  padding: 80px 0 60px;
}

.science-hero__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.science-hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.science-hero__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  color: white;
  margin-bottom: 24px;
  max-width: 896px;
}

.science-hero__subtitle {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 710px;
  margin-bottom: 48px;
}

.science-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 896px;
}

.science-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.science-hero__stat-value {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 36px;
  color: #e58a6a;
}

.science-hero__stat-label {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .science-hero {
    padding: 60px 0 40px;
  }

  .science-hero__title {
    font-size: 36px;
    line-height: 44px;
  }

  .science-hero__subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .science-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .science-hero__stat {
    gap: 12px;
  }

  .science-hero__stat-value {
    font-size: 36px;
    line-height: 36px;
  }
}

@media (max-width: 480px) {
  .science-hero__title {
    font-size: 28px;
    line-height: 36px;
  }

  .science-hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .science-hero__stat {
    gap: 10px;
  }

  .science-hero__stat-value {
    font-size: 30px;
  }
}

/* =====================================================
   SCIENCE DISCLAIMER SECTION (shared across all science pages)
   ===================================================== */

.science-disclaimer {
  background: #fffcf5;
  padding: 76px 0 0;
}

.science-disclaimer__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.science-disclaimer__box {
  background: #fef9e7;
  border: 2px solid #f4d03f;
  border-radius: 10px;
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.science-disclaimer__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  border-radius: 50%;
}

.science-disclaimer__content {
  flex: 1;
}

.science-disclaimer__title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: #9c6b2e;
  margin-bottom: 12px;
}

.science-disclaimer__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: #9c6b2e;
  margin: 0;
}

@media (max-width: 768px) {
  .science-disclaimer {
    padding: 48px 0 0;
  }

  .science-disclaimer__box {
    flex-direction: column;
    gap: 12px;
  }

  .science-disclaimer__icon {
    margin-top: 0;
  }
}

/* =====================================================
   RESULTS DISCLAIMER SECTION
   ===================================================== */

.results-disclaimer {
  background: #fffcf5;
  padding: 76px 0 0;
}

.results-disclaimer__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.results-disclaimer__box {
  background: #fef9e7;
  border: 2px solid #f4d03f;
  border-radius: 10px;
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.results-disclaimer__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.results-disclaimer__content {
  flex: 1;
}

.results-disclaimer__title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #9c6b2e;
  margin: 0 0 8px;
}

.results-disclaimer__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: #9c6b2e;
  margin: 0;
}

/* When disclaimer is nested inside brain-stuck section */
.results-brain-stuck__disclaimer .results-disclaimer {
  background: transparent;
  padding: 0;
}

.results-brain-stuck__disclaimer .results-disclaimer__container {
  max-width: 100%;
  padding: 0;
}

.results-brain-stuck__disclaimer .results-disclaimer__title {
  line-height: 27px;
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .results-disclaimer {
    padding: 48px 0 0;
  }

  .results-disclaimer__box {
    flex-direction: column;
    gap: 12px;
  }

  .results-disclaimer__icon {
    margin-top: 0;
  }

  .results-brain-stuck__disclaimer .results-disclaimer {
    padding: 0;
  }
}

/* =====================================================
   ANXIETY WHY STUDIED SECTION
   ===================================================== */

.anxiety-why-studied {
  background: #fffcf5;
  padding: 64px 0 0;
}

.anxiety-why-studied__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.anxiety-why-studied__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.anxiety-why-studied__description {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: #4a5565;
  max-width: 744px;
  margin-bottom: 48px;
}

.anxiety-why-studied__card {
  background: white;
  border: 1px solid #c4d1da;
  border-radius: 10px;
  padding: 33px;
  max-width: 448px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.anxiety-why-studied__effect-size {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  color: #e58a6a;
}

.anxiety-why-studied__effect-label {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #2c3e50;
}

.anxiety-why-studied__source {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #9ea4a7;
}

@media (max-width: 768px) {
  .anxiety-why-studied__title {
    font-size: 28px;
    line-height: 34px;
  }

  .anxiety-why-studied__description {
    font-size: 16px;
    line-height: 26px;
  }

  .anxiety-why-studied__effect-size {
    font-size: 48px;
    line-height: 48px;
  }

  .anxiety-why-studied__effect-label {
    font-size: 18px;
    line-height: 26px;
  }
}

/* =====================================================
   ANXIETY CALLOUT SECTION
   ===================================================== */

.anxiety-callout {
  background: #fffcf5;
  padding: 48px 0 64px;
}

.anxiety-callout__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.anxiety-callout__box {
  background: #f8e8e1;
  border-left: 4px solid #e58a6a;
  border-radius: 10px;
  padding: 24px 24px 24px 28px;
}

.anxiety-callout__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.anxiety-callout__icon {
  width: 18px;
  height: 28px;
  object-fit: contain;
}

.anxiety-callout__title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #e58a6a;
  margin: 0;
}

.anxiety-callout__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #2c3e50;
  margin: 0;
}

.anxiety-callout__text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .anxiety-callout {
    padding: 32px 0 48px;
  }

  .anxiety-callout__title {
    font-size: 18px;
    line-height: 26px;
  }

  .anxiety-callout__text {
    font-size: 15px;
    line-height: 24px;
  }
}

/* =====================================================
   ANXIETY APP DATA SECTION
   ===================================================== */

.anxiety-app-data {
  background: #2c3e50;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 64px;
}

.anxiety-app-data__container {
  max-width: 896px;
}

.anxiety-app-data__badge {
  display: inline-block;
  background: rgba(229, 138, 106, 0.2);
  color: #e58a6a;
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.anxiety-app-data__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: white;
  margin-bottom: 24px;
}

.anxiety-app-data__subtitle {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 653px;
  margin-bottom: 48px;
}

.anxiety-app-data__stats {
  display: flex;
  gap: 80px;
}

.anxiety-app-data__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.anxiety-app-data__stat-value {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: #e58a6a;
}

.anxiety-app-data__stat-label {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

/* Wrapper to contain and center the app data section */
.anxiety-app-data-wrapper {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .anxiety-app-data {
    padding: 32px 24px;
    margin-bottom: 48px;
  }

  .anxiety-app-data__title {
    font-size: 28px;
    line-height: 34px;
  }

  .anxiety-app-data__subtitle {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  .anxiety-app-data__stats {
    flex-direction: column;
    gap: 24px;
  }

  .anxiety-app-data__stat-value {
    font-size: 30px;
    line-height: 36px;
  }
}

/* =====================================================
   SCIENCE RESEARCH CARDS SECTION (shared)
   ===================================================== */

.science-research-cards {
  background: #fffcf5;
  padding: 0 0 64px;
}

.science-research-cards__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.science-research-cards__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
}

.science-research-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.science-research-cards__card {
  background: white;
  border: 1px solid #c4d1da;
  border-radius: 10px;
  padding: 24px;
}

.science-research-cards__year {
  display: inline-block;
  background: rgba(117, 162, 147, 0.25);
  color: #4a5565;
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.science-research-cards__card-title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #2c3e50;
  margin: 0 0 12px;
}

.science-research-cards__card-description {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: #4a5565;
  margin: 0;
}

@media (max-width: 768px) {
  .science-research-cards__title {
    font-size: 28px;
    line-height: 34px;
  }

  .science-research-cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =====================================================
   SCIENCE MECHANISMS SECTION (shared)
   ===================================================== */

.science-mechanisms {
  background: #fffcf5;
  padding: 0 0 64px;
}

.science-mechanisms__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.science-mechanisms__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  margin-bottom: 40px;
}

.science-mechanisms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.science-mechanisms__card {
  background: white;
  border: 1px solid #c4d1da;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.science-mechanisms__icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.science-mechanisms__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.science-mechanisms__card-title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #2c3e50;
  margin: 0;
}

.science-mechanisms__card-description {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: #4a5565;
  margin: 0;
}

.science-mechanisms__link {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #e58a6a;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.science-mechanisms__link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .science-mechanisms__title {
    font-size: 28px;
    line-height: 34px;
  }

  .science-mechanisms__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =====================================================
   SCIENCE TESTIMONIALS SECTION (shared)
   ===================================================== */

.science-testimonials {
  background: #fffcf5;
  padding: 0 0 80px;
}

.science-testimonials__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.science-testimonials__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  margin-bottom: 40px;
}

.science-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.science-testimonials__card {
  background: white;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.science-testimonials__quote {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: #3e5f78;
  text-align: center;
  margin: 0;
}

.science-testimonials__author {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: #4a5f5c;
  text-align: center;
}

@media (max-width: 768px) {
  .science-testimonials {
    padding-bottom: 60px;
  }

  .science-testimonials__title {
    font-size: 28px;
    line-height: 34px;
  }

  .science-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .science-testimonials__quote {
    font-size: 20px;
    line-height: 30px;
  }

  .science-testimonials__author {
    font-size: 18px;
    line-height: 26px;
  }
}

/* =====================================================
   DEPRESSION WHY STUDIED SECTION
   ===================================================== */

.depression-why-studied {
  background: #fffcf5;
  padding: 64px 0 0;
}

.depression-why-studied__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.depression-why-studied__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.depression-why-studied__description {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: #4a5565;
  max-width: 744px;
  margin-bottom: 48px;
}

.depression-why-studied__card {
  background: white;
  border: 1px solid #c4d1da;
  border-radius: 10px;
  padding: 33px;
  max-width: 448px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.depression-why-studied__effect-size {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  color: #e58a6a;
}

.depression-why-studied__effect-label {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #2c3e50;
}

.depression-why-studied__source {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #9ea4a7;
}

@media (max-width: 768px) {
  .depression-why-studied__title {
    font-size: 28px;
    line-height: 34px;
  }

  .depression-why-studied__description {
    font-size: 16px;
    line-height: 26px;
  }

  .depression-why-studied__effect-size {
    font-size: 48px;
    line-height: 48px;
  }

  .depression-why-studied__effect-label {
    font-size: 18px;
    line-height: 26px;
  }
}

/* =====================================================
   DEPRESSION CALLOUT SECTION
   ===================================================== */

.depression-callout {
  background: #fffcf5;
  padding: 48px 0 64px;
}

.depression-callout__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.depression-callout__box {
  background: #f8e8e1;
  border-left: 4px solid #e58a6a;
  border-radius: 10px;
  padding: 24px 24px 24px 28px;
}

.depression-callout__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.depression-callout__icon {
  width: 18px;
  height: 28px;
  object-fit: contain;
}

.depression-callout__title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #e58a6a;
  margin: 0;
}

.depression-callout__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #2c3e50;
  margin: 0;
}

.depression-callout__text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .depression-callout {
    padding: 32px 0 48px;
  }

  .depression-callout__title {
    font-size: 18px;
    line-height: 26px;
  }

  .depression-callout__text {
    font-size: 15px;
    line-height: 24px;
  }
}

/* =====================================================
   DEPRESSION APP DATA SECTION
   ===================================================== */

.depression-app-data {
  background: #2c3e50;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 64px;
}

.depression-app-data__container {
  max-width: 896px;
}

.depression-app-data__badge {
  display: inline-block;
  background: rgba(229, 138, 106, 0.2);
  color: #e58a6a;
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.depression-app-data__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: white;
  margin-bottom: 24px;
}

.depression-app-data__subtitle {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 653px;
  margin-bottom: 48px;
}

.depression-app-data__stats {
  display: flex;
  gap: 80px;
}

.depression-app-data__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.depression-app-data__stat-value {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: #e58a6a;
}

.depression-app-data__stat-label {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

/* Wrapper to contain and center the app data section */
.depression-app-data-wrapper {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .depression-app-data {
    padding: 32px 24px;
    margin-bottom: 48px;
  }

  .depression-app-data__title {
    font-size: 28px;
    line-height: 34px;
  }

  .depression-app-data__subtitle {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  .depression-app-data__stats {
    flex-direction: column;
    gap: 24px;
  }

  .depression-app-data__stat-value {
    font-size: 30px;
    line-height: 36px;
  }
}

/* =====================================================
   DEPRESSION DAILY SUPPORT SECTION
   ===================================================== */

.depression-daily-support {
  background: #fffcf5;
  padding: 0 0 64px;
}

.depression-daily-support__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.depression-daily-support__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.depression-daily-support__description {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: #4a5565;
  max-width: 744px;
  margin-bottom: 40px;
}

.depression-daily-support__protocol {
  background: white;
  border: 1px solid #c4d1da;
  border-radius: 10px;
  padding: 32px;
}

.depression-daily-support__protocol-title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #2c3e50;
  margin: 0 0 24px;
}

.depression-daily-support__days {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.depression-daily-support__day {
  flex: 1;
  min-width: 80px;
  background: #e58a6a;
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.depression-daily-support__day-number {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.depression-daily-support__day-focus {
  font-family: 'Open Sans', var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .depression-daily-support__title {
    font-size: 28px;
    line-height: 34px;
  }

  .depression-daily-support__description {
    font-size: 16px;
    line-height: 26px;
  }

  .depression-daily-support__days {
    gap: 8px;
  }

  .depression-daily-support__day {
    min-width: 70px;
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  .depression-daily-support__days {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .depression-daily-support__day {
    min-width: unset;
  }

  .depression-daily-support__day:last-child {
    grid-column: span 1;
  }
}



/* =====================================================
   PTSD VA BANNER SECTION
   ===================================================== */

.ptsd-va-banner {
  background: #fffcf5;
  padding: 32px 0 0;
}

.ptsd-va-banner__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.ptsd-va-banner__content {
  background: linear-gradient(90deg, #003366 0%, #002244 100%);
  color: white;
  padding: 20px 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ptsd-va-banner__icon {
  font-size: 32px;
  flex-shrink: 0;
}

.ptsd-va-banner__text-content {
  flex: 1;
}

.ptsd-va-banner__title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 4px 0;
}

.ptsd-va-banner__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .ptsd-va-banner__content {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 12px;
  }
}

/* =====================================================
   PTSD EVIDENCE SECTION
   ===================================================== */

.ptsd-evidence {
  background: #fffcf5;
  padding: 48px 0;
}

.ptsd-evidence__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.ptsd-evidence__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  margin-bottom: 16px;
}

.ptsd-evidence__intro {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #4a5568;
  margin-bottom: 32px;
}

.ptsd-evidence__meta-highlight {
  background: #f8f5f0;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
}

.ptsd-evidence__meta-number {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: #e58a6a;
  display: block;
  margin-bottom: 8px;
}

.ptsd-evidence__meta-label {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  display: block;
  margin-bottom: 8px;
}

.ptsd-evidence__meta-source {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #718096;
  display: block;
}

.ptsd-evidence__key-finding {
  background: #fdf2f0;
  border-left: 4px solid #e58a6a;
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px;
}

.ptsd-evidence__key-finding-title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #e58a6a;
  margin: 0 0 8px 0;
}

.ptsd-evidence__key-finding-text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #4a5568;
  margin: 0;
}

.ptsd-evidence__apa-box {
  background: #e8f5e9;
  border-left: 4px solid #66bb6a;
  padding: 24px;
  border-radius: 0 12px 12px 0;
}

.ptsd-evidence__apa-title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #2e7d32;
  margin: 0 0 8px 0;
}

.ptsd-evidence__apa-text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #4a5568;
  margin: 0;
}

@media (max-width: 768px) {
  .ptsd-evidence {
    padding: 32px 0;
  }

  .ptsd-evidence__title {
    font-size: 28px;
    line-height: 34px;
  }

  .ptsd-evidence__meta-highlight {
    padding: 32px 24px;
  }

  .ptsd-evidence__meta-number {
    font-size: 48px;
  }

  .ptsd-evidence__meta-label {
    font-size: 18px;
  }
}

/* =====================================================
   PTSD SPOTLIGHT SECTION
   ===================================================== */

.ptsd-spotlight {
  background: #fffcf5;
  padding: 0 0 48px;
}

.ptsd-spotlight__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.ptsd-spotlight__content {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
}

.ptsd-spotlight__badge {
  display: inline-block;
  background: rgba(229, 138, 106, 0.2);
  color: #e58a6a;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Open Sans', var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.ptsd-spotlight__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin: 0 0 16px 0;
}

.ptsd-spotlight__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px 0;
}

.ptsd-spotlight__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.ptsd-spotlight__stat {
  text-align: center;
}

.ptsd-spotlight__stat-value {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #e58a6a;
  display: block;
  margin-bottom: 8px;
}

.ptsd-spotlight__stat-label {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .ptsd-spotlight__content {
    padding: 32px 24px;
  }

  .ptsd-spotlight__title {
    font-size: 24px;
  }

  .ptsd-spotlight__stats {
    gap: 24px;
  }

  .ptsd-spotlight__stat-value {
    font-size: 24px;
  }
}


/* =====================================================
   RESULTS HERO SECTION
   ===================================================== */

.results-hero {
  background: #2f4456;
  padding: 80px 0;
}

.results-hero__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}

.results-hero__eyebrow {
  display: block;
  font-family: 'Open Sans', var(--font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.results-hero__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  color: #ffffff;
  margin: 0 0 32px 0;
}

.results-hero__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.results-hero__paragraph {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.results-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 48px;
  justify-content: start;
  margin-bottom: 40px;
}

.results-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.results-hero__stat-value {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 78px;
  letter-spacing: -1.04px;
  color: #e58a6a;
}

.results-hero__stat-label {
  font-family: 'Open Sans', var(--font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.results-hero__quote {
  background: #fffcf5;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}

.results-hero__quote-text {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #2c3e50;
  margin: 0 0 16px 0;
}

.results-hero__quote-attribution {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .results-hero {
    padding: 60px 0;
  }

  .results-hero__title {
    font-size: 32px;
    line-height: 40px;
  }

  .results-hero__stats {
    gap: 32px;
  }

  .results-hero__stat-value {
    font-size: 36px;
    line-height: 48px;
  }

  .results-hero__quote {
    padding: 24px;
  }

  .results-hero__quote-text {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .results-hero__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =====================================================
   RESULTS CRISIS SECTION (Depression page)
   ===================================================== */

.results-crisis-section {
  padding: 32px 0 0;
  background: #fffcf5;
}

.crisis-box {
  background: linear-gradient(135deg, #fff0f0 0%, #ffe8e8 100%);
  border: 2px solid #e74c3c;
  border-radius: 12px;
  padding: 24px 32px;
  max-width: 896px;
  margin: 0 auto;
}

.crisis-box h4 {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #c0392b;
  margin: 0 0 12px 0;
}

.crisis-box p {
  font-family: 'Open Sans', var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #6b3232;
  margin: 0;
}

.crisis-box strong {
  color: #c0392b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .results-crisis-section {
    padding: 24px 16px 0;
  }

  .crisis-box {
    padding: 20px 24px;
  }

  .crisis-box h4 {
    font-size: 16px;
  }

  .crisis-box p {
    font-size: 14px;
  }
}

/* =====================================================
   RESULTS BRAIN STUCK SECTION
   ===================================================== */

.results-brain-stuck {
  background: #fffcf5;
  padding: 80px 0;
}

.results-brain-stuck__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}

.results-brain-stuck__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 54.6px;
  color: #2c3e50;
  margin: 0 0 40px 0;
}

.results-brain-stuck__content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results-brain-stuck__content p {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  line-height: 28.8px;
  color: #6b7280;
  margin: 0;
}

/* Results Highlight Box */
.results-highlight {
  background: rgba(117, 162, 147, 0.1);
  border-left: 4px solid #75a293;
  border-radius: 10px;
  padding: 32px 32px 32px 36px;
  margin-top: 8px;
}

.results-highlight__stat {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 35.2px;
  color: #5d8175;
  margin: 0 0 8px 0;
}

.results-highlight__source {
  font-family: 'Open Sans', var(--font-body);
  font-size: 13px;
  line-height: 19.5px;
  color: #6b7280;
  margin: 0;
}

/* =====================================================
   RESULTS STORIES SECTION
   ===================================================== */

.results-stories {
  background: #f4f1e9;
  padding: 80px 0;
}

.results-stories__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.results-stories__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 54.6px;
  color: #2c3e50;
  margin: 0 0 24px 0;
  text-align: center;
}

.results-stories__subtitle {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  line-height: 27.2px;
  color: #6b7280;
  text-align: center;
  max-width: 744px;
  margin: 0 auto 48px;
}

/* =====================================================
   RESULTS PANIC SECTION
   ===================================================== */

.results-panic {
  background: #fffcf5;
  padding: 80px 0;
}

.results-panic__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results-panic__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 54.6px;
  color: #2c3e50;
  margin: 0;
  text-align: center;
}

.results-panic__subtitle {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  line-height: 27.2px;
  color: #6b7280;
  text-align: center;
  max-width: 874px;
  margin: 0 auto;
}

.results-panic__story {
  max-width: 100%;
  margin: 0;
}

.results-panic__story-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results-panic__story-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.results-panic__story-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #75a293;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  flex-shrink: 0;
}

.results-panic__story-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.results-panic__story-name {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 36px;
}

.results-panic__story-location {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  line-height: 21px;
  color: #9ca3af;
  margin: 0;
}

.results-panic__quote {
  border-left: 4px solid #75a293;
  padding: 24px 0 0 28px;
  margin: 0;
}

.results-panic__quote p {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 28.8px;
  margin: 0;
}

.results-panic__commentary {
  font-family: 'Open Sans', var(--font-body);
  font-size: 15px;
  color: #6b7280;
  line-height: 25.5px;
  margin: 0;
}

.results-panic__session {
  background: #f8fafb;
  border: 1px solid #c4d1da;
  border-radius: 14px;
  padding: 25px;
}

.results-panic__session-label {
  display: block;
  font-family: 'Open Sans', var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #9ea4a7;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.results-panic__session-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.results-panic__session-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #75a293;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.results-panic__session-link:hover .results-panic__session-play {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(117, 162, 147, 0.3);
}

.results-panic__session-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.results-panic__session-name {
  font-family: 'Open Sans', var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 25.5px;
  color: #2c3e50;
}

.results-panic__session-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-panic__session-duration {
  font-family: 'Open Sans', var(--font-body);
  font-size: 13px;
  line-height: 19.5px;
  color: #9ea4a7;
}

.results-panic__session-price {
  font-family: 'Open Sans', var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.33px;
  color: #75a293;
  background: #e8f1ed;
  padding: 2px 8px;
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 768px) {
  .results-brain-stuck,
  .results-stories,
  .results-panic {
    padding: 60px 0;
  }

  .results-brain-stuck__title,
  .results-stories__title,
  .results-panic__title {
    font-size: 32px;
    line-height: 41.6px;
  }

  .results-highlight {
    padding: 24px;
  }

  .results-highlight__stat {
    font-size: 18px;
  }

  .results-panic__story-card {
    padding: 24px;
    gap: 20px;
  }

  .results-panic__quote {
    padding: 16px 0 0 20px;
  }

  .results-panic__quote p {
    font-size: 16px;
    line-height: 25.6px;
  }
}

@media (max-width: 480px) {
  .results-panic__title {
    font-size: 28px;
    line-height: 36.4px;
  }

  .results-panic__story-card {
    padding: 20px;
  }

  .results-panic__story-avatar {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .results-panic__story-name {
    font-size: 20px;
    line-height: 30px;
  }

  .results-panic__session {
    padding: 20px;
  }
}

/* =====================================================
   RESULTS FEATURED STORY COMPONENT
   ===================================================== */
/* =====================================================
   RESULTS FEATURED STORY COMPONENT
   ===================================================== */

.results-featured-story {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 48px;
}

/* Header */
.results-featured-story__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.results-featured-story__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #75a293;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.results-featured-story__info {
  flex: 1;
}

.results-featured-story__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 36px;
}

.results-featured-story__location {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
  margin: 0;
}

.results-featured-story__badge {
  background: rgba(229, 138, 106, 0.15);
  color: #e58a6a;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.88px;
  padding: 10px 13px;
  border-radius: 100px;
  flex-shrink: 0;
  line-height: 16.5px;
}

/* Pull Quote */
.results-featured-story__quote {
  border-left: 3px solid #75a293;
  padding: 16px 0 0 27px;
  margin: 0 0 32px 0;
}

.results-featured-story__quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #2c3e50;
  line-height: 41.6px;
  margin: 0;
}

/* Story Arc - 3 Column Grid */
.results-featured-story__arc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.results-featured-story__arc-col {
  padding: 24px;
  border-radius: 10px;
}

.results-featured-story__arc-col--before {
  background: rgba(229, 138, 106, 0.15);
}

.results-featured-story__arc-col--change {
  background: rgba(117, 162, 147, 0.15);
}

.results-featured-story__arc-col--after {
  background: rgba(62, 95, 120, 0.15);
}

.results-featured-story__arc-label {
  display: block;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #4a5565;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  margin-bottom: 12px;
}

.results-featured-story__arc-text {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  color: #2c3e50;
  line-height: 25.5px;
  margin: 0;
}

/* Commentary */
.results-featured-story__commentary {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  color: #6b7280;
  line-height: 23.8px;
  margin: 0 0 32px 0;
}

/* Try Session Box */
.results-featured-story__session {
  background: #f8fafb;
  border: 1px solid #c4d1da;
  border-radius: 14px;
  padding: 25px;
}

.results-featured-story__session-label {
  display: block;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #9ea4a7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.results-featured-story__session-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.results-featured-story__session-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #75a293;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.results-featured-story__session-link:hover .results-featured-story__session-play {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(117, 162, 147, 0.3);
}

.results-featured-story__session-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.results-featured-story__session-name {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #2c3e50;
}

.results-featured-story__session-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.results-featured-story__session-duration {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  color: #9ea4a7;
}

.results-featured-story__session-price {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #75a293;
  background: #e8f1ed;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 900px) {
  .results-featured-story {
    padding: 32px 24px;
  }

  .results-featured-story__header {
    flex-wrap: wrap;
  }

  .results-featured-story__badge {
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }

  .results-featured-story__quote p {
    font-size: 22px;
  }

  .results-featured-story__arc {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .results-featured-story {
    padding: 24px 20px;
  }

  .results-featured-story__avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .results-featured-story__name {
    font-size: 20px;
  }

  .results-featured-story__location {
    font-size: 14px;
  }

  .results-featured-story__quote p {
    font-size: 18px;
  }

  .results-featured-story__arc-col {
    padding: 16px;
  }

  .results-featured-story__session {
    padding: 16px;
  }

  .results-featured-story__session-play {
    width: 40px;
    height: 40px;
  }

  .results-featured-story__session-name {
    font-size: 15px;
  }
}

/* =====================================================
   RESULTS PATTERN INSIGHT COMPONENT
   ===================================================== */
/* =====================================================
   RESULTS PATTERN INSIGHT SECTION
   ===================================================== */

.results-pattern {
  background: #75a293;
  padding: 80px 24px;
}

.results-pattern__container {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.results-pattern__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 49.4px;
}

.results-pattern__body {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 30.6px;
  margin: 0 0 40px 0;
}

/* Quote Callout Box */
.results-pattern__quote {
  background: #fffcf5;
  border-radius: 16px;
  padding: 32px;
  margin: 0 auto;
  max-width: 580px;
  text-align: center;
}

.results-pattern__quote-text {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #6b6b6b;
  line-height: 32.5px;
  margin: 0;
}

.results-pattern__quote-source {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6b6b6b;
  font-style: normal;
  display: block;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .results-pattern {
    padding: 60px 20px;
  }

  .results-pattern__heading {
    font-size: 30px;
    line-height: 39px;
  }

  .results-pattern__body {
    font-size: 16px;
    line-height: 27.2px;
    margin-bottom: 32px;
  }

  .results-pattern__quote {
    padding: 24px;
  }

  .results-pattern__quote-text {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .results-pattern {
    padding: 48px 16px;
  }

  .results-pattern__heading {
    font-size: 26px;
    line-height: 33.8px;
  }

  .results-pattern__quote {
    padding: 20px;
    border-radius: 12px;
  }

  .results-pattern__quote-text {
    font-size: 15px;
    line-height: 26px;
  }

  .results-pattern__quote-source {
    font-size: 13px;
  }
}

/* =====================================================
   RESULTS CTA SECTION COMPONENT
   ===================================================== */
/* Results CTA Section Styles */
.results-cta {
  background: #fffcf5;
  padding: 80px 0;
}

.results-cta__container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.results-cta__header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 54.6px;
  color: #2c3e50;
  margin: 0;
}

.results-cta__subtitle {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 30.6px;
  color: #4a5565;
  max-width: 727px;
  margin: 0 auto;
}

.results-cta__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Sessions Card (Left) - No background */
.results-cta-card--sessions {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.results-cta-card--sessions .results-cta-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  color: #2c3e50;
  margin: 0 0 12px 0;
}

.results-cta-card--sessions .results-cta-card__description {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 27.2px;
  color: #4a5565;
  margin: 0 0 24px 0;
}

.results-cta-card--sessions .results-cta-card__label {
  display: block;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
  color: #4a5565;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Sessions List */
.results-cta-card__sessions {
  list-style: none;
  padding: 24px;
  margin: 0;
  background: #f2efe9;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-cta-card__session {
  margin: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
}

.results-cta-card__session-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.results-cta-card__session-link:hover .results-cta-card__session-name,
.results-cta-card__session-link:hover .results-cta-card__session-duration {
  color: #75a293;
}

.results-cta-card__session-icon {
  width: 18px;
  height: 18px;
  color: #75a293;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
}

.results-cta-card__session-icon svg {
  width: 18px;
  height: 18px;
}

.results-cta-card__session-info {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.results-cta-card__session-name {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  color: #2c3e50;
  transition: color 0.2s ease;
}

.results-cta-card__session-duration {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #4a5565;
  transition: color 0.2s ease;
}

.results-cta-card__session-badge {
  display: none;
}

/* Primary Button (Try the App Free) */
.results-cta-card--sessions .results-cta-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #75a293;
  color: #ffffff;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 32px;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 32px;
  width: auto;
  transition: background 0.2s ease;
}

.results-cta-card--sessions .results-cta-card__button:hover {
  background: #5d8a7a;
}

/* Book Card (Right) - Light teal background */
.results-cta-card--book {
  background: rgba(117, 162, 147, 0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: none;
}

.results-cta-card--book .results-cta-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  color: #2c3e50;
  margin: 0 0 16px 0;
}

.results-cta-card__quote {
  border-left: 3px solid #75a293;
  padding: 0 0 0 19px;
  margin: 0 0 16px 0;
  background: transparent;
  border-radius: 0;
}

.results-cta-card__quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  font-style: normal;
  color: #2c3e50;
  line-height: 30.4px;
  margin: 0;
}

.results-cta-card__source {
  display: block;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  color: #4a5565;
  margin-bottom: 16px;
}

.results-cta-card--book .results-cta-card__description {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 25.5px;
  color: #4a5565;
  margin: 0 0 24px 0;
}

.results-cta-card__book-image {
  margin-bottom: 24px;
  text-align: left;
}

.results-cta-card__book-image img {
  width: 120px;
  height: auto;
}

/* Secondary Button (Get REWIRED on Amazon) */
.results-cta-card--book .results-cta-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #5a9384;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  padding: 12px 24px;
  border: 2px solid #5a9384;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 0;
  width: auto;
  transition: all 0.2s ease;
}

.results-cta-card--book .results-cta-card__button:hover {
  background: #5a9384;
  color: #ffffff;
}

.results-cta-card__divider {
  border: none;
  border-top: 1px solid #c4d1da;
  margin: 24px 0;
}

.results-cta-card__extra-sessions,
.results-cta-card__boosts {
  margin-bottom: 24px;
}

.results-cta-card__extra-sessions:last-child,
.results-cta-card__boosts:last-child {
  margin-bottom: 0;
}

.results-cta-card__extra-sessions .results-cta-card__label,
.results-cta-card__boosts .results-cta-card__label {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  color: #2c3e50;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.results-cta-card__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.results-cta-card__link {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 22.5px;
  color: #4a5565;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.results-cta-card__link:hover {
  color: #75a293;
}

.results-cta-card__link::after {
  content: '→';
  color: #75a293;
  font-size: 14px;
}

.results-cta-card__link-duration {
  color: #4a5565;
  font-weight: 400;
}

.results-cta-card__link-stats {
  color: #4a5565;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
  .results-cta__cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .results-cta__title {
    font-size: 32px;
    line-height: 41.6px;
  }

  .results-cta-card--book {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .results-cta {
    padding: 60px 0;
  }

  .results-cta__header {
    margin-bottom: 48px;
  }

  .results-cta__title {
    font-size: 28px;
    line-height: 36.4px;
  }

  .results-cta__subtitle {
    font-size: 15px;
    line-height: 25.5px;
  }

  .results-cta-card--sessions .results-cta-card__title {
    font-size: 24px;
    line-height: 36px;
  }

  .results-cta-card__sessions {
    padding: 20px;
  }

  .results-cta-card--book .results-cta-card__title {
    font-size: 20px;
    line-height: 30px;
  }

  .results-cta-card__quote p {
    font-size: 17px;
    line-height: 27.2px;
  }
}

/* =====================================================
   RESULTS RELATED TOPICS COMPONENT
   ===================================================== */
/* Results Related Topics Component Styles */
.results-related {
  padding-top: 80px;
  padding-bottom: 48px;
  background: #fffcf5;
}

.results-related__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.results-related__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 49.4px;
  color: #2c3e50;
  margin: 0;
  text-align: center;
}

.results-related__topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}

.results-topic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.results-topic-card:hover {
  transform: translateY(-4px);
}

.results-topic-card__icon {
  width: 64px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-topic-card__icon img {
  max-width: 64px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.results-topic-card__icon-placeholder {
  width: 64px;
  height: 60px;
  border-radius: 8px;
  background: #e8f1ed;
}

.results-topic-card__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22.5px;
  color: #2c3e50;
  text-align: center;
  white-space: nowrap;
}

.results-topic-card:hover .results-topic-card__label {
  color: #75a293;
}

.results-related__back {
  margin: 0;
}

.results-related__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #e88166;
  text-decoration: none;
  transition: color 0.2s ease;
}

.results-related__back-link:hover {
  color: #d6704f;
}

.results-related__back-link span {
  font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .results-related__topics {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .results-related__heading {
    font-size: 32px;
    line-height: 41.6px;
  }
}

@media (max-width: 480px) {
  .results-related {
    padding: 60px 0;
  }

  .results-related__container {
    gap: 32px;
  }

  .results-related__heading {
    font-size: 28px;
    line-height: 36.4px;
  }

  .results-related__topics {
    gap: 24px 16px;
  }

  .results-topic-card__icon {
    width: 56px;
    height: 52px;
  }

  .results-topic-card__label {
    font-size: 16px;
    line-height: 20px;
    white-space: normal;
  }

  .results-related__back-link {
    font-size: 16px;
  }
}

/* =====================================================
   RESULTS STORY GRID COMPONENT
   ===================================================== */
/* Results Story Grid Component Styles */
.results-story-grid {
  margin-top: 80px;
}

.results-story-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.results-story-grid__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results-story-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.results-story-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #75a293;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  flex-shrink: 0;
}

.results-story-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.results-story-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: #2c3e50;
  margin: 0;
  line-height: 30px;
}

.results-story-card__location {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  color: #4a5565;
  margin: 0;
}

.results-story-card__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 30.4px;
  margin: 0;
}

.results-story-card__excerpt {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 25.5px;
  color: #4a5565;
  margin: 0;
}

.results-story-card__link {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #75a293;
  display: inline-block;
  text-decoration: none;
}

.results-story-card__link:hover {
  color: #5d8a7a;
}

.results-story-grid__footer {
  text-align: center;
  margin-top: 48px;
}

.results-story-grid__footer .btn--secondary {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #75a293;
  border-radius: 100px;
  background: transparent;
  color: #75a293;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.results-story-grid__footer .btn--secondary:hover {
  background: #75a293;
  color: #ffffff;
}

/* Responsive: Stack to single column on smaller screens */
@media (max-width: 900px) {
  .results-story-grid__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .results-story-grid__card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .results-story-grid__card {
    padding: 24px 20px;
    gap: 20px;
  }

  .results-story-card__name {
    font-size: 18px;
    line-height: 27px;
  }

  .results-story-card__quote {
    font-size: 17px;
    line-height: 27.2px;
  }
}

/* =====================================================
   RESULTS BOOK FEATURE SECTION
   Used on weight.php for Jessica's book feature
   ===================================================== */
.results-book-feature {
  background: var(--cream, #f5f3ef);
  padding: 80px 0;
}

.results-book-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.results-book-feature__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results-book-feature__eyebrow {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sage, #75a293);
}

.results-book-feature__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal, #2c3e50);
  margin: 0;
}

.results-book-feature__author {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  color: var(--text-gray, #4a5565);
  margin: 0;
}

.results-book-feature__quote {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin: 0;
}

.results-book-feature__quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal, #2c3e50);
  margin: 0 0 12px 0;
}

.results-book-feature__quote cite {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  font-style: normal;
  color: var(--text-gray, #4a5565);
}

.results-book-feature__includes {
  margin-top: 8px;
}

.results-book-feature__includes p {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal, #2c3e50);
  margin: 0 0 12px 0;
}

.results-book-feature__includes ul {
  margin: 0;
  padding-left: 20px;
}

.results-book-feature__includes li {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray, #4a5565);
}

.results-book-feature__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.results-book-feature__reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.results-book-feature__reviews-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal, #2c3e50);
  margin: 0;
}

.results-book-feature__review {
  background: white;
  border-radius: 12px;
  padding: 24px;
}

.results-book-feature__review-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal, #2c3e50);
  margin: 0 0 12px 0;
}

.results-book-feature__review-author {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--text-gray, #4a5565);
  margin: 0;
}

/* Responsive: Book Feature */
@media (max-width: 900px) {
  .results-book-feature {
    padding: 60px 0;
  }

  .results-book-feature__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .results-book-feature__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .results-book-feature {
    padding: 48px 0;
  }

  .results-book-feature__title {
    font-size: 24px;
  }

  .results-book-feature__quote p {
    font-size: 16px;
  }

  .results-book-feature__cta {
    flex-direction: column;
  }

  .results-book-feature__cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   RESULTS QUICK TAPS SECTION COMPONENT
   ===================================================== */
.results-quick-taps {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 64px 0;
}

.results-quick-taps__container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.results-quick-taps__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin: 0 0 12px 0;
}

.results-quick-taps__subtitle {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #4a5565;
  text-align: center;
  margin: 0 0 40px 0;
}

.results-quick-taps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.results-quick-tap-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.results-quick-tap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.results-quick-tap-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.results-quick-tap-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.results-quick-tap-card__content strong {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.results-quick-tap-card__content span {
  font-family: 'Open Sans', -apple-system, sans-serif;
  color: #4a5565;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .results-quick-taps {
    padding: 48px 0;
  }

  .results-quick-taps__title {
    font-size: 26px;
  }

  .results-quick-taps__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .results-quick-taps__grid {
    grid-template-columns: 1fr;
  }

  .results-quick-tap-card {
    padding: 16px 20px;
  }
}

/* =====================================================
   RESULTS SHARE STORY SECTION COMPONENT
   ===================================================== */
.results-share-story {
  background: #fffcf5;
  padding: 64px 0;
}

.results-share-story__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.results-share-story__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 16px 0;
}

.results-share-story__text {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #4a5565;
  margin: 0 0 24px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .results-share-story {
    padding: 48px 0;
  }

  .results-share-story__title {
    font-size: 24px;
  }

  .results-share-story__text {
    font-size: 16px;
  }
}

/* ==========================================================================
   MEDICAL DISCLAIMER (Warning Style)
   ========================================================================== */

.medical-disclaimer--warning {
  background: #FFF8E8;
  border: 2px solid #F4D03F;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.medical-disclaimer--warning p {
  font-size: 0.875rem;
  color: #856404;
  line-height: 1.6;
  margin: 0;
}

.medical-disclaimer--warning p:first-child {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.medical-disclaimer--warning p:last-child {
  margin: 0;
}

/* ==========================================================================
   CUSTOM SECTIONS (Habits, Motivation pages)
   ========================================================================== */

.results-custom-section {
  padding: 64px 24px;
  background: var(--cream, #fffcf5);
}

.results-custom-section__container {
  max-width: 896px;
  margin: 0 auto;
}

.results-custom-section--centered {
  text-align: center;
}

.results-custom-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 24px 0;
}

.results-custom-section__featured-story {
  max-width: 700px;
  margin: 0 auto;
}

.results-custom-section__note {
  font-size: 0.875rem;
  color: var(--color-gray-600, #6b7280);
  margin-top: 1rem;
}

.results-custom-section__impact {
  color: var(--color-gray-600, #6b7280);
}

/* Cravings grid for habits page */
.results-cravings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: var(--space-lg, 32px);
}

.results-cravings-grid .story-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.results-cravings-grid .avatar {
  background: var(--color-primary-light, #e8f4f0);
}

@media (max-width: 768px) {
  .results-cravings-grid {
    grid-template-columns: 1fr;
  }

  .results-custom-section__title {
    font-size: 26px;
  }
}

/* =====================================================
   APP OVERVIEW PAGE
   ===================================================== */

/* App Hero Section */
.app-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 4% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.app-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(224,123,92,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.app-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.app-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.app-hero__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.app-hero__title {
  color: white;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.app-hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 4rem;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.app-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.app-hero__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: #e58a6a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-weight: 400;
  line-height: 1;
}

.app-hero__stat-number svg {
  width: 48px;
  height: 48px;
  color: #e58a6a;
}

.app-hero__stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

/* App Download Section */
.app-download {
  padding: 5rem 4%;
  background: var(--warm-white);
  text-align: center;
}

.app-download__container {
  max-width: 1000px;
  margin: 0 auto;
}

.app-download__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--navy);
}

.app-download__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.app-download__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.app-download__card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1), 0px 1px 2px rgba(0,0,0,0.1);
  transition: all 0.3s var(--ease-smooth);
}

.app-download__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.app-download__card-image {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 204px;
}

.app-download__card-image img {
  max-width: 100%;
  height: auto;
}

.app-download__card-title {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.app-download__card-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.app-download__buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.app-download__button {
  display: flex;
  align-items: center;
}

.app-download__button img {
  height: 44px !important;
  max-height: 44px !important;
  min-height: 44px !important;
  width: auto;
  display: block;
}

.app-download__qr-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #c4d1da;
}

.app-download__qr-wrapper {
  background: #f2efe9;
  border-radius: 12px;
  padding: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.app-download__qr-wrapper img {
  display: block;
  border-radius: 8px;
}

.app-download__qr-heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.app-download__qr-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.app-download__web-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  font-size: 1.05rem;
  background: #75a293;
  color: white;
}

.app-download__web-btn:hover {
  background: #668f81;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(117,162,147,0.3);
}

.app-download__web-note-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #c4d1da;
}

.app-download__web-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.app-download__benefits {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 2rem;
  text-align: center;
}

/* App Features Section */
.app-features {
  padding: 6rem 4%;
  background: #F2EFE9;
}

.app-features__container {
  max-width: 1280px;
  margin: 0 auto;
}

.app-features__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 4rem;
  color: #2c3e50;
}

.app-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.app-features__card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1), 0px 1px 2px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-features__card-image {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 86px;
}

.app-features__card-image img {
  max-width: 150px;
  max-height: 86px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 16px;
}

.app-features__card-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.app-features__card-text {
  color: #4a5565;
  line-height: 1.625;
  font-size: 1rem;
  margin: 0;
  max-width: 300px;
}

@media (max-width: 992px) {
  .app-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .app-features__grid {
    grid-template-columns: 1fr;
  }

  .app-features__title {
    font-size: 2rem;
  }
}

/* App Testimonials Section */
.app-testimonials {
  padding: 5rem 4%;
  background: #FFFCF5;
}

.app-testimonials__container {
  max-width: 1280px;
  margin: 0 auto;
}

.app-testimonials__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.2;
}

.app-testimonials__subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #4a5565;
  margin-bottom: 4rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.app-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.app-testimonials__card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.1), 0px 1px 3px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 286px;
}

.app-testimonials__quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  color: #3e5f78;
  margin-bottom: 2.5rem;
  font-style: normal;
  font-weight: 400;
}

.app-testimonials__author {
  font-family: var(--font-display);
  font-weight: 700;
  color: #4a5f5c;
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}

.app-testimonials__role {
  font-size: 0.875rem;
  color: #7a8a87;
}

@media (max-width: 992px) {
  .app-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .app-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .app-testimonials__card {
    min-height: auto;
  }
}

/* App CTA Section */
.app-cta {
  padding: 6rem 4%;
  background: #F2EFE9;
  text-align: center;
}

.app-cta__container {
  max-width: 900px;
  margin: 0 auto;
}

.app-cta__title {
  font-family: var(--font-display);
  color: #2c3e50;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.app-cta__subtitle {
  color: #555f6d;
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}

.app-cta__image {
  margin-bottom: 1.5rem;
  text-align: center;
}

.app-cta__image img {
  max-width: 450px !important;
  width: auto;
  height: auto;
  display: inline-block;
}

.app-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 1.5rem;
}

.app-cta__button {
  display: flex;
  align-items: center;
}

.app-cta__button img {
  height: 60px !important;
  max-height: 60px !important;
  min-height: 60px !important;
  width: auto;
  display: block;
}

.app-cta__web-btn {
  display: inline-block;
  background: #75a293;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-cta__web-btn:hover {
  background: #668f81;
  color: white;
  transform: translateY(-2px);
}

/* App Overview Responsive */
@media (max-width: 1024px) {
  .app-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .app-hero {
    padding: 100px 4% 60px;
  }

  .app-hero__stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 300px;
  }

  .app-hero__stat-number svg {
    width: 36px;
    height: 36px;
  }

  .app-download__grid {
    grid-template-columns: 1fr;
  }

  .app-features__grid {
    grid-template-columns: 1fr;
  }

  .app-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TAPPING 101 PAGE
   ===================================================== */

/* Tapping 101 Hero */
.tapping-101-hero {
  background: linear-gradient(166deg, #2c3e50 0%, #304659 100%);
  padding: 120px 4% 80px;
  text-align: center;
}

.tapping-101-hero__container {
  max-width: 832px;
  margin: 0 auto;
}

.tapping-101-hero__title {
  font-family: 'Tinos', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 400;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.tapping-101-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.625;
  max-width: 585px;
  margin: 0 auto;
}

/* Tapping 101 History Section */
.tapping-101-history {
  background: #fffcf5;
  padding: 64px 4%;
}

.tapping-101-history__container {
  max-width: 700px;
  margin: 0 auto;
}

.tapping-101-history__card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tapping-101-history__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 24px;
}

.tapping-101-history__content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #364153;
  line-height: 1.625;
  margin-bottom: 16px;
}

.tapping-101-history__content p:last-child {
  margin-bottom: 0;
}

/* Tapping 101 Process Section */
.tapping-101-process {
  background: #f2efe9;
  padding: 64px 4%;
}

.tapping-101-process__container {
  max-width: 830px;
  margin: 0 auto;
}

.tapping-101-process__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 48px;
}

.tapping-101-process__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tapping-101-process__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.tapping-101-process__number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #2c3e50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
}

.tapping-101-process__step-content {
  flex: 1;
}

.tapping-101-process__step-title {
  font-family: 'Tinos', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.33;
}

.tapping-101-process__step-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #364153;
  line-height: 1.625;
  margin: 0;
}

.tapping-101-process__step-example {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-style: italic;
  color: #4a5565;
  line-height: 1.625;
  margin: 8px 0 0 0;
}

/* Tapping 101 Points Section */
.tapping-101-points {
  background: #fffcf5;
  padding: 64px 4%;
}

.tapping-101-points__container {
  max-width: 1024px;
  margin: 0 auto;
}

.tapping-101-points__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 16px;
}

.tapping-101-points__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: #4a5565;
  text-align: center;
  max-width: 768px;
  margin: 0 auto 48px;
  line-height: 1.56;
}

.tapping-101-points__image {
  text-align: center;
  margin-bottom: 48px;
}

.tapping-101-points__image img {
  display: block;
  max-width: 670px !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto;
  border-radius: 16px;
}

.tapping-101-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tapping-101-points__card {
  background: white;
  border: 1px solid #dae3e8;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tapping-101-points__card-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #75a293;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.tapping-101-points__card-content {
  flex: 1;
}

.tapping-101-points__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #2d3e50;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tapping-101-points__card-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: #4a5565;
  line-height: 1.625;
  margin: 0;
}

/* Tapping 101 CTA Section */
.tapping-101-cta {
  background: #f2efe9;
  padding: 64px 4%;
}

.tapping-101-cta__container {
  max-width: 830px;
  margin: 0 auto;
}

.tapping-101-cta__card {
  background: linear-gradient(161deg, #2c3e50 0%, #304659 100%);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.tapping-101-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.tapping-101-cta__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: white;
  line-height: 1.625;
  max-width: 651px;
  margin: 0 auto 32px;
}

.tapping-101-cta__button {
  display: inline-block;
  background: #e07856;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tapping-101-cta__button:hover {
  background: #c96a4a;
  color: white;
  transform: translateY(-2px);
}

/* Tapping 101 Science Section */
.tapping-101-science {
  background: #fffcf5;
  padding: 64px 4%;
}

.tapping-101-science__container {
  max-width: 1088px;
  margin: 0 auto;
}

.tapping-101-science__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 8px;
}

.tapping-101-science__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: #4a5565;
  text-align: center;
  margin-bottom: 48px;
}

.tapping-101-science__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tapping-101-science__card {
  background: white;
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tapping-101-science__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tapping-101-science__card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.tapping-101-science__card-icon img {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

.tapping-101-science__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.tapping-101-science__card-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #4a5565;
  line-height: 1.625;
  margin: 0;
}

/* Tapping 101 Responsive */
@media (max-width: 1024px) {
  .tapping-101-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tapping-101-science__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tapping-101-hero {
    padding: 100px 4% 60px;
  }

  .tapping-101-process__step {
    flex-direction: column;
    text-align: center;
  }

  .tapping-101-process__number {
    margin: 0 auto;
  }

  .tapping-101-points__grid {
    grid-template-columns: 1fr;
  }

  .tapping-101-points__card {
    flex-direction: column;
    text-align: center;
  }

  .tapping-101-points__card-number {
    margin: 0 auto 12px;
  }

  .tapping-101-science__grid {
    grid-template-columns: 1fr;
  }

  .tapping-101-cta__card {
    padding: 32px 24px;
  }
}

/* =====================================================
   ABOUT US PAGE
   ===================================================== */

/* About Hero */
.about-hero {
  background: linear-gradient(166deg, #2c3e50 0%, #304659 100%);
  padding: 120px 4% 80px;
  text-align: center;
}

.about-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.about-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.625;
  max-width: 700px;
  margin: 0 auto;
}

/* About Founders */
.about-founders {
  background: #fffcf5;
  padding: 64px 4%;
  text-align: center;
}

.about-founders__container {
  max-width: 900px;
  margin: 0 auto;
}

.about-founders__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.about-founders__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: #364153;
  line-height: 1.55;
  max-width: 672px;
  margin: 0 auto 64px auto;
}

.about-founders__image {
  max-width: 720px;
  margin: 0 auto 48px auto;
}

.about-founders__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-founders__bio {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #364153;
  line-height: 1.625;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.about-founders__bio p {
  margin-bottom: 24px;
}

.about-founders__bio p:last-child {
  margin-bottom: 0;
}

/* About Stats */
.about-stats {
  background: linear-gradient(180deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
  padding: 80px 4%;
  text-align: center;
}

.about-stats__container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-stats__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 64px;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.about-stats__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stats__number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  color: #e58a6a;
  line-height: 1;
}

.about-stats__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: #e5e7eb;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* About Journey */
.about-journey {
  background: #faf8f5;
  padding: 96px 4% 64px;
}

.about-journey__container {
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-journey__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 80px;
}

.about-journey__timeline {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}

/* Vertical timeline line */
.about-journey__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d1d5dc;
}

.about-journey__item {
  display: grid;
  grid-template-columns: 1fr 16px 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
}

.about-journey__item--left .about-journey__content {
  order: 1;
  text-align: left;
}

.about-journey__item--left .about-journey__dot {
  order: 2;
}

.about-journey__item--left .about-journey__image {
  order: 3;
}

.about-journey__item--right .about-journey__image {
  order: 1;
}

.about-journey__item--right .about-journey__dot {
  order: 2;
}

.about-journey__item--right .about-journey__content {
  order: 3;
  text-align: left;
}

.about-journey__dot {
  width: 16px;
  height: 16px;
  background: #e58a6a;
  border: 4px solid #faf8f5;
  border-radius: 50%;
  z-index: 1;
}

.about-journey__content {
  padding: 0;
}

.about-journey__year {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  background: #e58a6a;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.about-journey__item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-journey__item-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #364153;
  line-height: 1.625;
  margin: 0;
}

.about-journey__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .about-journey__timeline::before {
    display: none;
  }

  .about-journey__item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-journey__item--left .about-journey__content,
  .about-journey__item--right .about-journey__content {
    order: 1;
  }

  .about-journey__item--left .about-journey__image,
  .about-journey__item--right .about-journey__image {
    order: 2;
  }

  .about-journey__dot {
    display: none;
  }

  .about-journey__timeline {
    gap: 48px;
  }
}

/* About Experts */
.about-experts {
  background: #f2efe9;
  padding: 96px 4%;
}

.about-experts__container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-experts__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 64px;
}

.about-experts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.about-experts__card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.about-experts__card-image {
  overflow: hidden;
  flex-shrink: 0;
  height: 256px;
  min-height: 256px;
  max-height: 256px;
}

.about-experts__card-image img {
  width: 100% !important;
  height: 256px !important;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-experts__card-content {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.about-experts__card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.2;
  margin: 0;
}

.about-experts__card-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: #6a7282;
  line-height: 1.4;
  margin: 0 0 24px 0;
}

.about-experts__card-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: normal;
  color: #4a5568;
  line-height: 1.4;
  margin: 0;
}

.about-experts__card-quote strong {
  font-weight: 700;
}

/* About CTA */
.about-cta {
  background: #fffcf5;
  padding: 64px 4% 80px;
  text-align: center;
}

.about-cta__container {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.about-cta__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  color: #364153;
  line-height: 1.625;
  margin: 0;
  max-width: 884px;
}

.about-cta__image {
  max-width: 456px;
}

.about-cta__image img {
  width: 100%;
  height: auto;
}

.about-cta__button {
  display: inline-block;
  background: #75a293;
  color: white;
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta__button:hover {
  background: #668f81;
  color: white;
  transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-experts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 4% 60px;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-journey__item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-journey__item--right {
    direction: ltr;
  }

  .about-experts__grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   PAIN INTRO SECTION
   ===================================================== */

.pain-intro {
  background: #fffcf5;
  padding: 60px 0 0;
}

.pain-intro__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.pain-intro__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.pain-intro__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #364153;
  margin: 0;
  max-width: 800px;
}

@media (max-width: 768px) {
  .pain-intro {
    padding: 40px 0 0;
  }

  .pain-intro__title {
    font-size: 28px;
    line-height: 36px;
  }

  .pain-intro__text {
    font-size: 16px;
    line-height: 26px;
  }
}

/* =====================================================
   PAIN APP DATA SECTION
   ===================================================== */

.pain-app-data {
  background: linear-gradient(135deg, #2c3e50 0%, #3a5068 100%);
  padding: 60px 0;
  margin-top: 60px;
}

.pain-app-data__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.pain-app-data__badge {
  display: inline-block;
  background: rgba(224, 123, 92, 0.2);
  color: #e58a6a;
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.pain-app-data__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: white;
  margin-bottom: 16px;
}

.pain-app-data__subtitle {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

.pain-app-data__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.pain-app-data__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.pain-app-data__stat-value {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #e58a6a;
}

.pain-app-data__stat-label {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.pain-app-data-wrapper {
  background: #fffcf5;
}

@media (max-width: 768px) {
  .pain-app-data {
    padding: 48px 0;
    margin-top: 40px;
  }

  .pain-app-data__title {
    font-size: 28px;
    line-height: 36px;
  }

  .pain-app-data__subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .pain-app-data__stats {
    gap: 32px;
  }

  .pain-app-data__stat-value {
    font-size: 36px;
  }
}

/* =====================================================
   PAIN NNT SECTION
   ===================================================== */

.pain-nnt {
  background: #fffcf5;
  padding: 60px 0 0;
}

.pain-nnt__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.pain-nnt__box {
  background: #f8f6f3;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pain-nnt__number {
  text-align: center;
}

.pain-nnt__value {
  display: block;
  font-family: 'Playfair Display', var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: #e58a6a;
  line-height: 1;
}

.pain-nnt__label {
  display: block;
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #2c3e50;
  margin-top: 12px;
}

.pain-nnt__explanation-title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.pain-nnt__explanation-text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #364153;
  margin: 0;
}

@media (max-width: 768px) {
  .pain-nnt {
    padding: 40px 0 0;
  }

  .pain-nnt__box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .pain-nnt__value {
    font-size: 60px;
  }

  .pain-nnt__label {
    font-size: 16px;
  }

  .pain-nnt__explanation-title {
    font-size: 18px;
  }

  .pain-nnt__explanation-text {
    font-size: 15px;
    line-height: 24px;
  }
}

/* =====================================================
   PAIN KEY FINDING SECTION
   ===================================================== */

.pain-key-finding {
  background: #fffcf5;
  padding: 40px 0 0;
}

.pain-key-finding__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.pain-key-finding__box {
  background: rgba(229, 138, 106, 0.1);
  border-left: 4px solid #e58a6a;
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
}

.pain-key-finding__title {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #e58a6a;
  margin-bottom: 8px;
}

.pain-key-finding__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #364153;
  margin: 0;
}

.pain-key-finding__text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .pain-key-finding {
    padding: 32px 0 0;
  }

  .pain-key-finding__box {
    padding: 20px 24px;
  }

  .pain-key-finding__text {
    font-size: 16px;
    line-height: 26px;
  }
}



/* =====================================================
   SLEEP INTRO SECTION
   ===================================================== */

.sleep-intro {
  background: #fffcf5;
  padding: 64px 0 0;
}

.sleep-intro__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.sleep-intro__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.sleep-intro__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: #4a5565;
  max-width: 744px;
  margin-bottom: 16px;
}

.sleep-intro__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .sleep-intro {
    padding: 48px 0 0;
  }

  .sleep-intro__title {
    font-size: 28px;
    line-height: 34px;
  }

  .sleep-intro__text {
    font-size: 16px;
    line-height: 26px;
  }
}

/* =====================================================
   SLEEP SPOTLIGHT SECTION
   ===================================================== */

.sleep-spotlight {
  background: #fffcf5;
  padding: 48px 0;
}

.sleep-spotlight__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.sleep-spotlight__card {
  background: linear-gradient(135deg, #2c3e50 0%, #3a5068 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
}

.sleep-spotlight__badge {
  display: inline-block;
  background: rgba(229, 138, 106, 0.2);
  color: #e58a6a;
  font-family: 'Open Sans', var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.sleep-spotlight__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: white;
  margin-bottom: 16px;
}

.sleep-spotlight__description {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.sleep-spotlight__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.sleep-spotlight__stat {
  text-align: center;
}

.sleep-spotlight__stat-value {
  display: block;
  font-family: 'Playfair Display', var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #e58a6a;
  margin-bottom: 8px;
}

.sleep-spotlight__stat-label {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .sleep-spotlight {
    padding: 32px 0;
  }

  .sleep-spotlight__card {
    padding: 32px 24px;
  }

  .sleep-spotlight__title {
    font-size: 24px;
    line-height: 32px;
  }

  .sleep-spotlight__stats {
    gap: 24px;
  }

  .sleep-spotlight__stat-value {
    font-size: 24px;
  }
}

/* =====================================================
   SLEEP KEY FINDING SECTION
   ===================================================== */

.sleep-key-finding {
  background: #fffcf5;
  padding: 0 0 48px;
}

.sleep-key-finding__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.sleep-key-finding__box {
  background: #f8e8e1;
  border-left: 4px solid #e58a6a;
  border-radius: 0 12px 12px 0;
  padding: 24px;
}

.sleep-key-finding__label {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #e58a6a;
  margin: 0 0 8px;
}

.sleep-key-finding__text {
  font-family: 'Open Sans', var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  color: #2c3e50;
  margin: 0;
}

.sleep-key-finding__text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .sleep-key-finding {
    padding: 0 0 32px;
  }

  .sleep-key-finding__text {
    font-size: 15px;
    line-height: 24px;
  }
}

/* =====================================================
   SLEEP SESSIONS TABLE SECTION
   ===================================================== */

.sleep-sessions-table {
  background: #fffcf5;
  padding: 0 0 48px;
}

.sleep-sessions-table__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.sleep-sessions-table__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.sleep-sessions-table__wrapper {
  overflow-x: auto;
}

.sleep-sessions-table__table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.sleep-sessions-table__table th,
.sleep-sessions-table__table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.sleep-sessions-table__table th {
  background: #2c3e50;
  color: white;
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

.sleep-sessions-table__table td {
  font-family: 'Open Sans', var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #4a5565;
}

.sleep-sessions-table__table tr:last-child td {
  border-bottom: none;
}

.sleep-sessions-table__table tbody tr:hover td {
  background: #f9fafb;
}

.sleep-sessions-table__effect-size {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-weight: 600;
  color: #e58a6a;
}

.sleep-sessions-table__note {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #6b7280;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .sleep-sessions-table__title {
    font-size: 20px;
    line-height: 28px;
  }

  .sleep-sessions-table__table {
    font-size: 14px;
  }

  .sleep-sessions-table__table th,
  .sleep-sessions-table__table td {
    padding: 12px 16px;
  }
}

/* =====================================================
   SLEEP COMPARISON SECTION
   ===================================================== */

.sleep-comparison {
  background: #fffcf5;
  padding: 0 0 64px;
}

.sleep-comparison__container {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 24px;
}

.sleep-comparison__title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2c3e50;
  margin-bottom: 32px;
}

.sleep-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.sleep-comparison__card {
  background: white;
  border: 1px solid #c4d1da;
  border-radius: 16px;
  padding: 24px;
}

.sleep-comparison__card--highlight .sleep-comparison__card-name {
  color: #e58a6a;
}

.sleep-comparison__card-name {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 8px;
}

.sleep-comparison__effect-size {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 8px;
}

.sleep-comparison__note {
  font-family: 'Open Sans', var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
}

.sleep-comparison__conclusion {
  font-family: 'Open Sans', var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #4a5565;
  margin: 0;
}

.sleep-comparison__conclusion strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .sleep-comparison__title {
    font-size: 28px;
    line-height: 34px;
  }

  .sleep-comparison__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sleep-comparison__effect-size {
    font-size: 20px;
  }
}


/* =====================================================
   PRESS & MEDIA PAGE
   ===================================================== */

.press-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3e5f78 100%);
  padding: 140px 4% 80px;
  text-align: center;
}

.press-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 400;
}

.press-hero .subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.press-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 48px auto 0;
}

.press-stat {
  text-align: center;
  min-width: 168px;
}

.press-stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #e58a6a;
  line-height: 1.2;
}

.press-stat-label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* Featured Section */
.featured-section {
  background: #FFFCF5;
  padding: 80px 32px;
}

.featured-container {
  max-width: 1152px;
  margin: 0 auto;
}

.featured-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 16px;
}

.featured-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #4a5565;
  text-align: center;
  margin-bottom: 48px;
}

.featured-logos-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.featured-logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.featured-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  min-height: 100px;
}

.featured-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.featured-logo img.logo-today {
  max-height: 80px;
  transform: scale(1.3);
}

.content-section {
  padding: 5rem 4%;
  max-width: 1200px;
  margin: 0 auto;
}

.media-logo:hover img {
  opacity: 1;
}

/* Key Facts Section */
.key-facts-section {
  background: #f2efe9;
  padding: 80px 32px;
}

.key-facts-container {
  max-width: 1152px;
  margin: 0 auto;
}

.key-facts-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: #0a0a0a;
  text-align: center;
  margin-bottom: 48px;
}

.key-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.key-facts-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.key-facts-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin: 0 auto 24px;
}

.key-facts-card-icon img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.key-facts-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 24px;
}

.key-facts-card-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #4a5565;
  line-height: 1.625;
  margin: 0;
}

/* Press Kit Section */
.press-kit-section {
  background: #fffcf5;
  padding: 64px 32px 80px;
}

.press-kit-container {
  max-width: 1152px;
  margin: 0 auto;
}

.press-kit-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #0a0a0a;
  text-align: center;
  margin-bottom: 16px;
}

.press-kit-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #4a5565;
  text-align: center;
  margin-bottom: 48px;
}

.press-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-kit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.press-kit-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 16px;
}

.press-kit-card-icon img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.press-kit-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.press-kit-card-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #4a5565;
  line-height: 1.43;
  margin-bottom: 16px;
}

.press-kit-card-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #e58a6a;
  text-decoration: none;
}

.press-kit-card-link:hover {
  color: #c97258;
  text-decoration: underline;
}

.press-kit-footer {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #4a5565;
  text-align: center;
  margin-top: 32px;
}

.press-kit-footer a {
  color: #e58a6a;
  text-decoration: none;
}

.press-kit-footer a:hover {
  text-decoration: underline;
}

/* Media Inquiries Section */
.media-inquiries-section {
  background: #f2efe9;
  padding: 80px 32px;
}

.media-inquiries-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.media-inquiries-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.media-inquiries-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #4a5565;
  line-height: 1.5;
  margin-bottom: 24px;
}

.media-inquiries-email {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #e58a6a;
  text-decoration: none;
}

.media-inquiries-email:hover {
  color: #c97258;
  text-decoration: underline;
}

.media-inquiries-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: #d1cdc6;
  margin: 48px auto;
}

.media-inquiries-general {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.media-inquiries-general-email {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #e58a6a;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.media-inquiries-general-email:hover {
  color: #c97258;
  text-decoration: underline;
}

.media-inquiries-address {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  color: #4a5565;
  line-height: 1.6;
}

/* Press CTA Section */
.press-cta-section {
  background: #fffcf5;
  padding: 80px 32px 100px;
  text-align: center;
}

.press-cta-container {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
}

.press-cta-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #4a5565;
  line-height: 1.55;
  margin-bottom: 40px;
}

.press-cta-image {
  max-width: 456px;
  width: 100%;
  margin-bottom: 40px;
}

.press-cta-image img {
  width: 100%;
  height: auto;
}

.press-cta-button {
  display: inline-block;
  background: #75a293;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.press-cta-button:hover {
  background: #5d8a7b;
  color: #ffffff;
}

/* Press Page Responsive Styles */
@media (max-width: 1024px) {
  .featured-logos-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .key-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .press-hero {
    padding: 120px 24px 60px;
  }

  .press-stats {
    gap: 24px;
  }

  .press-stat {
    min-width: 140px;
  }

  .featured-section {
    padding: 60px 24px;
  }

  .featured-logos-wrapper {
    padding: 32px 24px;
  }

  .featured-logos-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .featured-logo {
    min-height: 80px;
    padding: 12px;
  }

  .key-facts-section {
    padding: 60px 24px;
  }

  .key-facts-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .key-facts-grid {
    gap: 16px;
  }

  .key-facts-card {
    padding: 24px;
  }

  .press-kit-section {
    padding: 48px 24px 60px;
  }

  .press-kit-title {
    font-size: 32px;
  }

  .press-kit-grid {
    gap: 16px;
  }

  .media-inquiries-section {
    padding: 60px 24px;
  }

  .media-inquiries-title {
    font-size: 32px;
  }

  .press-cta-section {
    padding: 48px 24px 60px;
  }

  .press-cta-title {
    font-size: 32px;
  }

  .press-cta-subtitle {
    font-size: 16px;
  }

  .press-cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .featured-logos-row {
    grid-template-columns: 1fr;
  }

  .key-facts-grid {
    grid-template-columns: 1fr;
  }

  .press-kit-grid {
    grid-template-columns: 1fr;
  }
}
