/* Quick Physio — shared site styles */
:root {
  --teal: #00ae97;
  --teal-deep: #008f7c;
  --teal-soft: #e6f7f4;
  --teal-mid: #b3e8df;
  --navy: #1b2e3e;
  --navy-soft: #2a4256;
  --ink: #1b2e3e;
  --muted: #5a6d7c;
  --line: rgba(27, 46, 62, 0.12);
  --white: #fff;
  --bg: #f7fbfa;
  --danger-soft: #f3ebe6;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-deep);
}

button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 250, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text strong span {
  color: var(--teal);
}

.brand-text small {
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  background: var(--teal);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

/* Mobile: keep the call CTA visible next to the menu toggle */
@media (max-width: 979px) {
  .nav {
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .brand {
    margin-right: auto;
  }

  .nav-cta {
    font-size: 0.8rem;
    padding: 0.45rem 0.8rem;
  }
}

.nav-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 1.125rem 1rem;
  max-height: min(80vh, 640px);
  overflow: auto;
}

.nav-links.is-open {
  display: flex;
}

.nav-links > li > a,
.nav-drop > summary {
  display: block;
  text-decoration: none;
  color: var(--navy-soft);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 0.25rem;
  cursor: pointer;
  list-style: none;
}

.nav-links > li > a:hover {
  color: var(--teal);
}

.nav-links > li > a.is-active {
  color: var(--teal);
  font-weight: 600;
}

.nav-drop > summary::-webkit-details-marker {
  display: none;
}

.nav-drop > summary::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-drop[open] > summary {
  color: var(--teal);
}

.nav-drop-panel {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  animation: dropIn 0.28s var(--ease);
}

.nav-drop-panel a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  padding: 0.4rem 0.25rem;
}

.nav-drop-panel a:hover {
  color: var(--teal);
}

.nav-soon {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  padding: 0.4rem 0.25rem;
  cursor: default;
}

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

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem 1.1rem;
    background: transparent;
    border: 0;
    padding: 0;
    max-height: none;
    overflow: visible;
  }

  .nav-links > li {
    position: relative;
  }

  .nav-links > li > a,
  .nav-drop > summary {
    padding: 0.4rem 0;
    font-size: 0.86rem;
  }

  .nav-drop-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.55rem;
    box-shadow: 0 18px 40px rgba(27, 46, 62, 0.12);
    display: none;
  }

  .nav-drop[open] .nav-drop-panel {
    display: flex;
  }

  .nav-drop-panel a {
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
  }

  .nav-drop-panel a:hover {
    background: var(--teal-soft);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
}

/* Sections */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  color: var(--navy);
}

.section-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.02rem;
}

/* Reveal — the CSS animation is a safety net: when JS is blocked or fails,
   html never gets the .js class and content fades in on its own after 2s.
   When JS runs it adds .js, cancelling the fallback so scroll-reveal works. */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  animation: revealFallback 0.7s var(--ease) 2s forwards;
}

html.js .reveal {
  animation: none;
}

@keyframes revealFallback {
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Banner hero */
.banner-hero {
  position: relative;
  min-height: min(88vh, 720px);
  overflow: hidden;
  background: var(--navy);
}

.banner-track {
  position: relative;
  min-height: min(88vh, 720px);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.banner-slide.is-active img {
  transform: scale(1);
}

.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 46, 62, 0.88) 0%,
    rgba(27, 46, 62, 0.55) 48%,
    rgba(0, 174, 151, 0.25) 100%
  );
}

.banner-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 6vw, 4.5rem) 0 5.5rem;
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
  color: #fff;
}

.banner-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.banner-copy h1,
.banner-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.12;
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-weight: 600;
}

.banner-copy p {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.banner-controls {
  position: absolute;
  z-index: 3;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.banner-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(27, 46, 62, 0.35);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.banner-dots {
  display: flex;
  gap: 0.85rem;
}

.banner-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

/* Invisible 28px hit area so dots are easy to tap on touch screens */
.banner-dot::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
}

.banner-dot.is-active {
  background: var(--teal);
  transform: scale(1.15);
}

/* Pain section — distinct medical feel */
.pain-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0, 174, 151, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(27, 46, 62, 0.08), transparent 50%),
    linear-gradient(180deg, #eef6f4 0%, var(--bg) 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .pain-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.pain-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  isolation: isolate;
  transition: transform 0.4s var(--ease);
}

.pain-card:hover {
  transform: translateY(-4px);
}

.pain-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.pain-card:hover img {
  transform: scale(1.06);
}

.pain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 28, 0.08) 20%, rgba(8, 22, 28, 0.92) 100%);
}

.pain-card span {
  position: absolute;
  z-index: 1;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.pain-card small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.2rem;
}

/* Clinic page: image cards open lead popup (button reset) */
button.pain-card.clinic-lead-card {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

.pain-card.clinic-lead-card.is-icon {
  background: linear-gradient(160deg, #e7f4f1 0%, #cfe6e1 100%);
}

.pain-card.clinic-lead-card.is-icon img {
  object-fit: contain;
  padding: 18% 16% 28%;
}

.clinic-lead-pick {
  padding: 2.75rem 0 1.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0, 174, 151, 0.08), transparent 55%),
    linear-gradient(180deg, #f7fbfb 0%, #fff 100%);
}

.clinic-lead-pick-treatments {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
  background: #fff;
}

.clinic-lead-pick .section-title {
  margin-bottom: 0.35rem;
}

.clinic-lead-pick .pain-grid {
  margin-top: 1.25rem;
}

/* ---------- Google reviews ---------- */
.g-reviews {
  padding: 3.25rem 0;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(0, 174, 151, 0.1), transparent 50%),
    linear-gradient(180deg, #f3f8f8 0%, #ffffff 55%);
  border-top: 1px solid rgba(27, 46, 62, 0.06);
  border-bottom: 1px solid rgba(27, 46, 62, 0.06);
}

.g-reviews-head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  align-items: end;
}

@media (min-width: 800px) {
  .g-reviews-head {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
}

.g-reviews-score {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(27, 46, 62, 0.08);
  box-shadow: 0 10px 28px rgba(27, 46, 62, 0.06);
}

.g-reviews-score-num {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--navy, #1b2e3e);
  font-weight: 600;
}

.g-reviews-score .stars {
  color: #f5a524;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
}

.g-reviews-score-count {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.g-reviews-copy .section-title {
  margin-bottom: 0.35rem;
}

.g-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .g-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .g-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.g-review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(27, 46, 62, 0.08);
  box-shadow: 0 8px 22px rgba(27, 46, 62, 0.04);
  min-height: 100%;
}

.g-review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.g-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #00ae97, #1b2e3e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.g-review-who strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy, #1b2e3e);
}

.g-review-meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.g-review-meta .stars {
  color: #f5a524;
  letter-spacing: 0.04em;
}

.g-review-source {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(27, 46, 62, 0.12);
  color: #4285f4;
  font-weight: 700;
  font-size: 0.85rem;
}

.g-review-card blockquote {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.g-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .g-reviews {
    padding: 2.25rem 0;
  }
  .g-reviews-score-num {
    font-size: 2.4rem;
  }
}

.author-eeat {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 0;
  background: #0d1f28;
  color: #fff;
  box-shadow: 0 22px 44px rgba(13, 31, 40, 0.16);
}

.author-eeat-photo {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.author-eeat-copy {
  padding: 1.35rem 1.4rem 1.45rem;
}

.author-eeat-copy > p:not(.author-eeat-kicker):not(.author-eeat-role):not(.author-eeat-clinic) {
  color: rgba(255, 255, 255, 0.78);
}

.author-eeat-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7ef0dc;
}

.author-eeat-grid {
  display: contents;
}

.author-eeat-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #00ae97, #1b2e3e);
  color: #fff;
  font-weight: 700;
}

.author-eeat h3 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  color: #fff;
  font-family: var(--font-display, Fraunces, Georgia, serif);
}

.author-eeat-role {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  color: #7ef0dc;
  font-weight: 600;
}

.author-eeat-clinic {
  margin: 0.55rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.author-eeat-copy a {
  color: #7ef0dc;
  font-weight: 700;
}

.author-eeat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #0d1f28;
}

.author-eeat-meta li {
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(126, 240, 220, 0.16);
  color: #d7fff6;
}

@media (max-width: 640px) {
  .author-eeat {
    grid-template-columns: 1fr;
  }
  .author-eeat-photo {
    min-height: 160px;
    max-height: 180px;
  }
}

.seo-link-rail {
  margin: 2rem 0;
  padding: 1.5rem 1.45rem 1.55rem;
  border-radius: 22px;
  border: 0;
  background: #0d1f28;
  color: #fff;
  box-shadow: 0 20px 44px rgba(13, 31, 40, 0.14);
}

.seo-link-rail h2 {
  color: #fff;
}

.seo-link-rail > p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.seo-link-rail-grid h3 {
  color: #7ef0dc !important;
}

.seo-link-rail .tag-row a {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.seo-link-rail h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.seo-link-rail > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-link-rail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.seo-link-rail-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0b7a6c;
}

.loc-home-cta {
  margin: 1.5rem 0;
}

.contact-map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 1rem 0 1.5rem;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

button.clinic-tag-lead {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy, #1b2e3e);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

button.clinic-tag-lead:hover,
button.clinic-tag-lead:focus-visible {
  border-color: var(--teal, #00ae97);
  background: rgba(0, 174, 151, 0.08);
  color: #0b7a6c;
  outline: none;
}

/* Open-page affordance on pain cards (was an ambiguous red pulse dot).
   .pain-card .pain-pulse outranks the generic .pain-card span rule. */
.pain-card .pain-pulse,
.pain-pulse {
  position: absolute;
  z-index: 1;
  top: 0.7rem;
  right: 0.7rem;
  left: auto;
  bottom: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-deep, #0b7a6c);
  display: grid;
  place-items: center;
}

.pain-pulse::before {
  content: "→";
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.pain-card:hover .pain-pulse {
  background: var(--teal);
  color: #fff;
}

/* Problems list section */
.problems-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.problem-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .problem-list {
    grid-template-columns: 1fr 1fr;
  }
}

.problem-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.problem-row:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 46, 62, 0.06);
}

.problem-row img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.problem-row h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}

.problem-row p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.problem-row .link-arrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-deep);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .problem-row {
    grid-template-columns: 72px 1fr;
  }
  .problem-row .link-arrow {
    display: none;
  }
  .problem-row img {
    width: 72px;
    height: 72px;
  }
}

/* Categories */
.categories-section {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, #e8f4f1 100%);
}

.cat-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  box-shadow: 0 14px 32px rgba(13, 31, 40, 0.08);
  text-decoration: none;
  color: inherit;
  height: auto;
  align-self: start;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(27, 46, 62, 0.1);
}

.cat-card-media {
  aspect-ratio: 16 / 7.5;
  overflow: hidden;
}

.cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cat-card:hover .cat-card-media img {
  transform: scale(1.05);
}

.cat-card-body {
  padding: 0.85rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  overflow: visible;
}

.cat-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.cat-card-body p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  flex: 0 0 auto;
  overflow: visible;
  word-break: normal;
  overflow-wrap: break-word;
}

.cat-card-body .more {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--teal-deep);
}

/* Promo / clinics / reviews */
.promo-strip {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(120deg, rgba(27, 46, 62, 0.82), rgba(0, 174, 151, 0.75)),
    url("../assets/photos/home-visit.jpg") center / cover;
  color: #fff;
}

.promo-strip .section-label {
  color: var(--teal-mid);
}

.promo-strip .section-title,
.promo-strip .section-lead {
  color: #fff;
}

.promo-strip .section-lead {
  opacity: 0.9;
}

.clinics {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

#clinics-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  #clinics-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.clinic-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 0;
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13, 31, 40, 0.1);
}

.clinic-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.clinic-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clinic-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.2rem 1.25rem 1.3rem;
}

.clinic-address {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.clinic-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.clinic-card h3 {
  margin: 0 0 0.35rem;
}

.clinic-city {
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 0.65rem !important;
}

.reviews {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.review-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 0;
  box-shadow: 0 12px 28px rgba(13, 31, 40, 0.07);
}

.stars {
  color: #d4a017;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.review-card blockquote {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.review-card cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.service-area {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(0, 174, 151, 0.1), transparent 50%),
    linear-gradient(180deg, #eef4f3 0%, #f7fbfa 100%);
}

.service-area-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 1.35rem;
}

@media (min-width: 800px) {
  .service-area-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-tile {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  min-height: 168px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 16px 36px rgba(13, 31, 40, 0.1);
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 168px;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 28, 0.15), rgba(8, 22, 28, 0.82));
}

.service-tile span {
  position: absolute;
  z-index: 1;
  left: 0.95rem;
  right: 0.9rem;
  bottom: 0.9rem;
  font-weight: 700;
}

.service-tile small {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
  opacity: 0.82;
  margin-top: 0.15rem;
}

#service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

#service-areas li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background:
    linear-gradient(135deg, #0d1f28 0%, #14363a 55%, #0f6e62 140%);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.85;
}

.cta-band .btn-ghost {
  margin-left: 0.5rem;
}

/* Footer */
.site-footer {
  background: #152532;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
  }
}

.footer-col-brand p {
  margin: 0 0 0.85rem;
  max-width: 28ch;
  line-height: 1.55;
}

.footer-contact-list {
  margin-top: 0.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand strong span {
  color: var(--teal);
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.site-footer .footer-subhead {
  margin-top: 1.35rem;
}

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

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal-mid);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}

.clinic-hero {
  min-height: min(78vh, 640px);
}

.clinic-hero::after {
  background:
    linear-gradient(180deg, rgba(8, 22, 28, 0.18) 0%, rgba(8, 22, 28, 0.82) 78%),
    radial-gradient(ellipse at 15% 80%, rgba(0, 174, 151, 0.38), transparent 46%),
    linear-gradient(105deg, rgba(13, 31, 40, 0.9) 0%, rgba(13, 31, 40, 0.28) 100%);
}

.clinic-hero .index-stat-bar {
  gap: 0.65rem;
}

.clinic-hero .index-stat {
  padding: 0.7rem 0.95rem;
  min-height: 0;
  background: rgba(13, 31, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.clinic-hero .index-stat strong {
  font-size: 1.25rem;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 28, 0.2) 0%, rgba(8, 22, 28, 0.78) 78%),
    linear-gradient(105deg, rgba(13, 31, 40, 0.88) 0%, rgba(13, 31, 40, 0.35) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 2.75rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--teal-mid);
  text-decoration: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  margin: 0 0 0.65rem;
  max-width: 16ch;
  line-height: 1.15;
}

.page-hero .lead {
  max-width: 36rem;
  margin: 0 0 1.25rem;
  opacity: 0.9;
}

.page-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 1.5fr 0.9fr;
    align-items: start;
  }
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 1.75rem 0 0.65rem;
}

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

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--ink);
}

.prose .author-eeat h3,
.author-eeat h3,
.author-eeat-name {
  color: #fff !important;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.15rem;
}

.blog-figure {
  margin: 1.25rem 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f1ec;
}

.blog-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-figure figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.blog-table-wrap {
  overflow-x: auto;
  margin: 1.1rem 0 1.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.blog-table caption {
  caption-side: top;
  text-align: left;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.blog-table th,
.blog-table td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.blog-table th {
  background: #f7f5f1;
  color: var(--ink);
  font-weight: 600;
}

.blog-table tr:last-child td {
  border-bottom: 0;
}

.blog-checklist {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 1.25rem;
}

.blog-checklist li {
  position: relative;
  padding: 0.45rem 0.5rem 0.45rem 1.85rem;
  border-bottom: 1px dashed var(--line);
}

.blog-checklist li::before {
  content: "☐";
  position: absolute;
  left: 0.35rem;
  color: var(--ink);
}

.blog-checklist-title {
  margin: 0.75rem 0 0.25rem;
}

.side-card {
  background: #fff;
  border: 0;
  border-radius: 22px;
  padding: 1.45rem 1.4rem 1.5rem;
  position: sticky;
  top: 5.5rem;
  box-shadow: 0 20px 44px rgba(13, 31, 40, 0.1);
}

.side-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.side-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.side-card-book {
  background: #0d1f28;
  color: #fff;
}

.side-card-book h3,
.side-card-book .cpb-price {
  color: #fff;
}

.side-card-book .cpb-price strong {
  font-size: 2.1rem;
  color: #7ef0dc;
  font-family: var(--font-display, Fraunces, Georgia, serif);
}

.side-card-book p {
  color: rgba(255, 255, 255, 0.72);
}

.side-card-kicker {
  margin: 0 0 0.35rem !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7ef0dc !important;
}

.side-card-book .btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: transparent;
}

.related-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 700px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .related-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(13, 31, 40, 0.08);
  transition: transform 0.3s var(--ease);
}

.related-card:hover {
  transform: translateY(-3px);
}

.related-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.related-card div {
  padding: 0.95rem 1rem 1.1rem;
}

.related-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.related-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.journey-steps {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.journey-steps li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0.85rem 0.85rem 3rem;
  background: var(--teal-soft);
  border-radius: 12px;
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 0.92rem;
}

.journey-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-list details {
  border: 0;
  border-radius: 16px;
  padding: 1.05rem 1.15rem;
  margin-bottom: 0.7rem;
  background: #f4f8f7;
  box-shadow: 0 8px 20px rgba(13, 31, 40, 0.05);
}

.faq-list summary {
  font-weight: 650;
  cursor: pointer;
  color: #0d1f28;
}

.faq-list p {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.tag-row a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-deep);
}

/* Deep problem pages */
.page-toc {
  background: #0d1f28;
  color: #fff;
  border-radius: 20px;
  padding: 1.15rem 1.25rem 1.25rem;
  margin: 0 0 1.75rem;
  box-shadow: 0 16px 36px rgba(13, 31, 40, 0.12);
}

.page-toc p {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #7ef0dc;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  columns: 1;
}

@media (min-width: 560px) {
  .page-toc ol {
    columns: 2;
  }
}

.page-toc a {
  text-decoration: none;
  font-size: 0.86rem;
  color: #fff;
}

.page-toc a:hover {
  text-decoration: underline;
}

.type-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

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

.type-card {
  position: relative;
  background: #fff;
  border: 0;
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 14px 32px rgba(13, 31, 40, 0.07);
}

.type-card-num {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #00ae97;
}

.type-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
}

.type-card p {
  margin: 0;
  font-size: 0.88rem;
}

.cause-list li {
  margin-bottom: 0.35rem;
}

.content-figure {
  margin: 1.75rem 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 0;
  box-shadow: 0 16px 36px rgba(13, 31, 40, 0.08);
}

.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Safety: HTML width/height attrs must not inflate in-article photos */
.prose > img,
.prose p > img,
.blog-article img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

.content-figure figcaption {
  padding: 0.75rem 1rem 0.95rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(120deg, rgba(0, 174, 151, 0.12), rgba(27, 46, 62, 0.06));
  border-radius: 16px;
  border: 1px solid var(--teal-mid);
}

.inline-cta p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: var(--navy) !important;
}

.disclaimer {
  margin-top: 2rem !important;
  font-size: 0.8rem !important;
  opacity: 0.85;
}

.problem-deep .prose h2 {
  scroll-margin-top: 5.5rem;
}

/* Quick problems — circle links to top problem pages */
.quick-problems {
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
  background: linear-gradient(180deg, #f0f7f5 0%, #ffffff 100%);
}

.quick-problem-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(0.9rem, 2.5vw, 2.1rem);
  margin-top: 1.6rem;
}

.quick-problem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: clamp(88px, 11vw, 126px);
  text-decoration: none;
  text-align: center;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.25;
}

.quick-problem-img {
  width: clamp(80px, 10vw, 116px);
  height: clamp(80px, 10vw, 116px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 174, 151, 0.25);
  box-shadow: 0 8px 20px rgba(27, 46, 62, 0.1);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.quick-problem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quick-problem-more {
  display: grid;
  place-items: center;
  background: var(--teal-soft, rgba(0, 174, 151, 0.12));
  color: var(--teal-deep, #0b7a6c);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.quick-problem:hover .quick-problem-img {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 174, 151, 0.22);
}

@media (max-width: 640px) {
  .quick-problem-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem 0.5rem;
    justify-items: center;
  }

  .quick-problem {
    width: 100%;
    font-size: 0.72rem;
  }

  .quick-problem-img {
    width: 72px;
    height: 72px;
    border-width: 2px;
  }

  .quick-problem-more {
    font-size: 1.05rem;
  }
}

/* Care pathway — timeline */
.pathway-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(0, 174, 151, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(27, 46, 62, 0.06), transparent 50%),
    linear-gradient(180deg, #f0f7f5 0%, #ffffff 100%);
  overflow: hidden;
}

.pathway-intro {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.pathway-intro .section-title {
  background: none;
  -webkit-text-fill-color: unset;
}

.pathway-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: none;
  position: relative;
}

@media (min-width: 900px) {
  .pathway-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .pathway-track::before {
    content: "";
    position: absolute;
    top: 2.35rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-mid), var(--teal), var(--teal-mid));
    opacity: 0.7;
    z-index: 0;
  }
}

.pathway-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem 1.25rem 1.4rem;
  border: 1px solid rgba(27, 46, 62, 0.08);
  box-shadow: 0 12px 32px rgba(27, 46, 62, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pathway-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(27, 46, 62, 0.12);
}

@media (min-width: 900px) {
  .pathway-step {
    margin: 0 0.55rem;
  }
}

.pathway-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal-soft), #fff);
  border: 2px solid var(--teal-mid);
  color: var(--navy);
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px rgba(0, 174, 151, 0.08);
}

.pathway-icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.pathway-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal-deep);
  margin-bottom: 0.35rem;
}

.pathway-step h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

.pathway-sub {
  margin: 0 0 0.75rem !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: var(--teal-deep) !important;
}

.pathway-step > p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.modes-section,
.symptoms-section,
.therapies-section,
.faq-section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}

.modes-section {
  background: linear-gradient(180deg, var(--bg), #e8f4f1);
}

.mode-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 800px) {
  .mode-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mode-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  box-shadow: 0 16px 36px rgba(13, 31, 40, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(27, 46, 62, 0.1);
}

.mode-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.mode-body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.mode-body h3 {
  margin: 0 0 0.4rem;
}

.mode-body p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.mode-body .more {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--teal-deep);
}

.symptoms-section {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(0, 174, 151, 0.12), transparent 55%),
    #f4f8f7;
}

.symptom-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(13, 31, 40, 0.07);
}

.symptom-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  background: #0d1f28;
  color: #fff;
  border: 0;
  box-shadow: 0 8px 18px rgba(13, 31, 40, 0.12);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.symptom-chip:hover {
  background: #00ae97;
  color: #fff;
  transform: translateY(-2px);
}

.therapies-section {
  background:
    linear-gradient(180deg, #0d1f28 0%, #14363a 100%);
  color: #fff;
}

.therapies-section .section-label {
  color: #7ef0dc;
}

.therapies-section .section-title,
.therapies-section .section-lead {
  color: #fff;
}

.therapies-section .section-lead {
  opacity: 0.78;
}

.therapies-section .therapy-chip,
.therapies-section .therapy-chip-body,
.therapies-section .therapy-chip h3 {
  color: #0d1f28 !important;
}

.therapies-section .therapy-chip p {
  color: #4a5d67 !important;
}

.therapy-carousel {
  margin-top: 0.35rem;
}

.therapy-carousel-viewport {
  overflow: hidden;
}

.therapy-carousel-track {
  display: flex;
  gap: 0.85rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.therapy-chip {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #0d1f28;
  border: 0;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.therapy-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.therapies-section .therapy-nav {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.therapy-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.therapy-nav:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: var(--teal-soft);
}

.therapy-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.therapy-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--teal-mid);
  cursor: pointer;
  transition: width 0.25s var(--ease), background 0.25s var(--ease);
}

.therapy-dot.is-active {
  width: 1.35rem;
  background: var(--teal);
}

@media (prefers-reduced-motion: reduce) {
  .therapy-carousel-track {
    transition: none;
  }
}

.therapy-chip-icon {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #d7ebe7;
}

.therapy-chip-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapy-chip-icon.is-icon {
  background: linear-gradient(160deg, #e7f4f1 0%, #d4ebe6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 1.35rem;
}

.therapy-chip-icon.is-icon img {
  width: auto;
  height: 78%;
  max-width: 46%;
  object-fit: contain;
}

.therapy-chip-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.95rem 1.05rem 1.1rem;
  color: #0d1f28;
}

.therapy-chip h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0d1f28;
}

.therapy-chip p {
  margin: 0;
  font-size: 0.86rem;
  color: #4a5d67;
}

.faq-section {
  background: #fff;
}

.faq-section .faq-list {
  max-width: 800px;
}

/* Wide screens: two-column FAQ so the section doesn't leave half the page empty */
@media (min-width: 980px) {
  .faq-section .faq-list {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    align-items: start;
  }

  .faq-section .faq-list details {
    margin-bottom: 0;
  }
}

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

@media (min-width: 720px) {
  .pain-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.view-more-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.view-more-wrap p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.listing-hero {
  background: linear-gradient(120deg, var(--navy) 0%, #234459 100%);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 4rem) 0 3rem;
}

.listing-hero .section-label {
  color: var(--teal-mid);
}

.listing-hero .section-title,
.listing-hero .section-lead {
  color: #fff;
}

.listing-hero .section-lead {
  opacity: 0.88;
  max-width: 40rem;
}

.breadcrumb-dark {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-dark a {
  color: var(--teal-mid);
}

.search-box {
  margin-top: 1.5rem;
  max-width: 32rem;
}

.search-box input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box input:focus {
  outline: 2px solid var(--teal-mid);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.search-meta {
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
  opacity: 0.8;
}

.search-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
}

.search-empty a {
  color: var(--teal-deep);
  font-weight: 600;
}

/* ---------- Deep listing pages: Problems / Treatments / Categories index ---------- */
.index-stat-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: 34rem;
}

@media (min-width: 640px) {
  .index-stat-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.index-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  text-align: center;
}

.index-stat strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
}

.index-stat span {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* Search-intent strip — matches near-me / price / today queries */
.search-intent {
  padding: 2.25rem 0 2.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.search-intent .section-title {
  max-width: 36rem;
}

.search-intent-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .search-intent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .search-intent-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.search-intent-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem 1.1rem;
}

.search-intent-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.search-intent-card p:last-child {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
}

.filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.filter-chip:hover {
  border-color: var(--teal-mid);
  transform: translateY(-1px);
}

.filter-chip.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ---------- App-style listing pages ---------- */
.listing-shell {
  background: #fff;
  min-height: 60vh;
}

.listing-shell .listing-body,
.listing-shell .page-content {
  padding-top: 0.35rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: #fff;
}

.listing-toolbar {
  position: sticky;
  top: 4.35rem;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0 0.8rem;
}

.listing-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.listing-crumb {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.listing-crumb a {
  color: var(--teal-deep);
  text-decoration: none;
}

.listing-page-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.listing-count {
  margin: 0 0 0.15rem;
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.listing-count strong {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.listing-toolbar-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.listing-filter-btn {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.listing-filter-btn span:not(.listing-filter-dot) {
  display: none;
}

.listing-filter-btn.is-on {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.listing-filter-dot {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.05rem;
  text-align: center;
}

.listing-search {
  position: relative;
  flex: 1;
  min-width: 0;
}

.listing-search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.listing-search input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem 0 2.55rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.92rem;
  font-family: inherit;
}

.listing-search input::placeholder {
  color: #8a9aaa;
}

.listing-search input:focus {
  outline: 2px solid var(--teal-mid);
  outline-offset: 1px;
  border-color: var(--teal);
  background: #fff;
}

.listing-type-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 0.7rem;
  padding: 0.05rem 0 0.15rem;
}

.listing-type-tags::-webkit-scrollbar {
  display: none;
}

.listing-type-tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.listing-type-tag.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.listing-list {
  background: transparent;
}

.listing-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  margin-bottom: 0.55rem;
  border-bottom: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 31, 40, 0.05);
  text-decoration: none;
  color: inherit;
}

.listing-row:last-child {
  border-bottom: 0;
}

.listing-row:hover .listing-row-title {
  color: var(--teal-deep);
}

.listing-row-avatar {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--teal-soft);
}

.listing-row-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-row-avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.02em;
}

.listing-row-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.listing-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.listing-row-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.listing-row-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.listing-row-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.listing-row-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.listing-row-meta {
  font-size: 0.8rem;
  color: #6b7c8a;
  line-height: 1.4;
}

body.listing-filter-open {
  overflow: hidden;
}

.listing-filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 46, 62, 0.4);
  z-index: 90;
  display: none;
}

.listing-filter-overlay[hidden],
.listing-filter-sheet[hidden] {
  display: none !important;
}

.listing-filter-sheet {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(22rem, 88vw);
  background: #fff;
  z-index: 91;
  display: none;
  flex-direction: column;
  box-shadow: 12px 0 40px rgba(27, 46, 62, 0.12);
}

.listing-filter-sheet.is-open:not([hidden]) {
  display: flex;
}

.listing-filter-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.listing-filter-sheet-head h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
}

.listing-filter-close {
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 10px;
  background: var(--bg);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.listing-filter-sheet-body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.1rem 1.25rem;
}

.listing-filter-label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.listing-filter-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.listing-filter-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.15rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--navy);
}

.listing-filter-option input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--teal);
}

.listing-filter-sheet-foot {
  display: flex;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem 1.1rem;
  border-top: 1px solid var(--line);
}

.listing-filter-sheet-foot .btn {
  flex: 1;
  justify-content: center;
}

@media (max-width: 520px) {
  .listing-toolbar {
    top: 4.1rem;
  }

  .listing-page-title {
    font-size: 1.2rem;
  }
}

/* Rich problem cards */
.problem-card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 620px) {
  .problem-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .problem-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(13, 31, 40, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.problem-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(27, 46, 62, 0.09);
}

.problem-card .problem-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.problem-card .problem-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.problem-card:hover .problem-card-media img {
  transform: scale(1.06);
}

.problem-card .pain-zone-pill {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(27, 46, 62, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.problem-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.problem-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}

.problem-card-body p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--muted);
  flex: 1;
}

.problem-card-body .link-arrow {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-deep);
}

/* Category index cards */
.category-index-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .category-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .category-index-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-index-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.category-index-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(27, 46, 62, 0.1);
}

.category-index-card .cat-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.category-index-card .cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.category-index-card:hover .cat-media img {
  transform: scale(1.06);
}

.category-index-card .cat-count {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

.category-index-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.category-index-body p.kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.category-index-body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy);
}

.category-index-body p.lead-line {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

.category-index-body .link-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-top: 0.3rem;
}

/* Treatment groups + rich cards */
.treatment-group {
  margin-bottom: 2.5rem;
}

.treatment-group:last-child {
  margin-bottom: 0;
}

.treatment-group-heading {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.treatment-group-heading h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--navy);
}

.treatment-group-heading span {
  font-size: 0.8rem;
  color: var(--muted);
}

.treatment-index-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .treatment-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .treatment-index-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.treatment-index-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.treatment-index-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(27, 46, 62, 0.08);
}

.treatment-index-card .tc-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.treatment-index-card .tc-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.treatment-index-card:hover .tc-media > img {
  transform: scale(1.06);
}

.treatment-index-card .tc-icon {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(27, 46, 62, 0.18);
}

.treatment-index-card .tc-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-index-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.treatment-index-body h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--navy);
}

.treatment-index-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  flex: 1;
}

.tc-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tc-tag-row span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.index-note {
  background: var(--teal-soft);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--navy);
}

.index-note strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.index-note-block {
  max-width: 68ch;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line, #e5e9ea);
}

.index-note-block h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.index-note-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.section-divider-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2.5rem 0 1rem;
}

/* ---------- Coupon toast (URL auto-apply) ---------- */
.qp-coupon-toast {
  position: fixed;
  left: 50%;
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  z-index: 10060;
  transform: translateX(-50%) translateY(12px);
  max-width: min(92vw, 22rem);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 37, 51, 0.94);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 28px rgba(18, 37, 51, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.qp-coupon-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.coupon-offer-reveal {
  margin-top: 0.35rem;
  text-align: center;
}
.coupon-offer-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.coupon-offer-code {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #eef9f7 0%, #f7fbfb 100%);
  border: 1px dashed rgba(0, 174, 151, 0.45);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  user-select: all;
}
.coupon-offer-modal .btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(27, 46, 62, 0.18);
  box-shadow: none;
}

/* ---------- Consult / coupon popup + inline promo band ---------- */
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.consult-modal[hidden] {
  display: none;
}

.consult-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 34, 0.62);
  backdrop-filter: blur(2px);
}

.consult-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.6rem 1.5rem;
  box-shadow: 0 30px 60px rgba(15, 26, 34, 0.35);
  animation: consultPop 0.28s var(--ease);
}

@keyframes consultPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.consult-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.consult-modal-close:hover {
  background: var(--teal-soft);
}

.consult-modal-badge {
  display: inline-block;
  background: #fde68a;
  color: #92400e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin: 0 0 0.7rem;
}

.consult-modal-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--navy);
  max-width: 22ch;
}

.consult-modal-price {
  margin: 0 0 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.consult-modal-price .strike {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.95rem;
}

.consult-modal-price strong {
  font-size: 1.9rem;
  color: var(--teal-deep);
  font-family: var(--font-display);
}

.consult-modal-price span:last-child {
  font-size: 0.82rem;
  color: var(--muted);
}

.consult-modal-sub {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

#consult-form {
  display: grid;
  gap: 0.65rem;
}

#consult-form input,
#consult-form select,
#consult-form textarea,
#coupon-offer-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(27, 46, 62, 0.16);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

#consult-form select {
  background-image: linear-gradient(45deg, transparent 50%, #6b7c89 50%),
    linear-gradient(135deg, #6b7c89 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

#consult-form input:focus,
#consult-form select:focus,
#consult-form textarea:focus,
#coupon-offer-form input:focus {
  outline: none;
  border-color: var(--teal-mid, #00ae97);
  box-shadow: 0 0 0 3px rgba(0, 174, 151, 0.15);
}

.coupon-offer-form {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 0.35rem;
}

.coupon-offer-form .consult-field-label {
  margin: 0.35rem 0 0;
}

.coupon-offer-form .consult-field-label:first-of-type {
  margin-top: 0;
}

.coupon-offer-form .consult-form-error {
  min-height: 1.1em;
  margin: 0.15rem 0 0.25rem;
}

.coupon-offer-form .btn {
  margin-top: 0.35rem;
}

.consult-field-label {
  margin: 0.15rem 0 -0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}

.consult-detect {
  margin: -0.4rem 0 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  background: rgba(0, 174, 151, 0.1);
  color: var(--navy);
  font-size: 0.8rem;
}

.consult-problem-chip {
  margin: 0;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(27, 46, 62, 0.06);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.consult-form-error {
  margin: 0;
  font-size: 0.82rem;
  color: #b91c1c;
  display: none;
}

.consult-form-error.is-visible {
  display: block;
}

.consult-modal-success {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.9rem;
  background: var(--teal-soft);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--navy);
}

.consult-modal-success code {
  font-size: 0.78rem;
  word-break: break-all;
}

.consult-modal-disclaimer {
  margin: 0.9rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}

body.consult-modal-open {
  overflow: hidden;
}

/* Zoho Web-to-Lead (contact page) — site-styled, keeps Zoho field names */
.zoho-lead-card {
  margin: 1.5rem 0 2rem;
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #f7fbfa 0%, #eef6f4 100%);
  border: 1px solid rgba(0, 174, 151, 0.18);
}
.zoho-lead-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}
.zoho-lead-card > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.zoho-lead-thanks {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(0, 174, 151, 0.12);
  color: var(--navy);
  font-weight: 600;
}
.zoho-lead-form .zcwf_row {
  margin: 0 0 0.85rem;
}
.zoho-lead-form .zcwf_col_lab {
  margin-bottom: 0.3rem;
}
.zoho-lead-form .zcwf_col_lab label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.zoho-lead-form .zcwf_col_fld input[type="text"],
.zoho-lead-form .zcwf_col_fld input[type="tel"] {
  width: 100%;
  border: 1px solid rgba(15, 40, 50, 0.15);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
}
.zoho-lead-form .zcwf_col_fld input:focus {
  outline: 2px solid rgba(0, 174, 151, 0.35);
  border-color: var(--teal);
}
.zoho-lead-form .zcwf_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.zoho-lead-form .formsubmit.zcwf_button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font: inherit;
  font-weight: 700;
  color: #fff !important;
  background: var(--teal) !important;
  cursor: pointer;
  max-width: none;
}
.zoho-lead-form .formsubmit.zcwf_button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.zoho-lead-form .zcwf_button[type="reset"] {
  appearance: none;
  border: 1px solid rgba(15, 40, 50, 0.15);
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font: inherit;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  max-width: none;
}
.zoho-lead-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Inline "₹49 book slot" promo band, sprinkled mid-page */
.consult-promo-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(120deg, var(--navy) 0%, #234459 100%);
  color: #fff;
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
}

.consult-promo-band .cpb-text p.kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.consult-promo-band .cpb-text h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: #fff;
}

.consult-promo-band .cpb-text p.cpb-price {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
}

.consult-promo-band .cpb-text p.cpb-price .strike {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 0.3rem;
}

.consult-promo-band .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ---------- Clinics index + detail pages ---------- */
.clinic-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.clinic-index-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.clinic-index-card .cic-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.clinic-index-card .cic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-index-card .cic-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: rgba(15, 26, 34, 0.75);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.clinic-index-card .cic-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.clinic-index-card .kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.clinic-index-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy);
}

.clinic-index-card .cic-address {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.clinic-index-card .cic-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.2rem 0;
}

.clinic-index-card .cic-areas span {
  font-size: 0.72rem;
  background: var(--bg);
  color: var(--navy);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}

.clinic-index-card .cic-price {
  margin: 0.2rem 0 0.3rem;
  font-size: 0.9rem;
}

.clinic-index-card .cic-price .strike {
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 0.35rem;
}

.clinic-index-card .cic-price strong {
  color: var(--teal-deep);
}

.clinic-index-card .cic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.clinic-real-photo {
  margin: 1.5rem 0;
  max-width: 420px;
}

.clinic-real-photo img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.clinic-real-photo figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.loc-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.1rem 0 1.5rem;
}

@media (min-width: 800px) {
  .loc-problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.loc-problem-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0d1f28;
  text-decoration: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 12px 28px rgba(13, 31, 40, 0.1);
}

.loc-problem-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.loc-problem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 28, 0.05) 30%, rgba(8, 22, 28, 0.88) 100%);
}

.loc-problem-card span {
  position: absolute;
  z-index: 1;
  left: 0.75rem;
  right: 0.7rem;
  bottom: 0.7rem;
}

.loc-problem-card strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.loc-problem-card small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.loc-problem-path-label {
  margin: 0.25rem 0 0.75rem !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f6e62 !important;
}

.clinic-problem-group {
  margin: 1rem 0 1.4rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 18px;
  background: #f3f8f7;
  box-shadow: 0 8px 20px rgba(13, 31, 40, 0.04);
}

.clinic-problem-group h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--navy);
}

.clinic-home-band {
  display: grid;
  gap: 0;
  margin: 0 0 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  background: #0d1f28;
  color: #fff;
  box-shadow: 0 22px 48px rgba(13, 31, 40, 0.16);
}

@media (min-width: 800px) {
  .clinic-home-band {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.clinic-home-band img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.clinic-home-band-copy {
  padding: 1.6rem 1.5rem 1.7rem;
}

.clinic-home-band-copy .kicker {
  margin: 0 0 0.4rem;
  color: #7ef0dc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinic-home-band-copy h2 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.55rem;
}

.clinic-home-band-copy p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.side-card-book.clinic-book-card {
  padding: 1.25rem 1.2rem 1.3rem;
}

.side-card-book .clinic-side-offer-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.side-card-book .clinic-offer-ends,
.side-card-book .clinic-side-slots,
.side-card-book .clinic-side-price {
  color: #fff !important;
}

.side-card-book .clinic-side-price strong,
.side-card-book .clinic-side-slots strong {
  color: #7ef0dc;
}

.clinic-map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 1rem 0;
}

.clinic-map-embed iframe {
  display: block;
}

/* ---------- Locations index + detail pages ---------- */
.loc-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin: 1rem 0 2rem;
}

.loc-index-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.loc-index-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
}

.loc-index-card .kicker {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.loc-index-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.loc-index-card p {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.loc-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--navy);
}

.loc-badge-clinic {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.loc-clinic-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  margin: 1rem 0;
}

.loc-clinic-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--navy);
}

.loc-clinic-card p {
  margin: 0 0 0.5rem;
}

.treatment-used-grid {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 640px) {
  .treatment-used-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.treatment-used-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(13, 31, 40, 0.08);
  transition: transform 0.25s var(--ease);
}

.treatment-used-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.treatment-used-card.is-icon img {
  object-fit: contain;
  background: linear-gradient(160deg, #e7f4f1 0%, #d4ebe6 100%);
  padding: 0.85rem 1.1rem;
}

.treatment-used-card div {
  padding: 0.8rem 0.9rem 0.95rem;
}

.treatment-used-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
}

.treatment-used-card strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.treatment-used-card span {
  font-size: 0.82rem;
  color: var(--muted);
}

.therapy-chip {
  text-decoration: none;
  color: #0d1f28;
}

.therapy-chip .more {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-deep);
}

/* Deep content: exercises, prevention, timeline, why-choose */
.exercise-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 700px) {
  .exercise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.exercise-card {
  background: #fff;
  border: 0;
  border-radius: 18px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 14px 32px rgba(13, 31, 40, 0.07);
}

.exercise-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--navy);
}

.exercise-card dl {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.exercise-card dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 0.4rem;
}

.exercise-card dd {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.prevention-grid {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 700px) {
  .prevention-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prevention-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: var(--teal-soft);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.prevention-item .tick {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.prevention-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--navy) !important;
}

.timeline-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-phase {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--teal-deep);
}

.timeline-item p {
  margin: 0;
  font-size: 0.9rem;
}

.why-us-grid {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 700px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Home page guide is full width, so let the list breathe in 3 columns */
@media (min-width: 1000px) {
  #home-physio-guide .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-us-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  font-size: 0.92rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 31, 40, 0.07);
  color: var(--navy);
}

.why-us-item strong {
  display: block;
  font-size: 1.02rem;
  color: #0d1f28;
}

.why-us-item span,
.why-us-item p {
  margin: 0;
  color: #4a5d67;
  line-height: 1.5;
}

.why-us-item::before {
  content: "";
  width: 2.1rem;
  height: 0.28rem;
  border-radius: 999px;
  background: #00ae97;
  flex-shrink: 0;
}

.local-keywords-line {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.approach-steps {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
  counter-reset: astep;
}

.approach-step {
  position: relative;
  padding-left: 2.75rem;
}

.approach-step::before {
  counter-increment: astep;
  content: counter(astep);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.approach-step h4 {
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
}

.approach-step p {
  margin: 0;
  font-size: 0.88rem;
}


/* Floating WhatsApp CTA */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.25rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem 0.7rem 0.75rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.wa-float-icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
}

.wa-float-icon svg {
  display: block;
}

.wa-float-label {
  padding-right: 0.15rem;
}

body.has-sticky-offer .wa-float {
  bottom: 5.75rem;
}


/* ——— Product-detail hero (problem & category pages) ——— */
.pd-hero {
  padding: 1.1rem 0 clamp(1.75rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0, 174, 151, 0.1), transparent 55%),
    linear-gradient(180deg, #f0f7f5 0%, #ffffff 100%);
}

.pd-hero .breadcrumb {
  margin-bottom: 1rem;
}

.pd-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: start;
}

@media (min-width: 900px) {
  .pd-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    align-items: center;
  }
}

.pd-media {
  position: relative;
}

.pd-media img {
  display: block;
  width: 100%;
  max-height: min(420px, 52vw);
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(27, 46, 62, 0.16);
}

.pd-buybox .pd-buybox-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
}

.pd-buybox .pd-buybox-price strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1;
}

.side-card-book.pd-buybox .pd-buybox-price strong {
  color: #7ef0dc;
}

.side-card-book.pd-buybox .pd-buybox-price s,
.side-card-book.pd-buybox .pd-buybox-price span {
  color: rgba(255, 255, 255, 0.55);
}

.pd-buybox .pd-buybox-price s {
  color: var(--muted);
  font-size: 0.9rem;
}

.pd-buybox .pd-buybox-price span {
  flex-basis: 100%;
  font-size: 0.75rem;
  color: var(--muted);
}

.pd-buybox .btn {
  cursor: pointer;
}

.pd-media-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-deep, #0b7a6c);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(27, 46, 62, 0.14);
}

.pd-info h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  line-height: 1.15;
  color: var(--navy);
}

.pd-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.pd-stars {
  color: #f5a623;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.pd-rating strong {
  color: var(--navy);
}

.pd-lead {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.pd-lead strong {
  color: var(--navy);
}

.pd-points {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.pd-points li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.pd-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep, #0b7a6c);
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.pd-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 174, 151, 0.25);
  border-radius: 14px;
  background: rgba(0, 174, 151, 0.06);
}

.pd-price > strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--navy);
}

.pd-price s {
  color: var(--muted);
  font-size: 0.95rem;
}

.pd-price-off {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pd-price-note {
  flex-basis: 100%;
  font-size: 0.76rem;
  color: var(--muted);
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.pd-actions .btn {
  cursor: pointer;
}

.pd-tags {
  margin-top: 0.25rem;
}

/* Sticky in-page section nav — Cult-style underline tabs */
.pd-subnav {
  position: sticky;
  top: 61px;
  z-index: 60;
  background: #0d1f28;
  backdrop-filter: blur(14px);
  border-bottom: 0;
  box-shadow: 0 10px 28px rgba(13, 31, 40, 0.16);
}

.pd-subnav-inner {
  position: relative;
}

.pd-subnav-inner::before,
.pd-subnav-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.6rem;
  z-index: 2;
  pointer-events: none;
}

.pd-subnav-inner::before {
  left: 0;
  background: linear-gradient(90deg, #0d1f28 15%, transparent);
}

.pd-subnav-inner::after {
  right: 0;
  background: linear-gradient(270deg, #0d1f28 15%, transparent);
}

.pd-subnav-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding: 0 1rem;
  scroll-padding-inline: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.pd-subnav-track::-webkit-scrollbar {
  display: none;
}

.pd-subnav-track a {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.pd-subnav-track a::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0;
  height: 2.5px;
  border-radius: 999px 999px 0 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s var(--ease);
}

.pd-subnav-track a:hover {
  color: #fff;
}

.pd-subnav-track a.is-active {
  color: #fff;
}

.pd-subnav-track a.is-active::after {
  transform: scaleX(1);
}

.pd-subnav-track a[href="#book-session"] {
  color: #7ef0dc;
}

@media (min-width: 900px) {
  .pd-subnav-inner::before,
  .pd-subnav-inner::after {
    display: none;
  }

  .pd-subnav-track {
    justify-content: flex-start;
    gap: 0.15rem;
    padding-left: 0;
    padding-right: 0;
  }

  .pd-subnav-track a {
    min-height: 50px;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 699px) {
  .pd-subnav {
    top: 56px;
  }

  .pd-subnav-track {
    padding: 0 0.75rem;
    scroll-padding-inline: 0.75rem;
  }

  .pd-subnav-track a {
    min-height: 44px;
    padding: 0.65rem 0.7rem;
    font-size: 0.78rem;
  }

  .pd-subnav-track a::after {
    left: 0.4rem;
    right: 0.4rem;
    height: 2px;
  }

  /* Sticky Book Now bar already covers booking — keep tab row lighter */
  .pd-subnav-track a[href="#book-session"] {
    display: none;
  }
}

/* Anchor targets clear the sticky header + subnav */
h2[id],
section[id],
div[id] {
  scroll-margin-top: 7.5rem;
}

/* ——— Mobile fixed Book Now bar ——— */
.mobile-book-bar {
  display: none;
}

@media (max-width: 979px) {
  .mobile-book-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 75;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(27, 46, 62, 0.14);
  }

  .mobile-book-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
  }

  .mobile-book-info strong {
    font-size: 1.05rem;
    color: var(--navy);
  }

  .mobile-book-info strong s {
    margin-left: 0.3rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
  }

  .mobile-book-info span {
    font-size: 0.7rem;
    color: var(--muted);
    white-space: nowrap;
  }

  .mobile-book-btn {
    flex-shrink: 0;
    min-height: 48px;
    padding: 0.7rem 1.7rem;
    border: 0;
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 174, 151, 0.35);
  }

  .mobile-book-btn:active {
    transform: translateY(1px);
  }

  body:not(.has-sticky-offer):not(.has-metro-sticky) {
    padding-bottom: calc(4.4rem + env(safe-area-inset-bottom));
  }

  body.has-sticky-offer .mobile-book-bar,
  body.has-metro-sticky .mobile-book-bar {
    display: none;
  }

  body:not(.has-sticky-offer):not(.has-metro-sticky) .wa-float {
    bottom: calc(4.9rem + env(safe-area-inset-bottom));
  }
}


/* ——— Booking success / schedule confirmation ——— */
.book-success {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 174, 151, 0.14), transparent 55%),
    linear-gradient(180deg, #f0f7f5 0%, #ffffff 55%);
  min-height: 70vh;
}

.book-success-inner {
  max-width: 40rem;
  text-align: center;
}

.book-success-badge {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-size: 1.85rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 174, 151, 0.35);
  animation: bookSuccessPop 0.55s var(--ease) both;
}

@keyframes bookSuccessPop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.book-success h1 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--navy);
  line-height: 1.15;
}

.book-success-lead {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.book-success-card,
.book-success-steps {
  text-align: left;
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(27, 46, 62, 0.06);
}

.book-success-card h2,
.book-success-steps h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.book-success-dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.book-success-dl > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.9rem;
}

.book-success-dl dt {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.book-success-dl dd {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  word-break: break-word;
}

.book-success-dl code {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-deep, #0b7a6c);
}

.book-success-steps ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink);
  line-height: 1.55;
  font-size: 0.92rem;
}

.book-success-steps li + li {
  margin-top: 0.55rem;
}

.book-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.35rem 0 1rem;
}

.book-success-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 560px) {
  .book-success-dl > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

.booking-success-page .mobile-book-bar {
  display: none !important;
}

.booking-success-page {
  padding-bottom: 0 !important;
}


/* ——— Pain-check engage bar (replaces pricing sticky until intake done) ——— */
.mobile-engage-bar {
  display: none;
}

@media (max-width: 979px) {
  .mobile-engage-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 76;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(27, 46, 62, 0.97);
    color: #fff;
    border-top: 1px solid rgba(0, 174, 151, 0.35);
    box-shadow: 0 -8px 26px rgba(27, 46, 62, 0.28);
  }

  .mobile-engage-bar[hidden] {
    display: none !important;
  }

  .mobile-engage-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
  }

  .mobile-engage-info strong {
    font-size: 0.98rem;
    color: #fff;
  }

  .mobile-engage-info span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
  }

  .mobile-engage-btn {
    flex-shrink: 0;
    min-height: 48px;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 174, 151, 0.35);
  }

  body.has-pain-engage {
    padding-bottom: calc(4.4rem + env(safe-area-inset-bottom));
  }

  body.has-pain-engage .mobile-book-bar {
    display: none !important;
  }

  body.has-pain-engage .wa-float {
    bottom: calc(4.9rem + env(safe-area-inset-bottom));
  }
}

/* ——— Pain check offer + intake wizard ——— */
.pain-offer {
  padding: clamp(2.5rem, 6vw, 4.25rem) 0 1.5rem;
  background:
    radial-gradient(ellipse 70% 70% at 10% 0%, rgba(0, 174, 151, 0.16), transparent 55%),
    linear-gradient(180deg, #eef8f5 0%, #ffffff 70%);
}

.pain-offer-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pain-offer-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
}

.pain-offer h1 {
  margin: 0.4rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.12;
  color: var(--navy);
}

.pain-offer-lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.pain-offer-points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.pain-offer-points li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.pain-offer-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.pain-offer-card {
  padding: 1.25rem 1.3rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 174, 151, 0.22);
  box-shadow: 0 16px 36px rgba(27, 46, 62, 0.1);
}

.pain-offer-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.pain-offer-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pain-disclaimer {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #fff8f0;
  border: 1px solid rgba(180, 120, 40, 0.25);
  color: #5c4a2e;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}

.pain-disclaimer strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #4a3a22;
}

.intake-section {
  padding: 0.5rem 0 clamp(3rem, 6vw, 4.5rem);
  background: #fff;
}

.intake-section-head {
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.intake-shell {
  max-width: 40rem;
  margin: 0 auto;
}

.intake-panel {
  position: relative;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 46, 62, 0.07);
  min-height: 16rem;
}

.intake-panel.is-loading {
  pointer-events: none;
}

.intake-panel h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--navy);
  line-height: 1.2;
}

.intake-sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.intake-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.intake-chips-wrap {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 0.15rem;
}

.intake-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: #f7fbfa;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.intake-chip.is-active,
.intake-chip:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.intake-label {
  display: block;
  margin: 0.35rem 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-soft);
}

.intake-input {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: #fff;
  resize: vertical;
}

.intake-input:focus {
  outline: 2px solid rgba(0, 174, 151, 0.35);
  border-color: var(--teal);
}

.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.intake-next {
  margin-top: 0.35rem;
}

.intake-progress {
  margin-bottom: 0.85rem;
}

.intake-progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.intake-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(27, 46, 62, 0.08);
  overflow: hidden;
}

.intake-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  border-radius: inherit;
  transition: width 0.35s var(--ease);
}

.intake-q-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.intake-q-body {
  margin-top: 0.85rem;
}

.intake-almost {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.intake-self-test {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #f3faf8;
  border: 1px solid rgba(0, 174, 151, 0.22);
}

.intake-self-label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.intake-self-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.55;
}

.intake-self-steps li {
  margin-bottom: 0.4rem;
}

.intake-self-steps li:last-child {
  margin-bottom: 0;
}

.intake-self-tip {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: #fff8e8;
  border: 1px solid rgba(196, 140, 40, 0.35);
  color: #6b4e12;
  font-size: 0.9rem;
  line-height: 1.45;
}

.intake-self-ask {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.intake-voice-rt {
  align-items: center;
}

.intake-mic-meter {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    var(--teal) 0 calc(30% + var(--mic-level, 0) * 40%),
    rgba(0, 174, 151, 0.2) calc(35% + var(--mic-level, 0) * 45%),
    #e8f6f3 70%
  );
  border: 1px solid rgba(0, 174, 151, 0.35);
  flex-shrink: 0;
}

.intake-mic-meter.is-hot {
  border-color: var(--teal);
}

.intake-rt-meta {
  flex: 1;
  min-width: 0;
}

.intake-rt-transcript {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 1.1em;
}

.intake-rt-stop {
  flex-shrink: 0;
  padding: 0.45rem 0.75rem !important;
  min-height: auto !important;
  font-size: 0.78rem !important;
  border-radius: 999px !important;
}

.intake-voice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  background: #f3faf8;
  border: 1px solid rgba(0, 174, 151, 0.2);
}

.intake-voice-toggle {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.intake-voice-toggle.is-on {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.intake-voice-btns {
  display: inline-flex;
  gap: 0.4rem;
  margin-left: auto;
}

.intake-voice-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.intake-voice-icon:disabled {
  opacity: 0.5;
  cursor: wait;
}

.intake-voice-icon.is-recording {
  border-color: #c0392b;
  background: #fdecea;
  animation: intake-pulse 1.1s ease infinite;
}

.intake-voice-icon.hidden {
  display: none;
}

.intake-ico-speak,
.intake-ico-mic {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--navy);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.intake-ico-speak {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 10v4h4l5 5V5L7 10H3zm13.5 2c0-1.8-1-3.3-2.5-4v8c1.5-.7 2.5-2.2 2.5-4zM14 3.2v2.1c2.9.9 5 3.5 5 6.7s-2.1 5.8-5 6.7v2.1c4-.9 7-4.5 7-8.8s-3-7.9-7-8.8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 10v4h4l5 5V5L7 10H3zm13.5 2c0-1.8-1-3.3-2.5-4v8c1.5-.7 2.5-2.2 2.5-4zM14 3.2v2.1c2.9.9 5 3.5 5 6.7s-2.1 5.8-5 6.7v2.1c4-.9 7-4.5 7-8.8s-3-7.9-7-8.8z'/%3E%3C/svg%3E");
}

.intake-ico-mic {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 14a3 3 0 0 0 3-3V5a3 3 0 1 0-6 0v6a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.9V21h2v-3.1A7 7 0 0 0 19 11h-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 14a3 3 0 0 0 3-3V5a3 3 0 1 0-6 0v6a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.9V21h2v-3.1A7 7 0 0 0 19 11h-2z'/%3E%3C/svg%3E");
}

.intake-voice-icon.is-recording .intake-ico-mic {
  background: #c0392b;
}

@keyframes intake-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(192, 57, 43, 0);
  }
}

.intake-voice-hint {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.intake-spoken {
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.intake-spoken p {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  color: var(--navy);
}

.intake-spoken-warn {
  color: #8a5a00 !important;
}

.intake-spoken-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.intake-option.is-suggested,
.intake-option.is-selected {
  border-color: var(--teal);
  background: var(--teal-soft);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.intake-q-options.is-clearing {
  opacity: 0.45;
  pointer-events: none;
}

.intake-more {
  margin: 1rem 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.65rem 0.85rem;
  background: #fafcfb;
}

.intake-more summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal-deep);
}

.intake-q-options {
  display: grid;
  gap: 0.55rem;
}

.intake-option {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #f7fbfa;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.intake-option:hover {
  border-color: var(--teal);
  background: #fff;
  transform: translateY(-1px);
}

.intake-option-key {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.intake-check {
  align-items: center;
}

.intake-check input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--teal);
}

.intake-scale {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 0.3rem;
}

.intake-scale-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #f7fbfa;
  border-radius: 10px;
  min-height: 40px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-body);
}

.intake-scale-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.intake-scale-hint,
.intake-why,
.intake-almost {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.intake-almost {
  color: var(--teal-deep);
  font-weight: 600;
}

.intake-error {
  margin: 0 0 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: #fdeeee;
  color: #8a2f2f;
  font-size: 0.88rem;
}

.intake-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: inherit;
  text-align: center;
}

.intake-spinner {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid rgba(0, 174, 151, 0.2);
  border-top-color: var(--teal);
  animation: intakeSpin 0.8s linear infinite;
}

@keyframes intakeSpin {
  to {
    transform: rotate(360deg);
  }
}

.intake-ai-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.intake-disclaimer-box {
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: #fff8f0;
  border: 1px solid rgba(180, 120, 40, 0.25);
  color: #5c4a2e;
  font-size: 0.84rem;
  line-height: 1.45;
}

.intake-disclaimer-box strong {
  display: block;
  margin-bottom: 0.25rem;
}

.intake-summary {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: var(--teal-soft);
}

.intake-summary h3,
.intake-report h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--navy);
}

.intake-summary p {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}

.intake-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.intake-list-urgent {
  color: #7a3b2e;
}

.intake-md {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1rem;
}

.intake-md h3,
.intake-md h4 {
  margin: 0.85rem 0 0.35rem;
  color: var(--navy);
}

.intake-actions-report {
  justify-content: flex-start;
}

.pain-check-page .mobile-book-bar,
.pain-check-page .mobile-engage-bar,
.pain-check-page .wa-float,
.pain-check-page .site-footer,
.pain-check-page .site-header {
  display: none !important;
}

.pain-check-page {
  padding-bottom: 0 !important;
  min-height: 100vh;
  background: linear-gradient(180deg, #f3faf8 0%, #ffffff 45%);
}

.pc-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.pc-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.pc-brand img {
  width: 32px;
  height: 32px;
}

.pc-top-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.pc-mute-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.pc-mute-btn[aria-pressed="true"] {
  background: #fff4f0;
  border-color: #f0b8a8;
  color: #9a3412;
}

.pc-mute-btn:hover {
  border-color: var(--teal, #00AE97);
}

.intake-mode-cards {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.intake-mode-card {
  text-align: left;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.05rem;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.intake-mode-card.is-active,
.intake-mode-card:hover {
  border-color: var(--teal, #00AE97);
  box-shadow: 0 0 0 3px rgba(0, 174, 151, 0.12);
}

.intake-mode-card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.intake-mode-card span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.intake-welcome {
  background: linear-gradient(135deg, #e8f7f4 0%, #f7fbfa 100%);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 174, 151, 0.18);
}

.intake-welcome p {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy);
}

.intake-welcome p:last-child {
  margin-bottom: 0;
}

.pc-exit:hover {
  color: var(--navy);
}

.pc-main {
  width: min(100% - 1.5rem, 560px);
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
}

.pc-app {
  display: block;
}

.pc-step {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pc-step-bar {
  margin-bottom: 0.25rem;
}

.pc-step-bar-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.pc-step-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(27, 46, 62, 0.08);
  overflow: hidden;
}

.pc-step-track span {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
  transition: width 0.3s var(--ease);
}

.pc-step-body {
  position: relative;
  padding: 0.25rem 0 0;
}

.pc-step-body.is-loading {
  pointer-events: none;
  min-height: 14rem;
}

.pc-step-body h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4.5vw, 1.95rem);
  line-height: 1.2;
  color: var(--navy);
}

/* Next/Back — sit under the step content, not pushed off-screen */
.pc-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
  padding: 0.35rem 0 0.5rem;
}

.pain-check-page .pc-actions .btn {
  flex: 1;
  min-height: 3.35rem;
  padding: 1rem 1.15rem;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 14px;
  transform: none;
}

.pain-check-page .pc-actions .btn:hover {
  transform: none;
}

.pain-check-page .pc-actions .btn-primary,
.pain-check-page .pc-actions .pc-next {
  flex: 1.45;
  min-width: 0;
}

.pain-check-page .pc-actions .btn-outline {
  flex: 1;
  min-width: 0;
}

.pc-req {
  color: #c0392b;
}

.intake-chip-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

.pc-foot-note {
  margin: 1.25rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.pain-check-page .intake-chips-wrap {
  max-height: min(42vh, 280px);
}

.pain-check-page .intake-loading {
  border-radius: 16px;
}

@media (max-width: 699px) {
  .pain-check-page .pc-actions .btn {
    padding: 1.05rem 1rem;
    font-size: 1.08rem;
    min-height: 3.5rem;
  }
}


/* ——— Mobile polish (aggressive compact) ——— */
@media (max-width: 699px) {
  html {
    font-size: 15px;
  }

  body {
    line-height: 1.5;
  }

  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .site-header .nav {
    gap: 0.5rem;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .nav-toggle {
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
  }

  .section-label {
    font-size: 0.68rem;
    margin-bottom: 0.3rem;
  }

  .section-title {
    font-size: 1.28rem !important;
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }

  .section-lead {
    font-size: 0.82rem !important;
    margin-bottom: 0.85rem;
    line-height: 1.45;
  }

  /* Hero banner — much shorter */
  .banner-hero,
  .banner-track {
    min-height: 340px !important;
  }

  .banner-copy {
    padding: 1.35rem 0 4rem !important;
  }

  .banner-copy h1,
  .banner-copy h2 {
    font-size: 1.4rem !important;
    line-height: 1.15;
    margin-bottom: 0.4rem;
  }

  .banner-copy p {
    font-size: 0.82rem !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  .banner-actions .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
  }

  .banner-controls {
    bottom: 0.85rem;
    gap: 0.5rem;
  }

  .banner-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .modes-section,
  .symptoms-section,
  .therapies-section,
  .faq-section,
  .problems-section,
  .categories-section,
  .pain-section,
  .clinics,
  .reviews,
  .promo-strip,
  .service-area {
    padding: 1.75rem 0 !important;
  }

  /* Horizontal compact cards — image left, text right.
     Homepage .cat-card is excluded: that layout clips category copy. */
  .mode-card,
  .problem-card,
  .treatment-index-card,
  .related-card,
  .category-index-card {
    display: grid !important;
    grid-template-columns: 76px 1fr;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    min-height: 0;
  }

  .mode-media,
  .problem-card .problem-card-media,
  .treatment-index-card .tc-media,
  .category-index-card .cat-media {
    aspect-ratio: auto !important;
    height: 100%;
    min-height: 72px;
    max-height: 86px;
  }

  .related-card img {
    aspect-ratio: auto !important;
    width: 76px;
    height: 100%;
    min-height: 72px;
    max-height: 86px;
    object-fit: cover;
  }

  .mode-body,
  .problem-card-body,
  .treatment-index-body,
  .related-card div {
    padding: 0.45rem 0.55rem 0.5rem !important;
    gap: 0.1rem;
    justify-content: center;
  }

  .mode-body h3,
  .problem-card-body h3,
  .treatment-index-body h3,
  .related-card h3 {
    font-size: 0.8rem !important;
    margin: 0 0 0.1rem !important;
    line-height: 1.2;
  }

  .mode-body p,
  .problem-card-body p,
  .treatment-index-body p,
  .related-card p {
    font-size: 0.68rem !important;
    line-height: 1.3;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mode-body .more,
  .problem-card-body .link-arrow {
    font-size: 0.66rem !important;
    margin-top: 0.15rem;
  }

  .categories-section .cat-card {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden;
    border-radius: 14px;
  }

  .categories-section .cat-card-media {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 7 !important;
  }

  .categories-section .cat-card-body {
    padding: 0.75rem 0.85rem 0.9rem !important;
    overflow: visible !important;
  }

  .categories-section .cat-card-body h3,
  .categories-section .cat-card-body p {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: unset !important;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .categories-section .cat-card-body h3 {
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
    margin: 0 0 0.3rem !important;
  }

  .categories-section .cat-card-body p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    margin: 0 0 0.45rem !important;
  }

  .categories-section .cat-card-body .more {
    display: inline !important;
    font-size: 0.78rem !important;
  }

  .cat-grid,
  .mode-grid,
  .problem-card-grid,
  .treatment-index-grid,
  .related-grid {
    gap: 0.45rem !important;
  }

  .treatment-index-card .tc-icon,
  .problem-card .pain-zone-pill {
    display: none;
  }

  .tc-tag-row {
    display: none;
  }

  /* Therapy chips stay photo-led so titles remain visible */
  .therapy-carousel-track {
    gap: 0.65rem;
  }

  .therapy-chip {
    display: flex !important;
    flex-direction: column;
    padding: 0 !important;
    border-radius: 16px;
    color: #0d1f28 !important;
  }

  .therapy-chip-icon {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    margin: 0 !important;
    border-radius: 0;
  }

  .therapy-chip h3 {
    margin: 0 !important;
    font-size: 1rem !important;
    color: #0d1f28 !important;
  }

  .therapy-chip p {
    font-size: 0.82rem !important;
    line-height: 1.4;
    color: #4a5d67 !important;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .therapy-chip .more {
    margin-top: 0.15rem !important;
    font-size: 0.78rem !important;
  }

  .therapy-carousel-controls {
    margin-top: 0.65rem;
    gap: 0.5rem;
  }

  .therapy-nav {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1rem;
  }

  .therapy-dot {
    width: 0.4rem;
    height: 0.4rem;
  }

  .therapy-dot.is-active {
    width: 1rem;
  }

  /* Pain zones — flatter */
  .pain-grid {
    gap: 0.5rem !important;
  }

  .pain-card {
    aspect-ratio: 1 / 0.78 !important;
    border-radius: 10px;
  }

  .pain-card span {
    font-size: 0.72rem !important;
    bottom: 0.45rem;
    left: 0.45rem;
  }

  .pain-card small {
    display: none;
  }

  .pathway-step {
    padding: 0.7rem 0.75rem !important;
  }

  .pathway-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .pathway-step h3 {
    font-size: 0.86rem !important;
  }

  .pathway-step > p:last-child {
    font-size: 0.72rem !important;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .symptom-cloud {
    gap: 0.35rem;
  }

  .symptom-chip {
    min-height: 40px;
    padding: 0.45rem 0.75rem !important;
    font-size: 0.78rem !important;
  }

  .problem-row {
    gap: 0.55rem;
    padding: 0.5rem !important;
    border-radius: 10px;
  }

  .problem-row img {
    width: 56px !important;
    height: 44px !important;
    border-radius: 8px;
  }

  .problem-row h3 {
    font-size: 0.84rem !important;
  }

  .problem-row p {
    font-size: 0.7rem !important;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Inner page heroes */
  .page-hero {
    min-height: 0 !important;
  }

  .page-hero-inner {
    width: min(100% - 1.25rem, var(--max));
    padding: 1.15rem 0 1.1rem !important;
  }

  .page-hero h1 {
    font-size: 1.25rem !important;
    margin-bottom: 0.35rem;
  }

  .page-hero .lead {
    font-size: 0.8rem !important;
    line-height: 1.4;
    margin-bottom: 0.65rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page-hero .btn {
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
  }

  .page-hero .tag-row a {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
  }

  .listing-hero {
    padding: 1.35rem 0 1rem !important;
  }

  .page-toc {
    padding: 0.65rem 0.75rem !important;
    margin-bottom: 0.85rem;
    border-radius: 12px;
  }

  .page-toc p {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
  }

  .page-toc ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 0.55rem;
    padding-left: 1rem;
    columns: unset !important;
  }

  .page-toc a {
    font-size: 0.72rem !important;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .side-card {
    padding: 0.8rem !important;
    border-radius: 12px;
  }

  .side-card h3 {
    font-size: 0.92rem;
  }

  .side-card p {
    font-size: 0.78rem;
  }

  .prose h2 {
    font-size: 1.05rem !important;
    margin-top: 1.25rem;
  }

  .prose p,
  .prose li {
    font-size: 0.88rem;
  }

  .content-grid {
    gap: 1rem;
  }

  .page-content {
    padding: 1.35rem 0 2rem !important;
  }

  .clinic-card,
  .review-card {
    padding: 0.85rem !important;
    border-radius: 12px;
  }

  .btn {
    padding: 0.6rem 0.95rem;
    font-size: 0.84rem;
  }

  .btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.76rem;
  }

  .wa-float {
    right: 0.75rem;
    bottom: 0.85rem;
    padding: 0.65rem;
    border-radius: 50%;
  }

  .wa-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  body.has-sticky-offer .wa-float {
    bottom: 4.75rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .exercise-card,
  .prevention-item,
  .why-us-item {
    font-size: 0.82rem;
  }

  .inline-cta {
    padding: 0.85rem !important;
  }

  .cta-band {
    padding: 1.75rem 0 !important;
  }

  .cta-band h2 {
    font-size: 1.2rem !important;
  }
}

/* ---------- Blog ---------- */
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 46, 62, 0.08);
}

.blog-card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blog-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.35;
}

.blog-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-meta {
  font-size: 0.78rem !important;
  color: var(--teal, #00ae97) !important;
  font-weight: 600;
}

.blog-loc {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy, #1b2e3e);
}

.blog-byline {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.blog-inline-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 174, 151, 0.1), rgba(27, 46, 62, 0.06));
  border: 1px solid var(--line);
}

.blog-inline-cta h2 {
  margin-top: 0;
}

.blog-inline-cta .btn {
  margin: 0.35rem 0.35rem 0 0;
}

.blog-article .faq-list {
  margin-top: 0.75rem;
}

/* ---------- Clinic first-session offer (sticky + modal + pay CTA) ---------- */
body.has-sticky-offer {
  padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
}

body.clinic-modal-open {
  overflow: hidden;
}

/* Shared horizontal countdown */
.clinic-timer {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 0.3rem;
}

.clinic-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  min-width: 2.4rem;
  padding: 0.25rem 0.4rem;
  border-radius: 8px;
  background: rgba(27, 46, 62, 0.06);
}

.clinic-timer-unit span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 550;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
}

.clinic-timer-unit small {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(27, 46, 62, 0.45);
}

.clinic-timer-sep {
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.sticky-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b6b;
  box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.55);
  animation: clinicPulseDot 1.4s ease-out infinite;
  flex-shrink: 0;
}

@keyframes clinicPulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 107, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

/* Bottom sticky bar */
.clinic-sticky-offer {
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(18, 37, 51, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 174, 151, 0.35);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.28);
  color: #fff;
  transform: translateY(110%);
  transition: transform 0.4s ease;
}

.clinic-sticky-offer.is-visible {
  transform: none;
}

body.clinic-modal-open .clinic-sticky-offer {
  transform: translateY(110%);
}

.clinic-sticky-offer.is-expired .clinic-sticky-cta {
  opacity: 0.7;
  pointer-events: none;
}

.clinic-sticky-inner {
  width: min(100%, 1040px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.clinic-sticky-copy {
  min-width: 0;
  flex: 1;
}

.clinic-sticky-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.clinic-sticky-offer .clinic-timer-unit {
  background: rgba(255, 255, 255, 0.08);
}

.clinic-sticky-offer .clinic-timer-unit span {
  color: #fff;
}

.clinic-sticky-offer .clinic-timer-unit small {
  color: rgba(255, 255, 255, 0.45);
}

.clinic-sticky-offer .clinic-timer-sep {
  color: var(--teal-mid);
}

.clinic-sticky-slots {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.clinic-sticky-slots strong {
  color: #ffb4a8;
}

.clinic-sticky-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

.clinic-sticky-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.82rem;
}

.clinic-sticky-price s {
  color: rgba(255, 255, 255, 0.4);
}

.clinic-sticky-price strong {
  color: var(--teal-mid);
  font-size: 1.05rem;
}

.clinic-sticky-cta {
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0, 174, 151, 0.4);
}

/* Modal */
.clinic-modal {
  position: fixed !important;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.clinic-modal[hidden] {
  display: none !important;
}

.clinic-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 37, 51, 0.62);
  backdrop-filter: blur(4px);
}

.clinic-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(92svh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(18, 37, 51, 0.28);
}

.clinic-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted, #6b7c89);
  cursor: pointer;
  z-index: 2;
}

.clinic-booking-form {
  padding: 1.6rem 1.4rem 1.4rem;
}

.clinic-booking-form h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  padding-right: 2rem;
}

.clinic-modal-offer {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  color: var(--muted, #6b7c89);
}

.clinic-modal-offer strong {
  color: var(--teal-deep);
}

.clinic-modal-offer s {
  color: #9aabb8;
  margin-left: 0.25rem;
}

.clinic-form-grid {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 480px) {
  .clinic-form-two {
    grid-template-columns: 1fr 1fr;
  }
}

.clinic-booking-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.clinic-booking-form input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink, #1b2e3e);
  background: #f7fafb;
}

.clinic-booking-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 174, 151, 0.16);
  background: #fff;
}

.clinic-form-error {
  min-height: 1.1em;
  margin: 0 0 0.65rem;
  color: #c0392b;
  font-size: 0.86rem;
}

.clinic-form-success {
  margin-top: 0.85rem;
  padding: 0.85rem;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 0.9rem;
}

.clinic-form-success[hidden] {
  display: none !important;
}

.clinic-pay-note {
  margin: 0.7rem 0 0;
  font-size: 0.75rem;
  color: var(--muted, #6b7c89);
  text-align: center;
}

.clinic-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.clinic-rzp-slot {
  display: block;
  width: 100%;
  margin: 0.15rem 0 0;
}

.clinic-offer-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: min(100%, 220px);
}

/* Sidebar offer card */
.clinic-side-offer-box {
  margin: 0.85rem 0 1rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #f4fbfa 0%, #fff 55%);
}

.clinic-offer-ends {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.55rem !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep) !important;
}

.clinic-side-timer {
  margin-bottom: 0.65rem;
}

.clinic-side-slots {
  margin: 0 0 0.55rem !important;
  font-size: 0.88rem !important;
  color: var(--navy) !important;
}

.clinic-side-slots strong {
  color: var(--teal-deep);
}

.clinic-side-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.clinic-side-price s {
  color: #9aabb8;
}

.clinic-side-price strong {
  color: var(--teal-deep);
  font-size: 1.25rem;
}

@media (max-width: 640px) {
  body.has-sticky-offer {
    padding-bottom: calc(6.75rem + env(safe-area-inset-bottom));
  }

  .clinic-sticky-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .clinic-sticky-slots,
  .clinic-sticky-price {
    display: none;
  }

  .clinic-sticky-action {
    width: 100%;
  }

  .clinic-sticky-cta {
    width: 100%;
    max-width: none;
    flex: none;
  }

  .clinic-offer-actions {
    width: 100%;
  }
}

/* ---------- Metro cities ₹499 landing ---------- */
.metro-page {
  --metro-ink: #102833;
  --metro-wash: #e8f6f3;
}

.metro-hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(145deg, #0b2a33 0%, #0f4c4a 48%, #00ae97 120%);
}

.metro-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.metro-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.25rem;
}

.metro-detect-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 500;
}

.metro-hero h1 {
  margin: 0 0 0.75rem;
  max-width: 16ch;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 600;
}

.metro-hero .lead {
  max-width: 38rem;
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.metro-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
}

.metro-price-row .strike {
  text-decoration: line-through;
  opacity: 0.7;
}

.metro-price-row strong {
  font-size: 1.85rem;
  font-weight: 700;
}

.metro-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.metro-section {
  padding: 3.5rem 0;
}

.metro-section.alt {
  background:
    radial-gradient(ellipse at top left, rgba(0, 174, 151, 0.1), transparent 55%),
    linear-gradient(180deg, #f7fbfa 0%, #fff 100%);
}

.metro-section .section-title {
  max-width: 18ch;
}

.metro-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.metro-city-card {
  appearance: none;
  border: 1px solid rgba(16, 40, 51, 0.1);
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font: inherit;
  color: inherit;
}

.metro-city-card:hover,
.metro-city-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 151, 0.45);
  box-shadow: 0 12px 28px rgba(16, 40, 51, 0.08);
}

.metro-city-card .city-name {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.metro-city-card .city-offer {
  font-size: 0.78rem;
  color: var(--teal-deep);
  font-weight: 600;
}

.metro-problem-grid,
.metro-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.metro-card {
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(16, 40, 51, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  font: inherit;
  color: inherit;
}

.metro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(16, 40, 51, 0.12);
}

.metro-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.metro-card-body {
  padding: 1rem 1.05rem 1.15rem;
}

.metro-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.metro-card-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.metro-card-cta {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-deep);
}

.metro-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.metro-step {
  padding: 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(16, 40, 51, 0.08);
}

.metro-step .step-num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.metro-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 0.85rem 0 calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(16, 40, 51, 0.1);
  box-shadow: 0 -8px 28px rgba(16, 40, 51, 0.1);
}

.metro-sticky-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.metro-sticky-inner p {
  margin: 0;
  font-size: 0.92rem;
}

.metro-sticky-city {
  font-size: 0.8rem !important;
  color: var(--muted);
  margin-top: 0.15rem !important;
}

body.has-metro-sticky {
  padding-bottom: 5.5rem;
}

body.has-metro-sticky .wa-float {
  bottom: 5.75rem;
}

.metro-location-panel {
  margin-top: 1.75rem;
  padding: 1.5rem 1.35rem;
  border-radius: 20px;
  background: linear-gradient(160deg, #f3faf8 0%, #ffffff 70%);
  border: 1px solid rgba(0, 174, 151, 0.22);
  box-shadow: 0 14px 36px rgba(16, 40, 51, 0.06);
}

.metro-location-panel[hidden] {
  display: none !important;
}

.metro-location-panel .kicker {
  margin: 0 0 0.35rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metro-location-panel h2 {
  margin: 0 0 0.65rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.metro-location-panel h3 {
  margin: 1rem 0 0.45rem;
  font-size: 0.95rem;
}

.metro-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

.metro-area-list li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 174, 151, 0.1);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.metro-city-card.is-active {
  border-color: var(--teal);
  background: linear-gradient(180deg, #e8f7f4 0%, #fff 100%);
  box-shadow: 0 12px 28px rgba(0, 174, 151, 0.15);
}

@media (max-width: 640px) {
  .metro-hero-inner {
    padding-top: 3.5rem;
  }
  .metro-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metro-sticky-inner .btn {
    width: 100%;
  }
}

.consult-coupon-chip {
  margin: 0 0 0.55rem;
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  background: rgba(0, 174, 151, 0.12);
  color: #007a6c;
  font-size: 0.85rem;
  font-weight: 600;
}
.consult-modal-success-box {
  margin: 0.75rem 0 0;
  padding: 1rem;
  border-radius: 14px;
  background: #e8f7f4;
  border: 1px solid rgba(0, 174, 151, 0.28);
  color: #0b1f2a;
  text-align: center;
}
.consult-modal-success-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #007a6c;
  font-size: 1.05rem;
}
.consult-modal-success-box p {
  margin: 0;
  color: #3d5563;
  font-size: 0.92rem;
  line-height: 1.45;
}
.consult-modal-panel textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(11, 31, 42, 0.14);
  padding: 0.7rem 0.85rem;
  font: inherit;
  margin-bottom: 0.55rem;
  resize: vertical;
  min-height: 4.2rem;
}

/* City landing pick — problem / treatment pages */
.city-pick-sec {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(0, 174, 151, 0.12), transparent 50%),
    #eef4f3;
}

.city-pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.35rem;
}

@media (min-width: 860px) {
  .city-pick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.city-pick-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 16px 36px rgba(13, 31, 40, 0.12);
  aspect-ratio: 1 / 1.05;
}

.city-pick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.city-pick-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 28, 0.08) 25%, rgba(8, 22, 28, 0.88) 100%);
}

.city-pick-card span {
  position: absolute;
  z-index: 1;
  left: 0.9rem;
  right: 0.85rem;
  bottom: 0.9rem;
}

.city-pick-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.city-pick-card small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
}

.city-pick-card:hover {
  transform: translateY(-3px);
}

/* Problem / treatment inner depth */
.problem-deep {
  background: linear-gradient(180deg, #f4f8f7 0%, #fff 18%);
}

.problem-deep .prose > h2 {
  margin-top: 2.25rem;
  padding-top: 0.35rem;
}

.pd-lead-copy {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  color: #3d5563 !important;
}

.pd-chip-list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0.85rem 0 1.25rem;
  padding: 0;
}

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

.pd-chip {
  margin: 0 !important;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 31, 40, 0.06);
  font-size: 0.9rem;
  color: #0d1f28;
}

.pd-detail-grid {
  display: grid;
  gap: 0.75rem;
  margin: 0.75rem 0 1.35rem;
}

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

.pd-detail-card {
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 16px;
  background: #0d1f28;
  color: #fff;
  box-shadow: 0 14px 32px rgba(13, 31, 40, 0.1);
}

.pd-detail-card h4 {
  margin: 0 0 0.4rem;
  color: #7ef0dc;
  font-size: 0.98rem;
}

.pd-detail-card p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.88rem !important;
}

.treatment-hero {
  min-height: min(72vh, 580px);
}

.treatment-hero::after {
  background:
    linear-gradient(180deg, rgba(8, 22, 28, 0.18) 0%, rgba(8, 22, 28, 0.82) 78%),
    radial-gradient(ellipse at 18% 80%, rgba(0, 174, 151, 0.35), transparent 46%);
}
