/*
Theme Name: Weinzoff Chiropractic New
Theme URI: 
Author: Shawn Kaleky
Author URI: 
Description: Custom WordPress theme for Weinzoff Chiropractic, built pixel-perfectly from Figma.
Version: 2.0
Text Domain: weinzoff
*/

/* ============================================
   FONTS — Geist (heading) via CDN
   ============================================ */
/* Geist Sans Regular (400) */
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans/files/geist-sans-latin-400-normal.woff2")
    format("woff2");
}

/* Geist Sans Medium (500) */
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans/files/geist-sans-latin-500-normal.woff2")
    format("woff2");
}

/* Geist Mono Regular (400) */
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/geist-mono/files/geist-mono-latin-400-normal.woff2")
    format("woff2");
}

/* Geist Mono Medium (500) */
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/geist-mono/files/geist-mono-latin-500-normal.woff2")
    format("woff2");
}

/* Inter Regular (400) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/inter/files/inter-latin-400-normal.woff2")
    format("woff2");
}

/* Inter Medium (500) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/inter/files/inter-latin-500-normal.woff2")
    format("woff2");
}

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Colors */
  --color-primary: #006dc1;
  --color-dark: #171722;
  --color-bg: #f7f7f7;
  --color-white: #ffffff;
  --color-text: #171722;
  --color-text-light: #f1f1f2;
  --color-neutral-300: #a9acaf;
  --color-neutral-500: #6f747a;
  --color-purple: #a082e5;

  /* Typography */
  --font-heading: "Geist", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Geist Mono", monospace;

  /* Layout */
  --max-width: 1440px;
  --content-width: 1200px;
  --section-padding: 120px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
}

/* Global focus-visible ring for keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.global-section-width {
  max-width: calc(1200px + (var(--section-padding) * 2));
  margin: 0 auto;
}
.gradient-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-align: center;
  font-feature-settings: "salt" 1;
  display: block;
  background: linear-gradient(90deg, #006dc1 0%, #a082e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.process-hero__content .gradient-label {
  text-align: left;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--color-text);
  text-align: center;
}

.btn-primary {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-text-light);
   
  border: 1px solid var(--color-primary) !important; 
  border-radius: 32px;
  padding: 13px 19px; 
  
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
 
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-appearance: none;
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
   
  box-shadow: 0 0 0 0 transparent !important;
   
  -webkit-mask-image: -webkit-radial-gradient(white, black); 
  transform: none; 
  will-change: opacity, transform;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:focus {
  outline: none;
}

.btn-primary:focus-visible {
  /* outline: 2px solid var(--color-primary);
  outline-offset: 2px; */
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:focus {
  outline: none;
}

.btn-primary:focus-visible {
  outline: none;
}

/* ---- Minimalist futuristic glow ---- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-primary);
  border-radius: 32px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.07px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: glow-breathe 4s ease-in-out infinite;
}

/* Soft breathing glow */
@keyframes glow-breathe {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(0, 109, 193, 0.12),
      0 0 4px rgba(0, 109, 193, 0.08);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 109, 193, 0.2),
      0 0 40px rgba(0, 109, 193, 0.06), 0 0 6px rgba(160, 130, 229, 0.08);
  }
}

/* Shimmer sweep across button */
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(0, 109, 193, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(0, 109, 193, 0.08) 55%,
    transparent 65%,
    transparent 100%
  );
  animation: shimmer-sweep 5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes shimmer-sweep {
  0%,
  100% {
    left: -100%;
  }

  40%,
  60% {
    left: 150%;
  }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(247, 247, 247, 0.1);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(247, 247, 247, 0.2);
}

.arrow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  background: var(--color-dark);
  padding: 7px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5%;
  color: var(--color-white);
  font-feature-settings: "salt" 1;
}

.top-bar__item svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Desktop: show outlined icons, hide filled */
.top-bar__icon--filled {
  display: block !important;
}

.top-bar__icon--outline {
  display: block;
}

/* ============================================
   PAGE HERO WRAPPER — keeps nav outside
   overflow-hidden hero so the dropdown
   menu is never clipped.
   ============================================ */
.page-hero-wrapper {
  position: relative;
  width: 100%;
}

/* Subpage variant — replicates the flex layout that
   .hero--subpage provided for the header so the header
   sits in normal flow above the hero content. */
/* Subpage variant — extra padding so the absolutely-
   positioned header doesn't overlap hero content. */
.page-hero-wrapper--subpage .hero--subpage {
  /* padding-top: 148px; */
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: unset !important;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: calc(100% - 48px);
  border-radius: 48px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.header__logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}

.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
  transition: color 0.2s;
}

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

.header__nav-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.header__nav-dropdown svg.header__nav-dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.header__nav-dropdown:hover svg.header__nav-dropdown-chevron {
  transform: rotate(180deg);
}

.header__nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(23, 23, 34, 0.08);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1000;
}

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

.header__nav-dropdown-menu a {
  padding: 10px 16px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.07px;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.header__nav-dropdown-menu a:hover {
  background: rgba(0, 109, 193, 0.08);
  color: var(--color-primary);
}

.header__cta {
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 32px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.06px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 109, 193, 0.2);
}

.header__cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header__hamburger {
  display: none;
}

.header__close {
  display: none;
}

/* ---- Sticky state (added via JS on scroll) ---- */
.header--sticky {
  position: fixed;
  top: 12px;
  z-index: 9999;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--color-bg);
  padding: 160px var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.services-grid__row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.services-grid__row--bottom {
  align-items: center;
  justify-content: center;
}

/* Service Card */
.service-card {
  flex: 1 0 0;
  min-height: 1px;
  min-width: 1px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.1);
}

/* Card Background Image */
.service-card__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.service-card__bg--top {
  height: 577px;
  left: 0;
  top: 0;
  width: 100%;
}

.service-card__bg--bottom {
  height: 883px;
  left: 0;
  width: 100%;
}

.service-card__bg--wl {
  bottom: -68px;
  top: auto;
}

.service-card__bg--sc {
  top: -258px;
}

.service-card__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

/* ============================================
   GLASSMORPHISM FIX v3 — BROWSER-COMPATIBLE
   
   The Figma approach (backdrop-filter + filter blur 
   on same element) doesn't render correctly in browsers.
   
   This fix uses a TWO-LAYER approach:
   Layer 1: backdrop-filter blur panel (the glass)
   Layer 2: gradient mask for soft feathered edges
   
   Replace ALL blur classes in your style.css with these.
   Also replace the overlay classes.
   ============================================ */

/* -----------------------------------------------
   IMAGE OVERLAY — Exact Figma gradient values
   ----------------------------------------------- */
.service-card__bg-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 38.692%,
      rgba(0, 0, 0, 0.4) 85.615%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Card 1 uses solid black at bottom (rgb not rgba) */
.service-card__bg-overlay--strong {
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 38.692%,
      rgb(0, 0, 0) 85.615%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* -----------------------------------------------
   GLASSMORPHISM BLUR — Two-layer approach
   
   The blur element itself provides backdrop-filter.
   Its ::before pseudo-element provides the soft 
   feathered edge via a gradient mask.
   ----------------------------------------------- */

/* Shared base for all blur panels */
.service-card__blur--card1,
.service-card__blur--card2,
.service-card__blur--card3,
.service-card__blur--card4,
.service-card__blur--card5 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1;
  /* Gradient mask: fully visible at bottom, fades to transparent at top */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 20%,
    rgba(0, 0, 0, 0.7) 40%,
    black 60%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 20%,
    rgba(0, 0, 0, 0.7) 40%,
    black 60%
  );
}

/* Card-specific: height and tint darkness */

/* Card 1: Chiropractic Care — tallest visible blur zone */
.service-card__blur--card1 {
  height: 280px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    transparent 100%
  );
}

/* Card 2: Plantar Fasciitis */
.service-card__blur--card2 {
  height: 300px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

/* Card 3: Neuropathy — slightly darker (Figma uses 0.4 bg) */
.service-card__blur--card3 {
  height: 300px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    transparent 100%
  );
}

/* Card 4: Weight Loss */
.service-card__blur--card4 {
  height: 280px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

/* Card 5: Sciatica */
.service-card__blur--card5 {
  height: 280px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

/* Card Top: Icon + Title */
.service-card__top {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

/* Service card icon — simple img approach */
.service-card__icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #ffffff;
  /* flex-shrink: 0; */
}

/* Card Bottom: Description + Button */
.service-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.service-card__bottom--card4 {
  width: 474px;
}

.service-card__bottom--card5 {
  width: 456px;
}

.service-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #ffffff;
  width: 100%;
}

/* Glass Button (Learn More) */
.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(247, 247, 247, 0.1);
  border-radius: 32px;
  padding: 12px 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.service-card__btn:hover {
  background: rgba(247, 247, 247, 0.2);
}

.service-card__btn-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #f1f1f2;
  text-align: center;
  flex-shrink: 0;
}

.service-card__btn-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.services__description {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  text-align: center;
  width: 100%;
  font-feature-settings: "salt" 1;
}

/* Scroll reveal: smooth character-by-character color wash */
.services__description .reveal-char,
.scroll-reveal-text .reveal-char {
  color: var(--color-neutral-300);
  transition: color 0.05s ease;
}

/* ============================================
   PREMIUM SERVICES
   ============================================ */
.premium {
  background: var(--color-bg);
  padding: 160px var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.premium__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.premium__header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* ---- Premium Carousel — position-based ---- */
.premium__carousel {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.premium__carousel-track {
  position: relative;
  width: 100%;
  height: 430px;
  /* label + gap + image */
  overflow: visible;
}

.premium__carousel-item {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 400px;
  cursor: pointer;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.premium__carousel-label {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  transition: font-size 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium__carousel-image {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Edge fades */
.premium__carousel-track::before,
.premium__carousel-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 5;
  pointer-events: none;
}

.premium__carousel-track::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.premium__carousel-track::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

/* ---- Shared Carousel Dots ---- */
.carousel-dots {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* State Aktif */
.carousel-dot--active {
  width: 6px;
  height: 6px;
  background: #006dc1 !important;
}

.carousel-dot__fill {
  display: none;
}

/* ============================================
   TESTIMONIALS — Carousel
   ============================================ */
.testimonials {
  background: var(--color-bg);
  padding: 160px var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.testimonials__cards {
  position: relative;
  width: 1108px;
  height: 450px;
}

.testimonials__card {
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  cursor: pointer;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    width 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    background 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.testimonials__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

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

.testimonials__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.testimonials__name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.09px;
  color: var(--color-text);
}

.testimonials__tag {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.06px;
  text-transform: uppercase;
  color: rgba(23, 23, 34, 0.5);
  font-feature-settings: "salt" 1;
}

.testimonials__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.09px;
  color: var(--color-text);
}

.testimonials__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: -40px;
  z-index: 10;
}

.testimonials__dots .dot {
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials__dots .dot.is-active {
  background: #006dc1;
}

/* ============================================
   YOUTUBE SECTION — Carousel
   ============================================ */
.youtube {
  background: var(--color-bg);
  padding: 160px var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  width: 100%;
}

.youtube__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Carousel */
.youtube__carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  position: relative;
}

.youtube__carousel-track {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: visible;
}

.youtube__carousel-item {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 480px;
  cursor: pointer;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Thumbnail */
.youtube__thumb {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  transition: height 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.youtube__thumb-bg {
  position: absolute;
  inset: 0;
}

/* Decorative scene elements inside thumbnails */
.youtube__thumb-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube__thumb-silhouette {
  width: 80px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 40px 40px 8px 8px;
  position: relative;
}

.youtube__thumb-silhouette::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 140px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.youtube__thumb-spine {
  width: 40px;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
}

.youtube__thumb-spine::before,
.youtube__thumb-spine::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.youtube__thumb-spine::before {
  top: 20px;
  width: 28px;
  height: 16px;
}

.youtube__thumb-spine::after {
  top: 50px;
  width: 32px;
  height: 16px;
}

.youtube__thumb-weight {
  width: 100px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  position: relative;
}

.youtube__thumb-weight::before,
.youtube__thumb-weight::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 20px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.youtube__thumb-weight::before {
  left: -24px;
}

.youtube__thumb-weight::after {
  right: -24px;
}

/* Play button */
.youtube__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.youtube__play-btn svg {
  margin-left: 3px;
}

.youtube__carousel-item:hover .youtube__play-btn {
  background: rgba(255, 0, 0, 0.85);
}

/* Duration badge */
.youtube__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
}

/* Meta info */
.youtube__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity 0.7s ease;
}

.youtube__video-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.09px;
  color: var(--color-text);
}

.youtube__video-views {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-neutral-500);
}

/* Edge fades */
.youtube__carousel-track::before,
.youtube__carousel-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 5;
  pointer-events: none;
}

.youtube__carousel-track::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.youtube__carousel-track::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features {
  background: var(--color-bg);
  padding: 40px var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.features__row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.features__card {
  flex: 1;
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.features__icon {
  background: #f7f7f7;
  border-radius: 40px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features__icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.features__label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--color-text);
  flex: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--color-bg);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  scroll-margin-top: 140px;
}

.contact__inner {
  width: 100%;
  background: linear-gradient(to top, var(--color-dark), rgba(23, 23, 34, 0.8));
  border: none;
  border-radius: 24px;
  padding: 64px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 450px;
  flex-shrink: 0;
}

.contact__label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--color-bg);
  font-feature-settings: "salt" 1;
}

.contact__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.contact__title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__privacy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--color-white);
  font-feature-settings: "salt" 1;
}

.contact__privacy a {
  text-decoration: underline;
}

.contact__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contact__field-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--color-white);
  font-feature-settings: "salt" 1;
}

.contact__input {
  width: 100%;
  height: 48px;
  background: rgba(247, 247, 247, 0.05);
  border: 0px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: var(--color-text-light);
  outline: none;
  transition: border-color 0.2s;
}

.contact__input::placeholder {
  color: rgba(241, 241, 242, 0.4);
}

.contact__input:focus {
  border-color: var(--color-primary);
}

.contact__submit {
  width: 100%;
  height: 48px;
  background: var(--color-white);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: var(--color-text);
  cursor: pointer;
  box-shadow: 0px 2px 20px 4px rgba(0, 109, 193, 0.15);
  transition: opacity 0.2s;
}

.contact__submit:hover {
  opacity: 0.9;
}

.contact__note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--color-white);
  font-feature-settings: "salt" 1;
  width: 100%;
}

/* ============================================
   FOOTER AREA - DESKTOP FIRST
   ============================================ */

.footer-area {
  position: relative;
  width: 100%;
  min-height: 1016px;
  background: #f7f7f7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
}

.footer-area__bg-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.footer-area__glow-blue {
  position: absolute;
  width: 100%;
  height: 1547px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 109, 193, 0.15);
  box-shadow: 256px 256px 256px rgba(0, 109, 193, 0.1);
  filter: blur(128px);
  border-radius: 9999px;
  pointer-events: none;
}

.footer-area__glass-grid {
  position: absolute;
  width: 1360px;
  height: 718px;
  top: 677px;
  display: flex;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%) rotate(-180deg);
  transform-origin: top center;
}

.glass-column {
  flex: 1;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.3) 79%,
    rgba(255, 255, 255, 0.02) 100%
  );
  background-blend-mode: overlay;
  /* backdrop-filter: blur(90px); */
  /* -webkit-backdrop-filter: blur(90px); */
}

.footer-area__glow-purple {
  position: absolute;
  width: 667px;
  height: 667px;
  left: 773px;
  top: 1068px;
  background: rgba(160, 130, 229, 0.2);
  box-shadow: 128px 128px 128px rgba(160, 130, 229, 0.1);
  border-radius: 9999px;
  filter: blur(64px);
  transform: rotate(-180deg);
  transform-origin: top left;
  z-index: 3;
}

.footer-area__top-fade {
  position: absolute;
  width: 100%;
  height: 160px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);
  z-index: 4;
}

/* --- Content --- */
.footer-area__big-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 246px;
  line-height: 1;
  letter-spacing: -0.005em;
  background: linear-gradient(
    180deg,
    #ffffff 26%,
    rgba(255, 255, 255, 0.1) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 5;
  margin-bottom: -80px;
}

.footer {
  position: relative;
  z-index: 10;
  width: 1360px;
  background: #171722;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 64px 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.footer__bottom-links {
  display: flex;
  gap: 32px;
}

.footer__columns {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 313px;
}
.footer__address-block {
  width: 95%;
}
.footer__col--branding {
  width: 313px;
  gap: 32px;
}

.footer__col-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-links a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  /* opacity: 0.8; */
  transition: 0.3s ease;
}

.footer__col-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 24px 0px;
}

.footer__logo-spine-desktop {
  display: block;
  width: 131px;
}
.footer__logo-spine-mobile {
  display: none;
}
.footer__logo-spine {
  height: 40px;
}
.footer__logo-text {
  height: 26px;
  filter: brightness(0) invert(1);
}
.footer__ada-logo {
  height: 32px;
}

.footer__address {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  /* opacity: 0.8; */
}
.footer__hours-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  /* opacity: 0.7; */
  display: flex;
  flex-direction: column;
  gap: 12px;
  letter-spacing: -0.005em;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.footer__copyright,
.footer__bottom-links a,
.footer__powered-by,
.footer__powered-by a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  margin: 0;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__powered-by a {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer__bottom-links a:hover {
  opacity: 0.7;
}

.footer__powered-by a:hover {
  color: #ffffff !important;
  opacity: 1;
}
/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
  background: var(--color-bg);
  width: 100%;
  position: relative;
}

.about-hero__content {
  padding: 180px 120px 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer__logo-spine-desktop {
    display: none;
  }
  .footer__logo-spine-mobile {
    display: block;
    width: 199.5px;
    height: 48px;
  }
  .footer__logo-text {
    display: none;
  }
  .about-hero__content {
    padding: 140px 24px 40px 24px;
    align-items: center;
    text-align: center;
  }

  .service-card[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
    filter: none !important;
  }
}

.about-hero__heading {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 86.4px */
  letter-spacing: -1.08px;
  max-width: 900px;
}

@media (max-width: 768px) {
  .about-hero__heading {
    font-size: 48px;
  }
}

.about-hero__image {
  padding: 0 120px;
  max-width: 1440px;
  margin: 0 auto 120px;
}

@media (max-width: 768px) {
  .about-hero__image {
    padding: 0 24px;
    margin-bottom: 60px;
  }
}

/* About Stats Section */
.about-stats {
  background: var(--color-bg);
  padding: 120px 120px;
  width: 100%;
}

@media (max-width: 768px) {
  .about-stats {
    padding: 60px 24px;
  }
}

.about-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-stats__text {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 1000px;
}

@media (max-width: 768px) {
  .about-stats__text {
    font-size: 28px;
  }
}

.about-stats__grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(23, 23, 34, 0.1);
  padding-top: 60px;
}

@media (max-width: 768px) {
  .about-stats__grid {
    flex-direction: column;
    gap: 60px;
  }
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .about-stats__item {
    align-items: center;
    text-align: center;
  }
}

.about-stats__number {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.28px;
}

.about-stats__label {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

/* About Doctor Section */
.about-doctor {
  background: var(--color-white);
  width: 100%;
}

.about-doctor__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

@media (max-width: 1024px) {
  .about-doctor__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.about-doctor__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 1024px) {
  .about-doctor__text {
  }
}

.about-doctor__heading {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1.12px;
}

@media (max-width: 768px) {
  .about-doctor__heading {
    font-size: 40px;
  }
}

.about-doctor__bio {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.about-doctor__signature {
  margin-top: 16px;
  width: 200px;
  height: auto;
}

.about-doctor__image {
  flex: 1;
  height: 100%;
}

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

/* About Gallery Section */
.about-gallery {
  background: var(--color-bg);
  padding: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-gallery {
    padding: 60px 24px;
    gap: 40px;
  }
}

.about-gallery__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.about-gallery__heading {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1.12px;
}

@media (max-width: 768px) {
  .about-gallery__heading {
    font-size: 40px;
  }
}

.about-gallery__subtext {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
  width: 100%;
}

@media (max-width: 1024px) {
  .about-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

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

.about-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.about-gallery__img--large {
  grid-column: span 2;
}

.about-gallery__img--small {
  grid-column: span 1;
}

.about-gallery__img--medium {
  grid-column: span 2;
}

@media (min-width: 1025px) {
  .about-gallery__img:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .about-gallery__img:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
  }

  .about-gallery__img:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1;
  }

  .about-gallery__img:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .about-gallery__img:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2;
  }

  .about-gallery__img:nth-child(6) {
    grid-column: 4 / 5;
    grid-row: 2;
  }

  /* Refining based on typical masonry logic, simpler setup with span */
}

/* Specific masonry fixes instead of grid-column mappings to make it perfectly match the figma mosaic */
.about-gallery__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.about-gallery__grid > img {
  height: 320px;
  border-radius: 24px;
}

.about-gallery__img:nth-child(1) {
  width: 335px;
}

.about-gallery__img:nth-child(2) {
  width: 512px;
}

.about-gallery__img:nth-child(3) {
  width: 305px;
}

.about-gallery__img:nth-child(4) {
  width: 422px;
}

.about-gallery__img:nth-child(5) {
  width: 486px;
}

.about-gallery__img:nth-child(6) {
  width: 244px;
}

@media (max-width: 1200px) {
  .about-gallery__grid > img {
    width: 100% !important;
    height: auto;
    aspect-ratio: 16/9;
  }
}

/* About Contact Section wrapper */
.about-contact {
  background: var(--color-bg);
  padding: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .about-contact {
    padding: 60px 24px;
  }
}

.about-contact__inner {
  width: 100%;
  max-width: 1240px;
  background: linear-gradient(to top, var(--color-dark), rgba(23, 23, 34, 0.8));
  border-radius: 24px;
  padding: 64px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .about-contact__inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 24px;
  }
}

/* ============================================
   NEW ABOUT US PAGE STYLES (OVERRIDING OLD)
   ============================================ */

/* ─── Hero Section ─── */
.hero-section {
  background: #f7f7f7;
  padding: 0 120px 80px;
  overflow: hidden;
  position: relative;
}

.hero-bg-glow {
  position: absolute;
  top: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: 1547px;
  height: 1547px;
  background: radial-gradient(
    circle,
    rgba(0, 109, 193, 0.06) 0%,
    transparent 70%
  );
  opacity: 0.8;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 96px;
  position: relative;
  z-index: 2;
}

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

.hero-text h1 {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -1.08px;
  color: #171722;
}

.hero-image {
  width: 100%;
  max-width: 1440px;
  height: 640px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ─── Stats Section ─── */
.stats-section {
  background: #f7f7f7;
  padding: 80px 120px;
  overflow: hidden;
}

.stats-description {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: -1px;
  text-align: center;
  max-width: 1118px;
  margin: 0 auto 80px;
}

.stats-description .highlight {
  color: #171722;
}

.stats-description .faded {
  color: rgba(23, 23, 34, 0.3);
}

.stats-grid {
  display: flex;
  gap: 80px;
  padding: 0 120px;
}

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

.stat-number {
  font-family: "Geist", sans-serif;
  font-weight: 300;
  font-size: 80px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: #171722;
}

.stat-label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: #171722;
  margin-top: 8px;
}

/* ─── About Doctor Section ─── */
.about-doctor {
  background: #f7f7f7;
  padding: 120px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  overflow: hidden;
}

.about-doctor-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-doctor-text h2 {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  color: #171722;
}

.about-doctor-text .bio {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: #171722;
}

.about-doctor-text .bio p {
  margin-bottom: 16px;
}

.about-doctor-text .bio p:last-child {
  margin-bottom: 0;
}

.about-doctor-image {
  flex: 1;
  height: 640px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}

.about-doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Gallery Section ─── */
.gallery-section {
  background: #f7f7f7;
  padding: 120px 0;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  padding: 0 120px;
  margin-bottom: 80px;
}

.gallery-header h2 {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: #171722;
  padding: 0 160px;
  margin: 8px 0;
}

.gallery-header p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: #171722;
  padding: 0 160px;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.gallery-row {
  display: flex;
  gap: 8px;
}

.gallery-cell {
  flex: 1;
  height: 346px;
  border-radius: 16px;
  overflow: hidden;
}

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

.gallery-cell.empty {
  background: transparent;
}

/* ─── Features Bar ─── */
.features-bar {
  background: #f7f7f7;
  padding: 40px 120px;
}

.features-grid {
  display: flex;
  gap: 24px;
}

.feature-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #f7f7f7;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: #171722;
}

.feature-card p {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.1px;
  color: #171722;
}

/* ─── Contact Form Section ─── */
.contact-section {
  background: #f7f7f7;
  padding: 120px;
  scroll-margin-top: 140px;
}

.contact-card {
  background: linear-gradient(to top, #171722, rgba(23, 23, 34, 0.8));
  border-radius: 24px;
  padding: 64px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-left {
  width: 450px;
  flex-shrink: 0;
}

.contact-left .mono-label {
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.63px;
  text-transform: uppercase;
  color: #f7f7f7;
  margin-bottom: 16px;
}

.contact-left h2 {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: #fff;
  margin-bottom: 12px;
}

.contact-left .privacy-note {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  color: #fff;
}

.contact-left .privacy-note a {
  color: #fff;
  text-decoration: underline;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group label {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.06px;
  text-transform: uppercase;
  color: #fff;
}

.form-group input {
  background: rgba(247, 247, 247, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  height: 48px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12px;
  color: #f1f1f2;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder {
  color: rgba(241, 241, 242, 0.4);
}

.form-group input:focus {
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-submit {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: "Inter", sans-serif;
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.07px;
  color: #171722;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0px 2px 20px 4px rgba(0, 109, 193, 0.15);
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.form-note {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  color: #fff;
}

/* ============================================
   DEALS PAGE
   ============================================ */

/* Hero variation — centered text, larger heading, 160px bottom gap */
.hero--subpage.hero--deals {
  padding-bottom: 160px;
  gap: 160px;
  align-items: center;
}

.hero__content.hero__content--deals {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__content--deals .hero__text {
  width: 100%;
}

.hero__content--deals .hero__heading--subpage {
  font-size: 64px;
  letter-spacing: -0.96px;
  text-align: center;
  width: 100%;
}

/* ---- Deals cards section ---- */
.deals-cards {
  background: var(--color-bg);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.deals-cards__row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.deals-cards__item {
  flex: 1;
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.deals-cards__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.12px;
  color: var(--color-text);
}

.deals-cards__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid rgba(23, 23, 34, 0.1);
  border-radius: 32px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.07px;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
  text-decoration: none;
  align-self: flex-start;
}

.deals-cards__btn:hover {
  border-color: rgba(23, 23, 34, 0.25);
}

.deals-cards__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---- Contact form on deals — pill-shaped inputs ---- */
.page-deals .form-group input {
  border-radius: 36px;
}

.page-deals .btn-submit {
  border-radius: 48px;
}

/* ---- Responsive: Deals ---- */
@media (max-width: 1280px) {
  .hero--subpage.hero--deals {
    padding-left: 40px;
    padding-right: 40px;
  }

  .deals-cards {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .hero--subpage.hero--deals {
    padding-bottom: 80px;
    gap: 60px;
  }

  .deals-cards {
    padding: 60px 20px;
  }

  .deals-cards__row {
    flex-direction: column;
  }

  .hero__content--deals .hero__heading--subpage {
    font-size: 40px;
    letter-spacing: -0.6px;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS — Apple-Grade
   One-way reveals with smooth easing, subtle
   blur-in, and progressive stagger.
   ============================================ */

[data-reveal] {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

/* Progressive stagger — 0.12s increments (matched in JS) */
[data-reveal-delay="1"] {
  transition-delay: 0.12s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.24s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.36s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.48s;
}
[data-reveal-delay="5"] {
  transition-delay: 0.6s;
}
[data-reveal-delay="6"] {
  transition-delay: 0.72s;
}

[data-reveal="up"] {
  transform: translateY(28px);
  filter: blur(4px);
}

[data-reveal="left"] {
  transform: translateX(-28px);
  filter: blur(4px);
}

[data-reveal="right"] {
  transform: translateX(28px);
  filter: blur(4px);
}

[data-reveal="scale"] {
  transform: scale(0.94);
  filter: blur(4px);
}

[data-reveal="fade"] {
  filter: blur(2px);
}

[data-reveal="blur"] {
  filter: blur(10px);
  transform: translateY(16px);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* ============================================
   HEADER ENTRANCE ANIMATION — Apple-Grade
   Smooth, slow fade with minimal movement
   ============================================ */
.header {
  animation: headerSlideDown 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.1s;
}

.top-bar {
  animation: topBarSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: none;
  }
}

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

/* ============================================
   NAV LINK HOVER — Apple-Grade
   Subtle opacity shift + clean underline reveal
   ============================================ */
.header__nav a {
  position: relative;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.header__nav a:hover {
  opacity: 0.6;
}

.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__nav a:hover::after {
  width: 100%;
  left: 0;
}

/* ============================================
   CARD HOVER EFFECTS — Apple-Grade
   Gentle lift with soft shadow bloom
   ============================================ */
.content-section__img,
.deals-cards__item,
.test-videos__card,
.blog-card,
.phase-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-section__img:hover,
.deals-cards__item:hover,
.test-videos__card:hover,
.blog-card:hover,
.phase-card:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04); */
}

/* Image zoom on hover — subtle scale */
.content-section__img img,
.test-videos__thumb img,
.blog-card__image img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-section__img:hover img,
.test-videos__thumb:hover img,
.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

/* ============================================
   BUTTON HOVER — Apple-Grade
   Clean scale with soft glow
   ============================================ */
.btn-primary,
.contact__submit,
.deals-cards__btn {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover,
.contact__submit:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 109, 193, 0.22);
}

.deals-cards__btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 109, 193, 0.18);
}

.btn-primary:active,
.contact__submit:active,
.deals-cards__btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
  transition-duration: 0.1s;
}

/* Arrow icon — smooth slide on hover */
.btn-primary .arrow-icon,
.contact__submit .arrow-icon,
.deals-cards__btn svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .arrow-icon,
.contact__submit:hover .arrow-icon,
.deals-cards__btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   GRADIENT LABEL SHIMMER — Apple-Grade
   Slower, more subtle oscillation
   ============================================ */
.gradient-label {
  animation: gradientShift 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* ============================================
   PILL TAG — Apple-Grade
   ============================================ */
.pill {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ============================================
   FEATURES CARD — Apple-Grade
   ============================================ */
.features__card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.features__card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.features__icon-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.features__card:hover .features__icon-img {
  transform: scale(1.06);
}

/* ============================================
   CONTACT FORM INPUT FOCUS — Apple-Grade
   ============================================ */
.contact__input {
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 109, 193, 0.1);
  outline: none;
}

/* ============================================
   FOOTER LINK HOVER — Apple-Grade
   ============================================ */
.footer__col-links a {
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.footer__col-links a:hover {
  opacity: 0.65;
  transform: translateX(2px);
}

/* ============================================
   HERO CONTENT ENTRANCE — Apple-Grade
   Home hero uses translateX(-50%) centering;
   subpage heroes use flexbox — NO translateX.
   ============================================ */

/* Home page hero — uses left:50% + translateX(-50%) */
.home .hero__content {
  animation: heroContentRevealHome 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.3s;
}

/* Subpage heroes — flexbox centered, no translateX */
.hero--subpage .hero__content,
.hero--subpage .hero__content--subpage {
  animation: heroContentRevealSubpage 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.3s;
}

/* Staggered child elements (works on both home & subpage) */
.hero__content .gradient-label {
  animation: heroElementReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.5s;
}

.hero__content .hero__heading {
  animation: heroElementReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.65s;
}

.hero__content .hero__subheading {
  animation: heroElementReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.8s;
}

.hero__content .btn-primary {
  animation: heroElementReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.95s;
}

/* Home hero: preserves translateX(-50%) centering */
@keyframes heroContentRevealHome {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Subpage hero: simple fade-up, no translateX */
@keyframes heroContentRevealSubpage {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes heroElementReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Hero light effects — GPU-promoted for parallax */
.hero-light-rays,
.hero-glow-right,
.hero-glow-left {
  will-change: transform;
  backface-visibility: hidden;
}

/* ============================================
   SMOOTH SCROLL BEHAVIOR
   ============================================ */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reduced motion — respect user preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .header,
  .top-bar {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   CHIROPRACTIC CARE PAGE — Subpage Hero
   ============================================ */
.subpage-hero {
  background: var(--color-bg);
  position: relative;
  width: 100%;
  height: 660px;
  overflow: hidden;
}

.subpage-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  width: 100%;
  z-index: 10;
}

.subpage-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--color-text);
  text-align: center;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  background: var(--color-bg);
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.content-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  width: 100%;
  padding: 0 80px;
}

.content-section__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-text);
  text-align: center;
}

.content-section__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.content-section__body a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

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

.content-section__body p + p {
  margin-top: 24px;
}

/* ============================================
   CONDITIONS / MODALITIES CARD
   ============================================ */
.conditions-card {
  width: 880px;
  max-width: 100%;
  height: 368px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conditions-card__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.conditions-card__bg img {
  position: absolute;
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
  object-fit: cover;
  filter: blur(3px);
  max-width: none;
}

.conditions-card__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.conditions-card--dark .conditions-card__bg-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.conditions-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 707px;
  padding: 20px;
}

.conditions-card__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-bg);
  text-align: center;
  font-feature-settings: "salt" 1;
}

.conditions-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.tag-pill {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.08px;
  padding: 8px 16px;
  border-radius: 72px;
  white-space: nowrap;
  text-align: center;
}

.np-booking {
  padding: 120px 80px;
}

.premium__header-text .section-title {
  width: 93%;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .subpage-hero {
    padding: 0 60px 60px;
  }

  .subpage-hero__heading {
    font-size: 48px;
  }

  .content-section {
    padding: 80px 60px;
  }

  .content-section__header {
    padding: 0;
  }

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

@media (max-width: 768px) {
  .subpage-hero {
    padding: 0 24px 40px;
  }

  .subpage-hero__content {
    padding-top: 100px;
  }

  .subpage-hero__heading {
    font-size: 36px;
  }

  .content-section {
    padding: 60px 24px;
  }

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

  .conditions-card {
    height: auto;
    min-height: 300px;
  }

  .np-booking {
    padding: 80px 16px;
  }
}

/* ============================================
   SHARED SUBPAGE HERO
   (plantar-fasciitis, peripheral-neuropathy,
    weight-loss, sciatica-treatment,
    shockwave-treatment)
   ============================================ */

/* ─── Subpage Hero Overrides ─── */
.hero--subpage {
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 24px 120px 80px;
}

/* Soft fade at the hero bottom edge so the glow/rays
   blend smoothly into the flat --color-bg below */
.hero--subpage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  z-index: 2;
  pointer-events: none;
}

/* headerSlideDownSubpage removed — header is now global in header.php */

.hero__content--subpage {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 1200px;
  max-width: 100%;
  z-index: 10;
}

.hero__text-col {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero__text-col .hero__text {
  text-align: left;
  align-items: flex-start;
  width: 100%;
}

.hero__text-col .gradient-label {
  text-align: center;
}

.hero__heading--subpage {
  font-size: 64px;
  letter-spacing: -0.96px;
}

.hero__image-subpage {
  position: relative;
  width: 459px;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

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

.hero__image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .hero--subpage {
    padding: 24px 40px 80px;
  }
}

@media (max-width: 1024px) {
  .hero--subpage {
    padding: 24px 40px 80px;
    gap: 40px;
  }

  .hero__content--subpage {
    flex-direction: column;
    gap: 40px;
  }

  .hero__text-col {
    align-items: center;
  }

  .hero__text-col .hero__text {
    text-align: center;
    align-items: center;
  }

  .hero__image-subpage {
    width: 100%;
    height: 400px;
  }

  .hero__heading--subpage {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero--subpage {
    padding: 24px 24px 60px;
    gap: 32px;
  }

  .hero__heading--subpage {
    font-size: 36px;
  }
}

/* ─── Padding for wrapper-based subpage heroes ─── */
.page-hero-wrapper--subpage .hero--subpage {
  padding-top: 180px;
}

@media (max-width: 1280px) {
  .page-hero-wrapper--subpage .hero--subpage {
    padding-top: 120px;
  }
}

@media (max-width: 1024px) {
  .page-hero-wrapper--subpage .hero--subpage {
    padding-top: 110px;
  }
}

@media (max-width: 768px) {
  .page-hero-wrapper--subpage .hero--subpage {
    padding-top: 120px;
  }
}

/* ============================================
   PAGE-SPECIFIC HERO OVERLAYS
   ============================================ */

.page-peripheral-neuropathy .hero__image-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.page-sciatica-treatment .hero__image-overlay {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 38.7%,
      rgba(0, 0, 0, 0.4) 85.6%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-shockwave-treatment .hero__image-overlay {
  background: rgba(0, 0, 0, 0.2);
}

/* ============================================
   CHIROPRACTIC CARE PAGE
   ============================================ */

/* ─── Subpage Hero Overrides ─── */
.page-chiropractic-care .hero--subpage {
  height: auto;
  min-height: 800px;
  padding-bottom: 80px;
}

.page-chiropractic-care .hero__content--subpage {
  top: 200px;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.page-chiropractic-care .hero__heading--subpage {
  font-size: 64px;
  letter-spacing: -0.96px;
}

.page-chiropractic-care .hero__image-subpage {
  position: absolute;
  top: 500px;
  right: 120px;
  width: 459px;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.page-chiropractic-care .hero__image-subpage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Adjust for the hero image extending below */
@media (min-width: 1025px) {
  .page-chiropractic-care .hero--subpage {
    min-height: 700px;
  }

  .page-chiropractic-care .hero__content--subpage {
    top: 200px;
    align-items: flex-start;
    padding-left: 120px;
    width: 60%;
  }

  .page-chiropractic-care .hero__content--subpage .hero__text {
    text-align: left;
    align-items: flex-start;
  }
}

/* ─── Content Sections ─── */
.page-chiropractic-care .content-section {
  background: var(--color-bg);
  padding: 120px;
  overflow: hidden;
}

.page-chiropractic-care .content-section__flex {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Images Column */
.page-chiropractic-care .content-section__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.page-chiropractic-care .content-section__images--right {
  align-self: stretch;
}

.page-chiropractic-care .content-section__img {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
}

.page-chiropractic-care .content-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-chiropractic-care .content-section__img--large {
  width: 100%;
  height: 328px;
}

.page-chiropractic-care .content-section__img--small {
  width: 320px;
  height: 285px;
}

.page-chiropractic-care .content-section__img--grow {
  flex: 1;
  width: 100%;
  position: relative;
  min-height: 300px;
}

.page-chiropractic-care .content-section__img--grow img {
  position: absolute;
  inset: 0;
}

.page-chiropractic-care .content-section__img--small-bottom {
  width: 320px;
  height: 279px;
  flex-shrink: 0;
}

/* Text Column */
.page-chiropractic-care .content-section__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-chiropractic-care .content-section__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-chiropractic-care .content-section__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-text);
}

.page-chiropractic-care .content-section__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-chiropractic-care .content-section__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

.page-chiropractic-care .content-section__body p a {
  text-decoration: underline;
}

.page-chiropractic-care .content-section__bold-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: #000;
  margin-bottom: 16px;
}

/* Pill Tags */
.page-chiropractic-care .pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-chiropractic-care .pill {
  background: rgba(23, 23, 34, 0.1);
  border-radius: 72px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.08px;
  color: var(--color-text);
  white-space: nowrap;
}

/* ─── Chiropractic Care Responsive ─── */
@media (max-width: 1280px) {
  .page-chiropractic-care .content-section {
    padding: 120px 40px;
  }

  .page-chiropractic-care .hero__image-subpage {
    right: 40px;
  }
}

@media (max-width: 1024px) {
  .page-chiropractic-care .hero__content--subpage {
    position: relative;
    top: auto;
    padding: 140px 0 0;
    width: 100%;
    align-items: center;
  }

  .page-chiropractic-care .hero__content--subpage .hero__text {
    text-align: center;
    align-items: center;
  }

  .page-chiropractic-care .hero__image-subpage {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 400px;
    margin: 40px auto 0;
  }

  .page-chiropractic-care .hero--subpage {
    min-height: auto;
    padding: 0 40px 80px;
  }

  .page-chiropractic-care .content-section__flex {
    flex-direction: column;
  }

  .page-chiropractic-care .content-section__images,
  .page-chiropractic-care .content-section__images--right {
    width: 100%;
  }

  .page-chiropractic-care .content-section__img--small,
  .page-chiropractic-care .content-section__img--small-bottom {
    width: 100%;
  }

  .page-chiropractic-care .hero__heading--subpage {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .page-chiropractic-care .content-section {
    padding: 60px 24px;
  }

  .page-chiropractic-care .hero--subpage {
    padding: 0 24px 60px;
  }

  .page-chiropractic-care .hero__heading--subpage {
    font-size: 36px;
  }

  .page-chiropractic-care .content-section__title {
    font-size: 30px;
  }
}

/* ============================================
   PLANTAR FASCIITIS PAGE
   ============================================ */

/* ─── Intro Section (Targeted Heel Pain Relief) ─── */
.pf-intro {
  background: var(--color-bg);
  padding: 240px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.pf-intro__text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--color-text);
  text-align: center;
  max-width: 1200px;
  font-feature-settings: "salt" 1;
}

.pf-intro__text--faded {
  color: rgba(23, 23, 34, 0.2);
}

/* Floating decorative images */
.pf-intro__float {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}

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

.pf-intro__float--tl {
  width: 240px;
  height: 140px;
  top: 96px;
  left: -40px;
}

.pf-intro__float--tr {
  width: 240px;
  height: 140px;
  top: 64px;
  right: 150px;
}

.pf-intro__float--br {
  width: 160px;
  height: 220px;
  top: 625px;
  right: 360px;
}

/* ─── Treatments Section ─── */
.pf-treatments {
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  width: 100%;
}

.pf-treatments__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.pf-treatments__header .section-title {
  padding: 0 160px;
}

.pf-treatments__content {
  display: flex;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.pf-treatments__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pf-treatments__item {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: rgba(23, 23, 34, 0.4);
}

.pf-treatments__item--active {
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pf-treatments__item--active svg {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.pf-treatments__image {
  flex: 1;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
  position: relative;
}

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

.pf-treatments__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* ─── Recovery Section ─── */
.pf-recovery {
  background: var(--color-bg);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.pf-recovery__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
  padding: 0 120px;
}

.pf-recovery__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-text);
}

.pf-recovery__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

.pf-recovery__image {
  width: 960px;
  max-width: 100%;
  height: 368px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
}

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

/* ─── Plantar Fasciitis Responsive ─── */
@media (max-width: 1280px) {
  .pf-intro {
    padding: 200px 40px;
  }

  .pf-treatments {
    padding: 120px 40px;
  }

  .pf-recovery {
    padding: 120px 40px;
  }
}

@media (max-width: 1024px) {
  .pf-intro__text {
    font-size: 32px;
  }

  .pf-intro__float {
    display: none;
  }

  .pf-treatments__header .section-title {
    padding: 0;
  }

  .pf-treatments__content {
    flex-direction: column;
  }

  .pf-treatments__image {
    width: 100%;
    height: 400px;
  }

  .pf-treatments__item {
    font-size: 26px;
  }

  .pf-recovery__header {
    padding: 0;
  }

  .pf-recovery__image {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .pf-intro {
    padding: 120px 24px;
  }

  .pf-intro__text {
    font-size: 24px;
  }

  .pf-treatments {
    padding: 60px 24px;
    gap: 40px;
  }

  .pf-treatments__item {
    font-size: 22px;
  }

  .pf-treatments__item--active svg {
    width: 36px;
    height: 36px;
  }

  .pf-recovery {
    padding: 60px 24px;
  }

  .pf-recovery__title {
    font-size: 30px;
  }

  .pf-recovery__image {
    height: 240px;
  }
}

/* ============================================
   PERIPHERAL NEUROPATHY PAGE
   ============================================ */

/* ─── Advanced Nerve Restoration Section ─── */
.nerve-restoration {
  background: var(--color-bg);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.nerve-restoration__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.nerve-restoration__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "salt" 1;
}

.nerve-restoration__cards {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.nerve-restoration__card {
  flex: 1 0 0;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(0, 0, 0, 0.1);
}

.nerve-restoration__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.nerve-restoration__card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nerve-restoration__card:nth-child(1) .nerve-restoration__card-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.nerve-restoration__card:nth-child(2) .nerve-restoration__card-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.nerve-restoration__card:nth-child(3) .nerve-restoration__card-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.nerve-restoration__card-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.12px;
  color: var(--color-white);
  white-space: nowrap;
}

/* ─── Understanding Nerve Damage Section ─── */
.nerve-damage {
  background: var(--color-bg);
  padding: 120px;
  overflow: hidden;
}

.nerve-damage__flex {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Column */
.nerve-damage__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nerve-damage__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nerve-damage__heading-group .gradient-label {
  text-align: left;
}

.nerve-damage__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-text);
}

.nerve-damage__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nerve-damage__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

/* Images Column */
.nerve-damage__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.nerve-damage__img {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
}

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

.nerve-damage__img--large {
  width: 100%;
  height: 328px;
}

.nerve-damage__img--small {
  width: 320px;
  height: 285px;
}

/* ─── Peripheral Neuropathy Responsive ─── */
@media (max-width: 1280px) {
  .nerve-restoration {
    padding: 120px 40px;
  }

  .nerve-damage {
    padding: 120px 40px;
  }
}

@media (max-width: 1024px) {
  .nerve-restoration__cards {
    flex-direction: column;
  }

  .nerve-restoration__card {
    width: 100%;
  }

  .nerve-damage__flex {
    flex-direction: column;
  }

  .nerve-damage__images {
    width: 100%;
  }

  .nerve-damage__img--small {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nerve-restoration {
    padding: 60px 24px;
    gap: 40px;
  }

  .page-peripheral-neuropathy .section-title {
    font-size: 36px;
  }

  .nerve-restoration__card {
    height: 180px;
  }

  .nerve-restoration__card-title {
    font-size: 20px;
  }

  .nerve-damage {
    padding: 60px 24px;
  }

  .nerve-damage__title {
    font-size: 30px;
  }

  .nerve-damage__img--large {
    height: 240px;
  }

  .nerve-damage__img--small {
    height: 200px;
  }
}

/* ============================================
   WEIGHT LOSS PAGE
   ============================================ */

/* ─── Holistic Wellness Section ─── */
.wl-wellness {
  background: var(--color-bg);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.wl-wellness__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0 120px;
}

.wl-wellness__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "salt" 1;
}

.wl-wellness__image {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}

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

.wl-wellness__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* ─── About / Sustainable Path Section ─── */
.wl-about {
  background: var(--color-bg);
  padding: 120px;
  overflow: hidden;
}

.wl-about__flex {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Column — stretches to match images, title at top, body at bottom */
.wl-about__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.wl-about__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-about__heading-group .gradient-label {
  text-align: left;
}

.wl-about__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: var(--color-text);
}

.wl-about__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wl-about__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

/* Images Column */
.wl-about__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.wl-about__img {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
}

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

.wl-about__img--large {
  width: 100%;
  height: 328px;
}

.wl-about__img--small {
  width: 320px;
  height: 285px;
}

/* ─── Our Process Section ─── */
.wl-process {
  background: var(--color-bg);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.wl-process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0 120px;
}

.wl-process__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "salt" 1;
}

/* Steps Container */
.wl-process__steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  position: relative;
}

/* Timeline */
.wl-process__timeline {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 12px;
  z-index: 2;
}

.wl-process__dot {
  width: 12px;
  height: 12px;
  border-radius: 40px;
  background: #e0e0e1;
  flex-shrink: 0;
}

.wl-process__dot--active {
  background: var(--color-primary);
}

.wl-process__line {
  flex: 1;
  width: 2px;
  background: rgba(23, 23, 34, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.wl-process__line-fill {
  width: 2px;
  height: 82px;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    var(--color-primary) 0%,
    rgba(0, 109, 193, 0) 100%
  );
}

/* Individual Step */
.wl-process__step {
  display: flex;
  gap: 64px;
  align-items: center;
  padding-left: 120px;
  width: 100%;
}

.wl-process__step--faded {
  opacity: 0.3;
}

.wl-process__step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wl-process__step-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--color-text);
}

.wl-process__step-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

.wl-process__step-image {
  flex: 1;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}

.wl-process__step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__avatar {
  display: none;
}

/* ─── Weight Loss Responsive ─── */
@media (max-width: 1280px) {
  .wl-wellness {
    padding: 120px 40px;
  }

  .wl-wellness__header {
    padding: 0;
  }

  .wl-about {
    padding: 120px 40px;
  }

  .wl-process {
    padding: 120px 40px;
  }

  .wl-process__header {
    padding: 0;
  }

  .wl-process__step {
    padding-left: 60px;
  }
}

@media (max-width: 1024px) {
  .wl-wellness__image {
    height: 360px;
  }

  .wl-about__flex {
    flex-direction: column;
  }

  .wl-about__text {
    gap: 24px;
  }

  .wl-about__images {
    width: 100%;
  }

  .wl-about__img--small {
    width: 100%;
  }

  .wl-about__title {
    font-size: 40px;
  }

  .wl-process__timeline {
    display: none;
  }

  .wl-process__step {
    flex-direction: column;
    padding-left: 0;
    gap: 24px;
  }

  .wl-process__step-image {
    width: 100%;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .wl-wellness {
    padding: 60px 24px;
    gap: 40px;
  }

  .wl-wellness__image {
    height: 240px;
  }

  .wl-about {
    padding: 60px 24px;
  }

  .wl-about__title {
    font-size: 30px;
  }

  .wl-about__img--large {
    height: 240px;
  }

  .wl-about__img--small {
    height: 200px;
  }

  .wl-process {
    padding: 60px 24px;
    gap: 40px;
  }

  .wl-process__step-title {
    font-size: 24px;
  }

  .wl-process__step-image {
    height: 220px;
  }
}

/* ============================================
   SCIATICA TREATMENT PAGE
   ============================================ */

/* ─── About Section (Targeted Sciatica Relief) ─── */
.sc-about {
  background: var(--color-bg);
  padding: 120px;
  overflow: hidden;
}

.sc-about__flex {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Column — stretches to match images, title at top, body at bottom */
.sc-about__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.sc-about__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-about__heading-group .gradient-label {
  text-align: left;
}

.sc-about__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: var(--color-text);
}

.sc-about__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sc-about__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

/* Images Column */
.sc-about__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.sc-about__img {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
}

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

.sc-about__img--large {
  width: 100%;
  height: 280px;
}

.sc-about__img--small {
  width: 320px;
  height: 285px;
}

/* ─── Laser Therapy Section (Mirrored Layout) ─── */
.sc-laser {
  background: var(--color-bg);
  padding: 120px;
  overflow: hidden;
}

.sc-laser__flex {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Images Column (comes FIRST — left side) */
.sc-laser__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.sc-laser__img {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
}

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

.sc-laser__img--large {
  width: 100%;
  height: 280px;
}

.sc-laser__img--small {
  width: 320px;
  height: 285px;
}

/* Text Column (comes SECOND — right side) */
.sc-laser__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.sc-laser__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-laser__heading-group .gradient-label {
  text-align: left;
}

.sc-laser__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: var(--color-text);
}

.sc-laser__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sc-laser__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

.sc-laser__link {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ─── Sciatica Treatment Responsive ─── */
@media (max-width: 1280px) {
  .sc-about {
    padding: 120px 40px;
  }

  .sc-laser {
    padding: 120px 40px;
  }
}

@media (max-width: 1024px) {
  .sc-about__flex {
    flex-direction: column;
  }

  .sc-about__text {
    gap: 24px;
  }

  .sc-about__images {
    width: 100%;
  }

  .sc-about__img--small {
    width: 100%;
  }

  .sc-about__title {
    font-size: 40px;
  }

  .sc-laser__flex {
    flex-direction: column;
  }

  .sc-laser__text {
    gap: 24px;
  }

  .sc-laser__images {
    width: 100%;
  }

  .sc-laser__img--small {
    width: 100%;
  }

  .sc-laser__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .sc-about {
    padding: 60px 24px;
  }

  .sc-about__title {
    font-size: 30px;
  }

  .sc-about__img--large {
    height: 240px;
  }

  .sc-about__img--small {
    height: 200px;
  }

  .sc-laser {
    padding: 60px 24px;
  }

  .sc-laser__title {
    font-size: 30px;
  }

  .sc-laser__img--large {
    height: 240px;
  }

  .sc-laser__img--small {
    height: 200px;
  }
}

/* ============================================
   SHOCKWAVE TREATMENT PAGE
   ============================================ */

/* ─── Innovative Therapy Section (floating images) ─── */
.sw-innovative {
  background: var(--color-bg);
  padding: 280px 120px;
  position: relative;
  overflow: hidden;
}

.sw-innovative__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sw-innovative__body {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: -1.2px;
  color: var(--color-text);
  text-align: center;
  max-width: 1200px;
  font-feature-settings: "salt" 1;
}

.sw-innovative__body span {
  color: rgba(23, 23, 34, 0.3);
}

/* Floating images */
.sw-innovative__float {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

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

.sw-innovative__float--tl {
  width: 240px;
  height: 140px;
  left: -7px;
  top: 130px;
}

.sw-innovative__float--tr {
  width: 240px;
  height: 140px;
  right: 38px;
  top: 98px;
}

.sw-innovative__float--br {
  width: 160px;
  height: 200px;
  right: 296px;
  bottom: 117px;
}

/* ─── Shockwave Treatment Section ─── */
.sw-treatment {
  background: var(--color-bg);
  padding: 120px;
  overflow: hidden;
}

.sw-treatment__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sw-treatment__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: var(--color-text);
  text-align: center;
  width: 100%;
}

.sw-treatment__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "salt" 1;
  width: 100%;
}

.sw-treatment__image {
  margin-top: 80px;
  width: 100%;
  max-width: 1200px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

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

/* ─── Inflammation / Restore Section ─── */
.sw-restore {
  background: var(--color-bg);
  padding: 120px;
  overflow: hidden;
}

.sw-restore__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sw-restore__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: var(--color-text);
  text-align: center;
  width: 100%;
}

.sw-restore__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "salt" 1;
  width: 100%;
}

.sw-restore__cards {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.sw-restore__card {
  position: relative;
  flex: 1;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
}

.sw-restore__card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sw-restore__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-restore__card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.sw-restore__card:last-child .sw-restore__card-bg::after {
  background: rgba(0, 0, 0, 0.4);
}

.sw-restore__card-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: -0.14px;
  color: white;
}

/* ─── Shockwave Treatment Responsive ─── */
@media (max-width: 1280px) {
  .sw-innovative {
    padding: 200px 40px;
  }

  .sw-treatment {
    padding: 120px 40px;
  }

  .sw-restore {
    padding: 120px 40px;
  }

  .sw-restore__card {
    flex: 1;
  }
}

@media (max-width: 1024px) {
  .sw-innovative {
    padding: 160px 40px;
  }

  .sw-innovative__body {
    font-size: 36px;
  }

  .sw-innovative__float--tl,
  .sw-innovative__float--tr,
  .sw-innovative__float--br {
    display: none;
  }

  .sw-treatment__title {
    font-size: 40px;
  }

  .sw-treatment__image {
    height: 360px;
  }

  .sw-restore__title {
    font-size: 40px;
  }

  .sw-restore__cards {
    flex-direction: column;
  }

  .sw-restore__card {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .sw-innovative {
    padding: 100px 24px;
  }

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

  .sw-treatment {
    padding: 60px 24px;
  }

  .sw-treatment__title {
    font-size: 30px;
  }

  .sw-treatment__image {
    height: 260px;
    margin-top: 40px;
  }

  .sw-restore {
    padding: 60px 24px;
  }

  .sw-restore__title {
    font-size: 30px;
  }

  .sw-restore__cards {
    margin-top: 40px;
  }

  .sw-restore__card {
    height: 200px;
  }
}

/* ============================================
   NEW PATIENTS PAGE
   ============================================ */

/* ─── Hero Section ─── */
.np-hero {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: 192px var(--section-padding) 80px var(--section-padding);
}

.np-hero__fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.np-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.np-hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.np-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--color-text);
}

/* ─── Body Text Section ─── */
.np-body {
  background: var(--color-bg);
  padding: 80px var(--section-padding);
  width: 100%;
  overflow: hidden;
}

.np-body__columns {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.np-body__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.np-body__col p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
}

/* ─── New Patients Forms Banner ─── */
.np-forms-banner {
  background: var(--color-bg);
  /* padding: 80px var(--section-padding); */
  width: 100%;
  overflow: hidden;
}

.np-forms-banner__inner {
  background: linear-gradient(360deg, #171722 0%, rgba(23, 23, 34, 0.8) 100%);
  border-radius: 24px;
  padding: 64px;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.np-forms-banner__row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.np-forms-banner__title {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-white);
}

.np-forms-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.07px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.np-forms-banner__btn:hover {
  opacity: 0.85;
}

.np-forms-banner__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.np-forms-banner__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
}

.np-forms-banner__btn--white {
  background: var(--color-white);
  border: none;
  color: var(--color-text);
  box-shadow: 0px 2px 20px 4px rgba(0, 109, 193, 0.15);
}

/* ─── Online Patient Form ─── */
.np-online-form {
  background: var(--color-bg);
  padding: 80px var(--section-padding);
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;

  /* Hidden by default — reveal animation */
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease 0.15s, padding-top 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.np-online-form.is-visible {
  max-height: 2000px;
  opacity: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  pointer-events: auto;
}

/* Card (dark gradient) */
.np-online-form__card {
  background: linear-gradient(to top, #171722 0%, rgba(23, 23, 28, 0.9) 100%);
  border-radius: 24px;
  padding: 64px;
  width: 100%;
  max-width: var(--content-width);
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
}

/* Left side: Step + Title */
.np-online-form__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  width: 450px;
  flex-shrink: 0;
}

.np-online-form__step {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.63px;
  text-transform: uppercase;
  color: var(--color-bg);
  font-feature-settings: "salt" 1;
}

.np-online-form__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: var(--color-white);
}

/* Right side: Form fields */
.np-online-form__fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}

.np-online-form__row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.np-online-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.np-online-form__label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.06px;
  text-transform: uppercase;
  color: var(--color-white);
  font-feature-settings: "salt" 1;
}

.np-online-form__input {
  background: rgba(247, 247, 247, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  height: 48px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12px;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.np-online-form__input::placeholder {
  color: rgba(241, 241, 242, 0.4);
}

.np-online-form__input:focus {
  border-color: rgba(255, 255, 255, 0.8);
}

/* Submit button */
.np-online-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--color-white);
  border: none;
  box-shadow: 0px 2px 20px 4px rgba(0, 109, 193, 0.15);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.np-online-form__submit:hover {
  opacity: 0.85;
}

.np-online-form__submit span {
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.07px;
  color: var(--color-text);
  text-align: center;
}

.np-online-form__submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-text);
}

/* Disclaimer paragraphs */
.np-online-form__disclaimer {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  width: 100%;
  max-width: 1200px;
}

.np-online-form__disclaimer strong {
  font-weight: 600;
}

.np-online-form__disclaimer--medium {
  font-weight: 500;
}

/* ─── Feature Cards ─── */
.np-features {
  background: var(--color-bg);
  padding: 40px var(--section-padding);
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.np-features__row {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.np-features__card {
  flex: 1;
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.np-features__icon {
  background: var(--color-bg);
  border-radius: 40px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.np-features__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.np-features__card-title {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.1px;
  color: var(--color-text);
}

/* ─── New Patients Responsive ─── */
@media (max-width: 1024px) {
  .np-hero {
    padding: 192px var(--section-padding) 80px var(--section-padding);
  }

  .np-body {
    padding: 60px 40px;
  }

  .np-forms-banner {
    padding: 60px 40px;
  }

  .np-features {
    padding: 40px;
  }

  .np-forms-banner__row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .np-forms-banner__title {
    font-size: 32px;
    width: 100%;
    flex: none;
  }

  .np-online-form {
    padding-left: 40px;
    padding-right: 40px;
  }

  .np-online-form.is-visible {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .np-online-form__card {
    flex-direction: column;
    gap: 40px;
  }

  .np-online-form__header {
    width: 100%;
  }

  .np-online-form__title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  /* ─── Hero ─── */
  .np-hero {
    padding: 240px 16px 80px 16px;
    gap: 72px;
  }

  .np-hero__content {
    gap: 24px;
  }

  .np-hero__heading {
    font-size: 48px;
    letter-spacing: -0.72px;
  }

  /* ─── Body Text ─── */
  .np-body {
    padding: 80px 16px;
  }

  .np-body__columns {
    flex-direction: column;
    gap: 64px;
  }

  .np-body__col {
    gap: 24px;
  }

  /* ─── Forms Banner ─── */
  .np-forms-banner {
    padding: 0;
    background: transparent;
  }

  .np-forms-banner__inner {
    border-radius: 24px;
    padding: 64px 24px;
  }

  .np-forms-banner__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .np-forms-banner__title {
    font-size: 40px;
    letter-spacing: -1px;
    flex: none;
    width: 100%;
    margin-bottom: 40px;
  }

  /* ─── Online Form ─── */
  .np-online-form {
    padding-left: 16px;
    padding-right: 16px;
    gap: 40px;
  }

  .np-online-form.is-visible {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .np-online-form__card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }

  .np-online-form__header {
    width: 100%;
  }

  .np-online-form__title {
    font-size: 36px;
    letter-spacing: -0.9px;
  }

  .np-online-form__row {
    /* flex-direction: column; */
    gap: 24px;
  }

  .np-online-form__disclaimer {
    font-size: 14px;
  }

  /* ─── Feature Cards ─── */
  .np-features {
    padding: 40px 16px;
  }

  .np-features__row {
    flex-direction: column;
    gap: 24px;
  }

  .np-features__card {
    padding: 16px 24px;
    gap: 16px;
  }

  .np-features__card-title {
    font-size: 16px;
  }
}

/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */

/* ---- Video Testimonials Grid ---- */
.test-videos {
  background: var(--color-bg);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.test-videos__grid {
  display: flex;
  gap: 160px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.test-videos__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-end;
}

.test-videos__col--offset {
  padding-top: 80px;
  align-items: flex-start;
}

.test-videos__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.test-videos__thumb {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.test-videos__thumb > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-videos__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.5)
  );
  pointer-events: none;
}

.test-videos__channel {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 2;
}

.test-videos__channel-avatar {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.test-videos__channel-avatar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.test-videos__channel-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: white;
  text-align: center;
  white-space: nowrap;
}

.test-videos__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  z-index: 2;
  cursor: pointer;
}

.test-videos__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.12px;
  color: var(--color-text);
  text-align: center;
}

/* ---- Written Testimonials Carousel ---- */
.test-carousel {
  background: var(--color-bg);
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  width: 100%;
}

.test-carousel__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.test-carousel__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.test-carousel__track {
  display: flex;
  gap: 120px;
  align-items: center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.test-carousel__slide {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 960px;
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0.4;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.test-carousel__slide--active {
  opacity: 1;
}

.test-carousel__slide--left,
.test-carousel__slide--right {
  opacity: 0.4;
}

.test-carousel__image {
  width: 320px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.1);
}

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

.test-carousel__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.test-carousel__quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.12px;
  color: var(--color-text);
}

.test-carousel__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.test-carousel__name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.09px;
  color: var(--color-text);
}

.test-carousel__tag {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.06px;
  text-transform: uppercase;
  color: rgba(23, 23, 34, 0.5);
  font-feature-settings: "salt" 1;
}

/* Edge fades — clean gradient, no hard line */
.test-carousel__fade {
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.test-carousel__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.test-carousel__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

/* Progress dots */
.test-carousel__dots {
  display: flex;
  gap: 24px;
  align-items: center;
  width: 240px;
}

.test-carousel__dot {
  flex: 1;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease;
}

.test-carousel__dot-fill {
  width: 0;
  height: 4px;
  border-radius: 32px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.test-carousel__dot--active .test-carousel__dot-fill {
  width: 100%;
}

/* ============================================
   CONTACT PAGE — HERO SECTION
   ============================================ */
.contact-hero {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: 192px 120px 80px 120px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: flex-start;
}

/* Soft fade at the hero bottom edge so the glow/rays
   blend smoothly into the flat --color-bg below */
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  /* background: linear-gradient(to bottom, transparent, var(--color-bg)); */
  z-index: 2;
  pointer-events: none;
}

.contact-hero__content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  justify-content: center;
}

.contact-hero__text-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-hero__titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--color-text);
}

.contact-hero__subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

.contact-hero__info-row {
  display: flex;
  gap: 56px;
  width: 100%;
}

.contact-hero__info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.contact-hero__info-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hero__info-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  text-transform: uppercase;
  color: rgba(23, 23, 34, 0.6);
  font-feature-settings: "salt" 1;
}

.contact-hero__info-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

/* Contact Form Card */
.contact-hero__form-card {
  flex: 1;
  background: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.contact-hero__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.contact-hero__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contact-hero__field-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.06px;
  text-transform: uppercase;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

.contact-hero__input {
  width: 100%;
  height: 48px;
  background: rgba(23, 23, 34, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12px;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
}

.contact-hero__input::placeholder {
  color: rgba(23, 23, 34, 0.4);
}

.contact-hero__input:focus {
  border-color: var(--color-primary);
}

.contact-hero__textarea {
  width: 100%;
  height: 144px;
  background: rgba(23, 23, 34, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12px;
  color: var(--color-text);
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.contact-hero__textarea::placeholder {
  color: rgba(23, 23, 34, 0.4);
}

.contact-hero__textarea:focus {
  border-color: var(--color-primary);
}

.contact-hero__form-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-hero__checkbox-label,
.wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
  cursor: pointer;
}

.contact-hero__checkbox {
  display: none;
}

.contact-hero__checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1px solid #dadde1;
  border-radius: 3px;
  background: var(--color-white);
  flex-shrink: 0;
  position: relative;
}

.contact-hero__checkbox:checked + .contact-hero__checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-hero__checkbox:checked + .contact-hero__checkbox-custom::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-hero__submit {
  width: 100%;
  background: var(--color-primary);
  border: none;
  border-radius: 48px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.07px;
  color: var(--color-white);
  cursor: pointer;
  /* box-shadow: 0px 2px 20px 4px rgba(0, 109, 193, 0.15); */
  transition: opacity 0.2s;
}

.contact-hero__submit:hover {
  opacity: 0.9;
}

.contact-hero__submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE — DIRECTIONS / MAP SECTION
   ============================================ */
.directions {
  background: var(--color-bg);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.directions__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  width: 100%;
}

.directions__map {
  flex: 1;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

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

.directions__map-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-bg);
  border-radius: 8px;
  padding: 12px;
}

.directions__map-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--color-text);
}

.directions__map-btn svg {
  width: 24px;
  height: 24px;
}

.directions__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

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

.directions__info-titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.directions__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-text);
}

.directions__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

.directions__route {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

/* ============================================
   404 PAGE
   ============================================ */

.error404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 40px;
}

.error404__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 160px;
  line-height: 1;
  letter-spacing: -4px;
  color: var(--color-text);
}

.error404__text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 420px;
}

/* ============================================
   DISCLAIMER PAGE — HERO SECTION
   ============================================ */
.disclaimer-hero {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: 192px var(--section-padding) 80px var(--section-padding);
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: flex-start;
}

/* Soft fade at the hero bottom edge so the glow/rays
   blend smoothly into the flat --color-bg below */
.disclaimer-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  /* background: linear-gradient(to bottom, transparent, var(--color-bg));  */
  z-index: 2;
  pointer-events: none;
}

.disclaimer-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.disclaimer-hero__titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.disclaimer-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--color-text);
  text-align: center;
  width: 100%;
}

.disclaimer-hero__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "salt" 1;
}

/* ============================================
   DISCLAIMER PAGE — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .disclaimer-hero {
    padding: 240px 16px 80px 16px;
    gap: 72px;
  }

  .disclaimer-hero__content {
    gap: 16px;
  }

  .disclaimer-hero__heading {
    font-size: 48px;
    letter-spacing: -0.72px;
  }

  .disclaimer-hero__text {
    font-size: 14px;
    letter-spacing: -0.07px;
  }
}

/* ============================================
   PRIVACY POLICY PAGE — HERO SECTION
   ============================================ */
.privacy-hero {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: 192px 120px 80px 120px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: flex-start;
}

/* Soft fade at the hero bottom edge so the glow/rays
   blend smoothly into the flat --color-bg below */
.privacy-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  /* background: linear-gradient(to bottom, transparent, var(--color-bg)); */
  z-index: 2;
  pointer-events: none;
}

.privacy-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1440px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.privacy-hero__bottom-fade img {
  width: 1440px;
  height: 160px;
  object-fit: cover;
  transform: rotate(180deg);
}

.privacy-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.privacy-hero__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.privacy-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--color-text);
  text-align: left;
  width: 100%;
}

/* ============================================
   PRIVACY POLICY PAGE — CONTENT SECTION
   ============================================ */
.privacy-content {
  background: var(--color-bg);
  width: 100%;
  padding: 120px;
}

.privacy-content__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sidebar TOC */
.privacy-content__sidebar {
  width: 224px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: sticky;
  top: 40px;
}

.privacy-content__sidebar-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-decoration: none;
  font-feature-settings: "salt" 1;
}

.privacy-content__sidebar-link:hover {
  opacity: 0.7;
}

.privacy-content__sidebar-link--active {
  font-weight: 500;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Content Body */
.privacy-content__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: flex-start;
}

.privacy-content__intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  width: 100%;
  font-feature-settings: "salt" 1;
}

.privacy-content__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.privacy-content__section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--color-text);
  width: 100%;
}

.privacy-content__section-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  width: 100%;
  font-feature-settings: "salt" 1;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */

/* 404 PAGE — HERO SECTION */
.error-hero {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: 386.5px 24px 354.5px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.error-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1440px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.error-hero__bottom-fade img {
  width: 1440px;
  height: 160px;
  object-fit: cover;
  transform: rotate(180deg);
}

.error-hero__content {
  position: absolute;
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.error-hero__text-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.error-hero__404 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 120px;
  line-height: 1.2;
  letter-spacing: -1.8px;
  color: var(--color-text);
  text-align: center;
}

.error-hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  color: var(--color-text);
  text-align: center;
}

.error-hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "salt" 1;
}

.error-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--color-primary);
  border-radius: 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.error-hero__button:hover {
  opacity: 0.9;
}

/* ============================================
   BLOG PAGE
   ============================================ */

/* BLOG PAGE — HERO SECTION */
.blog-hero {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: 24px 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
}

.blog-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1440px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.blog-hero__bottom-fade img {
  width: 1440px;
  height: 160px;
  object-fit: cover;
  transform: rotate(180deg);
}

.blog-hero__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 144px;
}

.blog-hero__title-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.blog-hero__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.blog-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--color-text);
  width: 100%;
}

/* BLOG PAGE — FEATURED POST */
.blog-hero__featured {
  display: flex;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.blog-hero__featured-image {
  width: 720px;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: var(--color-white);
}

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

.blog-hero__featured-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.blog-hero__featured-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.blog-hero__featured-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.blog-hero__featured-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  color: var(--color-text);
}

.blog-hero__featured-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  width: 100%;
}

.blog-hero__featured-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-feature-settings: "salt" 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* BLOG PAGE — SHARED META & READ TIME */
.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-meta__category {
  font-size: 14px;
}

.blog-meta__dot {
  width: 4px;
  height: 4px;
  border-radius: 32px;
  background: rgba(23, 23, 34, 0.3);
  flex-shrink: 0;
}

.blog-meta__date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  color: rgba(23, 23, 34, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-feature-settings: "salt" 1;
}

.blog-read-time {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.54px;
  color: rgba(23, 23, 34, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
  font-feature-settings: "salt" 1;
}

/* BLOG PAGE — BROWSE SECTION */
.blog-browse {
  background: var(--color-bg);
  width: 100%;
  padding: 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.blog-browse__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.blog-browse__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--color-text);
  white-space: nowrap;
}

.blog-browse__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.blog-browse__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 72px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.07px;
  text-align: center;
  white-space: nowrap;
  background: rgba(23, 23, 34, 0.1);
  color: var(--color-text);
  transition: all 0.2s ease;
}

.blog-browse__filter--active {
  background: var(--color-dark);
  color: var(--color-white);
}

.blog-browse__filter:hover:not(.blog-browse__filter--active) {
  background: rgba(23, 23, 34, 0.15);
}

/* BLOG PAGE — CARD GRID */
.blog-browse__row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

.blog-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}

.blog-card__image {
  width: 100%;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--color-white);
}

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

.blog-card__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.blog-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--color-text);
  width: 100%;
}

/* ============================================
   BLOG POST PAGE — HERO SECTION
   ============================================ */
.blogpost-hero {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: 24px 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 128px;
  align-items: flex-start;
}

.blogpost-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1440px;
  height: 160px;
  z-index: 1;
  pointer-events: none;
}

.blogpost-hero__bottom-fade img {
  width: 1440px;
  height: 160px;
  object-fit: cover;
  transform: rotate(180deg);
}

.blogpost-hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 192px;
}

.blogpost-hero__title-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.blogpost-hero__text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.blogpost-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.4;
  letter-spacing: -1.6px;
  color: var(--color-text);
  text-align: center;
  width: 100%;
}

.blogpost-hero__image {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--color-white);
}

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

.blogpost-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* ============================================
   BLOG POST PAGE — ARTICLE CONTENT
   ============================================ */
.blogpost-article {
  background: var(--color-bg);
  width: 100%;
  padding: 40px 120px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.blogpost-article__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  width: 912px;
  color: var(--color-text);
}

.blogpost-article__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  width: 100%;
  font-feature-settings: "salt" 1;
}

.blogpost-article__text p {
  margin-bottom: 0;
}

.blogpost-article__text p + p {
  margin-top: 1em;
}

.blogpost-article__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.blogpost-article__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--color-text);
  width: 100%;
}

.blogpost-article__paragraph {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.08px;
  width: 100%;
  font-feature-settings: "salt" 1;
}

.blogpost-article__closing {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

/* ============================================
   HOME PAGE — MOBILE OVERRIDES (375px Figma)
   ============================================ */

/* Hamburger button — hidden on desktop */
.header__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.header__hamburger svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

/* Close button — hidden on desktop */
.header__close {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.header__close svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

/* Mobile menu — hidden on desktop */
.mobile-menu {
  display: none;
}

.footer__menu {
  display: none;
}

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

@media (max-width: 768px) {
  /* ---- TOP BAR ---- */
  .top-bar {
    padding: 16px;
  }

  .top-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .top-bar__item {
    font-size: 12px;
    gap: 8px;
  }

  .top-bar__item svg {
    width: 12px;
    height: 12px;
  }

  /* Mobile: show filled icons, hide outlined */
  .top-bar__icon--filled {
    display: block !important;
  }

  .top-bar__icon--outline {
    display: none !important;
  }

  /* ---- HEADER / NAV ---- */
  .header {
    /* width: 343px;
    max-width: calc(100% - 32px); */
    padding: 16px 20px;
    border-radius: 48px;
    top: 72px;
  }

  .header--sticky {
    top: 8px;
    width: calc(100% - 32px);
    max-width: 343px;
  }

  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

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

  /* Close X — hidden by default, shown when menu is open */
  .header__close {
    display: none;
    align-items: center;
    justify-content: center;
  }

  /* When menu is open: hide the original header pill entirely
       (the mobile-menu__pill replaces it inside the overlay) */
  .header.menu-open {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .header__logo {
    height: 32px;
  }

  /* ---- MOBILE MENU ---- */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }

  .mobile-menu.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
  }

  .mobile-menu__pill {
    margin-top: calc(var(--real-top-bar-height, 40px) + 24px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: calc(100% - 48px);
    border-radius: 48px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    opacity: 0;
    /* transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1); */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  }

  .mobile-menu.is-open .mobile-menu__pill {
    opacity: 1;
  }

  .mobile-menu__pill-logo {
    height: 32px;
  }

  .mobile-menu__pill-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-dark);
  }

  .mobile-menu__card {
    position: absolute;
    /* top: 184px; */
    margin-top: calc(var(--real-top-bar-height, 40px) + 106px);
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: calc(100% - 48px);
    border-radius: 24px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* transform: translateY(-16px) ; */
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 172px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  }

  .mobile-menu.is-open .mobile-menu__card {
    /* transform: translateY(0); */
    opacity: 1;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu__link {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.1px;
    color: var(--color-dark);
    text-decoration: none;
  }

  .mobile-menu__divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
  }

  /* Services accordion */
  .mobile-menu__services {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu__services-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.1px;
    color: var(--color-dark);
    text-align: left;
  }

  .mobile-menu__services-chevron {
    width: 24px;
    height: 24px;
    color: var(--color-dark);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
  }

  .mobile-menu__services-trigger.is-expanded .mobile-menu__services-chevron {
    transform: rotate(180deg);
  }

  .mobile-menu__services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding-top: 0;
  }

  .mobile-menu__services-list.is-open {
    max-height: 400px;
    padding-top: 16px;
  }

  .mobile-menu__services-list a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.08px;
    color: var(--color-dark);
    text-decoration: none;
    padding-left: 16px;
    opacity: 0.7;
  }

  /* CTA button */
  .mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: var(--color-primary);
    color: #f1f1f2;
    border-radius: 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 450;
    line-height: 20px;
    letter-spacing: -0.07px;
    text-decoration: none;
    text-align: center;
  }

  /* ---- SERVICES SECTION ---- */
  .services {
    padding: 80px 0px;
    gap: 56px;
  }

  .services__header {
    gap: 16px;
    padding: 0 16px;
  }

  .section-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  /* Services Grid — horizontal scroll */
  .services-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: unset;
    width: 100%;
  }

  /* Reset all side margins first to prevent conflicts */
  .service-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* 1. The first item in the first row (Chiropractic Care) */
  .services-grid__row:first-of-type .service-card:first-child {
    margin-left: 16px !important;
  }

  /* 2. The last item in the second row (Sciatica Treatment) */
  .services-grid__row:last-of-type .service-card:last-child {
    margin-right: 16px !important;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .services-grid__row {
    display: contents !important;
  }

  .service-card {
    flex: 0 0 327px;
    width: 327px;
    height: 480px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: 16px;
    margin: 0;
  }

  .service-card__bottom--card4,
  .service-card__bottom--card5 {
    width: 100% !important;
  }

  .services__description {
    padding: 0px 16px;
    font-size: 32px;
  }

  /* ---- PREMIUM SERVICES ---- */
  .premium {
    padding: 80px 0px;
    gap: 56px;
  }

  .premium__header {
    gap: 32px;
    padding: 0px 16px;
  }

  .premium__header-text .section-title {
    font-size: 32px;
    letter-spacing: -0.8px;
    width: 100%;
  }

  .btn-outline {
    padding: 14px 20px;
    font-size: 14px;
    justify-content: center;
  }

  .premium__carousel-track {
    height: 380px;
    overflow: hidden;
    clip-path: inset(0);
  }

  .premium__carousel-item {
    width: 311px;
    gap: 24px;
  }

  .premium__carousel-label {
    font-size: 18px;
  }

  .premium__carousel-image {
    width: 311px;
    height: 326px;
  }

  .premium__carousel-track::before,
  .premium__carousel-track::after {
    background: unset;
    width: 40px;
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials {
    padding: 80px 24px;
    gap: 80px;
  }

  .testimonials__header .section-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .testimonials__cards {
    width: 100%;
    height: 320px;
    overflow: hidden;
    clip-path: inset(0);
    cursor: grab;
    user-select: none;
  }

  .testimonials__cards:active {
    cursor: grabbing;
  }

  .testimonials__card img {
    pointer-events: none;
  }

  .testimonials__card {
    width: 327px !important;
    max-width: calc(100vw - 48px) !important;
    gap: 32px;
    padding: 24px;
    border-radius: 16px;
  }

  .testimonials__name {
    font-size: 16px;
  }

  .testimonials__text {
    font-size: 14px;
  }

  .testimonials__dots {
    display: inline-flex;
  }

  .testimonials {
    gap: 60px;
  }

  /* ---- YOUTUBE SECTION ---- */
  .youtube {
    padding: 80px 24px;
    gap: 32px;
  }

  .youtube__header .section-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .youtube__carousel-track {
    height: 340px;
    overflow: hidden;
    clip-path: inset(0);
  }

  .youtube__carousel-item {
    width: 327px;
  }

  .youtube__thumb {
    height: 240px;
    border-radius: 16px;
  }

  .youtube__play-btn {
    width: 48px;
    height: 48px;
  }

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

  .youtube__video-title {
    font-size: 16px;
  }

  .youtube__video-views {
    font-size: 12px;
  }

  .youtube__carousel-track::before,
  .youtube__carousel-track::after {
    width: 24px;
  }

  /* ---- FEATURES BAR ---- */
  .features {
    padding: 40px 16px;
  }

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

  .features__card {
    flex-direction: row;
    padding: 16px 24px;
    gap: 16px;
    border-radius: 16px;
    background: var(--color-white);
    width: 100%;
    align-items: center;
    justify-content: flex-start;
  }

  .features__icon {
    padding: 12px;
    border-radius: 40px;
    background: var(--color-bg);
    flex-shrink: 0;
  }

  .features__icon-img {
    width: 24px;
    height: 24px;
  }

  .features__label {
    font-size: 16px;
  }

  /* ---- CONTACT SECTION ---- */
  .contact {
    padding: 0;
  }

  .contact__inner {
    flex-direction: column;
    padding: 64px 24px;
    gap: 48px;
    border-radius: 24px;
    background: linear-gradient(
      to top,
      var(--color-dark),
      rgba(23, 23, 34, 0.8)
    );
  }

  .contact__left {
    width: 100%;
    gap: 16px;
  }

  .contact__label {
    font-size: 14px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    color: var(--color-bg);
  }

  .contact__title {
    font-size: 40px;
    line-height: 1.2;
  }

  .contact__privacy {
    font-size: 14px;
  }

  .contact__form {
    align-items: stretch;
    gap: 24px;
  }

  .contact__field {
    gap: 12px;
  }

  .contact__field-label {
    font-size: 12px;
    font-family: var(--font-mono);
    text-transform: uppercase;
  }

  .contact__input {
    height: 48px;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 12px;
    background: rgba(247, 247, 247, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .contact__submit {
    border-radius: 12px;
    background: var(--color-white);
    color: var(--color-text);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 450;
    box-shadow: 0px 2px 20px 4px rgba(0, 109, 193, 0.15);
    border: none;
  }

  .contact__note {
    font-size: 12px;
    letter-spacing: -0.06px;
  }

  /* ---- FOOTER AREA ---- */
  .footer-area {
    padding-top: 160px;
    padding-bottom: unset;
  }

  .footer-area__fade {
    height: 160px;
  }

  .footer-area__big-text {
    font-size: 150px;
    letter-spacing: -0.005em;
    line-height: 1.5;
    width: 100%;
  }

  .footer-area__glow-group {
    width: 100%;
    height: 400px;
  }

  .footer-area__rays {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .footer-area__glow-1 {
    width: 600px;
    height: 600px;
  }

  .footer-area__glow-2 {
    width: 300px;
    height: 300px;
    left: 0;
    top: 200px;
  }

  /* Footer card */
  .footer {
    width: 100%;
    padding: 64px 24px 40px;
    gap: 64px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }

  .desktop-footer {
    display: none !important;
  }

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

  .footer__col--branding-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 1;
    width: 100%;
  }

  .footer__logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }

  .footer__address-block {
    width: 100%;
  }

  .footer__menu {
    display: flex !important;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    order: 2;
  }

  .footer__menu .footer__sub-section,
  .footer__col--resources {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
  }

  .footer__col--services {
    width: 100%;
    order: 3;
  }

  .footer__col--hours {
    width: 100%;
    order: 4;
  }

  .footer__col-label {
    font-size: 12px;
  }

  .footer__col-links a,
  .footer__col-links p {
    font-size: 14px;
    letter-spacing: -0.07px;
  }

  .footer__hours-text {
    font-size: 14px;
    line-height: 1.1;
  }

  .footer__ada-logo {
    height: 32px;
  }

  .footer__address {
    font-size: 14px;
    letter-spacing: -0.07px;
  }

  .footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer__bottom-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer__copyright {
    font-size: 12px;
    letter-spacing: -0.06px;
  }

  .footer__bottom-links a {
    font-size: 12px;
    letter-spacing: -0.06px;
  }

  .hero__image-wrap img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* ---- CAROUSEL DOTS (mobile) ---- */
}

/* Mobile hero animation — no translateX(-50%) since content is position:relative */
@keyframes heroContentRevealMobile {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

/* ============================================
   SERVICE PAGE
   ============================================ */
.service-hero {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: 24px 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: flex-start;
}

/* Fade gradient at bottom of hero — matches next section bg */
.service-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  z-index: 1;
  pointer-events: none;
}

.service-hero__body {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 136px; /* header(64px) at top:24px = 88px bottom + 72px Figma gap - 24px section padding */
  position: relative;
  z-index: 5;
}

.service-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 48px;
  position: relative;
  z-index: 2;
}

/* Split layout — text left, image right */
.service-hero--split {
  padding-bottom: 80px;
}

.service-hero--split .service-hero__body {
  align-items: center;
  padding-top: 0;
}

.service-hero--split .service-hero__content--left {
  flex: 1;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  max-width: 560px;
  padding-top: 0;
}

.service-hero__image {
  flex: 0 0 459px;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

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

.service-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--color-text);
}

.service-hero__subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.09px;
  color: var(--color-text);
  max-width: 600px;
}

/* ---- Intro ---- */
.service-intro {
  background: var(--color-bg);
  padding: 80px 120px;
  width: 100%;
}

.service-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-intro__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-text);
}

.service-intro__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

/* ---- Treatment Features ---- */
.service-treatments {
  background: var(--color-bg);
  padding: 80px 120px;
  width: 100%;
}

.service-treatments__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-treatments__row {
  display: flex;
  gap: 64px;
  align-items: center;
}

.service-treatments__row--reverse {
  flex-direction: row-reverse;
}

.service-treatments__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-treatments__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--color-text);
}

.service-treatments__bullets {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

.service-treatments__bullets ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-treatments__img-wrap {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}

.service-treatments__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.service-treatments__img-placeholder {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  background: rgba(0, 109, 193, 0.06);
}

/* ---- Special Offer ---- */
.service-offer {
  background: var(--color-dark);
  padding: 80px 120px;
  width: 100%;
}

.service-offer__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-offer__price {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: var(--color-white);
}

.service-offer__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 16px;
}

/* ---- FAQs ---- */
.service-faqs {
  background: var(--color-bg);
  padding: 80px 120px;
  width: 100%;
}

.service-faqs__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-faqs__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-text);
  text-align: center;
}

.service-faqs__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-faqs__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-faqs__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  text-align: left;
  gap: 16px;
}

.service-faqs__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-faqs__item.is-open .service-faqs__chevron {
  transform: rotate(180deg);
}

.service-faqs__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.service-faqs__item.is-open .service-faqs__answer {
  max-height: 500px;
}

.service-faqs__answer p {
  padding-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.8;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
  content: "";
}

/* ---- Service page responsive ---- */
@media (max-width: 768px) {
  /* ---- Hero section ---- */
  .service-hero {
    padding: 24px 16px 80px;
    gap: 72px;
  }

  .service-hero__body {
    flex-direction: column;
    gap: 64px;
    margin-top: 80px;
  }

  .service-hero__content {
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    max-width: 100%;
    padding-top: 0;
  }

  .service-hero--split .service-hero__content--left {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .service-hero__heading {
    font-size: 48px;
    letter-spacing: -0.72px;
    text-align: left;
  }

  .service-hero__subheading {
    font-size: 14px;
    letter-spacing: -0.07px;
  }

  .service-hero__image {
    flex: none;
    width: 100%;
    height: 416px;
    border-radius: 24px;
  }

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

  /* ---- Intro section ---- */
  .service-intro {
    padding: 80px 16px;
  }

  .service-intro__inner {
    text-align: center;
    gap: 16px;
  }

  .service-intro__heading {
    font-size: 24px;
    letter-spacing: -0.6px;
    text-align: center;
  }

  .service-intro__text {
    font-size: 14px;
    letter-spacing: -0.07px;
    text-align: center;
  }

  /* Faded text effect on mobile — second portion fades to 20% opacity */
  .service-intro__text .text-fade {
    color: rgba(23, 23, 34, 0.2);
  }

  /* ---- Treatment features (card carousel) ---- */
  .service-treatments {
    padding: 80px 16px;
  }

  .service-treatments__inner {
    gap: 32px;
  }

  .service-treatments__row,
  .service-treatments__row--reverse {
    flex-direction: column;
    gap: 16px;
  }

  .service-treatments__row--reverse {
    flex-direction: column;
  }

  .service-treatments__text {
    gap: 16px;
  }

  .service-treatments__title {
    font-size: 20px;
    letter-spacing: -0.5px;
    text-align: left;
  }

  .service-treatments__bullets {
    font-size: 14px;
    letter-spacing: -0.07px;
  }

  .service-treatments__img-wrap {
    width: 100%;
    min-height: 360px;
    border-radius: 16px;
  }

  .service-treatments__img {
    border-radius: 16px;
  }

  .service-treatments__img-placeholder {
    height: 360px;
  }

  /* ---- Special offer ---- */
  .service-offer {
    padding: 48px 16px;
  }

  .service-offer__price {
    font-size: 36px;
    letter-spacing: -0.9px;
  }

  .service-offer__text {
    font-size: 16px;
  }

  /* ---- FAQs ---- */
  .service-faqs {
    padding: 48px 16px;
  }

  .service-faqs__inner {
    gap: 32px;
  }

  .service-faqs__heading {
    font-size: 28px;
    letter-spacing: -0.7px;
  }

  .service-faqs__question {
    font-size: 14px;
    padding: 16px 0;
  }

  .service-faqs__answer p {
    font-size: 14px;
  }
}

/* ============================================
   CONTACT PAGE — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  /* ---- CONTACT HERO ---- */
  .contact-hero {
    padding: 240px 24px 80px 24px;
    gap: 72px;
  }

  .contact-hero__content {
    flex-direction: column;
    gap: 64px;
    width: 100%;
  }

  .contact-hero__left {
    gap: 32px;
  }

  .contact-hero__text-block {
    gap: 12px;
  }

  .contact-hero__heading {
    font-size: 48px;
    letter-spacing: -0.72px;
  }

  .contact-hero__subheading {
    font-size: 14px;
    letter-spacing: -0.07px;
  }

  .contact-hero__info-row {
    gap: 56px;
  }

  .contact-hero__info-label {
    font-size: 12px;
    letter-spacing: -0.06px;
  }

  .contact-hero__info-value {
    font-size: 14px;
    word-break: break-word;
  }

  /* ---- CONTACT FORM CARD ---- */
  .contact-hero__form-card {
    padding: 24px;
    border-radius: 16px;
    width: 100%;
  }

  .contact-hero__input,
  .contact-hero__textarea {
    width: 100%;
  }

  .contact-hero__submit {
    width: 100%;
    justify-content: center;
  }

  /* ---- DIRECTIONS / MAP SECTION ---- */
  .directions {
    padding: 80px 16px;
  }

  .directions__inner {
    flex-direction: column;
    gap: 64px;
  }

  .directions__map {
    width: 100%;
    height: 343px;
    flex: none;
  }

  .directions__info {
    flex: none;
    width: 100%;
  }

  .directions__title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .directions__desc {
    font-size: 14px;
    letter-spacing: -0.07px;
  }
}

/* ============================================
   PRIVACY POLICY PAGE — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  /* ---- PRIVACY HERO ---- */
  .privacy-hero {
    padding: 240px 24px 80px 24px;
    gap: 72px;
  }

  .privacy-hero__content {
    gap: 16px;
  }

  .privacy-hero__heading {
    font-size: 48px;
    letter-spacing: -0.72px;
  }

  .privacy-hero__bottom-fade {
    width: 100%;
  }

  .privacy-hero__bottom-fade img {
    width: 100%;
  }

  /* ---- PRIVACY CONTENT ---- */
  .privacy-content {
    padding: 80px 16px;
  }

  .privacy-content__inner {
    flex-direction: column;
    gap: 40px;
  }

  .privacy-content__sidebar {
    width: 100%;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: static;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .privacy-content__sidebar::-webkit-scrollbar {
    display: none;
  }

  .privacy-content__sidebar-link {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .privacy-content__intro {
    font-size: 14px;
    letter-spacing: -0.07px;
  }

  .privacy-content__section {
    gap: 8px;
  }

  .privacy-content__section-heading {
    font-size: 24px;
    letter-spacing: -0.6px;
  }

  .privacy-content__section-text {
    font-size: 14px;
    letter-spacing: -0.07px;
  }

  /* ---- FEATURES BAR (shared component) ---- */
  .features-bar {
    padding: 40px 16px;
  }

  .features-grid {
    flex-direction: column;
  }

  .feature-card {
    padding: 16px 24px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .feature-card p {
    font-size: 16px;
    letter-spacing: -0.08px;
  }

  .mobile-only {
    display: block;
    content: "";
  }

  .desktop-only {
    display: none;
  }
}

/**
 * Weinzoff Chiropractic — YouTube Carousel Styles
 * Strategy: Mobile-First (Base styles for Mobile, Desktop at 1024px+)
 */

.yt-carousel {
  background-color: #ffffff;
  overflow: hidden;
}

.yt-carousel__badge {
  display: block;
  text-align: center;
  color: #ce1126;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.yt-carousel__main-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.yt-carousel__viewport {
  width: 100%;
  position: relative;
}

.yt-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.yt-carousel__track::-webkit-scrollbar {
  display: none;
}

.yt-card {
  min-width: 327px;
  scroll-snap-align: center;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.yt-card__inner {
  width: 327px;
  height: 240px;
  position: relative;
}

.yt-card__image {
  width: 327px;
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.yt-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 85%;
}

.yt-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.yt-card__logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  object-fit: cover;
}

.yt-card__title {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yt-card__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  pointer-events: none;
}

.yt-play-bg {
  fill: #ce1126;
}

.yt-play-triangle {
  fill: #ffffff;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot--active {
  background: #ce1126;
  width: 8px;
  border-radius: 4px;
}

@media (min-width: 1024px) {
  .yt-carousel__main-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .yt-card {
    min-width: 480px;
    border-radius: 16px;
  }

  .yt-card__inner {
    width: 480px;
    height: 280px;
    position: relative;
  }

  .yt-card__image {
    width: 480px;
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .yt-card__play-btn {
    width: 68px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .yt-card__title {
    font-size: 16px;
  }

  .yt-card__overlay {
    padding: 20px;
    height: unset;
  }

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

  .yt-card:hover .yt-card__play-btn {
    transform: translate(-50%, -50%) scale(1.15);
  }

  .yt-card:hover .yt-play-bg {
    fill: #ff0000;
  }

  .yt-carousel__track {
    gap: 24px;
  }
}

.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 20px;
}

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

.yt-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.yt-modal__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  z-index: 2;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

  transform: scale(0.9) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yt-modal.is-active .yt-modal__content {
  transform: scale(1) translateY(0);
}

.yt-modal__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* (9 / 16) * 100 */
  height: 0;
}

.yt-modal__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

.yt-modal__close {
  position: absolute;
  top: -55px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.yt-modal__close:hover {
  background: #ce1126;
  border-color: #ce1126;
  transform: rotate(90deg);
}

/* Mobile Adjustments */
@media (max-width: 1023px) {
  .yt-modal {
    padding: 10px;
  }

  .yt-modal__content {
    border-radius: 12px;
  }

  .yt-modal__close {
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

.yt-carousel__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: clamp(80px, 7.511737089201878vw + 51.83098591549296px, 160px) 0px;
}

.yt-carousel__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(48px, 3.0046948356807513vw + 36.732394366197184px, 80px);
}

/* =============Index=============== */
:root {
  --bg-gray: #f7f7f7;
  --primary-blue: #006dc1;
  --dark-text: #171722;
  --meta-gray: rgba(23, 23, 34, 0.5);
  --white: #ffffff;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header {
  --dynamic-top-gap: calc(var(--real-top-bar-height, 40px) + 24px);
  margin-top: var(--dynamic-top-gap);
}

/* --- Base & Layout --- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, -9.8028px + 9.0141vw, 120px);
}

/* --- Hero Section --- */
.blog-hero {
  position: relative;
  background: var(--bg-gray);
  overflow: hidden;
  /* height: clamp(370px, 501.1549px - 9.108vw, 467px); */
  display: flex;
  align-items: center;
  padding: unset;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 9999px;
}

.blob-1 {
  width: 1547px;
  height: 1547px;
  left: clamp(-585px, -4vw, -53px);
  top: -1096px;
  background: rgba(0, 109, 193, 0.15);
  filter: blur(128px);
}

.blob-2 {
  width: 667px;
  height: 667px;
  top: -360px;
  left: 667px;
  background: rgba(160, 130, 229, 0.2);
  box-shadow: 128px 128px 128px rgba(160, 130, 229, 0.1);
  filter: blur(64px);
}

.blob-3 {
  position: absolute;
  width: 525px;
  height: 391px;
  left: 42px;
  top: -160px;
  clip-path: path(
    "M525 360.5C525 492.772 399.772 138 267.5 138C135.228 138 0 337.272 0 205C0 72.7278 210.728 0 343 0C475.272 0 525 228.228 525 360.5Z"
  );
  background: rgba(160, 130, 229, 0.2);
  box-shadow: 128px 128px 128px rgba(160, 130, 229, 0.1);
  filter: blur(64px);
  z-index: -1;
}

.grid-lines {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1440px;
  min-width: 1440px;
  height: 100%;
  display: flex;
  z-index: 2;
  pointer-events: none;
}

.grid-line {
  flex: 0 0 90.95px;
  width: 90.95px;
  height: 100%;
  margin-right: -10px;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.015) 0%,
    rgba(255, 255, 255, 0.3) 78.5%,
    rgba(255, 255, 255, 0.015) 100%
  );
  background-blend-mode: overlay;
  transform: matrix(1, 0, 0, -1, 0, 0);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
  z-index: 3;
}

/* -- Hero Content -- */
.hero-container {
}

.hero-content-blog {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  --dynamic-top-gap: calc(var(--real-top-bar-height, 40px) + 168px);
  padding-top: var(--dynamic-top-gap);
  padding-bottom: 80px;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  font-feature-settings: "salt" 1;
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(48px, 42.3662px + 1.5023vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--color-text);
  width: 100%;
}

/* --- Blog Filter Header --- */
.blog-list-section {
  background: var(--bg-gray);
  padding: 40px 0;
}

.blog-filter-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.filter-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

.filter-categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.filter-categories::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 72px;
  background: rgba(23, 23, 34, 0.06);
  text-decoration: none;
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -0.005em;
  line-height: 20px;
  transition: var(--transition);
  white-space: nowrap;
}

.cat-pill.active {
  background: var(--dark-text);
  color: var(--white);
}

/* --- Post Grid & Cards --- */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.post-card-link {
  text-decoration: none;
  display: block;
}

.post-image-container {
  width: 100%;
  height: clamp(200px, 16.6vw, 240px);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 16px;
}

.post-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-card-link:hover .post-thumb-img {
  transform: scale(1.08);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.post-cat-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  font-feature-settings: "salt" 1;
}

.meta-dot {
  width: 4px;
  height: 4px;
  background: rgba(23, 23, 34, 0.2);
  border-radius: 50%;
}

.post-date {
  color: var(--meta-gray);
  font-family: var(--font-body);
  font-size: clamp(12px, 11.2958px + 0.1878vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.post-title {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(20px, 18.5915px + 0.3756vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 400;
}

/* --- Pagination --- */
.blog-pagination {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
  justify-content: center;
}

.blog-pagination ul {
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 0;
}

.blog-pagination a,
.blog-pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark-text);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(23, 23, 34, 0.08);
}

.blog-pagination .current,
.blog-pagination a:hover {
  background: var(--dark-text);
  color: var(--white);
  border-color: var(--dark-text);
}

/* --- Desktop & Responsive Adjustments --- */
@media (min-width: 768px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (min-width: 1024px) {
  .blog-filter-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .filter-categories {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .post-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

* {
  /* outline: 1px solid red !important; */
}

/* ============================================================
   1. HERO CORE LAYOUT (MOBILE FIRST)
   ============================================================ */
.hero {
  position: relative;
  background: #f7f7f7;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding: clamp(60px, 10vh, 120px) 0; */
  gap: 40px;
  /* min-height: 100vh; */
  width: 100%;
}

.hero.hero--process {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(
    var(--real-top-bar-height, 40px) +
      clamp(180px, 0.7511737089201878vw + 177.1830985915493px, 188px)
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: unset;
}

.hero.hero--chiro {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--knee {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--plantar {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--neuro {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--weight-loss {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--sciatica {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--schockwave {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--new-patients {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  /* padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  ); */
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--privacy {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  /* padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  ); */
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

.hero.hero--contact {
  flex-direction: column;
  align-items: flex-start;
  padding-top: calc(
    var(--real-top-bar-height, 40px) +
      clamp(180px, 0.7511737089201878vw + 177.1830985915493px, 188px)
  );
  padding-inline: clamp(
    16px,
    9.765258215962441vw - 20.619718309859155px,
    120px
  );
  padding-bottom: clamp(80px, 0.7511737089201878vw + 77.1830985915493px, 88px);
  gap: 64px;
}

/* Background Layers */
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  left: -700px;
  height: 100%;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(1200px + (var(--section-padding) * 2));
  margin: 0 auto;
  gap: 64px;
}

/* ============================================================
   2. BACKGROUND DECORATIONS (BLOBS & GLASS GRID)
   ============================================================ */
.blob {
  position: absolute;
  border-radius: 9999px;
  z-index: 1;
  flex-shrink: 0;
}

.blob-blue {
  width: 100%;
  height: clamp(1547px, 1889.08px - 23.76vw, 1800px);
  /* left: clamp(-585px, -4vw, -53px); */
  top: -1096px;
  background: rgba(0, 109, 193, 0.15);
  filter: blur(128px);
}

.blob-purple-1 {
  width: 100%;
  height: 667px;
  top: -360px;
  left: 667px;
  background: rgba(160, 130, 229, 0.2);
  box-shadow: 128px 128px 128px rgba(160, 130, 229, 0.1);
  filter: blur(64px);
}

/* .blob-purple-2 {
  position: absolute;
  width: 525px;
  height: 391px;
  left: 42px;
  top: -160px;
  clip-path: path(
    "M525 360.5C525 492.772 399.772 138 267.5 138C135.228 138 0 337.272 0 205C0 72.7278 210.728 0 343 0C475.272 0 525 228.228 525 360.5Z"
  );
  background: rgba(160, 130, 229, 0.2);
  box-shadow: 128px 128px 128px rgba(160, 130, 229, 0.1);
  filter: blur(64px);
  z-index: -1;
} */

.blob-purple-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 42px;
  top: -160px;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(160, 130, 229, 0.35) 0%,
    rgba(160, 130, 229, 0.2) 30%,
    rgba(160, 130, 229, 0.1) 55%,
    rgba(160, 130, 229, 0.05) 70%,
    rgba(160, 130, 229, 0.01) 85%,
    transparent 100%
  );
  filter: blur(80px);
  z-index: -1;
}

.blob-purple-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 60%,
    rgba(160, 130, 229, 0.25),
    transparent 70%
  );
  filter: blur(120px);
}

.glass-grid .glass-column {
  display: none !important;
}

.glass-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      transparent 90.95px,
      rgba(255, 255, 255, 0.05) 90.95px,
      rgba(255, 255, 255, 0.05) 91.95px
    ),
    linear-gradient(
      270deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.3) 79%,
      rgba(255, 255, 255, 0.02) 100%
    );

  background-size: 91.95px 100%;
  background-repeat: repeat-x;
  background-blend-mode: overlay;
}

/* .glass-grid .glass-column {
  width: 90.95px;
  flex: 0 0 90.95px;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.3) 79%,
    rgba(255, 255, 255, 0.02) 100%
  );
  background-blend-mode: overlay;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
} */

.bg-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  /* background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%); */
  z-index: 3;
}

.hero--new-patients .bg-fade-overlay {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
}

.hero--testimonials .bg-fade-overlay {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
}

.hero--privacy .bg-fade-overlay {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
}

/* ============================================================
   3. CONTENT LAYERS (RELATIVE STACKING)
   ============================================================ */
.hero__content,
.hero__gallery {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero__content {
  padding-top: calc(
    var(--real-top-bar-height, 40px) +
      clamp(176px, 8.92018779342723vw + 142.54929577464789px, 271px)
  );
  padding-inline: clamp(
    16px,
    26.948356807511737vw - 85.05633802816901px,
    303px
  );
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__content--about {
  padding-top: calc(
    var(--real-top-bar-height, 40px) +
      clamp(176px, 3.004694835680751vw + 164.7323943661972px, 208px)
  );
  padding-inline: clamp(16px, 9.7653vw - 20.6197px, 120px);
}

.hero__content--process {
  padding-top: unset;
  padding-left: clamp(16px, 9.859154929577465vw - 20.971830985915492px, 121px);
  padding-right: clamp(16px, 8.356807511737089vw - 15.338028169014085px, 105px);
  flex: 0 0 50%;
  align-items: flex-start;
  margin: auto;
}

.hero__content--chiro {
  padding: unset;
  align-items: flex-start;
  margin: auto;
}

.hero__content--knee {
  padding: unset;
  align-items: flex-start;
  margin: auto;
}

.process-hero__images {
  flex: 0 0 50%;
}

.hero__content--plantar {
  padding: unset;
  align-items: flex-start;
  margin: auto;
}

.hero__content--neuro {
  padding: unset;
  align-items: flex-start;
  margin: auto;
}

.hero__content--weight-loss {
  padding: unset;
  align-items: flex-start;
  margin: auto;
}

.hero__content--sciatica {
  padding: unset;
  align-items: flex-start;
  margin: auto;
}

.hero__content--schockwave {
  padding: unset;
  align-items: flex-start;
  margin: auto;
}

.hero__content--new-patients {
  padding: unset;
  padding-inline: clamp(16px, 9.7653vw - 20.6197px, 120px);
  align-items: flex-start;
  margin: auto;
}

.hero__content--testimonials {
  padding-top: calc(
    var(--real-top-bar-height, 40px) +
      clamp(208px, 3.755868544600939vw + 193.91549295774648px, 248px)
  );
  padding-bottom: 120px;
  padding-inline: clamp(16px, 9.7653vw - 20.6197px, 120px);
  align-items: center;
  margin: auto;
}

.hero__content--deals {
  padding-top: calc(
    var(--real-top-bar-height, 40px) +
      clamp(208px, 3.755868544600939vw + 193.91549295774648px, 248px)
  );
  padding-bottom: 120px;
  align-items: center;
  margin: auto;
}

.hero__content--disclaimer {
  padding-top: calc(var(--real-top-bar-height, 40px) + 160px);
  padding-bottom: 120px;
  padding-inline: clamp(16px, 9.7653vw - 20.6197px, 120px);
  align-items: center;
  margin: auto;
}

.hero__content--privacy {
  padding: unset;
  padding-inline: clamp(16px, 9.7653vw - 20.6197px, 120px);
  align-items: flex-start;
  margin: auto;
}

.hero__content--contact {
  padding: unset;
  /* flex: 0 0 50%; */
  align-items: flex-start;
  z-index: 10;
}

.contact-hero__form-card {
  flex: 0 0 50%;
  z-index: 10;
}

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

.hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(48px, 3.004694835680751vw + 36.73239436619718px, 80px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.hero__subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 0.1877934272300469vw + 13.29577464788732px, 16px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--color-text);
  font-feature-settings: "salt" 1;
}

.hero__gallery {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;

  /* MOBILE ONLY: 50% padding for centering active card */
  padding: 0 50%;
}

.hero__gallery::-webkit-scrollbar {
  display: none;
}

.hero__gallery-item {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  scroll-snap-align: center;
}

.hero__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   4. DYNAMIC SIZING (FLUID CLAMPS)
   ============================================================ */
.hero__gallery-item.card-1 {
  width: clamp(147px, 4.6vw + 129.75px, 196px);
  height: clamp(255px, 7.98vw + 225.07px, 340px);
}
.hero__gallery-item.card-2 {
  width: clamp(150.75px, 4.72vw + 133.06px, 201px);
  height: clamp(105px, 3.29vw + 92.68px, 140px);
}
.hero__gallery-item.card-3 {
  width: clamp(141.75px, 4.44vw + 125.11px, 189px);
  height: clamp(141.75px, 4.34vw + 125.46px, 188px);
}
.hero__gallery-item.card-4 {
  width: clamp(106.5px, 3.33vw + 94px, 142px);
  height: clamp(106.5px, 3.33vw + 94px, 142px);
}
.hero__gallery-item.card-5 {
  width: clamp(155.25px, 4.86vw + 137.03px, 207px);
  height: clamp(243px, 7.61vw + 214.48px, 324px);
}
.hero__gallery-item.card-6 {
  width: clamp(106.5px, 3.33vw + 94px, 142px);
  height: clamp(151.5px, 4.74vw + 133.72px, 202px);
}
.hero__gallery-item.card-7 {
  width: clamp(150px, 4.69vw + 132.39px, 200px);
  height: clamp(105px, 3.29vw + 92.68px, 140px);
}

/* ============================================================
   5. DESKTOP OPTIMIZATION (1024PX+)
   ============================================================ */
@media (min-width: 1024px) {
  .hero {
    gap: 64px;
  }

  .hero-bg-wrapper {
    left: 0px;
  }

  .hero.hero--process {
    flex-direction: row;
  }

  .hero.hero--chiro {
    flex-direction: row;
  }

  .hero.hero--knee {
    flex-direction: row;
  }

  .hero.hero--plantar {
    flex-direction: row;
  }

  .hero.hero--neuro {
    flex-direction: row;
  }

  .hero.hero--weight-loss {
    flex-direction: row;
  }

  .hero.hero--sciatica {
    flex-direction: row;
  }

  .hero.hero--schockwave {
    flex-direction: row;
  }

  .hero.hero--new-patients {
    flex-direction: row;
  }

  .hero.hero--testimonials {
    flex-direction: row;
  }

  .hero.hero--deals {
    flex-direction: row;
  }

  .hero.hero--disclaimer {
    flex-direction: row;
  }

  .hero.hero--privacy {
    flex-direction: row;
  }

  .hero.hero--contact {
    flex-direction: row;
  }

  .hero__gallery {
    padding: 0;
    overflow-x: visible;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    gap: 24px;
  }

  .hero__gallery-item {
    scroll-snap-align: none;
  }

  .hero-content-wrapper {
    flex-direction: row;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
    content: "";
  }
}