/* Lahore Dental Clinic — the v2 design, ported.
   Source: `Lahore Dental Clinic v2.dc.html` in the design project.

   Every colour, size and radius below is copied from that file's inline
   styles verbatim, including its `oklch()` token values: matching the design
   to the pixel is the point, so nothing here is "close enough" in hex.

   Loaded *after* `site.css`, and it redefines that file's tokens rather than
   introducing a parallel set, so the shared pieces it styles — the login
   dialog, form fields, buttons — follow this page's palette without a second
   implementation. */

:root {
  /* The design's indigo ramp (`--ind-*`). */
  --brand-50: oklch(0.96 0.015 285);
  --brand-100: oklch(0.92 0.035 285);
  --brand-200: oklch(0.86 0.06 285);
  --brand-400: oklch(0.68 0.16 285);
  --brand-500: oklch(0.585 0.2 285);
  --brand-600: oklch(0.505 0.2 285);
  --brand-700: oklch(0.42 0.18 285);
  --brand-800: oklch(0.32 0.15 285);
  --brand-900: oklch(0.24 0.1 285);

  --text-primary: oklch(0.24 0.015 280);
  --text-secondary: oklch(0.48 0.012 280);
  --text-muted: oklch(0.63 0.008 280);

  --card: #fff;
  --border: oklch(0.91 0.006 280);
  --sunken: oklch(0.965 0.005 285);
  --page: oklch(0.985 0.003 285);

  --accent-tx: var(--brand-600);
  --chip-bg: var(--brand-50);
  --chip-fg: var(--brand-700);
  --header-bg: rgba(255, 255, 255, 0.97);

  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 20px -10px rgba(16, 24, 40, 0.12);
  --float-shadow: 0 20px 50px -24px rgba(16, 24, 40, 0.25);

  --shell: 1200px;
}

/* The design ships a dark mode as an explicit toggle, persisted in
   `localStorage` and defaulting to light — never `prefers-color-scheme`,
   which is also how `ThemeController` behaves in the app. */
:root[data-theme="dark"] {
  --text-primary: oklch(0.96 0.005 280);
  --text-secondary: oklch(0.8 0.01 280);
  --text-muted: oklch(0.66 0.012 280);
  --card: oklch(0.22 0.02 285);
  --border: oklch(0.32 0.02 285);
  --sunken: oklch(0.19 0.02 285);
  --page: oklch(0.16 0.018 285);
  --accent-tx: var(--brand-200);
  --chip-bg: oklch(0.3 0.07 285);
  --chip-fg: var(--brand-100);
  --header-bg: rgba(24, 20, 40, 0.96);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 20px -10px rgba(0, 0, 0, 0.5);
  --float-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.6);
}

body {
  background: var(--page);
  color: var(--text-primary);
  transition: background 0.2s ease;
}

/* `site.css` gives every <section> 72px of vertical padding for the landing
   and legal pages. This design sets its own per band, so the shared default
   has to be cleared first — left in place it added 144px to the hero. */
section {
  padding: 0;
}

::selection {
  background: var(--brand-200);
}

.shell {
  max-width: var(--shell);
  padding-left: clamp(18px, 4vw, 28px);
  padding-right: clamp(18px, 4vw, 28px);
}

.eyebrow {
  line-height: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-tx);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

/* A heading with its lede pushed to the opposite end of the row — the shape
   the services, doctors and reviews bands all share.

   The `p` rules below all carry `:not(.eyebrow)`: a bare descendant selector
   is more specific than `.eyebrow`, so it would otherwise repaint the eyebrow
   that sits inside these same heads — which is how it lost its 12px margin
   and picked up the lede's font size. */
.band-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.band-head p:not(.eyebrow) {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  max-width: 380px;
}

/* ---------------------------------------------------------------- header */

/* Transparent over the hero, solid once the page scrolls past 40px —
   `clinic.js` sets `.is-solid`. */
.clinic-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  transition: background 0.2s ease, border-color 0.2s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
}

.clinic-header.is-solid {
  background: var(--header-bg);
  border-bottom-color: var(--border);
}

.clinic-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 14px;
}

.clinic-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.clinic-brand:hover {
  text-decoration: none;
}

.brand-tile {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

.clinic-header.is-solid .brand-name {
  color: var(--text-primary);
}

.clinic-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.clinic-nav a {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
}

.clinic-header.is-solid .clinic-nav a {
  color: var(--text-secondary);
}

.clinic-nav a:hover {
  text-decoration: none;
  color: var(--accent-tx);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0;
}

.clinic-header.is-solid .icon-btn {
  border-color: var(--border);
  color: var(--text-primary);
}

.staff-link {
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
}

.clinic-header.is-solid .staff-link {
  color: var(--text-secondary);
}

.header-cta {
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand-600);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--brand-700);
  color: #fff;
  text-decoration: none;
}

/* The design drops these at fixed widths rather than one breakpoint. */
@media (max-width: 1059px) {
  .clinic-nav {
    display: none;
  }
}

@media (max-width: 719px) {
  .staff-link {
    display: none;
  }
}

@media (max-width: 479px) {
  .header-cta {
    display: none;
  }

  .brand-name {
    font-size: 15px;
  }
}

/* ------------------------------------------------------------------ hero */

.clinic-hero {
  position: relative;
  min-height: clamp(600px, 92vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brand-900);
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 12, 48, 0.88) 0%, rgba(18, 12, 48, 0.62) 45%, rgba(18, 12, 48, 0.12) 100%);
  pointer-events: none;
}

.hero-body {
  position: relative;
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
  padding: 140px clamp(18px, 4vw, 28px) 110px;
  color: #fff;
  pointer-events: none;
}

.hero-body > div {
  max-width: 900px;
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
}

.clinic-hero h1 {
  font-size: clamp(46px, 9vw, 108px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
  text-wrap: balance;
}

.hero-tagline {
  font-size: clamp(19px, 2.3vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  max-width: 560px;
  text-wrap: balance;
}

.hero-lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 34px;
  max-width: 500px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-800);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary:hover {
  background: var(--brand-50);
  color: var(--brand-800);
  text-decoration: none;
}

.btn-hero-ghost {
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

/* ------------------------------------------------------------- trust bar */

/* Lifted 52px into the hero above it. */
.trust-bar {
  max-width: var(--shell);
  margin: -52px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.trust-bar-inner {
  border-radius: 18px;
  box-shadow: var(--float-shadow);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* The 1px gap over a border-coloured background is what draws the
     hairlines between cells. */
  gap: 1px;
  background: var(--border);
  overflow: hidden;
}

@media (max-width: 999px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 559px) {
  .trust-bar-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  background: var(--card);
}

.trust-cell .tile {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--chip-bg);
  color: var(--chip-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-cell .value {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.trust-cell .label {
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* -------------------------------------------------------------- concerns */

.concerns-section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 100px) clamp(18px, 4vw, 28px) 40px;
}

.concerns-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* The design's concerns heading carries `margin:0 0 12px`; every other
   `.section-title` on the page has none. */
.concerns-head .section-title {
  margin-bottom: 12px;
}

.concerns-head p:not(.eyebrow) {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.segmented {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--sunken);
  border: 1px solid var(--border);
}

.segmented button {
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  background: transparent;
  color: var(--text-secondary);
}

.segmented button[aria-selected="true"] {
  background: var(--brand-600);
  color: #fff;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 18px;
}

.concern-card {
  position: relative;
  display: block;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: #fff;
  /* The design fills these from photo slots that are still empty; until
     there are photos, the gradient the overlay would have sat on carries the
     card on its own. */
  background: linear-gradient(160deg, var(--brand-700), oklch(0.2 0.08 285));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.concern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(16, 24, 40, 0.4);
  color: #fff;
  text-decoration: none;
}

.concern-card .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 12, 48, 0) 35%, rgba(18, 12, 48, 0.86) 100%);
  pointer-events: none;
}

.concern-card .body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  pointer-events: none;
}

.concern-card .title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.concern-card .desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.concern-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
}

/* -------------------------------------------------------------- services */

.services-section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 80px 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.service-cell {
  background: var(--card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s ease;
}

.service-cell:hover {
  background: var(--chip-bg);
}

.service-cell .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-cell .tile {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--chip-bg);
  color: var(--chip-fg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-cell .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.service-cell .title {
  line-height: normal;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-cell .desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------- rewards */

.rewards-section {
  background: var(--brand-900);
  color: #fff;
  padding: clamp(64px, 9vw, 96px) 0;
}

.rewards-section .shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px;
}

.rewards-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

.rewards-eyebrow {
  line-height: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-200);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.rewards-section h2 {
  font-size: clamp(30px, 4.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.rewards-lede {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0 0 26px;
  max-width: 460px;
}

.rewards-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rewards-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rewards-step .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rewards-step .title {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.rewards-step .desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.rewards-card-wrap {
  display: flex;
  justify-content: center;
}

.rewards-card {
  width: 100%;
  max-width: 380px;
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.5);
  transform: rotate(-3deg);
}

.rewards-card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.rewards-card .top span:first-child {
  font-size: 13.5px;
  font-weight: 700;
  opacity: 0.9;
}

.rewards-card .tier {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.rewards-card .balance-label {
  font-size: 12px;
  opacity: 0.8;
}

.rewards-card .balance {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.rewards-card .balance span {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.8;
}

.rewards-card .track {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.rewards-card .fill {
  height: 100%;
  width: 74%;
  background: #fff;
  border-radius: 999px;
}

.rewards-card .to-go {
  font-size: 12px;
  opacity: 0.85;
  margin: 8px 0 22px;
}

.rewards-card .foot {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 16px;
}

.redeem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 14px;
}

.redeem-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.redeem-tile .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.redeem-tile .cost {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.redeem-tile .cost span {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
}

.redeem-tile .title {
  font-size: 14.5px;
  font-weight: 600;
}

.badge-on,
.badge-off {
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.badge-on {
  color: #0f5132;
  background: #bbf7d0;
}

.badge-off {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

/* --------------------------------------------------------------- results */

.results-section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 96px 28px 40px;
}

.results-head {
  max-width: 600px;
  margin-bottom: 40px;
}

.results-head p:not(.eyebrow) {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 22px;
}

.case-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.case-shot {
  position: relative;
  min-width: 0;
}

/* Awaiting real clinical photographs — see the note in the markup. */
.case-slot {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  background: var(--sunken);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  padding: 8px;
}

.case-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  pointer-events: none;
}

.case-tag-before {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
}

.case-tag-after {
  background: var(--brand-600);
  color: #fff;
}

.case-title {
  line-height: normal;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.case-body {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------- doctors */

.doctors-section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 80px 28px;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 22px;
}

.doctor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.doctor-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.doctor-card .body {
  padding: 20px 22px 22px;
}

.doctor-card .name {
  line-height: normal;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
}

.doctor-card .role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-tx);
  margin-bottom: 10px;
}

.doctor-card .creds {
  font-size: 13px;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------- reviews */

.reviews-section {
  background: var(--sunken);
  padding: clamp(64px, 9vw, 96px) 0;
}

.reviews-section .shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
}

.review-card {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card .quote {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.review-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card .name {
  font-size: 13.5px;
  font-weight: 700;
  font-style: normal;
}

.review-card .stars {
  display: flex;
  gap: 2px;
  color: var(--accent-tx);
}

/* ------------------------------------------------------------------- faq */

.faq-section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 96px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 56px;
  align-items: start;
}

.faq-intro p:not(.eyebrow) {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 400px;
}

.faq-intro a {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-tx);
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.clinic-faq-item {
  border-bottom: 1px solid var(--border);
}

.clinic-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.clinic-faq-q .sign {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  background: var(--sunken);
  color: var(--text-primary);
}

.clinic-faq-q[aria-expanded="true"] .sign {
  transform: rotate(45deg);
  background: var(--brand-600);
  color: #fff;
}

.clinic-faq-a {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 0 48px 22px 0;
  margin: 0;
}

.js .clinic-faq-a[hidden] {
  display: none;
}

/* ----------------------------------------------------------------- visit */

.visit-section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px 96px;
}

.visit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.visit-body {
  padding: clamp(24px, 5vw, 44px);
}

.visit-body h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.visit-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.visit-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.visit-value {
  font-size: 15px;
}

.visit-value a {
  font-weight: 600;
  color: var(--accent-tx);
}

.visit-hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 300px;
  list-style: none;
}

.visit-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.visit-hours b {
  font-weight: 600;
  color: var(--text-primary);
}

.btn-visit {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--brand-600);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.btn-visit:hover {
  background: var(--brand-700);
  color: #fff;
  text-decoration: none;
}

.visit-map {
  min-height: 380px;
  position: relative;
  background: var(--sunken);
}

.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------------------------------------------------------- footer */

.clinic-footer {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.7);
  border: 0;
  padding: 0;
}

.clinic-footer .shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 36px 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.clinic-footer .name {
  color: #fff;
  font-weight: 700;
}

.clinic-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.clinic-footer a:hover {
  color: #fff;
}

/* ------------------------------------------------------------- whatsapp */

.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px -4px rgba(16, 24, 40, 0.35);
}

.wa-fab:hover {
  background: #1ebe5a;
  color: #fff;
}

/* ------------------------------------------------------------ mobile nav */

.clinic-menu {
  display: none;
}

@media (max-width: 1059px) {
  .js .clinic-menu {
    display: block;
    background: var(--header-bg);
    border-top: 1px solid var(--border);
    padding: 12px clamp(18px, 4vw, 28px) 20px;
  }

  .js .clinic-menu[hidden] {
    display: none;
  }

  .js .clinic-menu a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
  }
}

@media (min-width: 1060px) {
  .menu-btn {
    display: none;
  }
}
