/* ==========================================================================
   MDI Helpline - Ultra-Modern Design
   Architecture: Full-Screen Sections + Bento Grid (#8 hybrid)
   Style: Ultra-Modern 2026 (Dark Hero + Light Content + Glassmorphism)
   Generated: January 2026
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --color-primary: #6366F1;
  --color-primary-light: #818CF8;
  --color-primary-dark: #4F46E5;
  --color-secondary: #06B6D4;
  --color-secondary-light: #22D3EE;
  --color-accent: #F59E0B;
  --color-accent-light: #FBBF24;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #6366F1 0%, #06B6D4 100%);
  --gradient-hero: linear-gradient(135deg, #0B1121 0%, #1E1B4B 50%, #0B1121 100%);
  --gradient-card: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(6,182,212,0.08) 100%);
  --gradient-text: linear-gradient(135deg, #6366F1, #06B6D4);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.15) 0%, transparent 70%);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(99,102,241,0.12) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(6,182,212,0.1) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, rgba(245,158,11,0.06) 0px, transparent 50%);

  /* Neutral Palette */
  --color-bg: #FAFBFF;
  --color-bg-alt: #F1F5F9;
  --color-bg-dark: #0B1121;
  --color-bg-dark-2: #1E1B4B;
  --color-surface: #FFFFFF;
  --color-surface-dark: rgba(255,255,255,0.05);
  --color-border: #E2E8F0;
  --color-border-light: rgba(255,255,255,0.1);

  /* Text */
  --color-text: #0F172A;
  --color-text-secondary: #475569;
  --color-text-muted: #94A3B8;
  --color-text-light: #FFFFFF;
  --color-text-light-secondary: rgba(255,255,255,0.7);

  /* Status */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 800px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-2xl: 32px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.06);
  --shadow-lg: 0 8px 32px rgba(15,23,42,0.08);
  --shadow-xl: 0 16px 48px rgba(15,23,42,0.12);
  --shadow-glow: 0 0 40px rgba(99,102,241,0.15);
  --shadow-glow-lg: 0 0 80px rgba(99,102,241,0.2);

  /* Glass */
  --glass-bg: rgba(255,255,255,0.7);
  --glass-bg-dark: rgba(11,17,33,0.8);
  --glass-border: rgba(255,255,255,0.2);
  --glass-blur: blur(20px);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--border-radius-md);
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
  color: #fff;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-light { color: var(--color-text-light); }
.text-light p, .text-light li { color: var(--color-text-light-secondary); }
.text-light h1, .text-light h2, .text-light h3, .text-light h4 { color: var(--color-text-light); }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.header--scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.header--scrolled .header__logo-text {
  color: var(--color-text);
}

.header--scrolled .nav__link {
  color: var(--color-text-secondary);
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--active {
  color: var(--color-primary);
}

.header--scrolled .header__phone-text {
  color: var(--color-text);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: 1001;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light-secondary);
  border-radius: var(--border-radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Header CTA & Phone */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.header__phone-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.header--scrolled .header__phone-icon {
  background: var(--gradient-card);
}

.header__phone-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--color-secondary-light);
}

.header__phone-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header--scrolled .menu-toggle__bar {
  background: var(--color-text);
}

.menu-toggle--active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle--active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle--active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--glass-bg-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-nav--active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 12px 32px;
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-fast);
}

.mobile-nav__link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.mobile-nav__phone {
  margin-top: var(--space-xl);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(99,102,241,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.4);
  color: #fff;
}

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding: 14px 16px;
}

.btn--ghost:hover {
  background: rgba(99,102,241,0.06);
  color: var(--color-primary-dark);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--gradient {
  background: var(--gradient-hero);
  color: var(--color-text-light);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: var(--gradient-card);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.section__badge--light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: var(--color-secondary-light);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.section--dark .section__subtitle {
  color: var(--color-text-light-secondary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.8;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -10%;
  right: -5%;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  bottom: -10%;
  left: -5%;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  top: 40%;
  left: 30%;
  opacity: 0.15;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-secondary-light);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
}

.hero__description {
  font-size: 1.2rem;
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light-secondary);
}

/* Hero Image Side */
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--border-radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}

.hero--split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* ---------- Inner Page Hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: var(--gradient-hero);
  overflow: hidden;
}

.page-hero__mesh {
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.6;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light-secondary);
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.breadcrumb__link {
  font-size: 0.85rem;
  color: var(--color-text-light-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: #fff;
}

.breadcrumb__sep {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.breadcrumb__current {
  font-size: 0.85rem;
  color: var(--color-secondary-light);
  font-weight: 500;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.card--glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.card--dark {
  background: var(--color-surface-dark);
  border-color: var(--color-border-light);
}

.card--dark:hover {
  border-color: rgba(99,102,241,0.3);
  box-shadow: var(--shadow-glow);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-lg);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

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

.card--dark .card__icon {
  background: rgba(99,102,241,0.15);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card--dark .card__text {
  color: var(--color-text-light-secondary);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-top: var(--space-md);
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: var(--space-sm);
}

.card__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ---------- Bento Grid ---------- */
.bento-grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

.bento-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.trust-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

/* ---------- Programs Section ---------- */
.program-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

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

.program-card__image {
  height: 200px;
  overflow: hidden;
}

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.program-card__body {
  padding: var(--space-xl);
}

.program-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gradient-card);
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.program-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.program-card__text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.program-card__duration {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.program-card__duration svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-muted);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__star {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
}

.testimonial-card__quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.testimonial-card__program {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.cta-section__mesh {
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
}

.cta-section__text {
  font-size: 1.1rem;
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.cta-section__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-secondary-light);
  margin-bottom: var(--space-xl);
  text-decoration: none;
}

.cta-section__phone:hover {
  color: #fff;
}

.cta-section__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Amenities Grid ---------- */
.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-fast);
}

.amenity-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.amenity-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-md);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amenity-item__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.amenity-item__text {
  font-weight: 500;
  color: var(--color-text);
}

/* ---------- Photo Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-grid__item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-grid__item:hover::after {
  opacity: 1;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-primary-light);
}

.faq-item--active {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-surface);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  gap: var(--space-md);
  transition: background var(--transition-fast);
}

.faq-item__question:hover {
  background: var(--color-bg-alt);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-full);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item--active .faq-item__icon {
  transform: rotate(45deg);
  background: var(--gradient-primary);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  fill: var(--color-primary);
}

.faq-item--active .faq-item__icon svg {
  fill: #fff;
}

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

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

.faq-item__answer-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ---------- Insurance Grid ---------- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.insurance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.insurance-item:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

/* ---------- Timeline / Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
}

.step__title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.step__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  transition: all var(--transition-base);
}

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

.team-card__photo {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius-full);
  background: var(--gradient-primary);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.team-card__title {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team-card__credentials {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

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

.blog-card__image {
  height: 200px;
  overflow: hidden;
  background: var(--gradient-card);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.blog-card__body {
  padding: var(--space-xl);
}

.blog-card__category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gradient-card);
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.hipaa-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--border-radius-md);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-lg);
}

.hipaa-notice svg {
  width: 18px;
  height: 18px;
  fill: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Contact Info Cards ---------- */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.contact-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-card__value {
  font-weight: 600;
  color: var(--color-text);
}

.contact-card__value a {
  color: var(--color-text);
}

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

/* ---------- Map ---------- */
.map-wrapper {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  margin-bottom: var(--space-lg);
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}

.footer__description {
  font-size: 0.9rem;
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-secondary-light);
  text-decoration: none;
}

.footer__phone:hover {
  color: #fff;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-text-light-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: var(--color-text-light-secondary);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: var(--color-text-light-secondary);
  font-size: 0.85rem;
}

.footer__bottom-links a:hover {
  color: #fff;
}

/* ---------- Sticky CTA (Mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.sticky-cta__inner {
  display: flex;
  gap: var(--space-sm);
  max-width: var(--container-max);
  margin: 0 auto;
}

.sticky-cta .btn {
  flex: 1;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 800;
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
}

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

.back-to-top:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-secondary);
  transition: fill var(--transition-fast);
}

.back-to-top:hover svg {
  fill: #fff;
}

/* ---------- Content Blocks ---------- */
.content-block {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: var(--space-md);
}

.content-block h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.content-block p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.content-block ul, .content-block ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-block li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  position: relative;
  padding-left: var(--space-md);
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.content-block ol {
  counter-reset: list-counter;
}

.content-block ol li {
  counter-increment: list-counter;
}

.content-block ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: -4px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.comparison-table th {
  background: var(--color-bg-dark);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

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

.comparison-table tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .header__phone { display: none; }

  .hero--split .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content { max-width: 100%; }
  .hero__description { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { display: none; }

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

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

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

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

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }

  .bento-grid--2,
  .bento-grid--3,
  .bento-grid--4,
  .bento-grid--programs,
  .bento-grid--features {
    grid-template-columns: 1fr;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  .sticky-cta {
    display: block;
  }

  .back-to-top {
    bottom: 80px;
  }

  .hero__stats {
    gap: var(--space-xl);
    flex-wrap: wrap;
  }

  .hero__stat-value {
    font-size: 1.5rem;
  }

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

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

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta-section__actions {
    flex-direction: column;
  }

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

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

/* ---------- Print Styles ---------- */
@media print {
  .header, .footer, .sticky-cta, .back-to-top, .cta-section {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none;
    color: #000;
    padding: 2rem 0;
  }

  .hero__title, .page-hero__title {
    color: #000;
  }
}
