:root {
  --brand: #0f766e;
  --accent: #2563eb;
  --surface: #f6f9fc;
  --ink: #111827;
  --muted: #64748b;
  --line: #dbe5ef;
  --panel: #ffffff;
  --soft: #eef7f6;
  --warm: #f59e0b;
  --danger: #b42318;
  --ok: #047857;
  --shadow: 0 22px 58px rgba(15, 23, 42, .10);
  --radius: 12px;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, var(--surface) 44%, #ffffff 100%);
  color: var(--ink);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-frame {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-loading, .site-error {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.loader {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid rgba(15, 118, 110, .18);
  border-top-color: var(--brand);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.system-message {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.announcement {
  background: #eef3f8;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}
.announcement .site-frame {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.announcement .site-frame::-webkit-scrollbar {
  display: none;
}
.announcement.language-only {
  background: #eef3f8;
}
.announcement.language-only .announcement-message {
  display: none;
}
.announcement-message {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1 1 auto;
}
.announcement-message > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.announcement a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 8px;
  color: var(--brand);
  white-space: nowrap;
}
.portal-language-control {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  inline-size: 132px;
  block-size: 54px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), color-mix(in srgb, var(--clinical-sky) 62%, white));
  color: var(--clinical-navy);
  padding-block: 0;
  padding-inline: 8px 12px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(8, 47, 73, .08), inset 0 1px 0 rgba(255,255,255,.75);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.portal-language-control:hover,
.portal-language-control:focus-within {
  border-color: color-mix(in srgb, var(--brand) 42%, var(--line));
  box-shadow: 0 18px 34px rgba(8, 47, 73, .12), inset 0 1px 0 rgba(255,255,255,.82);
  transform: translateY(-1px);
}
.portal-language-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--brand) 20%, transparent);
}
.portal-language-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* ONE LINE: the icon, the language, the chevron, centred in the box. The word «اللغة» used to sit
   above the language in 10px; the icon already says what the box is (owner, 2026-09-14). */
.portal-language-stack {
  position: relative;
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.portal-language-stack::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -6px;
  /* PHYSICAL sides, not logical: rotated 45deg, right+bottom points DOWN. The inline end is the
     LEFT side in Arabic; the logical end side drew «‹» on the Arabic site -- measured on testtest, 2026-09-14. */
  border-right: 2px solid color-mix(in srgb, var(--clinical-navy) 68%, var(--brand));
  border-bottom: 2px solid color-mix(in srgb, var(--clinical-navy) 68%, var(--brand));
  transform: rotate(45deg);
  pointer-events: none;
}
.portal-language-control select {
  width: 100%;
  min-width: 0;
  max-width: none;
  /* 44px, not 24: measured at 24px on a 375px phone, which misses Apple's 44pt, Material's 48dp
     and WCAG 2.2 AAA. The control around it is already tall enough; only the select was short. */
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--clinical-navy);
  padding-block: 0;
  padding-inline: 0 16px;
  font: inherit;
  line-height: 1.2;
  text-overflow: ellipsis;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98), color-mix(in srgb, var(--brand) 5%, white));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}
.header-inner {
  display: flex;
  /* WRAP RATHER THAN HIDE. This was `nowrap` with `overflow-x: auto` and `scrollbar-width: none`,
     which is a scrollable strip that gives no sign it scrolls. Measured 2026-09-13 in a browser at
     1009px: the header needs 1177px against 977 of room, so «Get result» / «معرفة نتيجة» sat 200px
     past the edge -- exactly the scrollable amount -- with no scrollbar, no affordance, and nothing
     a mouse wheel does. The page itself does not scroll sideways, so on a laptop the portal's second
     primary action simply was not there. It was the same in both languages, mirrored: off the left
     in Arabic and off the right in English.
     The band is roughly 1000-1325px, which is every 1280x720 and 1366x768 laptop and every tablet in
     landscape. Below 720 a different layout already handles it and a phone was never affected. */
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  overflow-y: hidden;
}
.site-header .site-frame {
  width: min(1360px, calc(100% - 32px));
}
.header-inner::-webkit-scrollbar {
  display: none;
}
.brand-lockup {
  flex: 0 0 350px;
  min-width: 280px;
  max-width: 380px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: visible;
}
.brand-lockup span:last-child {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 2px;
  padding-block: 2px;
  overflow: visible;
}
.brand-lockup strong {
  font-size: 16px;
  line-height: 1.45;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-lockup small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-logo, .brand-monogram {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
}
.brand-logo { object-fit: contain; }
.brand-monogram {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  font-weight: 950;
}
.site-menu {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line));
  background: linear-gradient(135deg, rgba(255,255,255,.96), color-mix(in srgb, var(--brand) 7%, white));
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}
.site-menu a {
  border-radius: 999px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  text-align: center;
}
.site-menu a:hover, .site-menu a.active {
  color: var(--ink);
  background: color-mix(in srgb, var(--brand) 11%, white);
}
.header-actions {
  flex: 0 0 auto;
  margin-inline-start: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}
.header-action {
  inline-size: 128px;
  block-size: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 8px 12px;
  color: white;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 950;
  text-align: center;
  white-space: normal;
  box-shadow: 0 14px 30px rgba(8, 47, 73, .15);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.header-action-book {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}
.header-action-result {
  background: linear-gradient(135deg, #1d4ed8, #4f46e5);
}
.header-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(8, 47, 73, .18);
}

.booking-catalog {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--brand) 4%, white));
  border-radius: 12px;
  padding: 12px;
}
.catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}
.catalog-head small,
.quote-summary small {
  color: var(--muted);
  font-size: 11px;
}
.catalog-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 340px;
  overflow: auto;
  padding-inline-end: 2px;
}
.catalog-test {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 9px;
  min-height: 78px;
}
.catalog-test.selected {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
  background: color-mix(in srgb, var(--brand) 7%, white);
}
.catalog-test strong,
.selected-test-chip b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}
.catalog-test span,
.catalog-test small,
.selected-test-chip small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.catalog-test b {
  color: var(--brand);
  font-size: 13px;
  white-space: nowrap;
}
.catalog-test button,
.selected-test-chip button {
  border: 0;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  min-height: 44px;
  padding: 6px 9px;
  font-weight: 900;
  cursor: pointer;
}
.catalog-test button:disabled {
  background: #cbd5e1;
  cursor: default;
}
.selected-tests-panel {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.selected-tests-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.selected-test-chip {
  display: inline-grid;
  grid-template-columns: minmax(0, auto) auto;
  align-items: center;
  gap: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 6px 6px 6px 10px;
  max-width: 100%;
}
.selected-test-chip button {
  grid-row: 1 / span 2;
  grid-column: 2;
  background: #eef2f7;
  color: var(--ink);
  min-height: 44px;
  font-size: 11px;
}
.quote-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  background: color-mix(in srgb, var(--brand) 8%, white);
  border-radius: 10px;
  padding: 9px 10px;
}
.quote-summary strong {
  color: var(--brand);
}
.catalog-empty {
  display: block;
  color: var(--muted);
  font-size: 12px;
  padding: 8px;
}
.catalog-empty.danger {
  color: var(--danger);
}
.test-request-panel {
  display: grid;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--brand) 5%, white));
  padding: 14px;
}
.test-request-head {
  display: grid;
  gap: 3px;
}
.test-request-head strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}
.test-request-head small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.test-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, .75fr);
  gap: 12px;
  align-items: stretch;
}
.test-request-text textarea {
  min-height: 116px;
  resize: vertical;
}
.test-request-upload {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.test-request-upload > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}
.request-file-drop {
  min-height: 116px;
  justify-content: center;
  border: 1px dashed color-mix(in srgb, var(--brand) 36%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 6%, white);
  color: var(--ink);
  padding: 14px;
  cursor: pointer;
}
.request-file-drop input {
  padding: 0;
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--muted);
}
.request-file-drop small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.consultation-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.smart-menu {
  padding-bottom: 10px;
}
.intent-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.intent-links a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.86);
  padding: 10px;
  min-height: 82px;
}
.intent-links.compact a {
  min-height: 58px;
  padding: 9px 10px;
}
.intent-links a.active {
  border-color: color-mix(in srgb, var(--brand) 36%, white);
  background: color-mix(in srgb, var(--brand) 8%, white);
}
.intent-links b {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--accent);
  font-size: 11px;
}
.intent-links strong {
  font-size: 13px;
  line-height: 1.25;
}
.intent-links span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

main {
  padding-bottom: 28px;
}
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .82fr);
  gap: 32px;
  align-items: center;
  padding-block: 38px 26px;
  margin-top: 18px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 24px;
  padding-inline: 28px;
  background:
    radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 30%),
    radial-gradient(circle at 88% 14%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.98), color-mix(in srgb, var(--brand) 5%, white));
  box-shadow: 0 28px 70px rgba(15, 23, 42, .08);
}
.hero-copy, .page-hero > div {
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  color: var(--brand);
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 8px;
}
h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.hero-copy p, .page-hero p, .section-heading p, .booking-card p, .results-card p, .spotlight-card p, .side-guide p {
  color: var(--muted);
  font-size: 16px;
  max-width: 720px;
}
.hero-actions, .inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}
.hero-signals span {
  min-width: 0;
  display: grid;
  gap: 3px;
  border: 1px solid color-mix(in srgb, var(--brand) 16%, white);
  border-radius: 12px;
  background: rgba(255,255,255,.76);
  padding: 11px;
}
.hero-signals b {
  color: #0b1b4d;
  font-size: 13px;
  line-height: 1.25;
}
.hero-signals small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.primary-action, .secondary-action, .booking-form button, .result-form button, .tracking-form button, .patient-assistant-form button, .inline-actions a, .cta-ribbon a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 950;
  border: 0;
  cursor: pointer;
}
.primary-action, .booking-form button, .result-form button, .tracking-form button, .patient-assistant-form button, .cta-ribbon a {
  background: var(--brand);
  color: white;
}
.secondary-action, .inline-actions a {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}
.hero-image {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}
.hero-image figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  border-top: 1px solid var(--line);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  padding-block: 36px 20px;
}
.page-hero img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.page-hero h1 {
  /* Hero title at 60% of the previous 44px so the lab name reads as a heading, not a banner. */
  font-size: 26px;
}
.hero-copy h1 {
  /* Home hero title at ~60% of the previous 52px (was styled by the generic h1 rule). */
  font-size: 31px;
}

.intent-band {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding-block: 12px 28px;
}
.intent-band.page {
  padding-block: 8px 24px;
}
.intent-heading {
  border-inline-start: 4px solid var(--brand);
  padding: 10px 12px;
  background: rgba(255,255,255,.72);
  border-radius: 12px;
}
.intent-heading span {
  display: block;
  font-size: 18px;
  font-weight: 950;
}
.intent-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-block: 4px 28px;
}
.stats-strip article {
  border: 1px solid var(--line);
  background: white;
  border-radius: 13px;
  padding: 14px;
}
.stats-strip b {
  display: block;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}
.stats-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 6px;
}

.patient-paths {
  padding-block: 6px 30px;
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.path-grid a {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--brand) 4%, white));
  padding: 15px;
  overflow: hidden;
}
.path-grid a:after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--warm));
}
.path-grid b {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #0b1b4d;
  color: white;
  font-size: 12px;
}
.path-grid strong {
  font-size: 17px;
  line-height: 1.25;
}
.path-grid span {
  color: var(--muted);
  font-size: 13px;
}

.content-tabs-band, .content-band, .contact-band, .patient-guide-band, .action-focus, .page-grid-two, .about-overview-band, .journey-band, .confidence-band {
  padding-block: 30px;
}
.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.section-heading.narrow {
  max-width: 760px;
}
.section-heading.with-action {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}
.section-heading.with-action a {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--brand);
  font-weight: 900;
  font-size: 13px;
}
.section-heading span {
  color: #0b1b4d;
  font-size: 29px;
  font-weight: 950;
}
.page-grid-two {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: 18px;
}
.about-overview-band {
  display: grid;
  gap: 18px;
}
.spotlight-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 20px;
}
.about-overview-band .spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px;
  min-height: auto;
  background:
    radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--clinical-mint) 36%, transparent), transparent 34%),
    linear-gradient(135deg, #ffffff, color-mix(in srgb, var(--clinical-sky) 42%, white));
}
.spotlight-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.about-overview-band .spotlight-card p {
  max-width: 860px;
  margin: 0;
}
.about-overview-band .inline-actions {
  justify-content: flex-end;
  margin-top: 0;
  min-width: 290px;
}
.about-overview-band .inline-actions a {
  min-height: 48px;
  min-width: 136px;
  justify-content: center;
}
.trust-preview {
  min-width: 0;
  display: grid;
  gap: 12px;
}
.about-overview-band .trust-preview > .eyebrow {
  margin-bottom: 0;
  justify-self: center;
}
.trust-preview .card-grid,
.confidence-band .card-grid,
.patient-guide-band .card-grid,
.guide-articles-band .card-grid,
.faq-grid > .card-grid,
.offers-band .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.dense-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
.section-group h2 {
  margin-bottom: 12px;
}

.journey-band > div:last-child {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.journey-band a {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 14px;
  display: grid;
  gap: 5px;
  min-height: 118px;
}
.journey-band b {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #0b1b4d;
  color: white;
  font-size: 12px;
}
.journey-band strong, .checklist-box strong {
  font-size: 16px;
}
.journey-band span {
  color: var(--muted);
  font-size: 13px;
}

.card-grid, .faq-grid, .branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 12px;
}
.service-card, .feature-card, .program-card, .trust-card, .education-card, .empty-card, .faq-card, .mini-card, .branch-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 16px;
  overflow: hidden;
}
.service-card, .feature-card, .program-card, .trust-card, .education-card, .faq-card, .mini-card, .branch-grid article, .spotlight-card, .journey-band a, .path-grid a {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover, .feature-card:hover, .program-card:hover, .trust-card:hover, .education-card:hover, .faq-card:hover, .mini-card:hover, .branch-grid article:hover, .spotlight-card:hover, .journey-band a:hover, .path-grid a:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand) 28%, var(--line));
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}
.action-card {
  display: grid;
  align-content: start;
}
.card-action {
  margin-top: 12px;
  /* 44px, not 38. This is «احجز هذا» on the offers page -- the booking call to action, and the one
     thing a patient is there to tap. Measured at 38px on a 375px phone. */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #0b1b4d;
  color: white;
  font-size: 13px;
  font-weight: 950;
  padding: 8px 11px;
}
.feature-card { border-inline-start: 4px solid var(--warm); }
.program-card { border-inline-start: 4px solid var(--accent); }
.trust-card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 8%, white), #fff);
  border-color: color-mix(in srgb, var(--brand) 24%, var(--line));
}
.about-overview-band .trust-card {
  display: grid;
  align-content: start;
  min-height: 250px;
}
.about-overview-band .trust-card strong {
  font-size: 17px;
  line-height: 1.35;
}
.about-overview-band .trust-card span {
  line-height: 1.7;
}
.offer-card {
  background:
    radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 42%),
    linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--brand) 6%, white));
}
.service-card img, .feature-card img, .program-card img, .trust-card img, .education-card img, .mini-card img, .faq-card img {
  display: block;
  width: calc(100% + 32px);
  max-width: none;
  height: 150px;
  object-fit: cover;
  margin: -16px -16px 13px;
  border-bottom: 1px solid var(--line);
}
.education-card img {
  height: 176px;
}
.education-card.small img {
  height: 132px;
}
.trust-card img, .faq-card img {
  height: 128px;
}
.service-card strong, .feature-card strong, .program-card strong, .trust-card strong, .education-card strong, .faq-card strong, .mini-card strong, .branch-grid strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}
.service-card span, .feature-card span, .program-card span, .trust-card span, .education-card span, .faq-card span, .mini-card span, .branch-grid span, .branch-grid small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.patient-guide-band {
  border-block: 0;
  background: transparent;
}
.guide-medical-note {
  margin-top: 16px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: 12px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--clinical-sky) 55%, white), #ffffff);
  color: var(--ink);
  padding: 14px 16px;
  line-height: 1.8;
}
.confidence-band {
  border-block: 1px solid var(--line);
  background: #fbfdff;
}

.checklist-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 14px;
  display: grid;
  gap: 9px;
}
.checklist-box span {
  color: var(--muted);
  font-size: 13px;
  padding-inline-start: 20px;
  position: relative;
}
.checklist-box span:before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}
.branch-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.branch-actions a {
  border: 1px solid color-mix(in srgb, var(--brand) 22%, white);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.action-focus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr);
  gap: 18px;
  align-items: start;
}
.action-focus.narrow-action {
  grid-template-columns: minmax(0, .9fr) minmax(300px, .7fr);
}
.side-guide {
  display: grid;
  gap: 12px;
}
.booking-card, .results-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 20px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .06);
}
.booking-card {
  background: color-mix(in srgb, var(--brand) 5%, white);
}
.results-card {
  background: color-mix(in srgb, var(--accent) 5%, white);
}
.booking-form, .result-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 14px;
}
.result-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}
.result-methods, .lookup-panel {
  grid-column: 1 / -1;
}
.segmented-field {
  display: grid;
  grid-template-columns: minmax(130px, .9fr) repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}
.segmented-field.three {
  grid-template-columns: minmax(130px, .9fr) repeat(3, minmax(0, 1fr));
}
.segmented-field > span {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.segmented-field label {
  position: relative;
}
.segmented-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.segmented-field b {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--muted);
  padding: 8px 10px;
  text-align: center;
  font-size: 13px;
}
.segmented-field input:checked + b {
  border-color: color-mix(in srgb, var(--brand) 42%, white);
  background: color-mix(in srgb, var(--brand) 10%, white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand) 10%, transparent);
}
.result-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.result-methods label {
  position: relative;
  min-height: 44px;
}
.result-methods input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.result-methods span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--muted);
  padding: 9px 10px;
  text-align: center;
  font-weight: 950;
}
.result-methods input:checked + span {
  border-color: color-mix(in srgb, var(--brand) 42%, white);
  background: color-mix(in srgb, var(--brand) 9%, white);
  color: var(--ink);
}
.lookup-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}
.lookup-panel.two-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lookup-panel[hidden] {
  display: none;
}
.lookup-panel p {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.result-form button {
  justify-self: start;
  min-width: 180px;
}
label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 11px;
  color: var(--ink);
  background: white;
  min-height: 44px;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-color: var(--accent);
}
.span-all, .form-status {
  grid-column: 1 / -1;
}
.form-status {
  min-height: 24px;
  font-size: 13px;
  font-weight: 850;
}
.form-status.ok { color: var(--ok); }
.form-status.danger { color: var(--danger); }
.form-status.info { color: var(--muted); }
.form-status a {
  color: var(--ok);
  text-decoration: underline;
}
.result-links {
  display: grid;
  gap: 8px;
}
.result-links > strong {
  color: var(--ink);
}
.result-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, white);
  border-radius: 10px;
  background: white;
  padding: 10px 12px;
  text-decoration: none;
}
.result-links span {
  color: var(--ok);
  font-weight: 950;
}
.result-links small {
  color: var(--muted);
}
.receipt-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, white);
  border-radius: 12px;
  background: white;
  padding: 10px;
}
.result-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 10px;
  background: var(--ok);
  color: white !important;
  padding: 9px 14px;
  text-decoration: none !important;
  font-weight: 950;
}
.acknowledge-form {
  display: inline-flex;
  margin: 0;
}
.acknowledge-form button {
  min-width: auto;
  background: color-mix(in srgb, var(--brand) 10%, white);
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, white);
}
.patient-assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.patient-assistant-form > div:first-child,
.patient-assistant-form label,
.patient-assistant-form .form-status {
  grid-column: 1 / -1;
}
.patient-assistant-form strong {
  display: block;
  color: var(--ink);
}
.patient-assistant-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.tracker-band {
  margin-block: 14px 18px;
}
.tracker-card {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, white);
  border-radius: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 9%, white), rgba(255,255,255,.96) 42%),
    white;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .08);
  padding: 18px;
}
.tracker-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  border-inline-start: 5px solid var(--brand);
  padding-inline-start: 14px;
}
.tracker-copy h2 {
  margin: 0;
  font-size: 26px;
}
.tracker-copy p {
  margin: 0;
  color: var(--muted);
}
.tracker-copy small {
  color: color-mix(in srgb, var(--brand) 72%, var(--ink));
  font-weight: 850;
}
.tracking-form {
  display: grid;
  gap: 10px;
}
.tracking-form button {
  justify-self: start;
  min-width: 170px;
}
.tracking-status.ok {
  color: inherit;
}
.tracking-result-grid {
  display: grid;
  gap: 12px;
}
.tracking-group-title {
  color: var(--ink);
  font-size: 14px;
}
.tracking-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  color: var(--ink);
}
.tracking-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}
.tracking-card-head div {
  display: grid;
  gap: 2px;
}
.tracking-card-head span,
.tracking-card-head small,
.tracking-current span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.tracking-card-head strong {
  font-size: 18px;
  color: var(--ink);
}
.tracking-card-head b {
  min-width: 54px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 11%, white);
  color: var(--brand);
  font-size: 18px;
}
.tracker-progress {
  block-size: 9px;
  border-radius: 999px;
  background: #edf3f8;
  overflow: hidden;
}
.tracker-progress span {
  display: block;
  block-size: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.tracking-current {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, white);
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 6%, white);
  padding: 10px 12px;
}
.tracking-current strong {
  color: var(--ink);
  text-align: end;
}
.tracker-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}
.tracker-steps li {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 8px;
  background: #fff;
}
.tracker-steps b {
  inline-size: 22px;
  block-size: 22px;
  border-radius: 50%;
  background: #e8eef5;
  position: relative;
}
.tracker-steps b::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: #9aa8b8;
}
.tracker-steps span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.35;
}
.tracker-steps small {
  color: var(--muted);
  font-size: 11px;
}
.tracker-steps .done {
  border-color: color-mix(in srgb, var(--brand) 26%, white);
  background: color-mix(in srgb, var(--brand) 5%, white);
}
.tracker-steps .done b,
.tracker-steps .current b {
  background: color-mix(in srgb, var(--brand) 18%, white);
}
.tracker-steps .done b::after,
.tracker-steps .current b::after {
  background: var(--brand);
}
.tracker-steps .current {
  border-color: color-mix(in srgb, var(--accent) 36%, white);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent);
}
.tracker-steps .attention {
  border-color: color-mix(in srgb, var(--danger) 35%, white);
  background: color-mix(in srgb, var(--danger) 5%, white);
}
.tracker-steps .attention b::after {
  background: var(--danger);
}
.tracking-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.tracking-summary span {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfdff;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.tracking-summary b {
  color: var(--ink);
  font-size: 17px;
}
.tracking-summary .attention {
  border-color: color-mix(in srgb, var(--danger) 22%, white);
  color: var(--danger);
}
.sample-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sample-strip span,
.sample-strip.empty {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.sample-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.sample-strip b {
  color: var(--ink);
}
.sample-strip .attention {
  border-color: color-mix(in srgb, var(--danger) 22%, white);
}
.tracking-payment-note {
  display: grid;
  gap: 4px;
  border: 1px solid color-mix(in srgb, var(--warm) 34%, white);
  border-radius: 12px;
  background: color-mix(in srgb, var(--warm) 9%, white);
  color: #7c4a03;
  padding: 11px 12px;
}
.tracking-payment-note strong {
  color: #6b3f00;
  font-size: 14px;
}
.tracking-payment-note span,
.tracking-payment-note small {
  font-size: 12px;
  font-weight: 850;
}
.tracking-open-result {
  justify-self: start;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--brand);
  color: white !important;
  padding: 9px 14px;
  font-weight: 950;
  text-decoration: none !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.contact-grid article {
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  background: linear-gradient(135deg, white, color-mix(in srgb, var(--brand) 5%, white));
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}
.contact-grid article,
.contact-grid a {
  min-height: 92px;
}
.contact-grid a,
.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  gap: 2px 10px;
  padding: 14px 15px;
}
.contact-grid span {
  color: var(--muted);
  font-size: 12px;
  display: block;
}
.contact-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid !important;
  place-items: center;
  color: white !important;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-size: 14px !important;
}
.contact-icon svg,
.inline-icon svg,
.branch-icon svg,
.lab-whatsapp-float b svg {
  display: block;
  width: 18px;
  height: 18px;
}
.contact-icon svg:not([fill]),
.inline-icon svg:not([fill]),
.branch-icon svg:not([fill]) {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-icon.contact-icon-whatsapp {
  background: #25d366;
  color: white !important;
}
.contact-icon-whatsapp svg,
.inline-icon-whatsapp svg,
.lab-whatsapp-float b svg {
  fill: currentColor;
  stroke: none;
}
.contact-icon.contact-icon-phone {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}
.contact-icon.contact-icon-email {
  background: linear-gradient(135deg, #0f766e, #0891b2);
}
.contact-icon.contact-icon-location {
  background: linear-gradient(135deg, #e11d48, #f97316);
}
.branch-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, .76fr);
  align-items: stretch;
  gap: 18px;
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 35%),
    linear-gradient(180deg, white, color-mix(in srgb, var(--accent) 4%, white)) !important;
  border-color: color-mix(in srgb, var(--brand) 20%, var(--line)) !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}
.contact-band .branch-grid {
  grid-template-columns: 1fr;
}
.branch-info {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
}
.branch-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.branch-title strong {
  margin: 0;
}
.branch-map-preview {
  min-width: 0;
  min-height: 190px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--clinical-sky) 74%, white), color-mix(in srgb, var(--clinical-mint) 52%, white));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.56), 0 12px 30px rgba(8, 47, 73, .08);
}
.branch-map-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  border: 0;
}
.branch-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid !important;
  place-items: center;
  background: color-mix(in srgb, var(--brand) 13%, white);
  color: var(--brand) !important;
  font-size: 16px !important;
}
.branch-line {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 13px !important;
}
.branch-line b {
  flex: 0 0 auto;
  font-size: 13px;
}
.inline-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid !important;
  place-items: center;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, white);
}
.inline-icon-whatsapp {
  color: #25d366;
  background: rgba(37, 211, 102, .12);
}
.inline-icon-phone {
  color: #2563eb;
  background: rgba(37, 99, 235, .10);
}
.inline-icon-email {
  color: #0f766e;
  background: rgba(15, 118, 110, .10);
}
.inline-icon-location {
  color: #e11d48;
  background: rgba(225, 29, 72, .10);
}
.inline-icon-clock {
  color: #7c3aed;
  background: rgba(124, 58, 237, .10);
}

.lab-whatsapp-float {
  position: fixed;
  inset-inline-start: 22px;
  inset-block-end: 22px;
  z-index: 55;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  background: #25d366;
  color: #072b18;
  box-shadow: 0 18px 42px rgba(37, 211, 102, .32);
  font-weight: 950;
}
.lab-whatsapp-float b {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: white;
  color: #25d366;
}
.lab-whatsapp-float b svg {
  width: 19px;
  height: 19px;
}

.cta-ribbon {
  margin-block: 10px 34px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, white);
  border-radius: 16px;
  background: linear-gradient(120deg, color-mix(in srgb, var(--brand) 10%, white), color-mix(in srgb, var(--accent) 7%, white));
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.cta-ribbon strong, .cta-ribbon span {
  display: block;
}
.cta-ribbon strong {
  font-size: 20px;
}
.cta-ribbon span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.site-footer {
  margin-top: 26px;
  background: #111827;
  color: #e5edf7;
  padding-bottom: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(150px, .7fr));
  gap: 22px;
  padding-block: 28px;
}
.footer-grid p, .footer-grid span, .footer-grid a {
  color: #aebbd0;
  font-size: 13px;
}
.footer-grid a, .footer-grid span {
  display: block;
  margin-top: 8px;
}
/* MEASURED AT 21px on a 375px phone, six of them stacked eight pixels apart -- a 29px pitch against
   a thumb contact patch of about 45px, so the neighbouring link is inside the same tap. Below even
   the 24px WCAG 2.2 AA floor. The height comes from padding rather than a bare min-height, or the
   text sits against one edge of a box a patient still has to aim at. */
.footer-grid a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding-block: 4px;
}
.footer-grid strong {
  color: white;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.social-links .social-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 0;
  margin: 0;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.social-links .social-link:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.20);
}
.social-links .social-link svg {
  width: 19px;
  height: 19px;
  display: block;
}
.social-link-facebook { background: #1877f2; }
.social-link-instagram { background: radial-gradient(circle at 30% 105%, #fdf497 0 17%, #fd5949 42%, #d6249f 65%, #285aeb 100%); }
.social-link-linkedin { background: #0a66c2; }
.social-link-maps { background: #34a853; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mobile-nav {
  display: none;
}

/* Clinical color identity layer. Keeps tenant brand colors, but anchors them in a calmer medical palette. */
:root {
  --clinical-navy: #082f49;
  --clinical-ink: #10233f;
  --clinical-blue: #1d4ed8;
  --clinical-teal: #14b8a6;
  --clinical-mint: #dff7f2;
  --clinical-sky: #e8f3ff;
  --clinical-cream: #fff7ed;
  --panel-tint: #f7fbff;
  --shadow: 0 24px 62px rgba(8, 47, 73, .11);
}

body {
  background:
    linear-gradient(180deg, #f9fcff 0%, #eef8fb 38%, #ffffff 100%);
}

.announcement {
  background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 82%, var(--clinical-teal)), var(--clinical-blue));
  color: white;
  border-bottom: 0;
}
.announcement a {
  color: white;
  background: rgba(255,255,255,.16);
  border-radius: 999px;
}
.announcement.language-only {
  background: #eef3f8;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.announcement.language-only .site-frame {
  justify-content: flex-end;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), color-mix(in srgb, var(--clinical-sky) 68%, white));
  border-bottom-color: color-mix(in srgb, var(--brand) 18%, var(--line));
  box-shadow: 0 16px 36px rgba(8, 47, 73, .08);
}
.brand-logo,
.brand-monogram {
  border-color: color-mix(in srgb, var(--brand) 28%, var(--line));
  box-shadow: 0 10px 26px rgba(8, 47, 73, .10);
}
.brand-monogram {
  background: linear-gradient(135deg, var(--clinical-navy), var(--brand) 52%, var(--accent));
}
.site-menu {
  border-color: color-mix(in srgb, var(--brand) 24%, var(--line));
  background: rgba(255,255,255,.78);
}
.site-menu a:hover,
.site-menu a.active {
  color: var(--clinical-navy);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 13%, white), color-mix(in srgb, var(--accent) 9%, white));
}
.small-cta,
.card-action,
.path-grid b,
.journey-band b {
  background: linear-gradient(135deg, var(--clinical-navy), color-mix(in srgb, var(--accent) 72%, var(--clinical-teal)));
}

.hero-section {
  border-color: color-mix(in srgb, var(--brand) 24%, var(--line));
  background:
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, color-mix(in srgb, var(--clinical-sky) 58%, white) 46%, color-mix(in srgb, var(--clinical-mint) 42%, white) 100%);
  box-shadow: 0 30px 78px rgba(8, 47, 73, .12);
}
.eyebrow {
  color: color-mix(in srgb, var(--brand) 74%, var(--clinical-navy));
}
h1,
h2,
.section-heading span,
.hero-signals b,
.tracker-copy h2,
.contact-card strong,
.branch-grid strong {
  color: var(--clinical-navy);
}
.hero-signals span,
.stats-strip article,
.journey-band a,
.spotlight-card,
.service-card,
.feature-card,
.program-card,
.trust-card,
.education-card,
.faq-card,
.mini-card,
.branch-grid article,
.booking-card,
.results-card,
.tracker-card,
.contact-grid article {
  border-color: color-mix(in srgb, var(--brand) 17%, var(--line));
  box-shadow: 0 16px 38px rgba(8, 47, 73, .06);
}
.hero-signals span,
.stats-strip article,
.journey-band a,
.service-card,
.education-card,
.faq-card,
.mini-card {
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--clinical-sky) 44%, white));
}
.primary-action,
.booking-form button,
.result-form button,
.tracking-form button,
.patient-assistant-form button,
.tracking-open-result,
.cta-ribbon a {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 86%, var(--clinical-teal)), var(--accent));
  box-shadow: 0 14px 26px color-mix(in srgb, var(--brand) 22%, transparent);
}
.secondary-action,
.inline-actions a,
.section-heading.with-action a {
  border-color: color-mix(in srgb, var(--brand) 22%, var(--line));
  background: rgba(255,255,255,.88);
  color: var(--clinical-navy);
  /* The last three under the floor: measured at 39px on a 375px phone -- above WCAG 2.2's 24px AA
     minimum but short of Apple's 44pt and Material's 48dp. They are full-width block links a
     patient taps, not words inside a sentence, so a floor costs the layout five pixels. */
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-strip b,
.section-heading.with-action a,
.branch-actions a,
.tracking-card-head b,
.branch-icon {
  color: color-mix(in srgb, var(--brand) 72%, var(--clinical-navy));
}
.path-grid a,
.trust-card,
.booking-card {
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--clinical-mint) 52%, white));
}
.path-grid a:after,
.tracker-progress span {
  background: linear-gradient(90deg, var(--brand), var(--clinical-teal), var(--accent));
}
.feature-card {
  border-inline-start-color: #f59e0b;
}
.program-card {
  border-inline-start-color: var(--clinical-blue);
}
.confidence-band {
  background: linear-gradient(180deg, color-mix(in srgb, var(--clinical-sky) 62%, white), #ffffff);
}
.results-card {
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--clinical-sky) 64%, white));
}
.tracker-card,
.branch-card {
  background: linear-gradient(135deg, #ffffff, color-mix(in srgb, var(--clinical-sky) 48%, white) 46%, color-mix(in srgb, var(--clinical-mint) 36%, white)) !important;
}
.contact-icon {
  background: linear-gradient(135deg, var(--clinical-navy), var(--brand), var(--accent));
}
.tracking-payment-note {
  background: linear-gradient(135deg, var(--clinical-cream), #fff);
}

input,
select,
textarea,
.segmented-field b,
.result-methods span {
  border-color: color-mix(in srgb, var(--brand) 13%, var(--line));
}
input:focus,
select:focus,
textarea:focus {
  outline-color: color-mix(in srgb, var(--clinical-blue) 20%, transparent);
}

.cta-ribbon {
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--clinical-navy) 88%, var(--brand)), color-mix(in srgb, var(--brand) 82%, var(--clinical-teal)));
  color: white;
  border-color: transparent;
  box-shadow: 0 24px 56px rgba(8, 47, 73, .16);
}
.cta-ribbon span,
.cta-ribbon strong {
  color: white;
}

.lab-whatsapp-float {
  box-shadow: 0 18px 46px rgba(37, 211, 102, .34), 0 0 0 6px rgba(37, 211, 102, .10);
}

.action-focus.narrow-action:has(.booking-card) {
  gap: 22px;
  align-items: start;
}
.booking-card {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  border-radius: 24px !important;
  border-color: color-mix(in srgb, var(--brand) 24%, var(--line)) !important;
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--clinical-sky) 40%, white) 48%, color-mix(in srgb, var(--clinical-mint) 30%, white) 100%) !important;
  box-shadow: 0 28px 74px rgba(8, 47, 73, .14) !important;
}
.booking-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--clinical-teal), var(--accent));
}
.booking-card-head {
  display: grid;
  gap: 7px;
  padding: 25px 26px 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 16%, var(--line));
  background: linear-gradient(135deg, rgba(255,255,255,.94), color-mix(in srgb, var(--clinical-sky) 42%, white));
}
.booking-card-head .eyebrow {
  margin: 0;
}
.booking-card-head h2 {
  font-size: 34px;
  line-height: 1.12;
}
.booking-card-head p {
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.7;
}
.booking-form {
  margin-top: 0;
  padding: 20px 24px 24px;
  gap: 14px;
  align-items: start;
}
.booking-form > label {
  min-width: 0;
}
.booking-form label {
  gap: 7px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 48px;
  border-radius: 12px;
  border-color: color-mix(in srgb, var(--brand) 16%, var(--line));
  background: rgba(255,255,255,.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.booking-form textarea {
  line-height: 1.6;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: color-mix(in srgb, var(--accent) 64%, var(--brand));
  outline: 3px solid color-mix(in srgb, var(--accent) 18%, transparent);
  background: #fff;
}
.booking-form .segmented-field {
  padding: 9px;
  border: 1px solid color-mix(in srgb, var(--brand) 15%, var(--line));
  border-radius: 16px;
  background: rgba(255,255,255,.68);
}
.booking-form .segmented-field > span {
  padding-inline: 6px;
  color: var(--clinical-navy);
}
.booking-form .segmented-field b {
  min-height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,.92);
  color: var(--muted);
  font-weight: 950;
}
.booking-form .segmented-field input:checked + b {
  border-color: transparent;
  background: linear-gradient(135deg, var(--clinical-navy), color-mix(in srgb, var(--brand) 78%, var(--clinical-teal)));
  color: #fff;
  box-shadow: 0 13px 28px color-mix(in srgb, var(--brand) 24%, transparent);
}
.test-request-panel {
  position: relative;
  gap: 14px;
  border-radius: 18px;
  border-color: color-mix(in srgb, var(--brand) 24%, var(--line));
  background:
    radial-gradient(circle at 4% 8%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 34%),
    linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--clinical-mint) 36%, white));
  padding: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76);
}
.test-request-head {
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 13%, var(--line));
}
.test-request-head strong {
  color: var(--clinical-navy);
  font-size: 18px;
}
.test-request-head small {
  font-size: 12.5px;
}
.test-request-grid {
  grid-template-columns: minmax(0, 1.08fr) 42px minmax(220px, .78fr);
  gap: 12px;
  align-items: stretch;
}
.test-request-text {
  min-width: 0;
}
.test-request-text textarea {
  min-height: 132px;
  resize: vertical;
  padding: 14px;
}
.test-request-or {
  align-self: center;
  justify-self: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  background: #fff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(8, 47, 73, .08);
}
.request-file-drop {
  min-height: 132px;
  display: grid !important;
  align-content: center;
  justify-items: center;
  gap: 9px;
  text-align: center;
  border-radius: 16px;
  border-color: color-mix(in srgb, var(--brand) 36%, var(--line));
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), color-mix(in srgb, var(--clinical-sky) 56%, white));
  padding: 16px;
}
.request-file-drop > strong {
  color: var(--clinical-navy);
  font-size: 14px;
  line-height: 1.35;
}
.request-file-drop::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
}
.request-file-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 280px;
}
.request-file-action {
  position: relative;
  min-height: 40px !important;
  display: inline-grid !important;
  place-items: center;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--line));
  background: rgba(255,255,255,.92);
  color: var(--clinical-navy) !important;
  padding: 9px 10px !important;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(8, 47, 73, .06);
}
.request-file-camera {
  border-color: transparent;
  background: linear-gradient(135deg, var(--clinical-navy), var(--brand));
  color: #fff !important;
}
.request-file-action input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.request-file-drop input::file-selector-button {
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 12%, white);
  color: var(--clinical-navy);
  padding: 7px 10px;
  font-weight: 900;
  cursor: pointer;
}
.request-file-drop small {
  max-width: 260px;
  text-align: center;
  font-size: 12px;
}
.request-file-drop small.has-file {
  color: var(--brand);
  font-weight: 950;
}
.request-camera-help {
  color: color-mix(in srgb, var(--muted) 86%, var(--brand));
}
.booking-submit-row {
  display: grid;
  gap: 9px;
  margin-top: 2px;
}
.booking-submit-row button[type="submit"] {
  width: 100%;
  min-height: 54px;
  border-radius: 15px;
  font-size: 16px;
}
.booking-submit-row .form-status {
  min-height: 0;
  text-align: center;
}
.booking-submit-row .form-status:empty {
  display: none;
}
.booking-submit-row .form-status:not(:empty) {
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.72);
  border: 1px solid color-mix(in srgb, var(--brand) 14%, var(--line));
}

.site-footer {
  background:
    linear-gradient(135deg, #06192b 0%, var(--clinical-navy) 54%, #053b42 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: #c5d7e8;
  /* THE FLOOR IS REPEATED HERE because this is the LAST rule for this selector and would otherwise
     be the one that decides. Measured at 21px on a 375px phone, six of them stacked eight pixels
     apart -- a 29px pitch against a thumb of about 45px, so the neighbouring link is inside the
     same tap, and below even the 24px WCAG 2.2 AA floor. */
  min-height: 44px;
  display: flex;
  align-items: center;
  padding-block: 4px;
}
.social-links a:not(.social-link) {
  background: rgba(255,255,255,.06);
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 8px;
  }
  .brand-lockup {
    flex-basis: 320px;
    min-width: 260px;
    max-width: 340px;
  }
  .site-menu {
    overflow: visible;
    justify-content: center;
  }
  .site-menu a {
    min-width: 86px;
    padding-inline: 9px;
    font-size: 12px;
  }
  .header-action {
    inline-size: 116px;
    block-size: 50px;
    font-size: 13px;
  }
  .portal-language-control {
    inline-size: 116px;
    block-size: 50px;
  }
  .smart-menu {
    display: none;
  }
  .hero-section, .page-hero, .action-focus, .action-focus.narrow-action, .page-grid-two {
    grid-template-columns: 1fr;
  }
  .about-overview-band .spotlight-card {
    grid-template-columns: 1fr;
  }
  .about-overview-band .inline-actions {
    justify-content: flex-start;
    min-width: 0;
  }
  .catalog-results {
    grid-template-columns: 1fr;
  }
  .tracker-card {
    grid-template-columns: 1fr;
  }
  .tracker-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .journey-band > div:last-child, .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-preview .card-grid,
  .confidence-band .card-grid,
  .patient-guide-band .card-grid,
  .guide-articles-band .card-grid,
  .faq-grid > .card-grid,
  .offers-band .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-hero img {
    max-height: 260px;
  }
  .intent-band {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1081px) {
  .intent-band {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }
  .site-frame {
    width: min(100% - 22px, 1120px);
  }
  .announcement .site-frame {
    min-height: auto;
    padding-block: 6px;
    align-items: center;
  }
  .site-header .site-frame {
    width: min(100% - 20px, 1120px);
  }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding-block: 8px 10px;
    overflow: visible;
  }
  .brand-lockup {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 52px;
    gap: 8px;
    justify-content: flex-start;
    border-radius: 16px;
  }
  .brand-lockup span:last-child {
    min-width: 0;
    max-width: calc(100% - 52px);
  }
  .brand-lockup strong {
    max-width: 100%;
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.35;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .brand-lockup small {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.3;
  }
  .brand-logo,
  .brand-monogram {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .header-actions {
    width: 100%;
    margin-inline-start: 0;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 7px;
    order: 2;
  }
  .header-action,
  .portal-language-control {
    width: 100%;
    inline-size: auto;
    min-width: 0;
    block-size: 44px;
    border-radius: 12px;
  }
  .header-action {
    font-size: 12px;
    line-height: 1.15;
    padding-inline: 6px;
  }
  .portal-language-control {
    padding-inline: 7px;
    gap: 6px;
  }
  .portal-language-icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }
  .portal-language-icon svg {
    width: 15px;
    height: 15px;
  }
  .portal-language-control select {
    /* 44px on a phone too. This block made the control SMALLER below 720px, which is the width
     at which a finger replaces a mouse. Measured on a 375px screen before the change. */
    min-height: 44px;
    font-size: 12px;
  }
  .site-menu {
    order: 3;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    border-radius: 16px;
    padding: 4px;
  }
  .site-menu a {
    min-width: 0;
    /* 44px, not 38: this is the phone breakpoint, where the target matters most. */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.2;
    padding: 7px 4px;
  }
  h1 {
    font-size: 34px;
  }
  .page-hero h1, .hero-copy h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 25px;
  }
  .hero-section, .page-hero {
    padding-block: 24px 16px;
  }
  .hero-signals, .path-grid {
    grid-template-columns: 1fr;
  }
  .intent-links {
    grid-template-columns: 1fr;
  }
  .stats-strip, .booking-form, .result-form, .footer-grid, .journey-band > div:last-child {
    grid-template-columns: 1fr;
  }
  .result-methods, .lookup-panel.two-fields, .segmented-field, .segmented-field.three {
    grid-template-columns: 1fr;
  }
  .catalog-head, .catalog-test, .quote-summary, .consultation-fields, .test-request-grid, .test-request-upload {
    grid-template-columns: 1fr;
  }
  .catalog-test button {
    width: 100%;
  }
  .tracker-steps, .tracking-summary {
    grid-template-columns: 1fr;
  }
  .branch-card {
    grid-template-columns: 1fr;
  }
  .branch-map-preview,
  .branch-map-preview iframe {
    min-height: 210px;
  }
  .tracking-card-head, .tracking-current {
    align-items: stretch;
    flex-direction: column;
  }
  .tracking-current strong {
    text-align: start;
  }
  .segmented-field > span {
    min-height: auto;
  }
  .card-grid, .faq-grid, .branch-grid {
    grid-template-columns: 1fr;
  }
  .trust-preview .card-grid,
  .confidence-band .card-grid,
  .patient-guide-band .card-grid,
  .guide-articles-band .card-grid,
  .faq-grid > .card-grid,
  .offers-band .card-grid {
    grid-template-columns: 1fr;
  }
  .lab-whatsapp-float {
    inset-inline-start: auto;
    inset-inline-end: auto;
    left: 14px;
    right: auto;
    inset-block-end: max(14px, env(safe-area-inset-bottom));
    min-height: 48px;
    padding: 8px 11px;
  }
  .lab-whatsapp-float span {
    display: none;
  }
  html[dir="ltr"] .lab-whatsapp-float {
    left: auto;
    right: 14px;
  }
  html[dir="rtl"] .lab-whatsapp-float {
    left: 14px;
    right: auto;
  }
  .section-heading.with-action {
    grid-template-columns: 1fr;
  }
  .about-overview-band .spotlight-card {
    padding: 18px;
  }
  .about-overview-band .inline-actions a {
    flex: 1 1 100%;
  }
  .primary-action, .secondary-action, .booking-form button, .result-form button, .tracking-form button, .cta-ribbon a {
    width: 100%;
  }
  .cta-ribbon {
    display: grid;
  }
  .mobile-nav {
    display: none;
  }
  .site-footer {
    padding-bottom: 86px;
  }
  .footer-grid {
    padding-block: 24px 96px;
  }
}

@media (max-width: 720px) {
  .booking-card {
    border-radius: 18px !important;
  }
  .booking-card-head,
  .booking-form {
    padding-inline: 16px;
  }
  .booking-card-head {
    padding-block: 20px 15px;
  }
  .booking-card-head h2 {
    font-size: 29px;
  }
  .booking-form {
    padding-block: 16px 18px;
    gap: 12px;
  }
  .booking-form .segmented-field {
    padding: 8px;
  }
  .test-request-panel {
    padding: 13px;
    border-radius: 16px;
  }
  .test-request-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .test-request-or {
    width: 100%;
    height: 30px;
    border-radius: 999px;
    box-shadow: none;
  }
  .request-file-drop,
  .test-request-text textarea {
    min-height: 118px;
  }
}
