/* TherapaJi - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
  /* Brand Colors — Healing Green */
  --primary: #0f766e;
  --primary-light: #14b8a6;
  --primary-dark: #0a5c56;
  --primary-glow: rgba(15, 118, 110, 0.12);
  --accent: #1d4ed8;
  --accent-light: #3b82f6;

  /* Saffron — Cultural Warmth (Signature Accent) */
  --saffron: #e8930c;
  --saffron-light: #f5b731;
  --saffron-dark: #c27808;
  --saffron-glow: rgba(232, 147, 12, 0.15);

  /* Warm Dark — Grounding */
  --dark-bg: #111b1e;
  --dark-surface: #1a2629;
  --dark-elevated: #223033;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-text: #e8e4df;
  --dark-text-muted: #9a9590;

  /* Warm Light — Background */
  --bg-warm: #faf8f5;
  --bg-surface: #f3f0ec;
  --border-warm: #e5e0d9;
  --text-warm: #2c2520;
  --text-muted-warm: #6b6158;

  /* Neutrals (legacy compat) */
  --neutral-50: #faf8f5;
  --neutral-100: #f3f0ec;
  --neutral-200: #e5e0d9;
  --neutral-300: #d4d0ca;
  --neutral-400: #a39e96;
  --neutral-500: #737068;
  --neutral-600: #525048;
  --neutral-700: #403e38;
  --neutral-800: #2c2520;
  --neutral-900: #1a1714;

  /* Typography */
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 5rem 1.5rem;
  --container-max: 1200px;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a1210 0%, #111b1e 25%, #0f766e 60%, #1a3a3a 100%);
  --gradient-dark: linear-gradient(180deg, #111b1e 0%, #0a1210 100%);
  --gradient-saffron: linear-gradient(135deg, #e8930c 0%, #f5b731 100%);
  --gradient-saffron-teal: linear-gradient(135deg, var(--saffron) 0%, var(--primary) 100%);
  --gradient-glow: radial-gradient(ellipse at 30% 0%, rgba(15, 118, 110, 0.2), transparent 60%),
                   radial-gradient(ellipse at 70% 100%, rgba(232, 147, 12, 0.1), transparent 60%);

  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 24px 48px -12px rgba(44, 37, 32, 0.12);
  --shadow-card-hover: 0 32px 64px -12px rgba(44, 37, 32, 0.16);
  --shadow-glow-teal: 0 0 40px -10px rgba(15, 118, 110, 0.3);
  --shadow-glow-saffron: 0 0 40px -10px rgba(232, 147, 12, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 600ms ease;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--text-warm);
  background: var(--bg-warm);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

a:hover {
  color: var(--primary-dark);
}

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

/* ===== Accessibility ===== */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-normal);
}

.skip-link:focus {
  top: 0;
  color: white;
}

/* Focus States - WCAG 2.1 Compliant */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Focus within for containers */
.btn:focus-visible,
.nav-links a:focus-visible,
.logo:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: more) {
  :root {
    --primary: #0a7a70;
    --neutral-600: #404040;
  }

  .btn-secondary {
    border-width: 3px;
  }
}

/* ===== Utilities ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  min-height: 44px;
  min-width: 44px;
}

/* Button Polish */
.btn-primary {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(13, 148, 136, 0.5); /* Colored shadow */
}

/* Secondary Button - Base Definition */
.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Large Button Variant */
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Premium Glassmorphism */
.glass-card,
.hero-tagline,
.language-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white; /* Ensure text is readable */
}

/* Video Facade Styles */
.video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
  aspect-ratio: 16/9; /* Prevent layout shift */
  cursor: pointer;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.video-container:hover .video-poster {
  transform: scale(1.02);
  opacity: 0.9;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
}

.logo svg {
  width: 40px;
  height: 40px;
}

/* Co-branding with EPP */
.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: var(--neutral-300);
}

.partner-logo {
  display: flex;
  align-items: center;
}

.partner-logo img {
  height: 28px;
  width: auto;
  max-width: 100px;
  max-height: 28px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.partner-logo:hover img {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-links a {
  color: var(--neutral-700);
  font-weight: 500;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

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

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] {
  color: var(--saffron);
}

.nav-links a[aria-current="page"]::after {
  background: var(--saffron);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-700);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-fit {
  margin-bottom: 1.5rem;
}

.hero-fit-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-fit ul {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-fit li {
  margin-bottom: 0.5rem;
}

.hero-reassurance {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.hero-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.language-tag {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero-ctas .btn-primary:hover {
  background: var(--neutral-100);
  color: var(--primary-dark);
}

.hero-ctas .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.hero-ctas .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-image-wrapper img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

/* Hero Video Section */
.hero-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.9);
  border: 3px solid white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  z-index: 10;
}

.video-play-btn:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-container video::-webkit-media-controls {
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.video-container video:hover::-webkit-media-controls,
.video-container video:focus::-webkit-media-controls {
  opacity: 1;
}

/* Glassmorphism card in hero */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 2rem;
}

/* ===== How It Works Section ===== */
.how-it-works {
  background: var(--neutral-100);
  padding: 4rem 1.5rem;
}

.how-it-works .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-title-centered {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--neutral-900);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--neutral-900);
}

.step p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.steps-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step {
    padding: 1.5rem;
  }
}

/* Supervision Note in About */
.supervision-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--neutral-100);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.supervision-note a {
  color: var(--primary);
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: white;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.trust-item p {
  color: var(--neutral-600);
  font-size: 0.875rem;
  margin: 0;
}

/* ===== About Section ===== */
.about {
  background: white;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img,
.headshot-img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  max-width: 350px;
  width: 100%;
  height: auto;
  transition: transform var(--transition-normal);
}

.about-image img:hover,
.headshot-img:hover {
  transform: scale(1.02);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--neutral-600);
  line-height: 1.8;
}

.about-content p em {
  color: var(--neutral-700);
  font-style: italic;
}

.about-content .about-location {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
  color: var(--neutral-500);
  font-size: 0.95rem;
}

/* Jeffrey Photo */
.jeffrey-photo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, var(--neutral-100) 0%, rgba(13, 148, 136, 0.05) 100%);
  border-radius: 1rem;
  border: 1px solid var(--neutral-200);
}

.jeffrey-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.jeffrey-caption {
  font-size: 0.95rem;
  color: var(--neutral-600);
  font-style: italic;
}

@media (max-width: 480px) {
  .jeffrey-photo {
    flex-direction: column;
    text-align: center;
  }

  .jeffrey-photo img {
    width: 100px;
    height: 100px;
  }
}

/* ===== Services Section ===== */
.services {
  background: var(--neutral-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-200);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin: 0;
}

/* ===== Testimonials ===== */
.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--neutral-50);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
}

.testimonial-quote {
  font-style: italic;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  left: 0;
  top: -0.5rem;
  line-height: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--neutral-900);
}

/* ===== FAQ Section ===== */
.faq {
  background: var(--neutral-100);
}

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

.faq-item {
  background: white;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--neutral-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--neutral-800);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--neutral-50);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--neutral-600);
}

/* ===== Crisis Banner ===== */
.crisis-banner {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
}

.crisis-banner h3 {
  color: white;
  margin-bottom: 1rem;
}

.crisis-resources {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.crisis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crisis-item strong {
  font-size: 1.25rem;
}

.crisis-item span {
  opacity: 0.9;
  font-size: 0.875rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 5rem 1.5rem;
}

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

.cta-section p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.cta-section .btn-primary:hover {
  background: var(--neutral-100);
}

/* ===== Contact Section ===== */
.contact {
  background: white;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h3 {
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: var(--neutral-600);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--neutral-700);
}

.contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

/* ===== Footer ===== */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-400);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Partnership co-branding */
.footer-partnership {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--neutral-700);
}

.footer-partnership-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.footer-partnership-x {
  color: var(--neutral-500);
  font-size: 1.25rem;
}

.footer-partner-logo {
  height: 40px;
  width: auto;
  filter: brightness(1.1);
}

.footer-tagline {
  color: var(--neutral-500);
  font-style: italic;
  font-size: 0.9375rem;
  margin: 0;
}

.footer-disclosure {
  background: var(--neutral-800);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  text-align: center;
}

.footer-disclosure a {
  color: var(--primary-light);
}

.footer-disclosure a:hover {
  color: var(--primary);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
}

.footer-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: 0.5rem;
  border-radius: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* ===== Reading Progress Bar ===== */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--neutral-200);
  z-index: 1001;
}

.reading-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width var(--transition-fast);
}

.reading-progress.complete {
  background: var(--primary);
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* ===== Key Takeaways Box ===== */
.key-takeaways {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid var(--primary);
  border-left: 4px solid var(--primary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.key-takeaways h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-takeaways h4::before {
  content: "⚡";
}

.key-takeaways ul {
  margin: 0;
  padding-left: 1.25rem;
}

.key-takeaways li {
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
}

.key-takeaways li:last-child {
  margin-bottom: 0;
}

/* ===== Related Posts ===== */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}

.related-posts h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-post-card {
  background: var(--neutral-100);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-200);
}

.related-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.related-post-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.related-post-card h4 a {
  color: var(--neutral-800);
}

.related-post-card h4 a:hover {
  color: var(--primary);
}

.related-post-card .meta {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* ===== Mid-Content CTA ===== */
.inline-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.inline-cta h4 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.inline-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

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

.inline-cta .btn:hover {
  background: var(--neutral-100);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .reading-progress-container {
    height: 3px;
  }

  .key-takeaways {
    padding: 1.25rem;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    padding: 1.5rem;
  }
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: var(--neutral-100);
  padding: 0.75rem 0;
  padding-top: calc(70px + 0.75rem); /* Account for fixed header */
  font-size: 0.875rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-500);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--neutral-400);
}

.breadcrumb a {
  color: var(--neutral-600);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumb li:last-child {
  color: var(--neutral-700);
  font-weight: 500;
}

/* ===== Blog Styles ===== */
.blog-listing {
  background: var(--neutral-50);
  min-height: 100vh;
  padding-top: 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-200);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--neutral-200);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--neutral-900);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin: 0 0 1rem 0;
}

.blog-card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition-fast);
}

.blog-card-link:hover {
  gap: 0.5rem;
  color: var(--primary-dark);
}

/* Blog Intro Text */
.blog-intro {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--neutral-600);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.blog-intro p {
  margin-bottom: 0.75rem;
}

.blog-intro p:last-child {
  margin-bottom: 0;
}

/* Single Blog Post */
.blog-single {
  background: white;
  min-height: 100vh;
  padding-top: 0; /* Breadcrumb handles top spacing */
}

.blog-header {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.blog-header h1 {
  color: white;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.blog-meta {
  opacity: 0.9;
}

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

.blog-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  color: var(--neutral-700);
  line-height: 1.8;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--neutral-700);
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--neutral-600);
}

.blog-cta {
  background: var(--neutral-100);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.blog-cta h3 {
  margin-bottom: 1rem;
}

.blog-cta p {
  margin-bottom: 1.5rem;
}

/* Blog Subtitle */
.blog-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
  max-width: 700px;
}

/* Reading Time */
.reading-time {
  font-style: italic;
}

.category {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Author Box (Header) */
.author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-avatar-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary, #0f766e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: white;
}

.author-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.share-buttons > span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: white;
}

.share-copy.copied {
  background: var(--primary-light);
}

/* Table of Contents */
.toc {
  background: var(--neutral-100);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.toc summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.toc nav {
  margin-top: 1rem;
}

.toc ul {
  list-style: none;
  padding-left: 0;
}

.toc li {
  margin: 0.5rem 0;
}

.toc a {
  color: var(--neutral-700);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  padding: 0.25rem 0;
}

.toc a:hover {
  color: var(--primary);
}

.toc ul ul {
  padding-left: 1.25rem;
  margin-top: 0.25rem;
}

.toc ul ul a {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* Blog Tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}

.tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--neutral-100);
  color: var(--neutral-700);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.tag:hover {
  background: var(--primary);
  color: white;
}

/* Bottom Share Section */
.share-bottom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
}

.share-bottom p {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.share-bottom .share-buttons {
  justify-content: center;
}

.share-bottom .share-btn {
  width: auto;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  gap: 0.5rem;
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--neutral-100);
  border-radius: 16px;
  margin: 2rem 0;
  align-items: flex-start;
}

.author-bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-bio-content h4 {
  margin-bottom: 0.5rem;
  color: var(--neutral-800);
}

.author-bio-content p {
  color: var(--neutral-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.author-bio-link {
  font-weight: 500;
  color: var(--primary);
}

/* Blog Content Images */
.blog-content img {
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

/* Blog Video */
.blog-video {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Blog Content Strong/Bold */
.blog-content strong {
  color: var(--neutral-900);
}

/* Blog Content HR */
.blog-content hr {
  border: none;
  height: 1px;
  background: var(--neutral-200);
  margin: 3rem 0;
}

/* ===== Blog Callout Boxes ===== */
.callout {
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  position: relative;
}

.callout-insight {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(13, 148, 136, 0.03) 100%);
  border-left: 4px solid var(--primary);
}

.callout-tool {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.03) 100%);
  border-left: 4px solid var(--accent);
}

.callout-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
  border-left: 4px solid #f59e0b;
}

.callout h4 {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
}

.callout-insight h4 { color: var(--primary-dark); }
.callout-tool h4 { color: var(--accent); }
.callout-warning h4 { color: #d97706; }

.callout p:last-child {
  margin-bottom: 0;
}

/* Mantra/Highlight Box */
.mantra-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
}

.mantra-box h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.mantra-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
}

/* Tool Cards Grid */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.tool-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all var(--transition-normal);
}

.tool-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tool-card h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.tool-card p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .mantra-box {
    padding: 2rem 1.5rem;
  }

  .mantra-box h3 {
    font-size: 1.5rem;
  }
}

/* Pull Quote */
.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  padding: 2rem;
  margin: 2.5rem 0;
  border-top: 2px solid var(--neutral-200);
  border-bottom: 2px solid var(--neutral-200);
  line-height: 1.4;
}

/* Numbered List with Icons */
.blog-content ol.tool-list {
  list-style: none;
  padding-left: 0;
  counter-reset: tool-counter;
}

.blog-content ol.tool-list li {
  counter-increment: tool-counter;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.blog-content ol.tool-list li::before {
  content: counter(tool-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

/* ===== Interactive Therapy Tools ===== */

/* Reframe Tool */
.reframe-tool {
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
  border-radius: 20px;
  padding: 2rem;
  margin: 2.5rem 0;
  border: 2px solid var(--primary-light);
  position: relative;
  overflow: hidden;
}

.reframe-tool::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.reframe-tool-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.reframe-tool-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.reframe-tool-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 0;
}

.reframe-tool-subtitle {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin: 0;
}

/* Step Indicator */
.reframe-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.reframe-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neutral-300);
  transition: all var(--transition-normal);
}

.reframe-step-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.reframe-step-dot.completed {
  background: var(--primary-light);
}

/* Reframe Sections */
.reframe-section {
  display: none;
  animation: fadeSlideIn 0.4s ease;
}

.reframe-section.active {
  display: block;
}

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

.reframe-label {
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 0.75rem;
  display: block;
  font-size: 1rem;
}

.reframe-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  resize: none;
  transition: all var(--transition-normal);
  background: white;
  min-height: 100px;
}

.reframe-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.reframe-input::placeholder {
  color: var(--neutral-400);
  font-style: italic;
}

/* Thought Display */
.thought-display {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  border-left: 4px solid var(--neutral-400);
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--neutral-600);
}

.thought-display.negative {
  border-left-color: #ef4444;
  background: #fef2f2;
}

.thought-display.reframed {
  border-left-color: var(--primary);
  background: #f0fdfa;
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 500;
}

/* Prompts */
.reframe-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.reframe-prompt {
  background: white;
  border: 2px solid var(--neutral-200);
  padding: 0.625rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--neutral-700);
}

.reframe-prompt:hover {
  border-color: var(--primary);
  background: rgba(13, 148, 136, 0.05);
  transform: translateY(-2px);
}

.reframe-prompt.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Buttons */
.reframe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.reframe-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.reframe-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

.reframe-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.reframe-btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.reframe-btn-secondary:hover {
  background: rgba(13, 148, 136, 0.05);
}

.reframe-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Celebration */
.reframe-celebration {
  text-align: center;
  padding: 1rem;
}

.reframe-celebration-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: celebrateBounce 0.6s ease;
}

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

.reframe-celebration h4 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.reframe-celebration p {
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
}

/* Transformation Animation */
.thought-transform {
  position: relative;
  overflow: hidden;
}

.thought-transform .thought-display {
  transition: all var(--transition-slow);
}

.thought-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 1rem 0;
  animation: arrowPulse 1.5s ease infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(5px); opacity: 0.7; }
}

/* ===== Winter Wellness Checklist ===== */
.wellness-checklist {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border-radius: 20px;
  padding: 2rem;
  margin: 2.5rem 0;
  border: 2px solid #fbbf24;
  position: relative;
}

.wellness-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.wellness-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wellness-icon {
  font-size: 2rem;
}

.wellness-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #92400e;
  margin: 0;
}

/* Progress Ring */
.wellness-progress {
  position: relative;
  width: 60px;
  height: 60px;
}

.wellness-progress svg {
  transform: rotate(-90deg);
}

.wellness-progress-bg {
  fill: none;
  stroke: #fde68a;
  stroke-width: 6;
}

.wellness-progress-fill {
  fill: none;
  stroke: #f59e0b;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset var(--transition-slow);
}

.wellness-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 0.875rem;
  color: #92400e;
}

/* Checklist Items */
.wellness-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wellness-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  user-select: none;
}

.wellness-item:hover {
  transform: translateX(4px);
  border-color: #fbbf24;
}

.wellness-item.checked {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #10b981;
}

.wellness-item.checked .wellness-checkbox {
  background: #10b981;
  border-color: #10b981;
}

.wellness-item.checked .wellness-checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.wellness-item.checked .wellness-item-text {
  color: #065f46;
}

.wellness-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #d4d4d4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  flex-shrink: 0;
  background: white;
}

.wellness-checkbox svg {
  width: 16px;
  height: 16px;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-fast);
}

.wellness-item-content {
  flex: 1;
}

.wellness-item-text {
  font-weight: 500;
  color: var(--neutral-800);
  margin: 0;
  transition: color var(--transition-normal);
}

.wellness-item-hint {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin: 0.25rem 0 0 0;
}

.wellness-item-emoji {
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}

.wellness-item.checked .wellness-item-emoji {
  animation: emojiPop 0.4s ease;
}

@keyframes emojiPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3) rotate(10deg); }
  100% { transform: scale(1); }
}

/* Completion Message */
.wellness-complete {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  margin-top: 1rem;
  animation: fadeSlideIn 0.5s ease;
}

.wellness-complete.show {
  display: block;
}

.wellness-complete-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.wellness-complete h4 {
  color: #065f46;
  margin: 0 0 0.5rem 0;
}

.wellness-complete p {
  color: #047857;
  margin: 0;
  font-size: 0.95rem;
}

/* Reset Button */
.wellness-reset {
  display: block;
  margin: 1rem auto 0;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--neutral-500);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.wellness-reset:hover {
  border-color: var(--neutral-400);
  color: var(--neutral-700);
}

/* ===== Confetti Animation ===== */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ===== Trust Signals Bar ===== */
.trust-signals {
  background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-50) 100%);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: 1.5rem 0;
}

.trust-signals .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* Insurance Badge */
.insurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--neutral-200);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--neutral-700);
  transition: all var(--transition-fast);
}

.insurance-badge:hover {
  border-color: var(--primary-light);
  background: var(--neutral-50);
}

.insurance-badge img {
  height: 20px;
  width: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-signals .container {
    gap: 1rem;
  }

  .trust-badge {
    font-size: 0.8rem;
  }
}

/* ===== Interactive Tools Responsive ===== */
@media (max-width: 768px) {
  .reframe-tool,
  .wellness-checklist {
    padding: 1.5rem;
    margin: 2rem -0.5rem;
    border-radius: 16px;
  }

  .reframe-tool-title,
  .wellness-title {
    font-size: 1.25rem;
  }

  .reframe-prompts {
    justify-content: center;
  }

  .reframe-actions {
    flex-direction: column;
  }

  .reframe-btn {
    width: 100%;
  }

  .wellness-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .wellness-progress {
    align-self: flex-end;
    margin-top: -3rem;
  }
}

/* Responsive for new blog elements */
@media (max-width: 768px) {
  .author-box {
    flex-direction: row;
  }

  .share-buttons {
    justify-content: flex-start;
  }

  .share-bottom .share-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .toc {
    padding: 1rem;
  }
}

/* ===== Location Pages ===== */
.location-page {
  background: white;
  min-height: 100vh;
}

.location-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

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

.location-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.location-content {
  padding: 4rem 1.5rem;
}

.location-content .container {
  max-width: 900px;
}

.location-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.location-content p {
  color: var(--neutral-700);
  line-height: 1.8;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image,
  .hero-video {
    order: -1;
  }

  .video-container {
    max-width: 100%;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
  }

  .services-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .mobile-menu-btn {
    display: block;
  }

  .nav.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .services-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .crisis-resources {
    flex-direction: column;
    gap: 1rem;
  }

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

  .section {
    padding: 3rem 1rem;
  }

  /* Mobile Header Compression */
  .header-inner {
    padding: 0.75rem 1rem;
  }

  .logo-group {
    gap: 0.75rem;
  }

  .logo-divider {
    height: 28px;
  }

  .epp-letters {
    font-size: 1.25rem;
  }

  .epp-tagline {
    font-size: 0.55rem;
  }

  .practitioner-name {
    font-size: 0.95rem;
  }

  .practitioner-title {
    font-size: 0.6rem;
  }

  .therapaji-mark {
    width: 24px;
    height: 24px;
  }

  .therapaji-mark svg {
    width: 14px;
    height: 14px;
  }

  /* Legacy */
  .logo {
    font-size: 1.125rem;
  }

  .logo svg {
    width: 32px;
    height: 32px;
  }

  /* Hero CTA Buttons Stack */
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  /* Button Touch Targets */
  .btn {
    padding: 1rem 1.75rem;
    font-size: 1.0625rem;
    min-height: 48px;
  }

  /* Service Cards Mobile */
  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-size: 1.125rem;
  }

  .service-card p {
    font-size: 0.9375rem;
  }

  /* FAQ Mobile */
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-question svg {
    width: 24px;
    height: 24px;
  }

  .faq-answer-inner {
    padding: 0 1.25rem 1rem;
    font-size: 0.9375rem;
  }

  /* Trust Bar Mobile */
  .trust-item h3 {
    font-size: 1.5rem;
  }

  .trust-item p {
    font-size: 0.8125rem;
  }

  /* Blog Mobile Optimizations */
  .blog-header {
    padding: 2.5rem 1rem 2rem;
  }

  .blog-header h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .blog-subtitle {
    font-size: 1rem;
  }

  .blog-meta {
    font-size: 0.8125rem;
  }

  .author-box {
    padding: 0.75rem;
    margin: 1rem 0;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .author-title {
    font-size: 0.75rem;
  }

  /* TOC Mobile - Start collapsed */
  .toc details:not([open]) {
    max-height: 48px;
  }

  .toc summary {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  /* Share buttons - better touch targets */
  .share-buttons {
    gap: 0.75rem;
  }

  .share-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0.625rem;
  }

  .share-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Blog content mobile */
  .blog-content {
    padding: 2rem 1rem;
  }

  .blog-content h2 {
    font-size: 1.375rem;
    margin-top: 2rem;
  }

  .blog-content h3 {
    font-size: 1.125rem;
  }

  .blog-cta {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .blog-cta h3 {
    font-size: 1.25rem;
  }

  /* Author bio mobile */
  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .author-bio-avatar {
    margin: 0 auto;
  }

  /* Blog tags mobile */
  .blog-tags {
    gap: 0.5rem;
  }

  .blog-tags .tag {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
  }
}

/* Small Phone Breakpoint */
@media (max-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-quote {
    padding-left: 1rem;
  }

  .testimonial-quote::before {
    font-size: 2rem;
    left: -0.25rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.9375rem;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== Print Styles ===== */
@media print {
  .header,
  .footer,
  .crisis-banner,
  .cta-section {
    display: none;
  }

  body {
    font-size: 12pt;
    color: black;
  }
}

/* ===== Dark Mode ===== */
:root {
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --neutral-50: #171717;
    --neutral-100: #1f1f1f;
    --neutral-200: #262626;
    --neutral-300: #404040;
    --neutral-400: #525252;
    --neutral-500: #737373;
    --neutral-600: #a3a3a3;
    --neutral-700: #d4d4d4;
    --neutral-800: #e5e5e5;
    --neutral-900: #fafafa;
    --glass-bg: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
  }

  body {
    background: var(--neutral-50);
    color: var(--neutral-800);
  }

  .header {
    background: rgba(23, 23, 23, 0.95);
    border-bottom-color: var(--neutral-300);
  }

  .about,
  .testimonials,
  .contact {
    background: var(--neutral-100);
  }

  .services,
  .faq {
    background: var(--neutral-50);
  }

  .service-card,
  .faq-item,
  .blog-card {
    background: var(--neutral-100);
    border-color: var(--neutral-300);
  }

  .faq-question {
    background: var(--neutral-100);
    color: var(--neutral-800);
  }

  .faq-question:hover {
    background: var(--neutral-200);
  }

  .testimonial-card {
    background: var(--neutral-200);
    border-color: var(--neutral-300);
  }

  .trust-bar {
    background: var(--neutral-100);
    border-bottom-color: var(--neutral-300);
  }

  .blog-single,
  .blog-listing {
    background: var(--neutral-50);
  }

  .blog-content {
    background: var(--neutral-100);
  }

  .toc {
    background: var(--neutral-200);
  }

  .callout-insight {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.05) 100%);
  }

  .callout-tool {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
  }

  .callout-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
  }

  .glass-card {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
  }

  img {
    opacity: 0.9;
  }
}

/* Dark mode toggle (manual override) */
[data-theme="dark"] {
  --neutral-50: #171717;
  --neutral-100: #1f1f1f;
  --neutral-200: #262626;
  --neutral-300: #404040;
  --neutral-400: #525252;
  --neutral-500: #737373;
  --neutral-600: #a3a3a3;
  --neutral-700: #d4d4d4;
  --neutral-800: #e5e5e5;
  --neutral-900: #fafafa;
}

/* ===== Floating Action Button (FAB) ===== */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-decoration: none;
  overflow: hidden;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(13, 148, 136, 0.5);
  color: white;
}

.fab svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-normal);
}

.fab:hover svg {
  transform: scale(1.1);
}

.fab-label {
  position: absolute;
  right: 72px;
  background: var(--neutral-900);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
  pointer-events: none;
}

.fab-container:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse animation for FAB */
.fab::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: fabPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Hide FAB on hero section */
.fab-container.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* Mobile FAB */
@media (max-width: 768px) {
  .fab-container {
    bottom: 16px;
    right: 16px;
  }

  .fab {
    width: 56px;
    height: 56px;
  }

  .fab-label {
    display: none;
  }
}

/* ===== Enhanced Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations for grids */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.stagger-reveal.revealed > *:nth-child(1) { transition-delay: 0ms; }
.stagger-reveal.revealed > *:nth-child(2) { transition-delay: 100ms; }
.stagger-reveal.revealed > *:nth-child(3) { transition-delay: 200ms; }
.stagger-reveal.revealed > *:nth-child(4) { transition-delay: 300ms; }
.stagger-reveal.revealed > *:nth-child(5) { transition-delay: 400ms; }
.stagger-reveal.revealed > *:nth-child(6) { transition-delay: 500ms; }

.stagger-reveal.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Lead Magnet Page ===== */
.lead-magnet-page {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
}

.lead-magnet-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead-magnet-content {
  color: white;
}

.lead-magnet-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.lead-magnet-content h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lead-magnet-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lead-magnet-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #a7f3d0;
}

.lead-magnet-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-magnet-form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.lead-magnet-form-card h2 {
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.lead-magnet-form-card > p {
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
}

.lead-magnet-form .form-group {
  margin-bottom: 1.25rem;
}

.lead-magnet-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
}

.lead-magnet-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--neutral-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.lead-magnet-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.lead-magnet-form .btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.0625rem;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin-top: 1rem;
  margin-bottom: 0;
}

.form-trust-signals {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.form-success {
  text-align: center;
  padding: 1rem;
}

.form-success .success-icon svg {
  width: 64px;
  height: 64px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
}

/* Guide Preview Section */
.guide-preview {
  background: white;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.preview-card {
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  border-radius: 1rem;
  transition: all var(--transition-normal);
}

.preview-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.preview-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.preview-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.preview-card p {
  color: var(--neutral-600);
  margin: 0;
}

/* Author Section */
.guide-author {
  background: var(--neutral-100);
}

.author-card {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.author-img {
  width: 200px;
  height: 200px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.author-content h3 {
  margin-bottom: 1rem;
}

.author-content p {
  color: var(--neutral-600);
  line-height: 1.8;
}

/* Lead Magnet Responsive */
@media (max-width: 768px) {
  .lead-magnet-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .lead-magnet-form-card {
    padding: 1.5rem;
  }

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

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .author-img {
    width: 150px;
    height: 150px;
  }
}

/* ===== Quiz Page ===== */
.quiz-page {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(180deg, var(--neutral-50) 0%, white 100%);
}

.quiz-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.quiz-header h1 {
  margin-bottom: 1rem;
}

.quiz-header p {
  color: var(--neutral-600);
  font-size: 1.125rem;
}

.quiz-time {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}

.quiz-progress {
  background: var(--neutral-200);
  border-radius: 1rem;
  height: 8px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 1rem;
  transition: width var(--transition-slow);
  width: 14.28%;
}

.quiz-progress-text {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-top: 0.75rem;
}

.quiz-question {
  display: none;
  animation: fadeSlideIn 0.4s ease;
}

.quiz-question.active {
  display: block;
}

.quiz-question h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: white;
  border: 2px solid var(--neutral-200);
  border-radius: 1rem;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-normal);
  color: var(--neutral-700);
}

.quiz-option:hover {
  border-color: var(--primary);
  background: rgba(13, 148, 136, 0.05);
  transform: translateX(4px);
}

.quiz-option.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* Quiz Results */
.quiz-results {
  text-align: center;
}

.result-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
}

.result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.result-icon svg {
  width: 40px;
  height: 40px;
}

.result-icon-high {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #dc2626;
}

.result-icon-medium {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  color: #d97706;
}

.result-icon-low {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #10b981;
}

.result-card h2 {
  margin-bottom: 1rem;
}

.result-card > p {
  color: var(--neutral-600);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 1rem;
}

.result-cta {
  margin-top: 2rem;
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.result-reassurance {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.quiz-retake {
  margin-top: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: underline;
}

.quiz-retake:hover {
  color: var(--primary-dark);
}

/* Quiz Trust Section */
.quiz-trust {
  background: var(--neutral-100);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--neutral-200);
}

.trust-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.trust-card p {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  margin: 0;
}

@media (max-width: 768px) {
  .quiz-container {
    padding: 2rem 1rem;
  }

  .quiz-question h2 {
    font-size: 1.25rem;
  }

  .result-card {
    padding: 2rem 1.5rem;
  }

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

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Quiz Email Capture ===== */
.quiz-email-capture {
  text-align: center;
}

.email-capture-card {
  background: white;
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  margin: 0 auto;
}

.email-capture-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--neutral-900);
}

.email-capture-card p {
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
}

.quiz-email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quiz-email-input {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid var(--neutral-200);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.quiz-email-input:focus {
  outline: none;
  border-color: var(--primary);
}

.quiz-email-form .btn {
  width: 100%;
}

.quiz-skip-email {
  background: none;
  border: none;
  color: var(--neutral-500);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.quiz-skip-email:hover {
  color: var(--neutral-700);
  text-decoration: underline;
}

.email-privacy {
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .email-capture-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== Email Capture Popup ===== */
.email-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.email-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.email-popup {
  background: white;
  border-radius: 1.5rem;
  max-width: 480px;
  width: 90%;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-normal);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.email-popup-overlay.active .email-popup {
  transform: scale(1) translateY(0);
}

.email-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neutral-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.email-popup-close:hover {
  background: var(--neutral-200);
}

.email-popup-close svg {
  width: 20px;
  height: 20px;
  color: var(--neutral-600);
}

.email-popup-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.email-popup-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.75rem;
}

.email-popup-header h2 {
  margin-bottom: 0.5rem;
}

.email-popup-header p {
  color: var(--neutral-600);
  margin: 0;
}

.email-popup-form .form-group {
  margin-bottom: 1rem;
}

.email-popup-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--neutral-200);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.email-popup-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.email-popup-form .btn {
  width: 100%;
}

.popup-skip {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: var(--neutral-500);
  font-size: 0.875rem;
  cursor: pointer;
  background: none;
  border: none;
}

.popup-skip:hover {
  color: var(--neutral-700);
}

/* ===== Inline Email Capture Banner ===== */
.email-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
}

.email-banner-inner {
  max-width: 600px;
  margin: 0 auto;
}

.email-banner h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.email-banner p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.email-banner-form {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
  margin: 0 auto;
}

.email-banner-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.email-banner-form .btn {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .email-banner-form {
    flex-direction: column;
  }

  .email-banner-form .btn {
    width: 100%;
  }
}

/* ===== Insurance Providers List ===== */
.insurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.insurance-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--neutral-100);
  padding: 0.375rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  color: var(--neutral-700);
}

.insurance-tag svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* ===== Testimonials Disclaimer ===== */
.testimonials-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--neutral-500);
  font-style: italic;
}

/* ===== Scope of Practice Notice ===== */
.scope-notice {
  background: var(--neutral-100);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--neutral-600);
}

.scope-notice strong {
  color: var(--neutral-800);
}

/* ===== Social Proof Ticker ===== */
.social-proof-ticker {
  background: var(--neutral-100);
  padding: 0.75rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--neutral-200);
}

.ticker-content {
  display: flex;
  animation: ticker 30s linear infinite;
  gap: 3rem;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  color: var(--neutral-600);
  font-size: 0.875rem;
}

.ticker-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

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

@media (prefers-reduced-motion: reduce) {
  .ticker-content {
    animation: none;
  }
}

/* ===== Referral Page Styles ===== */

.refer-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.refer-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.refer-hero h1 {
  color: white;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.refer-hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.refer-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.refer-hero-actions .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.refer-hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* Quick Info Bar */
.refer-quick-info {
  background: white;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.quick-info-item h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-500);
  margin-bottom: 0.25rem;
}

.quick-info-item p {
  font-weight: 600;
  color: var(--neutral-800);
  margin: 0;
}

/* Specialties Section */
.refer-specialties h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.specialties-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.specialty-column {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.specialty-column h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.specialty-column.good-fit h3 {
  color: var(--primary);
}

.specialty-column.good-fit h3 svg {
  color: var(--primary);
}

.specialty-column.not-fit h3 {
  color: #dc2626;
}

.specialty-column.not-fit h3 svg {
  color: #dc2626;
}

.specialty-column ul {
  list-style: none;
  padding: 0;
}

.specialty-column li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--neutral-100);
}

.specialty-column li:last-child {
  border-bottom: none;
}

.specialty-column.good-fit li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.specialty-column.not-fit li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

/* Approach Section */
.refer-approach h2,
.refer-why h2,
.refer-how h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.approach-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.approach-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.approach-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* Why Refer Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.why-icon svg {
  color: white;
}

.why-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin: 0;
}

/* How to Refer Section */
.refer-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.refer-option {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.refer-option-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.refer-option h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.refer-option p {
  color: var(--neutral-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.refer-contact-methods p {
  margin: 0.25rem 0;
}

/* About Section */
.refer-about-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.refer-about-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.refer-about-content h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.refer-credentials {
  background: var(--neutral-100);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.refer-credentials h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.refer-credentials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.refer-credentials li {
  padding: 0.25rem 0;
  color: var(--neutral-600);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .refer-hero {
    padding: 5rem 1rem 3rem;
  }

  .refer-about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .refer-about-image {
    margin: 0 auto;
  }

  .refer-about-content h2 {
    text-align: center;
  }

  .refer-credentials {
    text-align: left;
  }
}

/* ===== Free Tools Section ===== */
.free-tools-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
}

.free-tools-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.free-tools-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.free-tools-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.free-tools-content > p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.free-tools-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.free-tools-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  opacity: 0.9;
}

.free-tools-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.free-tools-content .btn-primary {
  background: white;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.free-tools-content .btn-primary:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
}

/* Tool Preview Card */
.tool-preview {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform var(--transition-normal);
}

.tool-preview:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.preview-header {
  background: var(--neutral-100);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
}

.preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neutral-300);
}

.preview-dot:first-child { background: #ef4444; }
.preview-dot:nth-child(2) { background: #fbbf24; }
.preview-dot:nth-child(3) { background: #22c55e; }

.preview-content {
  padding: 1.5rem;
}

.preview-progress {
  height: 6px;
  background: var(--neutral-200);
  border-radius: 3px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.preview-progress-fill {
  width: 40%;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

.preview-question {
  font-size: 1rem;
  font-weight: 500;
  color: var(--neutral-800);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.preview-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preview-option {
  padding: 0.75rem 1rem;
  background: var(--neutral-100);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--neutral-600);
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.preview-option.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .free-tools-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .free-tools-content h2 {
    font-size: 2rem;
  }

  .free-tools-benefits {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .tool-preview {
    transform: none;
    max-width: 400px;
    margin: 0 auto;
  }

  .tool-preview:hover {
    transform: none;
  }

  .free-tools-visual {
    display: none;
  }
}

/* ===== Quiz & Assessment Improvements (Jan 2026) ===== */

/* Ensure button text is always visible */
.quiz-page .btn,
.assessment-page .btn,
.tools-page .btn {
  color: white;
}

.quiz-page .btn-secondary,
.assessment-page .btn-secondary {
  color: var(--primary);
  background: white;
}

/* Quiz Page Mobile Improvements */
@media (max-width: 768px) {
  .quiz-page {
    padding-top: 80px;
  }
  
  .quiz-container {
    padding: 1.5rem 1rem;
  }
  
  .quiz-header h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .quiz-header p {
    font-size: 1rem;
  }
  
  .quiz-question h2 {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  
  .quiz-option {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    min-height: 56px;
    display: flex;
    align-items: center;
  }
  
  .result-card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }
  
  .result-card h2 {
    font-size: 1.5rem;
  }
  
  .result-card p {
    font-size: 0.9375rem;
  }
  
  .email-capture-card {
    padding: 2rem 1.25rem;
  }
  
  .email-capture-card h2 {
    font-size: 1.5rem;
  }
}

/* Burnout Assessment Mobile Improvements */
@media (max-width: 768px) {
  .assessment-page {
    padding: 1rem 0.75rem;
  }
  
  .assessment-container {
    max-width: 100%;
  }
  
  .assessment-intro {
    padding: 2rem 1.25rem;
    border-radius: 12px;
  }
  
  .assessment-intro h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .intro-subtitle {
    font-size: 1rem;
  }
  
  .intro-stats {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.6875rem;
  }
  
  .intro-what-youll-learn {
    padding: 1rem;
  }
  
  .intro-what-youll-learn h3 {
    font-size: 0.9375rem;
  }
  
  .intro-what-youll-learn li {
    font-size: 0.875rem;
  }
  
  .assessment-start {
    width: 100%;
    justify-content: center;
  }
  
  /* Name Section */
  .assessment-name {
    padding: 2rem 1.25rem;
    border-radius: 12px;
  }
  
  .name-input {
    font-size: 1rem;
    padding: 0.875rem;
  }
  
  /* Progress Header */
  .assessment-progress-header {
    padding: 0.75rem 1rem;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }
  
  .progress-chapter {
    font-size: 0.75rem;
    min-width: auto;
  }
  
  .progress-count {
    font-size: 0.75rem;
    min-width: auto;
  }
  
  /* Questions */
  .assessment-questions {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
  
  .chapter-intro {
    padding: 1.5rem 0;
  }
  
  .chapter-icon {
    font-size: 2.5rem;
  }
  
  .chapter-intro h2 {
    font-size: 1.25rem;
  }
  
  .question h2 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  
  .option {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 10px;
    min-height: 52px;
  }
  
  /* Processing */
  .assessment-processing {
    padding: 3rem 1.5rem;
    border-radius: 12px;
  }
  
  .processing-spinner {
    width: 48px;
    height: 48px;
  }
  
  .processing-content h2 {
    font-size: 1.25rem;
  }
  
  /* Email Capture */
  .assessment-email {
    padding: 2rem 1.25rem;
    border-radius: 12px;
  }
  
  .email-content h2 {
    font-size: 1.5rem;
  }
  
  .email-benefits {
    padding: 0.75rem;
  }
  
  .benefit {
    font-size: 0.875rem;
  }
  
  .email-input {
    padding: 0.875rem;
    font-size: 1rem;
  }
  
  /* Results */
  .assessment-results {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
  
  .result-header h2 {
    font-size: 1.5rem;
  }
  
  .result-subtitle {
    font-size: 1rem;
  }
  
  .meter-labels {
    font-size: 0.625rem;
  }
  
  .dimension-score {
    padding: 0.75rem;
  }
  
  .dimension-name {
    font-size: 0.8125rem;
  }
  
  .result-insight {
    padding: 1rem;
  }
  
  .result-insight h3 {
    font-size: 0.9375rem;
  }
  
  .result-insight p {
    font-size: 0.875rem;
  }
  
  .result-cta {
    padding: 1.5rem;
  }
  
  .result-cta .btn-large {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  
  .cta-subtext {
    font-size: 0.8125rem;
  }
  
  /* Trust Section */
  .assessment-trust {
    padding: 2rem 0;
  }
  
  .assessment-trust h2 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
  
  .trust-intro {
    font-size: 0.9375rem;
    padding: 0 1rem;
  }
  
  .trust-grid {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .trust-card {
    padding: 1.25rem;
  }
}

/* Tools Landing Page */
.tools-page {
  padding-top: 100px;
}

.tools-page .container {
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.tools-page h1 {
  margin-bottom: 0.5rem;
}

.tools-page > .container > p:first-of-type {
  color: var(--neutral-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.tools-page h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.tools-page h3 + p {
  margin-bottom: 1rem;
}

/* Ensure form inputs have visible text */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  color: var(--neutral-800);
  background: white;
}

input::placeholder {
  color: var(--neutral-400);
}

/* Focus states for accessibility */
.quiz-option:focus,
.option:focus,
.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 48px;
  }
  
  .quiz-option,
  .option {
    min-height: 52px;
  }
  
  /* Increase tap area */
  .quiz-skip-email,
  .btn-text,
  #email-skip,
  #quiz-skip-email {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

/* Dark mode prevention for inputs */
@media (prefers-color-scheme: dark) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  .quiz-option,
  .option,
  .result-card,
  .email-capture-card,
  .assessment-intro,
  .assessment-name,
  .assessment-questions,
  .assessment-email,
  .assessment-results {
    background-color: white;
    color: var(--neutral-800);
  }
  
  .quiz-option,
  .option {
    color: var(--neutral-700);
  }
  
  .quiz-option.selected,
  .option.selected {
    background-color: var(--primary);
    color: white;
  }
}

/* SEO & Performance: Reduce layout shift */
.quiz-question,
.question {
  min-height: 200px;
}

.result-card {
  min-height: 300px;
}

/* ===== TherapaJi Advocacy Homepage ===== */
.advocacy-home {
  color: var(--text-warm);
  background: var(--bg-warm);
}

/* --- Utility Classes --- */
.text-saffron { color: var(--saffron-light); }

.section-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--saffron-glow);
  color: var(--saffron-dark);
  border: 1px solid rgba(232, 147, 12, 0.3);
  margin-bottom: 1rem;
}

.section-dark .section-badge {
  color: var(--saffron-light);
}

.btn-saffron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1210;
  background: var(--gradient-saffron);
  border: none;
  cursor: pointer;
  transition: all 300ms var(--ease-out-expo);
  min-height: 44px;
  text-decoration: none;
}

.btn-saffron:hover {
  color: #1a1210;
  box-shadow: var(--shadow-glow-saffron);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 300ms var(--ease-out-expo);
  min-height: 44px;
  text-decoration: none;
}

.btn-outline-light:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Dark Section Base --- */
.section-dark {
  background: var(--gradient-dark);
  color: var(--dark-text);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section-dark .section-header h2 { color: white; }
.section-dark .section-header p { color: var(--dark-text-muted); }

/* Section header accent underline */
.advocacy-home .section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.advocacy-home .section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--saffron));
}

/* Mission section h2 (not inside .section-header) */
.advocacy-home .mission h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.advocacy-home .mission h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--saffron));
}

/* --- 1. HERO --- */
.advocacy-home .hero {
  position: relative;
  min-height: auto;
  padding: 8rem 0 0;
  background: var(--gradient-hero);
  overflow: hidden;
  border-bottom: none;
}

.advocacy-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(15, 118, 110, 0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(232, 147, 12, 0.12), transparent 50%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.15), transparent 70%);
  pointer-events: none;
}

.advocacy-home .hero .container {
  position: relative;
  z-index: 1;
}

.advocacy-home .hero .hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 4rem;
}

.hero-tagline {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-light);
  background: rgba(232, 147, 12, 0.15);
  border: 1px solid rgba(232, 147, 12, 0.3);
  margin-bottom: 1.5rem;
}

.advocacy-home .hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  text-wrap: balance;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(232, 228, 223, 0.85);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.hero-languages {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.language-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn-saffron,
.hero-ctas .btn-outline-light {
  min-width: 200px;
}

/* Hero Ticker */
.hero-ticker {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 0.75rem 0;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--saffron);
  align-self: center;
  flex-shrink: 0;
}

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

/* --- 2. TRUST TICKER --- */
.trust-ticker {
  padding: 0.85rem 0;
  background: white;
  border-bottom: 1px solid var(--border-warm);
  overflow: hidden;
}

.trust-ticker-track {
  display: flex;
  gap: 2rem;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.trust-ticker-item {
  font-size: 0.85rem;
  color: var(--text-muted-warm);
  flex-shrink: 0;
}

.trust-ticker-item strong {
  color: var(--primary-dark);
  margin-right: 0.35rem;
}

.trust-ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--saffron);
  align-self: center;
  flex-shrink: 0;
}

/* --- 3. ECOSYSTEM (Dark) --- */
.eco-section {
  padding: 5rem 1.5rem;
}

.eco-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(15, 118, 110, 0.18), transparent 55%),
    radial-gradient(ellipse at 75% 100%, rgba(232, 147, 12, 0.08), transparent 55%);
  pointer-events: none;
}

.eco-section .section-header {
  position: relative;
  z-index: 1;
}

.eco-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 3rem auto;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.eco-node {
  flex: 1;
  max-width: 240px;
  background: var(--dark-elevated);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  transition: all 400ms var(--ease-out-expo);
}

.eco-node:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-teal);
}

.eco-node--trust { border-top: 3px solid var(--primary-light); }
.eco-node--insight { border-top: 3px solid var(--saffron); }
.eco-node--build { border-top: 3px solid var(--accent-light); }
.eco-node--clinical { border-top: 3px solid #a78bfa; }

.eco-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.eco-node--trust .eco-icon { background: var(--primary); }
.eco-node--insight .eco-icon { background: var(--saffron-dark); }
.eco-node--build .eco-icon { background: var(--accent); }
.eco-node--clinical .eco-icon { background: #7c3aed; }

.eco-node h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.eco-node p {
  color: var(--dark-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.eco-label {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-text-muted);
}

.eco-connector {
  width: 48px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
}

.eco-connector svg { width: 100%; }

.eco-flagship {
  margin: 2.5rem auto 0;
  max-width: 480px;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: rgba(232, 147, 12, 0.1);
  border: 1px dashed rgba(232, 147, 12, 0.35);
  position: relative;
  z-index: 1;
}

.eco-flagship-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--saffron-light);
  margin-bottom: 0.2rem;
}

.eco-flagship strong {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.eco-flagship p {
  color: var(--dark-text-muted);
  font-size: 0.85rem;
  margin: 0.15rem 0 0;
}

@media (max-width: 1024px) {
  .eco-flow {
    flex-direction: column;
    gap: 0;
  }
  .eco-connector {
    transform: rotate(90deg);
    width: 36px;
    height: 36px;
  }
  .eco-node {
    max-width: 100%;
    width: 100%;
  }
}

/* --- 4. STATS STRIP --- */
.stats-strip {
  padding: 2.5rem 1.5rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}

.stats-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 1rem;
}

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

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--primary-dark);
  line-height: 1.1;
}

.stat-item--accent .stat-number { color: var(--saffron-dark); }

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted-warm);
  margin-top: 0.25rem;
  line-height: 1.35;
}

.stats-sources {
  text-align: center;
  font-size: 0.72rem;
  color: var(--neutral-400);
  margin: 1.25rem 0 0;
}

.stats-sources a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-item {
    flex: 0 0 calc(33.333% - 1rem);
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .stat-item {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

/* --- 5. MISSION --- */
.mission {
  background: var(--bg-warm);
}

.mission-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mission-statement {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-muted-warm);
  margin-bottom: 2.5rem;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mission-value {
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-elevated);
  transition: all 400ms var(--ease-out-expo);
}

.mission-value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.mission-value strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.mission-value p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted-warm);
}

.mission-supervision {
  font-size: 0.88rem;
  color: var(--text-muted-warm);
}

.mission-supervision a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .mission-values {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* --- 6. FOUNDING CIRCLE --- */
.advocacy-home .founding-circle {
  background: white;
}

.advocacy-home .founding-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advocacy-home .founding-card {
  background: white;
  border: 1px solid transparent;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  position: relative;
  box-shadow: var(--shadow-elevated);
  transition: all 400ms var(--ease-out-expo);
  overflow: hidden;
}

.advocacy-home .founding-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary-light), var(--saffron-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.advocacy-home .founding-card:hover::before { opacity: 1; }

.advocacy-home .founding-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.advocacy-home .founding-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--primary-glow);
  color: var(--primary-dark);
}

.advocacy-home .founding-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  color: var(--text-warm);
}

.advocacy-home .founding-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted-warm);
}

@media (max-width: 1024px) {
  .advocacy-home .founding-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .advocacy-home .founding-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 7. ROADMAP TIMELINE --- */
.advocacy-home .roadmap {
  background: var(--bg-warm);
}

.timeline {
  display: flex;
  position: relative;
  gap: 0;
  padding-top: 2.5rem;
  margin-top: 2rem;
}

.timeline-line {
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--saffron), var(--primary-light));
  border-radius: 99px;
}

.timeline-item {
  flex: 1;
  padding-top: 2rem;
  text-align: center;
  position: relative;
}

.timeline-dot {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-warm);
  box-shadow: 0 0 0 3px var(--primary);
  z-index: 1;
}

.timeline-dot--future {
  background: var(--neutral-300);
  box-shadow: 0 0 0 3px var(--neutral-300);
}

.timeline-quarter {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--saffron-glow);
  color: var(--saffron-dark);
  border: 1px solid rgba(232, 147, 12, 0.25);
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
  color: var(--text-warm);
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-muted-warm);
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 2rem;
    padding-left: 2.5rem;
    padding-top: 0;
  }
  .timeline-line {
    width: 3px;
    height: 100%;
    top: 0;
    left: 0.5rem;
    right: auto;
  }
  .timeline-dot {
    left: -2rem;
    top: 0.25rem;
  }
  .timeline-item {
    padding-top: 0;
    text-align: left;
  }
  .timeline-item p { max-width: none; }
}

/* --- 8. JOIN PATHWAYS (Dark) --- */
.join-section {
  padding: 5rem 1.5rem;
}

.join-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 147, 12, 0.1), transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(15, 118, 110, 0.12), transparent 50%);
  pointer-events: none;
}

.join-section .pathways-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.join-section .pathway-card {
  background: var(--dark-elevated);
  border: 1px solid var(--dark-border);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 400ms var(--ease-out-expo);
}

.join-section .pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-saffron-teal);
}

.join-section .pathway-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
}

.join-section .pathway-badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--saffron-glow);
  color: var(--saffron-light);
}

.join-section .pathway-card h3 {
  color: white;
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.join-section .pathway-card p {
  color: var(--dark-text-muted);
  font-size: 0.9rem;
}

.join-section .conversion-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.join-section .conversion-form input[type="text"],
.join-section .conversion-form input[type="email"] {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-text);
  background: var(--dark-surface);
  transition: all var(--transition-fast);
}

.join-section .conversion-form input:focus {
  background: var(--dark-elevated);
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px var(--saffron-glow);
  outline: none;
}

.join-section .conversion-form input::placeholder {
  color: var(--dark-text-muted);
}

.join-section .conversion-form .btn-saffron {
  margin-top: 0.25rem;
  width: 100%;
  border-radius: 0.75rem;
}

.join-section .conversion-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--dark-text-muted);
  line-height: 1.45;
}

.join-section .conversion-note a {
  color: var(--saffron-light);
}

.join-section .form-status {
  margin: 0.15rem 0 0;
  font-size: 0.83rem;
  font-weight: 600;
  min-height: 1.2rem;
}

.join-section .form-status.success { color: #6ee7b7; }
.join-section .form-status.error { color: #fca5a5; }

/* Form validation states */
.input-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

.form-status.error {
  color: #ef4444;
}

.form-status.success {
  color: var(--primary);
}

@media (max-width: 768px) {
  .join-section .pathways-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 9. FAQ (warm) --- */
.advocacy-home .faq {
  background: var(--bg-warm);
}

.advocacy-home .faq-item {
  border-color: var(--border-warm);
  background: white;
  box-shadow: var(--shadow-sm);
}

.advocacy-home .faq-question {
  font-weight: 600;
  color: var(--text-warm);
}

.advocacy-home .faq-question svg {
  color: var(--saffron);
  transition: transform var(--transition-normal);
}

.advocacy-home .faq-item.active .faq-question svg {
  color: var(--primary);
}

/* --- 10. CLOSING ZONE (Dark) --- */
.closing-zone {
  text-align: center;
  padding: 5rem 1.5rem;
}

.closing-cta {
  margin-bottom: 3rem;
}

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

.closing-cta p {
  color: var(--dark-text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.closing-contact {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.closing-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-text-muted);
  font-size: 0.9rem;
}

.closing-contact-item svg { color: var(--saffron); flex-shrink: 0; }
.closing-contact-item a { color: var(--dark-text-muted); }
.closing-contact-item a:hover { color: white; }

.closing-links {
  font-size: 0.85rem;
  color: var(--dark-text-muted);
}

.closing-links a {
  color: var(--saffron-light);
  font-weight: 500;
}

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

.closing-links span {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* --- Header Transparency (Homepage) --- */
.is-home .header {
  background: transparent;
  border-bottom-color: transparent;
}

.is-home .header.scrolled {
  background: rgba(17, 27, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.is-home .header:not(.scrolled) .logo {
  color: white;
}

.is-home .header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

.is-home .header:not(.scrolled) .nav-links a:hover {
  color: white;
}

.is-home .header:not(.scrolled) .nav-links a.btn-primary,
.is-home .header:not(.scrolled) .nav-links .btn-primary {
  background: var(--gradient-saffron);
  color: #1a1210;
}

.is-home .header:not(.scrolled) .mobile-menu-btn span {
  background: white;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .trust-ticker-track {
    animation: none;
  }
  .hero-glow,
  .eco-glow,
  .join-glow {
    display: none;
  }
}

/* --- Honeypot (global) --- */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== Podcast Page ===== */
.podcast-hero {
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  padding: 10rem 1.5rem 5rem;
  position: relative;
}

.podcast-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.podcast-hero .container {
  position: relative;
  z-index: 1;
}

.podcast-badge {
  display: inline-block;
  background: var(--saffron);
  color: var(--dark-bg);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

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

.podcast-hero-tagline {
  font-size: 1.35rem;
  color: var(--saffron-light);
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.podcast-hero-desc {
  font-size: 1.1rem;
  color: var(--dark-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.podcast-subscribe-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.subscribe-label {
  font-size: 0.875rem;
  color: var(--dark-text-muted);
}

.subscribe-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.subscribe-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.podcast-about-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted-warm);
}

.podcast-about-content p {
  margin-bottom: 1.25rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.topic-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-warm);
  transition: all 300ms var(--ease-out-expo);
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.topic-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.topic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-warm);
}

.topic-card p {
  font-size: 0.9rem;
  color: var(--text-muted-warm);
  margin: 0;
}

.episodes-coming-soon {
  text-align: center;
  padding: 3rem;
  background: var(--bg-surface);
  border-radius: 1rem;
  border: 2px dashed var(--border-warm);
}

.episodes-coming-soon p {
  font-size: 1.1rem;
  color: var(--text-muted-warm);
  margin-bottom: 1.5rem;
}

.podcast-guest {
  text-align: center;
}

.guest-desc {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--dark-text-muted);
}

@media (max-width: 768px) {
  .podcast-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .topics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .topic-card {
    padding: 1.5rem 1rem;
  }

  .podcast-subscribe-bar {
    flex-direction: column;
    gap: 0.5rem;
  }
}
