/* ═══════════════════════════════════════════════════════════
   VIVA THERAPY — STYLESHEET
   Palette: Charcoal #222326  |  Electric Blue #358fe7  |  White #fff
   Fonts:   Oswald (headings) + Raleway (body)
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand Colors — real vivatherapy.com palette */
  --charcoal:      #222326;
  --charcoal-dark: #191919;
  --charcoal-mid:  #1f1f1f;
  --charcoal-nav:  #21242a;
  --charcoal-card: #2a2d33;
  --charcoal-border: rgba(255,255,255,0.08);

  --blue:          #358fe7;
  --blue-dark:     #1e73be;
  --blue-bright:   #3366ff;
  --blue-glow:     rgba(53,143,231,0.20);
  --blue-subtle:   rgba(53,143,231,0.10);

  --white:         #ffffff;
  --text-primary:  #ffffff;
  --text-body:     #d1d1d1;
  --text-muted:    #8d8d8d;
  --text-dim:      #666;

  --green-check:   #22c55e;
  --red-cross:     #ef4444;

  /* Typography */
  --font-display:  'Oswald', 'Arial Narrow', sans-serif;
  --font-body:     'Raleway', system-ui, sans-serif;

  /* Type scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;
  --text-hero:  5rem;

  /* Spacing */
  --space-1:  0.25rem;  --space-2:  0.5rem;
  --space-3:  0.75rem;  --space-4:  1rem;
  --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-8:  2rem;     --space-10: 2.5rem;
  --space-12: 3rem;     --space-16: 4rem;
  --space-20: 5rem;     --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max:  1200px;
  --container-wide: 1400px;
  --nav-h:          68px;
  --radius-sm:      3px;
  --radius-md:      6px;
  --radius-lg:      12px;
  --radius-xl:      20px;
  --radius-full:    9999px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.40);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.50);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.60);
  --shadow-blue: 0 4px 24px rgba(53,143,231,0.30);

  /* Transitions */
  --ease:      cubic-bezier(0.4,0,0.2,1);
  --ease-out:  cubic-bezier(0,0,0.2,1);
  --dur-fast:  150ms;
  --dur-base:  250ms;
  --dur-slow:  400ms;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-body);
  background: var(--charcoal);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
}
@media (max-width: 768px) { .container { padding: 0 var(--space-5); } }

.section-header { text-align: center; margin-bottom: var(--space-16); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 600;
  line-height: 1.10;
  color: var(--white);
  margin-bottom: var(--space-5);
  letter-spacing: 0.02em;
}

.accent { color: var(--blue); }

.section-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm  { padding: 0.5rem 1.125rem; font-size: var(--text-xs); }
.btn--md  { padding: 0.75rem 1.5rem;  font-size: var(--text-sm); }
.btn--lg  { padding: 0.875rem 2rem;   font-size: var(--text-sm); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.60);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(33,36,42,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--charcoal-border);
  transition: transform var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.nav.nav--hidden  { transform: translateY(-100%); }
.nav.nav--scrolled {
  background: rgba(25,25,25,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.60);
}

.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-8);
  gap: var(--space-6);
}

.nav__logo img { height: 38px; width: auto; display: block; }
.nav__logo:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__links a {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  position: relative;
  transition: color var(--dur-fast);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width var(--dur-base) var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__phone {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.01em;
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.nav__phone:hover { color: var(--white); }

/* ─── NAV DROPDOWN ──────────────────────────────────── */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav__caret {
  font-size: 8px;
  opacity: 0.55;
  display: inline-block;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-fast);
}

.nav__dropdown.open .nav__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 222px;
  background: var(--charcoal-nav);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              visibility var(--dur-base);
  z-index: 200;
}

/* Arrow tip */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 5px;
  background: var(--charcoal-nav);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-body);
  border-bottom: 1px solid var(--charcoal-border);
  transition: color var(--dur-fast), background var(--dur-fast), padding-left var(--dur-fast);
  white-space: nowrap;
  position: static;
}

.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:last-child { border-bottom: none; }

.nav__dropdown-menu a:hover {
  color: var(--blue);
  background: rgba(53,143,231,0.07);
  padding-left: var(--space-6);
}

.nav__dropdown-featured {
  color: var(--blue) !important;
  font-weight: 600 !important;
  background: rgba(53,143,231,0.06);
}
.nav__dropdown-featured:hover {
  background: rgba(53,143,231,0.14) !important;
}

/* Mobile sub-items */
.nav__mobile-sub {
  padding-left: var(--space-10) !important;
  font-size: calc(var(--text-xs) + 1px) !important;
  letter-spacing: 0.06em !important;
  color: var(--text-muted) !important;
}
.nav__mobile-sub:hover { color: var(--blue) !important; }

/* Mobile collapsible Services */
.nav__mobile-section {
  border-bottom: 1px solid var(--charcoal-border);
}

.nav__mobile-section-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-body);
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  transition: color var(--dur-fast), background var(--dur-fast);
}

.nav__mobile-section-trigger:hover {
  color: var(--blue);
  background: rgba(53,143,231,0.05);
}

.nav__mobile-section-trigger.open {
  color: var(--blue);
}

.nav__mobile-caret {
  font-size: 10px;
  opacity: 0.55;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav__mobile-section-trigger.open .nav__mobile-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__mobile-section-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.15);
}

.nav__mobile-section-items.open {
  max-height: 400px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px; padding: 4px;
}
.nav__toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--charcoal-nav);
  border-top: 1px solid var(--charcoal-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.nav__mobile.open { max-height: 900px; }
.nav__mobile a {
  display: block;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-body);
  border-bottom: 1px solid var(--charcoal-border);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__mobile a:hover { color: var(--blue); background: rgba(53,143,231,0.05); }
.nav__mobile a:last-child { border-bottom: none; margin: var(--space-4) var(--space-6); }

@media (max-width: 960px) {
  .nav__links  { display: none; }
  .nav__phone  { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(25,25,25,0.92) 0%,
    rgba(33,36,42,0.82) 55%,
    rgba(33,36,42,0.30) 100%
  );
}

.hero__content {
  position: relative; z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--space-20)) var(--space-8) var(--space-20);
  width: 100%;
}

.hero__badge {
  display: inline-block;
  background: rgba(53,143,231,0.12);
  border: 1px solid rgba(53,143,231,0.35);
  color: var(--blue);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6.5vw, var(--text-hero));
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  max-width: 700px;
}
.hero__heading--accent { color: var(--blue); }

/* Rotating text track */
.hero__rotating-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  height: 44px;
  overflow: visible;
}
.hero__rotating-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__rotating-track {
  position: relative;
  height: 44px;
  flex: 1;
}
.hero__rotating-track span {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1;
  white-space: nowrap;
  display: block;
}

.hero__sub {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: rgba(255,255,255,0.70);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: var(--space-10);
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: var(--space-1); }
.stat__num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.stat__divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal-nav);
  border-top: 1px solid var(--charcoal-border);
  border-bottom: 1px solid var(--charcoal-border);
  padding: var(--space-5) 0;
}
.trust-bar__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   TAGLINE BAND
   ═══════════════════════════════════════════════════════════ */
.tagline-band {
  background: var(--blue);
  padding: var(--space-5) 0;
}
.tagline-band__text {
  font-family: var(--font-display);
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  text-align: center;
}
.tagline-band__text .accent {
  color: var(--white);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
  padding: var(--space-32) 0;
  background: var(--charcoal);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
@media (max-width: 1100px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.service-card {
  background: var(--charcoal-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--charcoal-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(53,143,231,0.30);
}

.service-card__img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.service-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.04); }
.service-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34,35,38,0.70) 0%, transparent 50%);
}

.service-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-3);
}

.service-tag {
  display: inline-block;
  background: rgba(53,143,231,0.15);
  color: var(--blue);
  border: 1px solid rgba(53,143,231,0.30);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.service-tag--blue {
  background: rgba(51,102,255,0.15);
  color: #6699ff;
  border-color: rgba(51,102,255,0.30);
}
.service-tag--teal {
  background: rgba(6,182,212,0.12);
  color: #06b6d4;
  border-color: rgba(6,182,212,0.25);
}
.service-tag--gray {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border-color: rgba(255,255,255,0.10);
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.20;
}
.service-card__body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-1);
}
.service-bullets li {
  font-size: var(--text-xs);
  color: var(--text-body);
  padding-left: var(--space-5);
  position: relative;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.service-bullets li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--blue);
  font-size: 11px;
  top: 1px;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--charcoal-border);
}
.price-badge {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.03em;
}

/* Add-ons section */
.addons-section {
  margin-top: var(--space-4);
}
.addons-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--charcoal-border);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}
@media (max-width: 1100px) { .addons-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .addons-grid { grid-template-columns: repeat(2, 1fr); } }

.addon-card {
  background: var(--charcoal-card);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--dur-base), transform var(--dur-base);
}
.addon-card:hover {
  border-color: rgba(53,143,231,0.30);
  transform: translateY(-2px);
}
.addon-icon {
  width: 40px; height: 40px;
  background: var(--blue-subtle);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.addon-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
}
.addon-card p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   NAD+ DARK FEATURE SECTION
   ═══════════════════════════════════════════════════════════ */
.nad-feature {
  position: relative;
  padding: var(--space-32) 0;
  overflow: hidden;
}
.nad-feature__bg {
  position: absolute; inset: 0; z-index: 0;
}
.nad-feature__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nad-feature__overlay {
  position: absolute; inset: 0;
  background: rgba(16,17,20,0.90);
}

.nad-feature__content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-20);
  align-items: center;
}
@media (max-width: 900px) {
  .nad-feature__content { grid-template-columns: 1fr; }
}

.nad-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.nad-benefits li {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-base);
  padding-left: var(--space-6);
  position: relative;
}
.nad-benefits li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 700;
}

.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(53,143,231,0.30);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(12px);
}
.price-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: var(--space-6);
}
.price-card__amount span {
  font-size: var(--text-xl);
  font-weight: 400;
  opacity: 0.60;
}
.price-card ul { display: flex; flex-direction: column; gap: var(--space-3); }
.price-card ul li {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
  padding-left: var(--space-5);
  position: relative;
}
.price-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   WHY VIVA
   ═══════════════════════════════════════════════════════════ */
.why-viva {
  padding: var(--space-32) 0;
  background: var(--charcoal-mid);
}

.why-viva__layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-20);
  align-items: start;
}
@media (max-width: 1024px) { .why-viva__layout { grid-template-columns: 1fr; } }

.why-viva__text .section-title { text-align: left; }
.why-viva__text > p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-10);
  max-width: 520px;
}

.differentiators { display: flex; flex-direction: column; gap: var(--space-8); }
.diff-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}
.diff-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: rgba(53,143,231,0.20);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  margin-top: -2px;
  letter-spacing: -0.02em;
}
.diff-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.diff-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Compare table */
.why-viva__compare {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-8));
}
.why-viva__compare h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.compare-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--charcoal-border);
  box-shadow: var(--shadow-md);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 72px 80px 88px;
  align-items: center;
  border-bottom: 1px solid var(--charcoal-border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > * {
  padding: var(--space-3) var(--space-3);
  font-size: var(--text-xs);
  text-align: center;
}
.compare-row > *:first-child {
  text-align: left;
  color: var(--text-body);
  font-weight: 500;
  padding-left: var(--space-4);
}
.compare-row--header { background: rgba(53,143,231,0.15); }
.compare-row--header > * {
  color: rgba(255,255,255,0.50);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.compare-row:not(.compare-row--header) {
  background: var(--charcoal-card);
}
.compare-row:not(.compare-row--header):nth-child(even) {
  background: rgba(255,255,255,0.025);
}
.aviva-col { background: rgba(53,143,231,0.10) !important; }
.compare-row--header .aviva-col {
  color: var(--blue) !important;
  font-weight: 700 !important;
}
.check   { color: var(--green-check); font-size: 1em; font-weight: 700; }
.cross   { color: var(--red-cross);   font-size: 1em; }
.neutral { color: var(--text-muted);  font-size: 1em; }

/* ═══════════════════════════════════════════════════════════
   MEMBERSHIP
   ═══════════════════════════════════════════════════════════ */
.membership {
  padding: var(--space-32) 0;
  background: var(--charcoal);
}

.membership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}
@media (max-width: 900px) {
  .membership__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.plan-card {
  background: var(--charcoal-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--charcoal-border);
  padding: var(--space-8);
  position: relative;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(53,143,231,0.30);
}
.plan-card--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  background: rgba(53,143,231,0.08);
  transform: scale(1.04);
}
.plan-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.plan-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-card__header {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--charcoal-border);
}
.plan-card__header h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.plan-price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.01em;
}
.plan-price span {
  font-size: var(--text-lg);
  font-weight: 400;
  opacity: 0.55;
  color: var(--text-muted);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.plan-features li {
  font-size: var(--text-sm);
  color: var(--text-body);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews {
  padding: var(--space-32) 0;
  background: var(--charcoal-mid);
}

.review-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}
.stars { font-size: var(--text-2xl); color: #f59e0b; letter-spacing: 2px; }
.review-score {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.review-count { font-size: var(--text-sm); color: var(--text-muted); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
@media (max-width: 900px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews__grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--charcoal-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--charcoal-border);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(53,143,231,0.20);
}
.review-stars { color: #f59e0b; font-size: var(--text-sm); letter-spacing: 2px; }
.review-card p {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(53,143,231,0.15);
  border: 1px solid rgba(53,143,231,0.30);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}
.review-author span {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 1px;
}
.reviews__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--space-24) 0;
  background: var(--charcoal-nav);
  border-top: 1px solid var(--charcoal-border);
  border-bottom: 1px solid var(--charcoal-border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
}
.step__num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: rgba(53,143,231,0.25);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.step h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}
.step__arrow {
  font-size: var(--text-2xl);
  color: rgba(53,143,231,0.30);
  flex-shrink: 0;
  margin-top: var(--space-10);
  align-self: flex-start;
}
@media (max-width: 768px) {
  .step__arrow { display: none; }
  .steps { gap: var(--space-8); }
  .step { min-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq {
  padding: var(--space-32) 0;
  background: var(--charcoal);
}

.faq__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 900px) { .faq__layout { grid-template-columns: 1fr; } }

.faq__header .section-title { text-align: left; }
.faq__header p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: var(--space-2);
}
.faq__header a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid rgba(53,143,231,0.40);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.faq__header a:hover {
  color: var(--white);
  border-color: var(--white);
}

.faq__list { display: flex; flex-direction: column; gap: var(--space-3); }

.faq-item {
  background: var(--charcoal-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--charcoal-border);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease);
}
.faq-item[open] { border-color: rgba(53,143,231,0.40); }

.faq-item summary {
  list-style: none;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-base);
  letter-spacing: 0.04em;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  user-select: none;
  transition: color var(--dur-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--blue);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING CTA
   ═══════════════════════════════════════════════════════════ */
.booking-cta {
  padding: var(--space-32) 0;
  background: var(--charcoal-nav);
  border-top: 1px solid var(--charcoal-border);
}

.booking-cta__layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 1100px) {
  .booking-cta__layout { grid-template-columns: 1fr; max-width: 580px; }
}

.booking-cta__text .section-title { text-align: left; }
.booking-cta__text > p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-body);
  font-weight: 500;
  transition: color var(--dur-fast);
  line-height: 1.5;
}
.contact-item svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
a.contact-item:hover { color: var(--blue); }

.booking-form-card {
  background: var(--charcoal-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--charcoal-border);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.booking-form-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: var(--space-6);
}
.booking-form { display: flex; flex-direction: column; gap: var(--space-5); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--charcoal);
  border: 1.5px solid var(--charcoal-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23358fe7' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: var(--charcoal-card); color: var(--white); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-group input.error,
.form-group select.error { border-color: var(--red-cross); }

.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-align: center;
  line-height: 1.55;
}

.booking-success {
  display: none;
  text-align: center;
  padding: var(--space-10) var(--space-6);
}
.booking-success.visible { display: block; }
.booking-success__icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.10);
  border: 2px solid var(--green-check);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--green-check);
  font-size: var(--text-2xl);
}
.booking-success h4 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.booking-success p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal-dark);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--charcoal-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 260px repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.65;
  margin: var(--space-4) 0 var(--space-6);
  max-width: 280px;
}

.footer__social { display: flex; gap: var(--space-3); }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--charcoal-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.footer__social a:hover {
  background: var(--blue-subtle);
  color: var(--blue);
  border-color: rgba(53,143,231,0.30);
}

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-5);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col ul li,
.footer__col ul a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.footer__col ul a:hover { color: var(--blue); }

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--charcoal-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__bottom p { font-size: var(--text-xs); color: var(--text-dim); }
.footer__disclaimer { max-width: 700px; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   SCROLL-TO-TOP
   ═══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: var(--space-8); right: var(--space-8);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  cursor: pointer;
  border: none;
}
.scroll-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--blue-dark); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero__content {
    padding-top: calc(var(--nav-h) + var(--space-12));
    padding-bottom: var(--space-12);
  }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .hero__stats { gap: var(--space-5); }
  .stat__divider { height: 36px; }

  .trust-bar__inner { gap: var(--space-4); }
  .trust-item span { display: none; }

  .services    { padding: var(--space-20) 0; }
  .why-viva    { padding: var(--space-20) 0; }
  .membership  { padding: var(--space-20) 0; }
  .reviews     { padding: var(--space-20) 0; }
  .booking-cta { padding: var(--space-20) 0; }
  .faq         { padding: var(--space-20) 0; }
  .nad-feature { padding: var(--space-20) 0; }

  .section-header { margin-bottom: var(--space-10); }
  .nad-feature__content { gap: var(--space-10); }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }

  .trust-bar__inner { flex-wrap: wrap; gap: var(--space-3); }
  .trust-item span { display: inline; }

  .booking-form-card { padding: var(--space-6); }

  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }

  .hero__rotating-wrap { gap: var(--space-2); }
  .hero__rotating-label { font-size: var(--text-xs); }
}

/* ── Choosing Therapy nav link ─────────────────────── */
.nav__choosing {
  color: #358fe7 !important;
  font-weight: 600;
  position: relative;
}
.nav__choosing::after {
  content: '✦';
  font-size: 0.5rem;
  color: #358fe7;
  position: absolute;
  top: -4px;
  right: -8px;
  opacity: 0.8;
}

/* ── LOCAL SERVICE AREAS SEO SECTION ─────────────────────── */
.local-areas {
  background: var(--bg2, #1a1c1f);
  padding: 72px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.local-areas__title {
  font-family: var(--font-head, 'Oswald'), sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.local-areas__sub {
  font-family: var(--font-body, 'Raleway'), sans-serif;
  font-size: 15px;
  color: #7a8a9a;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.local-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.local-areas__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 24px;
}

.local-areas__card h3 {
  font-family: var(--font-head, 'Oswald'), sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent, #358fe7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}

.local-areas__card p {
  font-family: var(--font-body, 'Raleway'), sans-serif;
  font-size: 13px;
  color: #6a7a8a;
  line-height: 1.6;
  margin: 0;
}

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

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