/* Luminiosa - Main Stylesheet
   OOS MODE ACTIVE (January 2026): Cart icon hidden. Search "OOS MODE" to restore. */

/* ========== OOS MODE - TEMPORARY (Remove when back in stock) ========== */
/* Hide cart icon globally during out of stock period */
.nav-cart {
  display: none !important;
}
/* ========== END OOS MODE ========== */

/* ========== CSS RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --canvas-white: #F8F9FA;
  --physio-navy: #0A2B4C;
  --therapy-coral: #FF7A59;
  --clinical-blue: #A2C1D9;
  --trust-grey: #EDEFF1;
  --text-muted: #5A6978;
  
  /* Typography */
  --font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(10, 43, 76, 0.08);
  --shadow-lift: 0 8px 30px rgba(10, 43, 76, 0.12);
  --shadow-hover: 0 12px 40px rgba(10, 43, 76, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--physio-navy);
  background-color: var(--canvas-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background-color: var(--therapy-coral);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 122, 89, 0.35);
}

.btn-primary:hover {
  background-color: #e86a4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 89, 0.45);
}

.btn-coral {
  background-color: var(--therapy-coral);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 122, 89, 0.35);
}

.btn-coral:hover {
  background-color: #e86a4a;
  transform: translateY(-2px);
}

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

/* ========== ALERT BAR ========== */
.alert-bar {
  background: linear-gradient(135deg, var(--physio-navy) 0%, #0D3A5C 100%);
  padding: 0.625rem 0;
}

.alert-bar-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.alert-bar-text .alert-icon {
  font-size: 1rem;
}

.alert-bar-text strong {
  font-weight: 700;
  color: var(--therapy-coral);
}

@media (max-width: 767px) {
  .alert-bar-text {
    font-size: 0.6875rem;
    gap: 0.375rem;
  }
  
  .alert-bar-text .alert-icon {
    font-size: 0.875rem;
  }
}

/* ========== NAVIGATION ========== */
.nav-header {
  background-color: var(--canvas-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--space-sm) 0;
  min-height: 70px;
  gap: var(--space-md);
}

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

.logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--physio-navy);
  padding: var(--space-xs) 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--therapy-coral);
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.25s ease;
  margin-top: 1px;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 260px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(10, 43, 76, 0.18), 0 4px 12px rgba(10, 43, 76, 0.08);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
}

/* Triangle pointer */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 4px rgba(10, 43, 76, 0.04);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.nav-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px !important;
  border-radius: 10px;
  text-decoration: none;
  color: var(--physio-navy);
  transition: background 0.15s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.nav-dropdown-menu .dropdown-item + .dropdown-item {
  margin-top: 4px;
}

.nav-dropdown-menu a.dropdown-item:hover {
  background: var(--trust-grey);
}

.nav-dropdown-menu .dropdown-item--active {
  background: rgba(255, 122, 89, 0.08);
}

.nav-dropdown-menu a.dropdown-item--active:hover {
  background: rgba(255, 122, 89, 0.14);
}

.nav-dropdown-menu .dropdown-item--soon {
  opacity: 0.5;
  cursor: not-allowed;
}

.nav-dropdown-menu .dropdown-item--soon:hover {
  background: transparent;
}

.dropdown-item-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

.dropdown-item-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--therapy-coral);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1;
  text-align: center;
  min-width: 52px;
  flex-shrink: 0;
}

.dropdown-item-badge--soon {
  background: #E8EAED;
  color: #6B7280;
}

/* Mobile: Dropdown always visible, stacked */
@media (max-width: 1023px) {
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }
  
  .dropdown-arrow {
    display: none;
  }
  
  .nav-dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 12px 0 4px 0;
    opacity: 1;
    visibility: visible;
    background: transparent;
    margin-top: 0;
  }
  
  .nav-dropdown-menu::before {
    display: none;
  }
  
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }
  
  .nav-dropdown-menu .dropdown-item {
    padding: 12px 20px !important;
    border-radius: 10px;
    background: rgba(248, 249, 250, 0.8);
    margin-top: 6px;
  }
  
  .nav-dropdown-menu .dropdown-item:first-child {
    margin-top: 0;
  }
  
  .nav-dropdown-menu .dropdown-item + .dropdown-item {
    margin-top: 6px;
  }
  
  .nav-dropdown-menu a.dropdown-item:hover,
  .nav-dropdown-menu a.dropdown-item--active:hover {
    background: var(--trust-grey);
  }
  
  .nav-dropdown-menu .dropdown-item--active {
    background: rgba(255, 122, 89, 0.1);
  }
}

/* Nav Icons */
.nav-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-xs);
}

/* ========== CENTERED NAVBAR LAYOUT ========== */
.navbar--centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.navbar--centered .nav-links--left {
  justify-content: flex-start;
}

.navbar--centered .logo--center {
  justify-self: center;
}

.navbar--centered .nav-icons--right {
  justify-content: flex-end;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--physio-navy);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-icon-btn:hover {
  background-color: var(--trust-grey);
  color: var(--therapy-coral);
}

.nav-cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background-color: var(--therapy-coral);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 9px;
  display: none; /* Hidden by default, shown by JS when count > 0 */
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(255, 122, 89, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--physio-navy);
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(10, 43, 76, 0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
}

/* ========== HERO SECTION (LEGACY) ========== */
.hero {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--canvas-white) 0%, rgba(162, 193, 217, 0.12) 100%);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, #FFF9F7 100%);
  pointer-events: none;
}

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

/* Mobile: Hide desktop CTA, show mobile CTA after image */
.hero-cta-desktop {
  display: none;
}

.hero-cta-mobile {
  display: inline-block;
  justify-self: center;
}

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

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--physio-navy);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  position: relative;
}

.hero-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ========== IMMERSIVE HERO SECTION ========== */
.hero-immersive {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--canvas-white);
}

.hero-immersive__bg {
  position: relative;
  z-index: 0;
}

.hero-immersive__bg--desktop {
  display: block;
  grid-column: 2;
  grid-row: 1;
  margin-left: -20%;
}

.hero-immersive__bg--mobile {
  display: none;
}

.hero-immersive__img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-immersive__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--canvas-white) 0%,
    rgba(248, 249, 250, 0.9) 15%,
    rgba(248, 249, 250, 0.6) 30%,
    rgba(248, 249, 250, 0.2) 50%,
    rgba(248, 249, 250, 0) 70%
  );
  pointer-events: none;
}

.hero-immersive .container {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.hero-immersive__content {
  max-width: 480px;
  margin-left: auto;
  padding-right: var(--space-xl);
}

.hero-immersive__headline {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--physio-navy);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-immersive__subheadline {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-immersive__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-immersive__cta svg {
  transition: transform var(--transition-base);
}

.hero-immersive__cta:hover svg {
  transform: translateX(4px);
}

/* Mobile: Immersive hero with vertical blend */
@media (max-width: 767px) {
  .hero-immersive {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
  }
  
  .hero-immersive__bg--desktop {
    display: none;
  }
  
  .hero-immersive__bg--mobile {
    display: block;
    position: relative;
    width: 100%;
  }
  
  .hero-immersive__bg--mobile .hero-immersive__img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .hero-immersive__bg--mobile .hero-immersive__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(248, 249, 250, 0) 0%,
      rgba(248, 249, 250, 0) 30%,
      rgba(248, 249, 250, 0.6) 50%,
      rgba(248, 249, 250, 0.9) 65%,
      rgba(248, 249, 250, 1) 80%,
      rgba(248, 249, 250, 1) 100%
    );
    pointer-events: none;
  }
  
  .hero-immersive .container {
    position: relative;
    margin-top: -30%;
    grid-column: auto;
    grid-row: auto;
    padding: var(--space-md);
    z-index: 2;
  }
  
  .hero-immersive__content {
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    padding-right: 0;
  }
  
  .hero-immersive__headline {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
  
  .hero-immersive__subheadline {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
  }
  
  .hero-immersive__cta {
    width: 100%;
    justify-content: center;
    margin-bottom: var(--space-lg);
  }
  
  .product-trio {
    padding-top: var(--space-lg);
  }
}

/* ========== PRODUCT TRIO SECTION ========== */
.product-trio {
  padding: var(--space-3xl) 0;
  background: white;
}

.product-trio__headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--physio-navy);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.product-trio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Trio Card */
.trio-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 43, 76, 0.06);
  transition: all var(--transition-base);
  position: relative;
}

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

/* Card Image */
.trio-card__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(145deg, #FAF8F6 0%, #F0EBE8 100%);
  position: relative;
}

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

.trio-card:hover .trio-card__image img {
  transform: scale(1.03);
}

.trio-card__image--dark {
  background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
}

/* Card Content */
.trio-card__content {
  padding: var(--space-md);
}

/* Badge in Content Area */
.trio-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.trio-card__badge--gold {
  background: linear-gradient(135deg, #FFB347 0%, #FF8C00 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.25);
}

.trio-card__badge--teal {
  background: linear-gradient(135deg, #4ECDC4 0%, #2CB5AC 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(78, 205, 196, 0.25);
}

.trio-card__badge--purple {
  background: linear-gradient(135deg, #9B72CF 0%, #6B4C9A 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 76, 154, 0.25);
}

.trio-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--physio-navy);
  margin-bottom: 0.5rem;
}

.trio-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.trio-card__btn {
  width: 100%;
  text-align: center;
}

.trio-card__btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.trio-card__btn--locked {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(10, 43, 76, 0.08);
  border-color: transparent;
}

/* Coming Soon Card */
.trio-card--coming {
  border-color: rgba(78, 205, 196, 0.2);
}

/* Mystery Card */
.trio-card--mystery {
  border-color: rgba(107, 76, 154, 0.2);
}

/* Tablet: 2+1 layout */
@media (min-width: 640px) {
  .product-trio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-trio__grid .trio-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }
  
  .trio-card__content {
    padding: var(--space-lg);
  }
  
  .trio-card__title {
    font-size: 1.375rem;
  }
}

/* Desktop: 3-column layout */
@media (min-width: 1024px) {
  .product-trio__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
  
  .product-trio__grid .trio-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  
  .trio-card__badge {
    font-size: 0.6875rem;
    padding: 0.4375rem 0.875rem;
  }
  
  .trio-card__title {
    font-size: 1.5rem;
  }
  
  .trio-card__desc {
    font-size: 1rem;
  }
}

/* ========== PRODUCT SECTION ========== */
.product-section {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: linear-gradient(180deg, #FFF9F7 0%, #FFF9F7 40%, var(--canvas-white) 100%);
  position: relative;
  margin-top: -60px;
  padding-top: calc(var(--space-xl) + 60px);
}

.product-card {
  background-color: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(255, 122, 89, 0.08), var(--shadow-lift);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 122, 89, 0.08);
  max-width: 100%;
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: linear-gradient(135deg, var(--therapy-coral) 0%, #e86a4a 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(255, 122, 89, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.product-image {
  background: linear-gradient(145deg, #FAF8F6 0%, #F0EBE8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 320px;
}

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

.product-card:hover .product-img {
  transform: scale(1.02);
}

.product-info {
  padding: var(--space-lg);
}

.product-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--physio-navy);
  margin-bottom: var(--space-xs);
}

.product-hook {
  font-size: 1rem;
  font-weight: 600;
  color: var(--therapy-coral);
  margin-bottom: var(--space-sm);
}

.product-description {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: linear-gradient(145deg, #FAF8F6 0%, #F5F0ED 100%);
  padding: var(--space-sm) var(--space-xs);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 43, 76, 0.05);
  transition: all var(--transition-base);
  min-height: 100px;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--physio-navy);
  text-align: center;
  line-height: 1.2;
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-current {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--physio-navy);
}

/* ========== FUTURE LAB SECTION ========== */
.future-section {
  padding: var(--space-3xl) 0;
  background-color: var(--trust-grey);
}

.section-headline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--physio-navy);
  text-align: center;
  margin-bottom: var(--space-xs);
}

.section-subheadline {
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.future-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}

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

.future-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

.future-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(10, 43, 76, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(10, 43, 76, 0.3);
  transition: all var(--transition-base);
}

.future-card:hover .future-lock {
  transform: translate(-50%, -50%) scale(1.1);
}

.future-lock svg {
  opacity: 0.9;
}

.future-info {
  padding: var(--space-md);
}

.future-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clinical-blue);
  background-color: rgba(162, 193, 217, 0.2);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.future-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--physio-navy);
}

/* ========== BETA SECTION ========== */
.beta-section {
  padding: var(--space-3xl) 0;
  background-color: var(--physio-navy);
}

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

@media (max-width: 767px) {
  .beta-content {
    text-align: left;
  }
}

.beta-headline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-sm);
}

.beta-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.beta-form {
  width: 100%;
}

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

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--physio-navy);
  background-color: white;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--therapy-coral);
  box-shadow: 0 0 0 4px rgba(255, 122, 89, 0.15);
}

.beta-form .btn {
  width: 100%;
}

.beta-success {
  background: rgba(45, 139, 95, 0.2);
  border: 1px solid rgba(45, 139, 95, 0.4);
  color: #7DCEA0;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

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

/* ========== STORY SECTION ========== */
.story-section {
  padding: var(--space-3xl) 0;
  background-color: var(--canvas-white);
}

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

.story-content {
  text-align: center;
}

@media (max-width: 767px) {
  .story-content {
    text-align: left;
  }
}

.story-headline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--physio-navy);
  margin-bottom: var(--space-md);
}

.story-text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.story-text strong {
  color: var(--physio-navy);
  font-weight: 700;
}

.story-signature {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--physio-navy);
  font-style: italic;
  margin-top: var(--space-md);
}

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

.story-img {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ========== TRUST SECTION ========== */
.trust-section {
  padding: var(--space-2xl) 0;
  background-color: var(--canvas-white);
  border-top: 1px solid rgba(10, 43, 76, 0.06);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.trust-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.trust-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--physio-navy);
  color: white;
}

.footer-main {
  padding: var(--space-2xl) 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  text-align: left;
}

@media (min-width: 1024px) {
  .footer-top {
    text-align: left;
  }
}

.footer-brand-block {
  display: flex;
  justify-content: flex-start;
}

.footer-logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-about-block {
  max-width: 520px;
  margin: 0 auto;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  order: 1;
}

.payment-icon {
  height: 24px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
  border-radius: 4px;
}

.payment-icon:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  order: 2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.375rem 1rem;
  font-size: 0.8125rem;
  order: 3;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
}

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

.footer-links a::after {
  content: '·';
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links a:last-child::after {
  display: none;
}

/* ========== RESPONSIVE: TABLET ========== */
@media (min-width: 640px) {
  .form-group {
    flex-direction: row;
  }
  
  .form-input {
    flex: 1;
  }
  
  .beta-form .btn {
    width: auto;
    white-space: nowrap;
  }
  
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .future-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-section {
    padding: var(--space-2xl) 0;
  }
  
  .product-badge {
    top: var(--space-md);
    left: var(--space-md);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .product-info {
    padding: var(--space-xl);
  }
  
  .product-name {
    font-size: 1.75rem;
  }
  
  .product-hook {
    font-size: 1.125rem;
  }
  
  .product-features {
    gap: var(--space-sm);
  }
  
  .feature {
    padding: var(--space-sm);
    min-height: 110px;
  }
  
  .feature-icon-wrap {
    width: 52px;
    height: 52px;
  }
  
  .feature-label {
    font-size: 0.8125rem;
  }
  
  .price-current {
    font-size: 2rem;
  }
}

/* ========== RESPONSIVE: DESKTOP ========== */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-subheadline {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-img {
    max-width: 100%;
  }
  
  /* Desktop: Show inline CTA, hide bottom CTA */
  .hero-cta-desktop {
    display: inline-block;
  }
  
  .hero-cta-mobile {
    display: none;
  }
  
  .product-section {
    padding: var(--space-3xl) 0;
  }
  
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-image {
    min-height: 500px;
  }
  
  .product-info {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .product-name {
    font-size: 2rem;
  }
  
  .product-features {
    gap: var(--space-sm);
  }
  
  .feature {
    padding: var(--space-md);
    min-height: 120px;
  }
  
  .feature-icon-wrap {
    width: 56px;
    height: 56px;
  }
  
  .feature-label {
    font-size: 0.875rem;
  }
  
  .product-cta {
    gap: var(--space-lg);
  }
  
  .price-old {
    font-size: 1.125rem;
  }
  
  .price-current {
    font-size: 2.25rem;
  }
  
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
  
  .story-content {
    text-align: left;
  }
  
  /* Footer Desktop */
  .footer-main {
    padding: var(--space-2xl) 0;
  }
  
  .footer-top {
    grid-template-columns: auto 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
    text-align: left;
  }
  
  .footer-brand-block {
    justify-content: flex-start;
  }
  
  .footer-about-block {
    margin: 0;
    text-align: left;
  }
  
  .footer-contact-block {
    flex-direction: column;
    align-items: flex-end;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .payment-icons {
    order: 2;
  }
  
  .copyright {
    order: 0;
    flex-shrink: 0;
  }
  
  .footer-links {
    order: 1;
    flex: 1;
    justify-content: center;
  }
}

/* ========== RESPONSIVE: MOBILE NAV ========== */
@media (max-width: 1023px) {
  .navbar {
    display: flex;
    justify-content: space-between;
  }
  
  .nav-toggle {
    display: flex;
    order: 3;
  }
  
  .nav-icons {
    order: 2;
    gap: 0;
  }
  
  .nav-icon-btn:first-child {
    display: none;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    box-shadow: -10px 0 30px rgba(10, 43, 76, 0.15);
    transition: right var(--transition-base);
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.125rem;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--trust-grey);
    width: 100%;
  }
  
  .nav-overlay {
    display: block;
    pointer-events: none;
  }
  
  .nav-overlay.active {
    pointer-events: auto;
  }
}

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

.hero-headline,
.hero-subheadline,
.hero .btn {
  animation: fadeInUp 0.6s ease backwards;
}

.hero-subheadline {
  animation-delay: 0.1s;
}

.hero .btn {
  animation-delay: 0.2s;
}

.hero-img {
  animation: fadeInUp 0.8s ease backwards;
  animation-delay: 0.15s;
}

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

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--therapy-coral);
}

/* ========== POLICY PAGES ========== */
.nav-header--policy {
  position: relative;
  background-color: var(--canvas-white);
  border-bottom: 1px solid var(--trust-grey);
}

.policy-page {
  padding: var(--space-lg) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--canvas-white) 0%, #FAFBFC 100%);
  min-height: calc(100vh - 200px);
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  transition: color 0.2s ease;
}

.policy-back:hover {
  color: var(--physio-navy);
}

.policy-content {
  max-width: 720px;
  margin: 0 auto;
}

.policy-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.policy-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(145deg, #FFF9F7 0%, #FFEFEA 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--therapy-coral);
  border: 1px solid rgba(255, 122, 89, 0.15);
}

.policy-icon--guarantee {
  background: linear-gradient(145deg, #E8F4EC 0%, #D4EBE0 100%);
  color: #2D8B5F;
  border-color: rgba(45, 139, 95, 0.15);
}

.policy-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--physio-navy);
  margin-bottom: 0.5rem;
}

.policy-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.policy-section {
  margin-bottom: var(--space-2xl);
}

.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--physio-navy);
  margin-bottom: var(--space-md);
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--physio-navy);
  margin-bottom: 0.5rem;
}

/* Highlight boxes */
.policy-highlight {
  display: grid;
  gap: var(--space-md);
}

.highlight-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--trust-grey);
  box-shadow: var(--shadow-soft);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-item strong {
  display: block;
  color: var(--physio-navy);
  margin-bottom: 0.25rem;
}

.highlight-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Policy cards */
.policy-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--trust-grey);
  box-shadow: var(--shadow-soft);
}

.policy-card h3 {
  margin-bottom: var(--space-sm);
}

.policy-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.policy-card--highlight {
  background: linear-gradient(145deg, #FFF9F7 0%, white 100%);
  border-color: rgba(255, 122, 89, 0.15);
}

.policy-card--tracking {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.tracking-icon {
  width: 48px;
  height: 48px;
  background: var(--trust-grey);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--physio-navy);
  flex-shrink: 0;
}

.policy-card--warning {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: linear-gradient(145deg, #FFF8E6 0%, white 100%);
  border-color: rgba(245, 166, 35, 0.2);
}

.warning-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4880F;
  flex-shrink: 0;
}

.warning-content p {
  margin: 0;
}

/* Policy grid */
.policy-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .policy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Time-based list */
.policy-list--times {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list--times li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-sm);
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--trust-grey);
}

.policy-list--times li:last-child {
  border-bottom: none;
}

.time-badge {
  font-weight: 700;
  color: var(--physio-navy);
  font-size: 0.9375rem;
}

.time-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.time-result {
  font-weight: 600;
  color: #2D8B5F;
  font-size: 0.9375rem;
}

/* Delivery info */
.delivery-time {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--physio-navy);
  margin-bottom: 0.25rem;
}

.delivery-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Pricing tiers */
.price-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(10, 43, 76, 0.08);
}

.price-tier:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-condition {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.price-value {
  font-weight: 700;
  color: var(--physio-navy);
}

.price-tier--free .price-value {
  color: #2D8B5F;
  font-size: 1.125rem;
}

/* Guarantee badge */
.policy-guarantee {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: linear-gradient(145deg, #E8F4EC 0%, #F0F9F4 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 139, 95, 0.15);
}

.guarantee-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 900;
  color: #2D8B5F;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-soft);
}

.guarantee-content h2 {
  color: #2D8B5F;
  margin-bottom: 0.5rem;
}

.guarantee-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Steps */
.policy-steps {
  display: grid;
  gap: var(--space-md);
}

.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--therapy-coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.step-content a {
  color: var(--therapy-coral);
  font-weight: 600;
}

/* Checklist */
.policy-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-checklist li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-sm) 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.policy-checklist li svg {
  color: #2D8B5F;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Refund methods */
.refund-method {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--trust-grey);
}

.refund-method:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.refund-method strong {
  display: block;
  color: var(--physio-navy);
  margin-bottom: 0.25rem;
}

.refund-method p {
  margin: 0;
  font-size: 0.9375rem;
}

.refund-method small {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Policy CTA */
.policy-cta {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--trust-grey);
  box-shadow: var(--shadow-soft);
}

.policy-cta p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
}

/* ========== MODALS ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 43, 76, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: calc(100% - 2rem);
  max-width: 640px;
  max-height: calc(100vh - 4rem);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 80px rgba(10, 43, 76, 0.25);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--trust-grey);
  flex-shrink: 0;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--physio-navy);
  margin: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--trust-grey);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--physio-navy);
  color: white;
}

.modal-body {
  padding: var(--space-lg);
  overflow-y: auto;
  flex: 1;
}

.modal-body h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--physio-navy);
  margin: var(--space-lg) 0 var(--space-sm);
}

.modal-body h2:first-child {
  margin-top: 0;
}

.modal-body p,
.modal-body li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.modal-body ul {
  padding-left: 1.25rem;
  margin: var(--space-sm) 0;
}

.modal-body li {
  margin-bottom: 0.5rem;
}

.modal-body a {
  color: var(--therapy-coral);
}

.modal-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.modal-contact {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--trust-grey);
  border-radius: var(--radius-md);
}

.modal-contact p {
  margin: 0.25rem 0;
  font-size: 0.875rem;
}

/* Body scroll lock */
body.modal-open {
  overflow: hidden;
  outline-offset: 2px;
}

/* ========== SELECTION ========== */
::selection {
  background-color: var(--therapy-coral);
  color: white;
}

