/* ==========================================================================
   RECO Health - Inner Page Styles
   Addiction, treatment, mental health, admissions, and resource pages
   B&W palette adaptation from Psychiatry inner page pattern
   Version: 1.0.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Inner Page Hero (Shorter)
   -------------------------------------------------------------------------- */
.hero--inner {
  min-height: 420px;
  padding-top: calc(var(--navbar-height) + var(--space-16));
  padding-bottom: var(--space-16);
  background-color: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--inner .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--inner .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--inner .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(40, 40, 40, 0.6) 50%,
    rgba(10, 10, 10, 0.88) 100%
  );
}

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

.hero--inner .hero__content {
  max-width: 720px;
}

.hero--inner .hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  color: var(--white);
}

.hero--inner .hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 580px;
}

.hero--inner .hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   2. Breadcrumb Navigation
   -------------------------------------------------------------------------- */
.breadcrumb {
  background-color: var(--off-white);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.breadcrumb__item a {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--duration-fast);
}

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

.breadcrumb__separator {
  color: var(--gray-400);
  font-size: var(--text-xs);
}

.breadcrumb__item:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   3. Service Page Content Layout (Sidebar + Main)
   -------------------------------------------------------------------------- */
.service-page {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background-color: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* Table of Contents Sidebar */
.toc-sidebar {
  position: sticky;
  top: calc(var(--navbar-height) + var(--space-6));
}

.toc-sidebar__title {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.15);
}

.toc-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-sidebar__list li {
  margin-bottom: var(--space-1);
}

.toc-sidebar__list a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-left: 2px solid transparent;
  transition: all var(--duration-fast);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.toc-sidebar__list a:hover,
.toc-sidebar__list a.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.04);
}

/* Main content area */
.service-content {
  max-width: 820px;
}

.service-content h2 {
  font-size: var(--text-3xl);
  font-weight: 300;
  margin-bottom: var(--space-6);
  margin-top: var(--space-12);
  color: var(--text-primary);
  scroll-margin-top: calc(var(--navbar-height) + var(--space-6));
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content h3 {
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
  margin-top: var(--space-8);
  color: var(--text-primary);
}

.service-content h4 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  margin-top: var(--space-6);
  color: var(--text-primary);
}

.service-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.service-content ul,
.service-content ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.service-content ul {
  list-style: disc;
}

.service-content ol {
  list-style: decimal;
}

.service-content li {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
  padding-left: var(--space-2);
}

.service-content a {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--duration-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-content a:hover {
  color: var(--primary-light);
}

.service-content strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* Lead / intro paragraph */
.service-content .lead {
  font-size: var(--text-lg);
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. Step-by-Step Process Blocks
   -------------------------------------------------------------------------- */
.process-steps {
  margin: var(--space-8) 0;
  counter-reset: process-step;
}

.process-step {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--gray-200);
  counter-increment: process-step;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.12) 100%);
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--primary);
}

.process-step__number::before {
  content: counter(process-step, decimal-leading-zero);
}

.process-step__content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  margin-top: 0;
  color: var(--text-primary);
}

.process-step__content p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   5. Comparison Tables
   -------------------------------------------------------------------------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-8) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.comparison-table thead th {
  background: linear-gradient(135deg, #1a1a1a, #333333);
  color: var(--white);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-align: left;
  letter-spacing: var(--tracking-wide);
}

.comparison-table tbody td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}

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

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--gray-50);
}

.comparison-table tbody tr:hover {
  background-color: rgba(var(--primary-rgb), 0.03);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   6. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
  max-width: 800px;
  margin: var(--space-8) auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: border-color var(--duration-base);
}

.faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.25);
}

.faq-item.active {
  border-color: rgba(var(--primary-rgb), 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--duration-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.06);
  transition: all var(--duration-base);
}

.faq-question__icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  transition: transform var(--duration-base);
}

.faq-item.active .faq-question__icon {
  background: var(--primary);
}

.faq-item.active .faq-question__icon svg {
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

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

.faq-answer__content {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.faq-answer__content p {
  margin-bottom: var(--space-3);
}

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

/* --------------------------------------------------------------------------
   7. Related Cards Grid
   -------------------------------------------------------------------------- */
.related-services {
  background-color: var(--off-white);
  padding: var(--space-16) 0;
}

.related-services .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-base) var(--ease-out);
  text-align: center;
  text-decoration: none;
  display: block;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.related-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04) 0%, rgba(var(--primary-rgb), 0.1) 100%);
  margin-bottom: var(--space-5);
  margin-left: auto;
  margin-right: auto;
  transition: background var(--duration-base);
}

.related-card:hover .related-card__icon {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.related-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: color var(--duration-base);
}

.related-card:hover .related-card__icon svg {
  color: var(--white);
}

.related-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.related-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.related-card__link {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   8. CTA Banner (Bottom of pages)
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: var(--space-20) 0;
}

.cta-banner .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(60, 60, 60, 0.55) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-5);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: var(--leading-relaxed);
}

.cta-banner .hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   9. Info Callout Box
   -------------------------------------------------------------------------- */
.callout-box {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin: var(--space-6) 0;
}

.callout-box--info {
  background: rgba(var(--primary-rgb), 0.04);
  border-left: 4px solid var(--primary);
}

.callout-box--warning {
  background: rgba(234, 179, 8, 0.06);
  border-left: 4px solid #eab308;
}

.callout-box--success {
  background: rgba(34, 197, 94, 0.06);
  border-left: 4px solid #22c55e;
}

.callout-box--crisis {
  background: rgba(239, 68, 68, 0.06);
  border-left: 4px solid #ef4444;
}

.callout-box h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
  margin-top: 0;
  color: var(--text-primary);
}

.callout-box p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. Landing Page Grids
   -------------------------------------------------------------------------- */
.services-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.service-landing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-base) var(--ease-out);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-landing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a1a1a, #555);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.service-landing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.12);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.service-landing-card:hover::before {
  transform: scaleX(1);
}

.service-landing-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04) 0%, rgba(var(--primary-rgb), 0.1) 100%);
  margin-bottom: var(--space-6);
  transition: background var(--duration-base);
}

.service-landing-card:hover .service-landing-card__icon {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.service-landing-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color var(--duration-base);
}

.service-landing-card:hover .service-landing-card__icon svg {
  color: var(--white);
}

.service-landing-card__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.service-landing-card__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.service-landing-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}

.service-landing-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast);
}

.service-landing-card:hover .service-landing-card__link svg {
  transform: translateX(4px);
}

/* Category headings on landing page */
.services-category {
  margin-bottom: var(--space-16);
}

.services-category__title {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.services-category__heading {
  font-size: var(--text-3xl);
  font-weight: 300;
  margin-bottom: var(--space-8);
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   11. Symptom/Feature Cards Grid
   -------------------------------------------------------------------------- */
.symptom-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-5);
  margin: var(--space-8) 0;
}

.symptom-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-base);
}

.symptom-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.06);
}

.symptom-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-rgb), 0.06);
  margin-bottom: var(--space-4);
}

.symptom-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.symptom-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.symptom-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------------------------
   11b. Inner Section Wrappers (replaces inline padding/bg on <section>)
   -------------------------------------------------------------------------- */
.inner-section {
  padding: var(--space-20, 80px) 0;
}

.inner-section--white {
  background-color: var(--white, #fff);
}

.inner-section--off-white {
  background-color: var(--off-white, #f8f7f4);
}

/* --------------------------------------------------------------------------
   12. Section Header, Tag, Subtitle
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16, 64px);
}

.section-header--narrow {
  max-width: 600px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent, 'DM Mono', monospace);
  font-size: var(--text-xs, 12px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary, #1a1a1a);
  margin-bottom: var(--space-4, 16px);
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
}

.section-subtitle {
  font-size: var(--text-lg, 18px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   13. Stats Grid & Cards
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8, 32px);
  margin-bottom: var(--space-12, 48px);
}

.stat-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: 'Figtree', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary, #1a1a1a);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary, #666);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   14. Content Block (Long-form body content)
   -------------------------------------------------------------------------- */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--text-base, 16px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
}

.content-block h3 {
  font-size: var(--text-2xl, 24px);
  font-weight: 600;
  margin-bottom: var(--space-6, 24px);
  margin-top: var(--space-10, 40px);
  color: var(--text-primary, #201E10);
}

.content-block h4 {
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  margin-bottom: var(--space-3, 12px);
  margin-top: var(--space-6, 24px);
  color: var(--text-primary, #201E10);
}

.content-block p {
  margin-bottom: var(--space-5, 20px);
  line-height: 1.7;
}

.content-block ul,
.content-block ol {
  margin-bottom: var(--space-6, 24px);
  padding-left: var(--space-6, 24px);
}

.content-block li {
  margin-bottom: var(--space-2, 8px);
  line-height: 1.6;
}

.content-block a {
  color: var(--primary, #1a1a1a);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   15. Info Box (callout variant)
   -------------------------------------------------------------------------- */
.info-box {
  background-color: rgba(0, 0, 0, 0.04);
  padding: var(--space-6, 24px);
  border-radius: 8px;
  border-left: 4px solid var(--primary, #1a1a1a);
  margin-top: var(--space-8, 32px);
}

.info-box h4 {
  margin-bottom: var(--space-3, 12px);
  color: var(--text-primary, #201E10);
  font-size: var(--text-lg, 18px);
  font-weight: 600;
}

.info-box p {
  margin-bottom: 0;
  font-size: var(--text-base, 16px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
}

.info-box p strong {
  color: var(--text-primary, #201E10);
}

/* Info box variants */
.info-box--danger {
  background-color: rgba(239, 68, 68, 0.06);
  border-left-color: #ef4444;
}

.info-box--danger h4 {
  color: #c0392b;
}

.info-box--warning {
  background-color: rgba(245, 158, 11, 0.06);
  border-left-color: #f59e0b;
}

.info-box--warning h4 {
  color: #d68910;
}

/* --------------------------------------------------------------------------
   16. Process Timeline (alias for process-steps)
   -------------------------------------------------------------------------- */
.process-timeline {
  margin: var(--space-8, 32px) 0;
  counter-reset: process-step;
}

/* --------------------------------------------------------------------------
   17. Protocol Cards (substance-specific detox)
   -------------------------------------------------------------------------- */
.substance-protocols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6, 24px);
}

.protocol-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-8, 32px) var(--space-6, 24px);
  transition: all 0.3s ease;
}

.protocol-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

.protocol-card h4 {
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-4, 16px);
  padding-bottom: var(--space-3, 12px);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.protocol-details p {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.6;
  margin-bottom: var(--space-3, 12px);
}

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

.protocol-details strong {
  color: var(--text-primary, #201E10);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   18. Team Role Cards
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6, 24px);
}

.team-role-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-8, 32px) var(--space-6, 24px);
  transition: all 0.3s ease;
}

.team-role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

.team-role-card h4 {
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-3, 12px);
}

.team-role-card p {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   19. Related Programs Grid
   -------------------------------------------------------------------------- */
.related-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6, 24px);
}

.related-program-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-8, 32px) var(--space-6, 24px);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.related-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.related-program-card h4 {
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-3, 12px);
}

.related-program-card p {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
  margin-bottom: var(--space-4, 16px);
}

.related-program-card__link {
  font-family: var(--font-accent, 'DM Mono', monospace);
  font-size: var(--text-xs, 12px);
  letter-spacing: var(--tracking-wide, 0.05em);
  text-transform: uppercase;
  color: var(--primary, #1a1a1a);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   20. Feature Cards (Addiction & Mental Health pages)
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6, 24px);
}

.feature-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-8, 32px) var(--space-6, 24px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

.feature-card h4 {
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-3, 12px);
}

.feature-card p {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
  margin-bottom: 0;
}

.feature-card ul {
  margin-top: var(--space-3, 12px);
  margin-bottom: 0;
  padding-left: var(--space-5, 20px);
  list-style: disc;
}

.feature-card li {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.6;
  margin-bottom: var(--space-1, 4px);
}

/* --------------------------------------------------------------------------
   21. Benefit Cards (IOP, PHP pages)
   -------------------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6, 24px);
}

.benefit-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-6, 24px);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

.benefit-card h4 {
  font-size: var(--text-base, 16px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-2, 8px);
}

.benefit-card p {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   22. Resource Cards (resource hub pages)
   -------------------------------------------------------------------------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6, 24px);
}

.resource-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-8, 32px) var(--space-6, 24px);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.resource-card h4 {
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-3, 12px);
}

.resource-card p {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   23. Modality Cards (treatment modalities)
   -------------------------------------------------------------------------- */
.modality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6, 24px);
}

.modality-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-8, 32px) var(--space-6, 24px);
  transition: all 0.3s ease;
}

.modality-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

.modality-card h4 {
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-3, 12px);
}

.modality-card p {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   24. Hotline Cards (crisis hotlines page)
   -------------------------------------------------------------------------- */
.hotline-card {
  background: var(--off-white, #f8f7f4);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 6px solid var(--primary, #000);
}

.hotline-card h3 {
  font-size: var(--text-xl, 20px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-2, 8px);
}

.hotline-card h4 {
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-2, 8px);
}

.hotline-card p {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.7;
  margin-bottom: var(--space-2, 8px);
}

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

.hotline-card a {
  color: var(--primary, #1a1a1a);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hotline-card--white {
  background: var(--white, #fff);
  border-left: none;
}

/* --------------------------------------------------------------------------
   25. Two-Column List & Services Included
   -------------------------------------------------------------------------- */
.services-included {
  margin-top: var(--space-12, 48px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-included h3 {
  text-align: center;
  margin-bottom: var(--space-6, 24px);
  font-size: var(--text-2xl, 24px);
  font-weight: 600;
  color: var(--text-primary, #201E10);
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4, 16px);
}

.two-column-list ul {
  list-style: disc;
  padding-left: var(--space-6, 24px);
  margin: 0;
}

.two-column-list li {
  font-size: var(--text-sm, 14px);
  color: var(--text-secondary, #555);
  line-height: 1.6;
  margin-bottom: var(--space-2, 8px);
}

/* --------------------------------------------------------------------------
   26. Comparison Table Wrapper
   -------------------------------------------------------------------------- */
.comparison-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --------------------------------------------------------------------------
   27. Missing Utility Classes & Service Cards
   -------------------------------------------------------------------------- */
.page--inner {
  padding-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-8, 32px);
}

.service-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: var(--space-8, 32px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.service-card__header {
  margin-bottom: var(--space-4, 16px);
}

.service-card__tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary, #666);
  margin-bottom: var(--space-3, 12px);
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
}

.service-card__title {
  font-family: 'Figtree', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary, #201E10);
  line-height: 1.2;
  margin-bottom: var(--space-3, 12px);
}

.service-card__description {
  font-size: 15px;
  color: var(--text-secondary, #666);
  line-height: 1.65;
  margin-bottom: var(--space-5, 20px);
  flex-grow: 1;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5, 20px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__features li {
  font-size: 14px;
  color: var(--text-secondary, #666);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary, #1a1a1a);
  font-weight: 700;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary, #1a1a1a);
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
}

.service-card__link:hover {
  text-decoration: underline;
}

.stat-card__number {
  font-family: 'Figtree', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary, #1a1a1a);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 14px;
  color: var(--text-secondary, #666);
  line-height: 1.4;
}

.content-block__title {
  font-family: 'Figtree', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-5, 20px);
}

.feature-card__title {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary, #201E10);
  margin-bottom: var(--space-3, 12px);
}

.checkmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkmark-list li {
  font-size: 15px;
  color: var(--text-secondary, #666);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.checkmark-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary, #1a1a1a);
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

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

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

.flex-56 {
  display: flex;
  gap: 56px;
}

/* --------------------------------------------------------------------------
   28. Responsive Overrides for Inner Pages
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 991px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .toc-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding: var(--space-4);
    background: var(--off-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-8);
  }

  .toc-sidebar__title {
    width: 100%;
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-2);
  }

  .toc-sidebar__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
  }

  .toc-sidebar__list a {
    border-left: none;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
  }

  .toc-sidebar__list a:hover,
  .toc-sidebar__list a.active {
    border-left: none;
    background: rgba(var(--primary-rgb), 0.08);
  }

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

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

  .hero--inner {
    min-height: 340px;
    padding-top: calc(var(--navbar-height) + var(--space-12));
    padding-bottom: var(--space-12);
  }

  .hero--inner .hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .symptom-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .substance-protocols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .service-layout {
    gap: var(--space-6);
  }

  .related-services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-landing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero--inner {
    min-height: 280px;
    padding-top: calc(var(--navbar-height) + var(--space-8));
    padding-bottom: var(--space-8);
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .process-step {
    flex-direction: column;
    gap: var(--space-3);
  }

  .cta-banner {
    padding: var(--space-12) 0;
  }

  .cta-banner h2 {
    font-size: var(--text-3xl);
  }

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

  /* Mobile text sizing refinements */
  .hero--inner .hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }

  .hero--inner .hero__subtitle {
    font-size: var(--text-base);
  }

  .service-content h2 {
    font-size: var(--text-2xl);
  }

  .service-content h3 {
    font-size: var(--text-xl);
  }

  .service-content h4 {
    font-size: var(--text-lg);
  }

  /* Stats grid: 2 columns on mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  /* New utility classes - responsive */
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .font-32 {
    font-size: 24px;
  }

  .stat-card__number {
    font-size: 36px;
  }

  /* Related programs, resources, feature cards stack */
  .related-programs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .substance-protocols {
    grid-template-columns: 1fr;
  }

  .two-column-list {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: var(--space-10, 40px);
  }

  .hotline-card {
    padding: 24px;
  }

  /* Ensure containers have proper padding on small screens */
  .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  /* Hero actions stack nicely */
  .hero--inner .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero--inner .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero--inner {
    min-height: 240px;
  }

  .service-content h2 {
    font-size: var(--text-xl);
    margin-top: var(--space-8);
  }

  .cta-banner h2 {
    font-size: var(--text-2xl);
  }

  .cta-banner p {
    font-size: var(--text-base);
  }

  /* Reduce section padding on extra small */
  .inner-section {
    padding: var(--space-12, 48px) 0;
  }

  /* Stats grid: 1 column on extra small */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  /* Smaller padding on inner pages */
  .service-page {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .related-services {
    padding: var(--space-12) 0;
  }
}

/* --------------------------------------------------------------------------
   Leadership Page - Light Background Overrides
   The main reco-health.css leader-card styles use white text (designed for
   the dark-themed homepage section). On inner pages with light backgrounds,
   we need dark text colors for visibility.
   -------------------------------------------------------------------------- */
.leadership-section .leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.leadership-section .leader-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200, #e5e5e5);
  transition: all 0.3s ease;
  text-align: left;
}

.leadership-section .leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.leadership-section .leader-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0;
}

.leadership-section .leader-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: none;
}

.leadership-section .leader-card:hover .leader-card__image img {
  transform: scale(1.05);
}

.leadership-section .leader-card__info {
  padding: 20px;
}

.leadership-section .leader-card__name {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #201E10;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.leadership-section .leader-card__title {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #8F8E84;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .leadership-section .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 479px) {
  .leadership-section .leadership-grid {
    grid-template-columns: 1fr;
  }
}

/* Leader card bio text */
.leadership-section .leader-card__bio {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: #6b6b60;
  line-height: 1.65;
  margin-top: 12px;
}

/* Program Directors grid */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6, 24px);
  margin-top: var(--space-12, 48px);
}

.director-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200, #e5e5e5);
  transition: all 0.3s ease;
}

.director-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.director-card .leader-card__image {
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
}

.director-card .leader-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.3s ease;
}

.director-card:hover .leader-card__image img {
  transform: scale(1.05);
}

.director-card .leader-card__info {
  padding: 16px;
}

.director-card .leader-card__name {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #201E10;
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .directors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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


/* --------------------------------------------------------------------------
   28. Checklist Components (replaces inline check-item styles)
   -------------------------------------------------------------------------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4, 16px);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3, 12px);
  font-size: var(--text-base, 16px);
  color: var(--text-secondary, #555);
  line-height: var(--leading-relaxed, 1.625);
}

.check-item--lg {
  font-size: var(--text-lg, 18px);
}

.check-icon {
  color: var(--primary, #1a1a1a);
  font-weight: 600;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   29. Content Wrappers & Cards (replaces inline max-width/bg styles)
   -------------------------------------------------------------------------- */
.content-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.content-card {
  background: var(--white, #fff);
  padding: var(--space-8, 32px);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.content-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gradient-box {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.06) 100%);
  padding: var(--space-10, 40px);
  border-radius: var(--radius-lg, 16px);
}

.callout-lg {
  padding: var(--space-12, 48px);
  margin-bottom: var(--space-10, 40px);
}

.bg-white {
  background: var(--white, #fff);
}

.bg-off-white {
  background: var(--off-white, #f5f0eb);
}

/* --------------------------------------------------------------------------
   30. List Item Styles (replaces inline border/color patterns)
   -------------------------------------------------------------------------- */
.list-item-bordered {
  padding: var(--space-3, 12px) 0;
  border-bottom: 1px solid var(--off-white, #f5f0eb);
  color: var(--text-secondary, #555);
}

.list-item-bordered:last-child {
  border-bottom: none;
}

.list-item-simple {
  padding: var(--space-3, 12px) 0;
  color: var(--text-secondary, #555);
}

/* --------------------------------------------------------------------------
   31. Body Text & Heading Utilities (replaces inline typography)
   -------------------------------------------------------------------------- */
.body-text {
  font-size: var(--text-base, 16px);
  line-height: var(--leading-relaxed, 1.625);
  color: var(--text-secondary, #555);
}

.heading-sm {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: var(--space-4, 16px);
  color: var(--text-primary, #201E10);
}

.heading-md {
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: var(--space-4, 16px);
  color: var(--text-primary, #201E10);
}

.text-primary-bold {
  color: var(--primary, #1a1a1a);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   32. Grid Layout Utilities (replaces inline grid styles)
   -------------------------------------------------------------------------- */
.card-grid--2col {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.card-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.flex-row-start {
  display: flex;
  gap: var(--space-6, 24px);
  align-items: start;
}

/* --------------------------------------------------------------------------
   33. Spacing Utilities (replaces inline margin styles)
   -------------------------------------------------------------------------- */
.mt-4 { margin-top: var(--space-4, 16px); }
.mt-6 { margin-top: var(--space-6, 24px); }
.mt-8 { margin-top: var(--space-8, 32px); }
.mt-10 { margin-top: var(--space-10, 40px); }
.mt-12 { margin-top: var(--space-12, 48px); }
.mb-3 { margin-bottom: var(--space-3, 12px); }
.mb-4 { margin-bottom: var(--space-4, 16px); }
.mb-6 { margin-bottom: var(--space-6, 24px); }
.mb-8 { margin-bottom: var(--space-8, 32px); }
.mb-10 { margin-bottom: var(--space-10, 40px); }

@media (max-width: 767px) {
  .card-grid--2col {
    grid-template-columns: 1fr;
  }

  .card-grid--auto {
    grid-template-columns: 1fr;
  }

  .flex-row-start {
    flex-direction: column;
  }

  .content-card {
    padding: var(--space-6, 24px);
  }

  .gradient-box {
    padding: var(--space-6, 24px);
  }

  .callout-lg {
    padding: var(--space-8, 32px);
  }
}


/* --------------------------------------------------------------------------
   34. Footer Utility Classes
   -------------------------------------------------------------------------- */
.footer-address {
  margin-top: 8px;
  line-height: 1.6;
}

.mt-footer-cta {
  margin-top: 1.5rem;
}

.footer-social {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   35. Content Utilities
   -------------------------------------------------------------------------- */
.p-12 {
  padding: var(--space-12, 48px);
}

.mb-12 {
  margin-bottom: var(--space-12, 48px);
}

.indented-text {
  padding-left: var(--space-8, 32px);
  line-height: 1.8;
  color: var(--text-secondary, #555);
}

.card-link {
  text-decoration: none;
  padding: var(--space-10, 40px);
  display: block;
}

.list-item-bordered--danger {
  border-bottom-color: #fee2e2;
}

.text-sm {
  font-size: var(--text-sm, 14px);
}

.text-secondary {
  color: var(--text-secondary, #555);
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-12 {
    padding: var(--space-8, 32px);
  }
}

/* ==========================================================================
   MISSING CLASS DEFINITIONS - Added 2026-04-22
   All classes styled to match RECO Island's clean, elegant aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   36. Card Components
   -------------------------------------------------------------------------- */

/* Accessibility Cards */
.accessibility-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.accessibility-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  text-align: center;
}

.accessibility-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.accessibility-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.accessibility-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Amenity Cards */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.amenity-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.amenity-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.amenity-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Generic Card Hover Modifier */
.card--hover {
  transition: all 0.3s ease;
}

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

/* Treatment Component Cards */
.treatment-components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.component-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.component-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.component-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.component-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Aftercare Connection Cards */
.connection-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.connection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.connection-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.connection-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Alumni Event Cards */
.event-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.event-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.event-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Expectation Cards */
.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.expectation-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.expectation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.expectation-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.expectation-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Treatment Focus Cards */
.treatment-focus-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.focus-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.focus-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.focus-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Depression Pathway Cards */
.pathway-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.pathway-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.pathway-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.pathway-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Treatment Phase Cards */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.phase-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.phase-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary, #1a1a1a);
  color: var(--white, #fff);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.phase-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.phase-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Quiz Option Buttons */
.quiz-option {
  background: var(--white, #fff);
  border: 2px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary, #1a1a1a);
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
}

.quiz-option:hover {
  border-color: var(--primary, #1a1a1a);
  background: rgba(0, 0, 0, 0.02);
  transform: translateX(4px);
}

.quiz-option:active,
.quiz-option.active {
  background: var(--primary, #1a1a1a);
  color: var(--white, #fff);
  border-color: var(--primary, #1a1a1a);
}

/* Detailed Resource Cards */
.resource-card-detailed {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.resource-card-detailed:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.resource-card-detailed h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary, #1a1a1a);
}

.resource-card-detailed p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
  margin-bottom: 12px;
}

/* Patient Story/Testimonial Cards */
.success-stories {
  margin: 48px 0;
}

.story-card {
  background: var(--off-white, #f8f7f4);
  border-left: 4px solid var(--primary, #1a1a1a);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.story-quote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary, #444);
  margin-bottom: 16px;
}

.story-author {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
}

/* Therapy Card - specific therapy modality */
.therapies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.therapy-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.therapy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.therapy-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.therapy-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Symptom Category Cards */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

/* Note: .symptom-card already exists in the file, no need to duplicate */

/* --------------------------------------------------------------------------
   37. Grid Layouts
   -------------------------------------------------------------------------- */

/* Two-column layouts with image and text */
.two-column-section {
  margin: 48px 0;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.column-content h2 {
  font-size: 32px;
  font-weight: 300;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 16px;
}

.column-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 12px;
}

.column-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

.column-image {
  border-radius: 12px;
  overflow: hidden;
}

.column-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Generic content grid */
.content-grid {
  display: grid;
  gap: 24px;
  margin: 32px 0;
}

/* 3-column grid */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --------------------------------------------------------------------------
   38. Treatment/Program Specific Components
   -------------------------------------------------------------------------- */

/* Aftercare Plan Components */
.aftercare-plan-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

/* Alumni Services Grid */
.alumni-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

/* Annual Events List */
.annual-events {
  margin: 32px 0;
}

/* Treatment Approach Steps */
.treatment-approach {
  margin: 48px 0;
}

.approach-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200, #e5e5e5);
  margin-bottom: 32px;
}

.approach-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.approach-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary, #1a1a1a);
  color: var(--white, #fff);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.approach-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.approach-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Connection Options & Pathways */
.connection-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.connection-pathways {
  margin: 48px 0;
}

/* Daily Schedule */
.daily-schedule {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
}

.schedule-item {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200, #e5e5e5);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary, #1a1a1a);
  min-width: 80px;
  flex-shrink: 0;
}

.schedule-activity {
  font-size: 16px;
  color: var(--text-secondary, #444);
  line-height: 1.6;
}

/* Schedule Options */
.schedule-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.schedule-option-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.schedule-option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.schedule-option-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.schedule-option-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Evening Expectations Block */
.evening-expectations {
  background: var(--off-white, #f8f7f4);
  border-radius: 12px;
  padding: 32px;
  margin: 24px 0;
}

.evening-expectations h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary, #1a1a1a);
}

.evening-expectations p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* Therapy Modalities Grid */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

/* Plan Section */
.plan-section {
  margin-bottom: 48px;
}

.plan-section h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--text-primary, #1a1a1a);
}

/* Typical Session Container */
.typical-session {
  background: var(--off-white, #f8f7f4);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
}

.session-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200, #e5e5e5);
}

.session-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.session-block h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.session-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

.session-breakdown {
  margin: 32px 0;
}

.session-time {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary, #1a1a1a);
  display: inline-block;
  margin-right: 12px;
}

/* Step-down Benefits List */
.step-down-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.step-down-benefits li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

.step-down-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary, #1a1a1a);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   39. Alert & CTA Components
   -------------------------------------------------------------------------- */

/* Alert Box (red-tinted warning) */
.alert-box {
  background: rgba(255, 59, 48, 0.08);
  border-left: 4px solid #ff3b30;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.alert-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #c0392b;
}

.alert-box p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
  margin-bottom: 0;
}

/* Large CTA Button */
.cta-button-large {
  background: var(--primary, #1a1a1a);
  color: var(--white, #fff);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button-large:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   40. FAQ List (alternative to accordion)
   -------------------------------------------------------------------------- */

.faq-list {
  margin: 32px 0;
}

.faq-list .faq-item {
  /* Uses existing .faq-item styles */
}

/* --------------------------------------------------------------------------
   41. Footer Components
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--primary, #1a1a1a);
  color: var(--white, #fff);
  padding: 64px 0 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white, #fff);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white, #fff);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white, #fff);
}

/* --------------------------------------------------------------------------
   42. Format Options (treatment formats)
   -------------------------------------------------------------------------- */

.format-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.format-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e5e5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.format-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.format-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #1a1a1a);
}

.format-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #444);
}

/* --------------------------------------------------------------------------
   43. Stat Highlight (inline highlighted stat)
   -------------------------------------------------------------------------- */

.stat-highlight {
  font-weight: 700;
  color: var(--primary, #1a1a1a);
  font-size: 1.1em;
}

/* --------------------------------------------------------------------------
   44. Responsive Overrides for New Classes
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-step {
    gap: 16px;
  }

  .column-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .accessibility-features,
  .amenities-grid,
  .treatment-components-grid,
  .expectations-grid,
  .treatment-focus-areas,
  .phases-grid,
  .therapies-grid,
  .symptoms-grid,
  .aftercare-plan-components,
  .alumni-services-grid,
  .connection-options,
  .schedule-options,
  .modalities-grid,
  .format-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .grid-3-col {
    grid-template-columns: 1fr;
  }

  .approach-step {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .approach-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .phase-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .column-content h2 {
    font-size: 24px;
  }

  .column-content h3 {
    font-size: 20px;
  }

  .daily-schedule,
  .typical-session,
  .evening-expectations {
    padding: 24px;
  }

  .schedule-item {
    flex-direction: column;
    gap: 8px;
  }

  .schedule-time {
    min-width: auto;
  }

  .alert-box {
    padding: 20px;
  }

  .cta-button-large {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
    font-size: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .story-quote {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .accessibility-card,
  .amenity-card,
  .component-card,
  .connection-card,
  .event-card,
  .expectation-card,
  .focus-card,
  .pathway-card,
  .phase-card,
  .resource-card-detailed,
  .story-card,
  .therapy-card,
  .schedule-option-card,
  .format-card {
    padding: 24px;
  }

  .approach-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .phase-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .approach-content h4,
  .phase-content h4 {
    font-size: 18px;
  }

  .column-content h2 {
    font-size: 22px;
  }

  .plan-section h3 {
    font-size: 24px;
  }

  .quiz-option {
    padding: 16px 24px;
    font-size: 15px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }
}
