:root {
  --ink: #102331;
  --muted: #5a6f7c;
  --line: #d9e4e7;
  --paper: #ffffff;
  --soft: #f4f9f8;
  --teal: #087e8b;
  --teal-dark: #075763;
  --badge-dark: #143847;
  --badge-dark-hover: #183f4d;
  --blue: #194b7a;
  --aqua: #dff5f2;
  --coral: #d75f4a;
  --shadow: 0 22px 60px rgba(16, 35, 49, 0.12);
  --card-shadow: 0 14px 34px rgba(16, 35, 49, 0.09);
  --card-shadow-strong: 0 24px 58px rgba(16, 35, 49, 0.16);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.cookie-banner,
.cookie-settings-trigger {
  box-shadow: 0 22px 60px rgba(16, 35, 49, 0.18);
  z-index: 80;
}

.cookie-banner {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 35, 49, 0.12);
  border-radius: 24px;
  bottom: 18px;
  left: 18px;
  max-width: min(520px, calc(100vw - 36px));
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: fixed;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
  width: calc(100vw - 36px);
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner-title {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0 0 10px;
}

.cookie-banner-copy,
.cookie-banner-status {
  color: #46606d;
  font-size: 0.94rem;
  margin: 0;
}

.cookie-banner-status {
  color: var(--teal-dark);
  font-weight: 800;
  margin-top: 10px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-banner-button,
.cookie-settings-trigger {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.cookie-banner-button:hover,
.cookie-settings-trigger:hover {
  transform: translateY(-1px);
}

.cookie-banner-button-primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
}

.cookie-banner-button-primary:hover {
  background: #18394f;
  border-color: #18394f;
}

.cookie-banner-button-secondary,
.cookie-settings-trigger {
  background: #f3f7f8;
  border: 1px solid #d8e3e7;
  color: var(--ink);
}

.cookie-banner-button-secondary:hover,
.cookie-settings-trigger:hover {
  background: #eaf2f4;
  border-color: #c7d7dc;
}

.cookie-settings-trigger {
  bottom: 18px;
  left: 18px;
  position: fixed;
}

.cookie-settings-trigger[hidden] {
  display: none;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 228, 231, 0.9);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: grid;
  min-width: 220px;
}

.brand-mark {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  height: auto;
  justify-content: center;
  overflow: visible;
  width: 220px;
}

.brand-mark img {
  height: auto;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.brand-tagline {
  color: #536b78;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin-top: -3px;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  margin-top: 1px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-nav a,
.nav-dropdown-toggle {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #314b58;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  padding: 10px 14px;
}

.site-nav a:hover,
.nav-dropdown-toggle:hover,
.blood-tests-menu.is-open .nav-dropdown-toggle {
  background: #f3f6f7;
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: #fff;
  padding-inline: 18px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  display: none;
  height: 18px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.blood-tests-menu.is-open::after,
.blood-tests-menu:hover::after {
  display: block;
}

.nav-dropdown-toggle::after {
  content: "⌄";
  display: inline-block;
  font-size: 0.78em;
  margin-left: 7px;
  transform: translateY(-1px);
}

.blood-tests-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d5e1e5;
  border-radius: 24px;
  box-shadow: 0 34px 88px rgba(16, 35, 49, 0.18);
  display: grid;
  gap: 18px 24px;
  grid-template-columns: minmax(230px, 0.72fr) minmax(360px, 1fr);
  left: 50%;
  max-width: min(980px, calc(100vw - 40px));
  min-height: 430px;
  padding: 24px;
  position: absolute;
  top: calc(100% + 14px);
  transform: translateX(-38%);
  width: 980px;
  z-index: 30;
}

.blood-tests-panel[hidden] {
  display: none;
}

.blood-tests-menu-heading {
  align-items: center;
  border-bottom: 1px solid #dde7ea;
  display: flex;
  gap: 16px;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding: 0 2px 14px;
}

.blood-tests-menu-heading span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blood-tests-menu-heading a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  padding: 0;
}

.blood-tests-menu-heading a:hover {
  background: transparent;
  color: #314b58;
}

.blood-tests-categories {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-right: 2px;
}

.blood-tests-category {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 14px 15px;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.blood-tests-category span {
  font-size: 0.96rem;
  font-weight: 850;
}

.blood-tests-category::after {
  color: #7c929c;
  content: "›";
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.blood-tests-category:hover,
.blood-tests-category.active {
  background: #eef3f5;
  border-color: #cbdce1;
  box-shadow: 0 12px 26px rgba(16, 35, 49, 0.075);
  color: var(--ink);
  transform: translateY(-1px);
}

.blood-tests-category:hover::after,
.blood-tests-category.active::after {
  opacity: 1;
  transform: translateX(0);
}

.blood-tests-lists {
  background: #fff;
  border: 1px solid #dbe6ea;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.06);
  min-height: 100%;
  padding: 24px;
}

.blood-tests-list {
  display: none;
}

.blood-tests-list.active {
  display: block;
}

.blood-tests-list-header {
  align-items: flex-start;
  border-bottom: 1px solid #dde7ea;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.blood-tests-list-header strong {
  color: var(--ink);
  font-size: 1.22rem;
}

.blood-tests-list-header p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  margin: 7px 0 0;
  max-width: 510px;
}

.blood-tests-list-header a {
  border: 1px solid #d6e2e6;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 12px;
  white-space: nowrap;
}

.blood-tests-list-header a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.blood-tests-links {
  display: grid;
  gap: 4px;
  max-height: 310px;
  overflow: auto;
  padding-right: 4px;
}

.blood-tests-links a {
  align-items: center;
  border: 1px solid transparent;
  border-bottom-color: #eef3f4;
  border-radius: 12px;
  color: #365461;
  display: flex;
  font-size: 0.9rem;
  font-weight: 760;
  justify-content: space-between;
  padding: 11px 12px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.blood-tests-links a::after {
  color: #6c828d;
  content: "›";
  font-size: 1.15rem;
  font-weight: 900;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.blood-tests-links a:hover {
  background: #f4f7f8;
  border-color: #dbe6ea;
  color: var(--ink);
  transform: translateY(-1px);
}

.blood-tests-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 24px;
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 64px) 64px;
  position: relative;
}

.hero-image-wrap,
.hero-image,
.hero-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image-wrap {
  display: block;
}

.hero-image {
  filter: saturate(1.12) contrast(1.08) brightness(0.82);
  object-fit: cover;
  object-position: center right;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(16, 35, 49, 0.78) 0%, rgba(16, 35, 49, 0.58) 42%, rgba(16, 35, 49, 0.2) 76%, rgba(16, 35, 49, 0.08) 100%),
    linear-gradient(180deg, rgba(16, 35, 49, 0.18) 0%, rgba(16, 35, 49, 0.02) 52%, rgba(16, 35, 49, 0.34) 100%);
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  color: #8ee7dd;
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 650px;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0;
  line-height: 1.06;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: #e8f1f3;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  margin-bottom: 30px;
  max-width: 580px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

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

.button {
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 126, 139, 0.24);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero .hero-actions .button {
  border-radius: 13px;
  min-height: 58px;
  position: relative;
  will-change: transform;
}

.hero .hero-actions .button::after {
  content: ">";
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero .hero-actions .button.primary {
  box-shadow: 0 20px 48px rgba(8, 126, 139, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero .hero-actions .button.primary:hover {
  background: #0a7d88;
  box-shadow: 0 28px 66px rgba(8, 126, 139, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.hero .hero-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(7, 20, 30, 0.2);
}

.hero .hero-actions .button.secondary:hover {
  background: var(--ink);
  border-color: rgba(180, 220, 226, 0.32);
  box-shadow: 0 26px 58px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-3px);
}

.hero .hero-actions .button:hover::after {
  opacity: 0.9;
  transform: translateX(0);
}

.hero .hero-actions .button:active {
  transform: translateY(-1px) scale(0.99);
}

.hero .hero-actions .button:focus-visible {
  outline: 3px solid rgba(142, 231, 221, 0.48);
  outline-offset: 4px;
}

.hero-action-note {
  color: #d6e5e8;
  font-size: 0.96rem;
  font-weight: 650;
  margin: 14px 0 0;
  max-width: 42rem;
}

.hero-metrics {
  display: none;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 52px 0 0;
  max-width: 680px;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(16, 35, 49, 0.14);
  padding: 16px;
}

.hero-metrics dt {
  font-weight: 850;
  margin-bottom: 4px;
}

.hero-metrics dd {
  color: var(--muted);
  font-size: 0.91rem;
  margin: 0;
}

.hero-mobile-promo {
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(27, 170, 176, 0.95), rgba(11, 87, 108, 0.96) 58%, rgba(14, 53, 77, 0.98));
  border: 1px solid rgba(194, 245, 239, 0.45);
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(7, 20, 30, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-height: 214px;
  overflow: hidden;
  padding: 24px 26px 26px;
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  text-align: center;
  top: 54%;
  transform: translateY(-50%);
  width: min(460px, 34vw);
  z-index: 3;
}

.hero-mobile-promo::before {
  background: rgba(255, 255, 255, 0.16);
  content: "";
  height: 1px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 42px;
}

.hero-mobile-promo-kicker {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 8px 12px;
  text-transform: uppercase;
}

.hero-mobile-promo strong {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
  max-width: 12ch;
}

.hero-mobile-promo-price {
  color: #dffcf5;
  display: block;
  font-size: clamp(2.8rem, 5.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-shadow: 0 6px 18px rgba(6, 27, 37, 0.24);
}

.section {
  padding: 84px clamp(20px, 5vw, 64px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.intro-band {
  background: var(--ink);
  color: #fff;
  padding-block: 42px;
}

.intro-band .eyebrow {
  color: #82e0d6;
}

.intro-grid {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.2fr 0.8fr;
}

.intro-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  margin: 0;
}

.intro-grid p:last-child {
  color: #d7e4e8;
  font-size: 1.05rem;
  margin: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 660px;
}

.section-heading.compact {
  max-width: 660px;
}

.barry-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(8, 126, 139, 0.045), transparent 32%),
    linear-gradient(180deg, #fff, #f8fbfb);
}

.barry-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 5.2vw, 76px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  max-width: 1120px;
}

.barry-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 253, 0.98));
  border: 1px solid rgba(199, 221, 225, 0.86);
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(16, 35, 49, 0.09);
  color: var(--ink);
  display: block;
  min-height: 0;
  max-width: 420px;
  padding: 16px;
  width: 100%;
}

.barry-card::after {
  display: none;
}

.barry-photo-card {
  border-radius: 18px;
  box-shadow: none;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.barry-photo-card img {
  aspect-ratio: 1 / 1.08;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.barry-card-copy {
  padding: 20px 6px 2px;
}

.barry-card-copy .eyebrow {
  margin-bottom: 10px;
}

.barry-card-copy h3 {
  font-size: clamp(1.34rem, 1.78vw, 1.72rem);
  line-height: 1.12;
  margin: 0 0 12px;
}

.barry-card-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.52;
  margin: 0;
}

.barry-copy h2 {
  font-size: clamp(2.25rem, 3.35vw, 3.45rem);
  line-height: 1.06;
  max-width: 620px;
}

.barry-copy p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 610px;
}

.credential-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.credential-list span {
  align-items: center;
  background:
    linear-gradient(180deg, #fff, #fbfdfd);
  border: 1px solid #c7dde1;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(16, 35, 49, 0.07);
  color: var(--teal-dark);
  display: flex;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.25;
  min-height: 60px;
  padding: 13px 14px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #354d59;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  min-height: 42px;
  padding: 0 16px;
}

.filter-button.active,
.filter-button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background:
    radial-gradient(circle at top right, rgba(8, 126, 139, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(223, 245, 242, 0.56), rgba(255, 255, 255, 0) 44%),
    #fff;
  border: 1px solid #a9cbd0;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px;
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card::before {
  background: linear-gradient(90deg, var(--ink), var(--teal), #5bbfae);
  border-radius: var(--radius) var(--radius) 0 0;
  content: "";
  height: 4px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.service-card:hover {
  border-color: #6fb8c0;
  box-shadow: 0 30px 70px rgba(16, 35, 49, 0.2);
  transform: translateY(-5px);
}

.service-card.is-hidden {
  display: none;
}

.service-card p {
  color: var(--muted);
  flex: 0 0 auto;
}

.service-card a {
  color: var(--teal-dark);
  font-weight: 850;
  margin-top: 10px;
}

.service-icon {
  align-items: center;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(16, 35, 49, 0.18);
  color: #8ee7dd;
  display: inline-flex;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  margin-bottom: 20px;
  width: 46px;
}

.catalogue-preview {
  border: 1px solid #c7dde1;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  overflow: hidden;
}

.performance-section {
  background: linear-gradient(180deg, #102331, #173242);
  color: #fff;
}

.performance-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.performance-copy .eyebrow {
  color: #82e0d6;
}

.performance-copy p {
  color: #d7e4e8;
  font-size: 1.08rem;
  max-width: 680px;
}

.performance-media,
.social-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(142, 231, 221, 0.32);
  border-top: 4px solid #8ee7dd;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.performance-media img,
.social-hero-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.performance-media div,
.social-hero-card div {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.performance-media strong,
.social-hero-card strong {
  color: #fff;
  font-size: 1.1rem;
}

.performance-media span,
.social-hero-card span {
  color: #c8d8dd;
}

.category-row {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 35, 49, 0.035), rgba(255, 255, 255, 0)),
    #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 68px;
  padding: 18px 20px;
}

.partner-page {
  padding-top: 76px;
}

.partner-hero {
  background:
    linear-gradient(105deg, rgba(16, 35, 49, 0.96), rgba(16, 35, 49, 0.78)),
    url("assets/sean-willers/coaching-transformation-clients.png");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 84px clamp(20px, 5vw, 64px);
}

.partner-hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 380px;
}

.partner-hero .back-link,
.partner-hero .eyebrow {
  color: #82e0d6;
}

.partner-hero .hero-copy {
  color: #d7e4e8;
}

.partner-roles-section {
  background: #f7fbfb;
}

.partner-roles-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-card {
  background:
    linear-gradient(145deg, rgba(23, 58, 72, 0.94), rgba(13, 41, 53, 0.88)),
    rgba(19, 53, 67, 0.86);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 16px;
  box-shadow: 0 26px 76px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(16px);
  padding: 28px;
}

.role-card.clinical {
  border-color: rgba(220, 190, 180, 0.28);
}

.role-card p {
  color: rgba(232, 241, 243, 0.78);
}

.social-proof-section {
  background: #fff;
}

.social-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
}

.social-image-card {
  background:
    linear-gradient(145deg, rgba(23, 58, 72, 0.94), rgba(13, 41, 53, 0.88)),
    rgba(19, 53, 67, 0.86);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 16px;
  box-shadow: 0 26px 76px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.social-image-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.social-image-card.tall img {
  aspect-ratio: 4 / 5;
}

.social-image-card div {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.social-image-card strong {
  font-size: 1.1rem;
}

.social-image-card span {
  color: rgba(232, 241, 243, 0.78);
}

.recommended-tests-section {
  background: linear-gradient(180deg, #fff, #f7fbfb);
}

.recommended-test-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recommended-test-card {
  --accent: #087e8b;
  --accent-border: #8fc7cd;
  --accent-soft: rgba(8, 126, 139, 0.08);
  --tint: rgba(223, 245, 242, 0.42);
  background:
    linear-gradient(145deg, rgba(23, 58, 72, 0.94), rgba(13, 41, 53, 0.88)),
    rgba(19, 53, 67, 0.86);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 16px;
  box-shadow: 0 26px 76px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(16px);
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.recommended-test-card:nth-child(2) {
  --accent: #d75f4a;
  --accent-border: #e5afa5;
  --accent-soft: rgba(215, 95, 74, 0.09);
  --tint: rgba(255, 239, 235, 0.62);
}

.recommended-test-card:nth-child(3) {
  --accent: #194b7a;
  --accent-border: #a8bfd4;
  --accent-soft: rgba(25, 75, 122, 0.09);
  --tint: rgba(229, 240, 250, 0.72);
}

.recommended-test-card:nth-child(4) {
  --accent: #7f6ab7;
  --accent-border: #c6bddd;
  --accent-soft: rgba(127, 106, 183, 0.09);
  --tint: rgba(241, 237, 250, 0.72);
}

.recommended-test-card:nth-child(5) {
  --accent: #2f8f5b;
  --accent-border: #afd5bf;
  --accent-soft: rgba(47, 143, 91, 0.09);
  --tint: rgba(232, 246, 237, 0.72);
}

.recommended-test-card:nth-child(6) {
  --accent: #c08a2b;
  --accent-border: #dcc38e;
  --accent-soft: rgba(192, 138, 43, 0.1);
  --tint: rgba(251, 243, 225, 0.76);
}

.recommended-test-card:nth-child(7) {
  --accent: #4d8ca8;
  --accent-border: #b8d5df;
  --accent-soft: rgba(77, 140, 168, 0.09);
  --tint: rgba(231, 243, 247, 0.78);
}

.recommended-test-card:nth-child(8) {
  --accent: #9a5b76;
  --accent-border: #d4b8c5;
  --accent-soft: rgba(154, 91, 118, 0.09);
  --tint: rgba(248, 235, 241, 0.74);
}

.recommended-test-card:nth-child(9) {
  --accent: #5b775f;
  --accent-border: #bacdbc;
  --accent-soft: rgba(91, 119, 95, 0.1);
  --tint: rgba(237, 245, 238, 0.78);
}

.recommended-test-card:hover {
  border-color: rgba(180, 220, 226, 0.34);
  box-shadow: 0 34px 92px rgba(7, 20, 30, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.recommended-test-card.featured {
  border-top-width: 4px;
}

.recommended-test-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommended-test-card strong {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.2;
}

.recommended-test-card p {
  color: rgba(232, 241, 243, 0.78);
  margin: 0;
}

.recommended-test-footer {
  margin-top: 24px;
}

.video-section {
  background: var(--soft);
}

.video-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  background:
    linear-gradient(145deg, rgba(23, 58, 72, 0.94), rgba(13, 41, 53, 0.88)),
    rgba(19, 53, 67, 0.86);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 16px;
  box-shadow: 0 26px 76px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  display: block;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.video-card:hover {
  border-color: rgba(180, 220, 226, 0.34);
  box-shadow: 0 34px 92px rgba(7, 20, 30, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.video-thumb {
  background: #102331;
  display: block;
  overflow: hidden;
  position: relative;
}

.video-thumb img {
  aspect-ratio: 9 / 16;
  display: block;
  height: auto;
  object-fit: cover;
  opacity: 0.88;
  width: 100%;
}

.video-thumb::after {
  background: linear-gradient(180deg, rgba(16, 35, 49, 0), rgba(16, 35, 49, 0.34));
  content: "";
  inset: 0;
  position: absolute;
}

.play-button {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  height: 54px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  z-index: 1;
}

.play-button::before {
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--teal-dark);
  border-top: 11px solid transparent;
  content: "";
  left: 21px;
  position: absolute;
  top: 16px;
}

.video-card h3 {
  font-size: 1rem;
  margin: 0;
  padding: 16px 16px 4px;
}

.video-card p {
  color: #a9dfe3;
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0;
  padding: 0 16px 16px;
}

.category-row:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.category-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.category-row:hover {
  background: linear-gradient(90deg, #e8f8f5, #fff);
}

.category-row span {
  font-weight: 850;
}

.category-row strong {
  color: var(--teal-dark);
  font-size: 0.9rem;
  white-space: nowrap;
}

.pathway-section,
.locations-section,
.faq-section {
  background: var(--soft);
}

.pathway {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pathway article {
  background:
    radial-gradient(circle at top right, rgba(215, 95, 74, 0.1), transparent 34%),
    linear-gradient(180deg, #fff, #f8fcfb),
    #fff;
  border: 1px solid #a9cbd0;
  border-top: 3px solid var(--coral);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.11);
  padding: 26px;
}

.pathway span {
  align-items: center;
  background: #fff3f0;
  border: 1px solid #f0c1b8;
  border-radius: 999px;
  color: var(--coral);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.pathway p,
.trust-copy p,
.booking-grid p,
.faq-list p {
  color: var(--muted);
}

.trust-grid,
.booking-grid {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: 0.9fr 1.1fr;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  background:
    linear-gradient(90deg, rgba(8, 126, 139, 0.08), rgba(255, 255, 255, 0) 42%),
    #fff;
  border: 1px solid #a9cbd0;
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(16, 35, 49, 0.1);
  padding: 20px;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list span {
  color: var(--muted);
  margin-top: 5px;
}

.locations-section {
  background: linear-gradient(180deg, #fff, #f7fbfb);
}

.locations-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-card {
  background: #fff;
  border: 1px solid #c7dde1;
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(16, 35, 49, 0.1);
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 22px;
}

.location-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.location-copy address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
  margin-bottom: 18px;
}

.location-copy a {
  color: var(--teal-dark);
  font-weight: 850;
}

.map-frame {
  border: 1px solid #c7dde1;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(16, 35, 49, 0.08);
  height: 300px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.booking-section {
  background: #eef7f5;
}

.contact-strip {
  margin-top: 28px;
}

.contact-strip a,
.contact-strip span {
  background: #fff;
  border: 1px solid #cde1df;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  padding: 14px 16px;
}

.booking-form {
  background:
    radial-gradient(circle at top right, rgba(8, 126, 139, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(223, 245, 242, 0.6), rgba(255, 255, 255, 0) 38%),
    #fff;
  border: 1px solid #a9cbd0;
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-strong);
  display: grid;
  gap: 16px;
  padding: 26px;
}

.booking-actions-panel {
  align-content: start;
}

.booking-actions-panel .button {
  width: 100%;
}

label {
  color: #2e4856;
  display: grid;
  font-weight: 750;
  gap: 7px;
}

input,
select,
textarea {
  background: #fbfdfd;
  border: 1px solid #cbdce0;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 126, 139, 0.16);
}

.form-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  font-size: 0.84rem;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 960px;
}

.faq-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.faq-form {
  position: sticky;
  top: 112px;
}

.faq-form h3 {
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.faq-form-copy {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
  padding: 20px 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--teal);
  content: "+";
  float: right;
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-bottom: 20px;
}

.faq-list details {
  background:
    linear-gradient(145deg, rgba(24, 61, 74, 0.98), rgba(18, 54, 67, 0.96)),
    var(--badge-dark);
  border: 1px solid rgba(180, 220, 226, 0.24);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(7, 20, 30, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  overflow: hidden;
  padding: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(142, 231, 221, 0.34);
  box-shadow: 0 28px 68px rgba(7, 20, 30, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.faq-list details[open] {
  background:
    linear-gradient(145deg, rgba(24, 61, 74, 0.98), rgba(18, 54, 67, 0.96)),
    var(--badge-dark);
  padding-bottom: 10px;
}

.faq-list summary {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1rem;
  gap: 18px;
  justify-content: space-between;
  padding: 22px 26px;
}

.faq-list summary:focus {
  outline: none;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(142, 231, 221, 0.32);
  outline-offset: -5px;
}

.faq-list summary::after {
  align-items: center;
  background: rgba(142, 231, 221, 0.14);
  border: 1px solid rgba(142, 231, 221, 0.24);
  border-radius: 999px;
  color: #8ee7dd;
  display: inline-flex;
  flex: 0 0 auto;
  float: none;
  font-size: 1.15rem;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.faq-list details[open] summary {
  border-bottom: 0;
  padding-bottom: 16px;
}

.faq-list p {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(180, 220, 226, 0.12);
  border-radius: 14px;
  color: rgba(232, 241, 243, 0.8);
  line-height: 1.55;
  margin: 0 18px 10px;
  padding: 18px 22px;
}

.faq-form .form-note {
  color: #657b87;
}

@media (max-width: 920px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-form {
    position: static;
    top: auto;
  }
}

.site-footer {
  background:
    radial-gradient(circle at 14% 0%, rgba(142, 231, 221, 0.12), transparent 32%),
    linear-gradient(180deg, #132d3c 0%, #0d202d 100%);
  color: #fff;
  padding: 58px clamp(20px, 5vw, 64px) 28px;
}

.footer-inner {
  align-items: start;
  display: grid;
  gap: clamp(32px, 6vw, 82px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.55fr);
  margin: 0 auto;
  max-width: 1180px;
}

.footer-brand img {
  display: block;
  height: auto;
  margin-bottom: 22px;
  max-width: 100%;
  width: 230px;
}

.footer-brand p,
.footer-locations p,
.footer-columns a {
  color: rgba(232, 241, 243, 0.78);
}

.footer-brand p {
  margin: 0 0 20px;
  max-width: 440px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact a {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(142, 231, 221, 0.22);
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
}

.footer-columns {
  display: grid;
  gap: clamp(20px, 4vw, 42px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-columns nav,
.footer-locations {
  display: grid;
  gap: 10px;
}

.footer-columns h2,
.footer-locations h2 {
  color: #8ee7dd;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.footer-columns a {
  font-weight: 750;
}

.footer-contact a:hover,
.footer-columns a:hover,
.footer-bottom a:hover {
  border-color: rgba(142, 231, 221, 0.52);
  color: #8ee7dd;
}

.footer-locations p {
  margin: 0;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(232, 241, 243, 0.62);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 40px auto 0;
  max-width: 1180px;
  padding-top: 22px;
}

.footer-bottom a {
  color: rgba(232, 241, 243, 0.72);
  font-weight: 800;
}

.test-page,
.catalogue-page {
  padding-top: 76px;
}

.blog-page,
.blog-article-page {
  padding-top: 76px;
}

.test-hero,
.catalogue-hero {
  background:
    linear-gradient(90deg, rgba(16, 35, 49, 0.82) 0%, rgba(16, 35, 49, 0.58) 46%, rgba(16, 35, 49, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 35, 49, 0.18) 0%, rgba(16, 35, 49, 0.02) 52%, rgba(16, 35, 49, 0.36) 100%),
    url("assets/clinic-hero.png");
  background-position: center right;
  background-size: cover;
  padding: 84px clamp(20px, 5vw, 64px);
  position: relative;
}

.test-hero::before,
.catalogue-hero::before {
  background: rgba(8, 126, 139, 0.1);
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: absolute;
}

.test-hero > *,
.catalogue-hero > * {
  position: relative;
  z-index: 1;
}

.test-hero-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
}

.back-link {
  color: var(--teal-dark);
  display: inline-flex;
  font-weight: 850;
  margin-bottom: 22px;
}

.test-hero .back-link,
.catalogue-hero .back-link,
.test-hero .eyebrow,
.catalogue-hero .eyebrow {
  color: #8ee7dd;
}

.test-hero h1,
.catalogue-hero h1 {
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

.test-hero .hero-copy,
.catalogue-hero .hero-copy {
  color: #e8f1f3;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.blog-hub-hero,
.blog-article-hero {
  background:
    radial-gradient(circle at top right, rgba(8, 126, 139, 0.18), transparent 28%),
    linear-gradient(180deg, #102331, #173242);
  color: #fff;
  padding: 84px clamp(20px, 5vw, 64px);
  position: relative;
}

.blog-page > .section:first-of-type,
.blog-article-page > .section:first-of-type {
  padding-top: 108px;
}

.blog-hub-hero .section-inner {
  margin: 0 auto;
  max-width: 1080px;
  text-align: center;
}

.blog-article-hero .section-inner {
  margin: 0 auto;
  max-width: 1080px;
  text-align: center;
}

.blog-hub-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.blog-article-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.blog-hub-hero .hero-copy,
.blog-article-hero .hero-copy {
  color: #d7e4e8;
  max-width: 760px;
}

.blog-hub-hero .hero-copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.blog-article-hero .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.blog-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-hub-hero .blog-kicker-row {
  justify-content: center;
}

.blog-kicker {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(142, 231, 221, 0.24);
  border-radius: 999px;
  color: #dff5f2;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 10px 14px;
}

.blog-breadcrumbs {
  color: #dff5f2;
  font-size: 0.94rem;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 18px;
}

.blog-breadcrumbs a {
  color: #dff5f2;
}

.blog-breadcrumbs span {
  color: #8ee7dd;
}

.blog-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-preview-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-hub-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.blog-card,
.blog-sidebar-card,
.blog-article-body {
  background:
    radial-gradient(circle at top right, rgba(8, 126, 139, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(223, 245, 242, 0.46), rgba(255, 255, 255, 0) 40%),
    #fff;
  border: 1px solid #a9cbd0;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.1);
  position: relative;
}

.blog-card::before,
.blog-sidebar-card::before,
.blog-article-body::before {
  background: linear-gradient(90deg, var(--ink), var(--teal), #5bbfae);
  border-radius: 18px 18px 0 0;
  content: "";
  height: 4px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.blog-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.blog-card-media picture {
  display: block;
  height: 100%;
}

.blog-card-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 220ms ease;
  width: 100%;
}

.blog-card-media img.focus-face-high {
  object-position: center 8%;
}

.blog-card-media img.focus-face-mid {
  object-position: center 12%;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  display: grid;
  gap: 16px;
  padding: 22px 24px 24px;
}

.blog-card-body .eyebrow {
  margin-bottom: 0;
}

.blog-card:hover {
  border-color: #6fb8c0;
  box-shadow: 0 28px 64px rgba(16, 35, 49, 0.16);
  transform: translateY(-4px);
}

.blog-card h2,
.blog-sidebar-card h2,
.blog-article-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  margin-bottom: 12px;
}

.blog-card h3,
.blog-article-body h3 {
  color: var(--ink);
  font-size: 1.3rem;
  margin-top: 28px;
}

.blog-card p,
.blog-sidebar-card p,
.blog-article-body p,
.blog-article-body li,
.blog-sidebar-card li {
  color: var(--muted);
}

.blog-card-meta,
.blog-article-meta {
  color: var(--teal-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.blog-article-meta {
  justify-content: center;
}

.blog-card-link {
  color: var(--teal-dark);
  font-weight: 850;
}

.blog-card-link::after,
.blog-inline-link::after {
  content: " >";
}

.blog-sidebar-card {
  padding: 24px;
}

.blog-sidebar-card ul,
.blog-article-body ul,
.blog-article-body ol {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.blog-article-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
}

.blog-article-body {
  padding: 30px;
}

.blog-article-body blockquote {
  background: #f5fbfb;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 22px 0;
  padding: 18px 20px;
}

.blog-article-body strong {
  color: var(--ink);
}

.blog-article-body .check-list {
  margin: 18px 0 30px;
}

.blog-article-body .check-list + h2 {
  margin-top: 30px;
}

.blog-article-body .check-list li {
  background: #f8fbfc;
  border: 1px solid #cfe2e4;
  box-shadow: 0 10px 24px rgba(16, 35, 49, 0.06);
  color: var(--ink);
  line-height: 1.55;
  padding: 14px 16px 14px 46px;
}

.blog-article-body .check-list li::before {
  background: #e2f5f3;
  border: 1px solid #b7dde1;
  color: var(--teal-dark);
}

.blog-booking-section {
  background: #eef7f5;
}

.blog-booking-section .booking-grid {
  align-items: start;
  gap: 40px;
}

.blog-booking-panel {
  align-content: start;
}

.blog-booking-panel .button {
  width: 100%;
}

.blog-preview-section {
  background: linear-gradient(180deg, #f6fbfb, #edf6f5);
}

.blog-preview-section .section-heading {
  margin-bottom: 28px;
}

.blog-preview-grid .blog-card {
  align-content: start;
}

.blog-preview-grid .blog-card-media {
  aspect-ratio: 16 / 9;
}

.blog-preview-grid .blog-card-media img {
  height: 100%;
}

.blog-preview-grid .blog-card-body {
  gap: 12px;
  padding: 18px 20px 20px;
}

.blog-preview-grid .blog-card h2 {
  font-size: clamp(1.15rem, 1.9vw, 1.65rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.blog-preview-grid .blog-card-meta {
  gap: 10px;
  font-size: 0.82rem;
}

.blog-preview-grid .blog-card-body p:not(.eyebrow) {
  font-size: 0.98rem;
  line-height: 1.5;
}

.blog-preview-grid .blog-card-link {
  margin-top: 4px;
}

.blog-preview-footer {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.back-link::before {
  content: "<";
  margin-right: 8px;
}

.test-summary-card,
.cta-panel,
.detail-panel {
  background:
    linear-gradient(145deg, rgba(23, 58, 72, 0.94), rgba(13, 41, 53, 0.88)),
    rgba(19, 53, 67, 0.86);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 16px;
  box-shadow: 0 26px 76px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.test-summary-card {
  padding: 20px;
}

.test-summary-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.test-summary-card div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(180, 220, 226, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 6px 14px rgba(16, 35, 49, 0.035);
  padding: 14px 15px;
}

.test-summary-card dt {
  color: #a9dfe3;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.test-summary-card dd {
  color: #fff;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
  margin: 0;
}

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-panel {
  position: relative;
  padding: 28px 28px 28px 30px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.detail-panel:hover {
  border-color: rgba(180, 220, 226, 0.34);
  box-shadow: 0 34px 92px rgba(7, 20, 30, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.detail-panel::before {
  background: linear-gradient(180deg, #a9dfe3, rgba(169, 223, 227, 0.24));
  border-radius: var(--radius) 0 0 var(--radius);
  bottom: 18px;
  content: "";
  left: -1px;
  position: absolute;
  top: 18px;
  width: 4px;
}

.detail-panel h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.price-panel .price-amount {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.detail-panel p {
  color: rgba(232, 241, 243, 0.78);
}

.related-guides-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.related-guides-panel a {
  color: #d7f4f6;
  font-weight: 700;
  text-decoration: none;
}

.related-guides-panel a:hover {
  color: #ffffff;
}

.price-panel .price-meta {
  color: #b7d7db;
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(180, 220, 226, 0.16);
  border-radius: var(--radius);
  color: rgba(232, 241, 243, 0.84);
  padding: 12px 14px 12px 42px;
  position: relative;
}

.check-list li::before {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #8ee7dd;
  content: "+";
  display: grid;
  font-weight: 900;
  height: 20px;
  left: 0;
  line-height: 1;
  place-items: center;
  position: absolute;
  left: 12px;
  top: 13px;
  width: 20px;
}

.cta-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.mini-card-grid,
.test-link-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.test-link-card {
  background:
    linear-gradient(145deg, rgba(23, 58, 72, 0.94), rgba(13, 41, 53, 0.88)),
    rgba(19, 53, 67, 0.86);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 16px;
  box-shadow: 0 26px 76px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  display: grid;
  gap: 8px;
  grid-template-rows: 1fr auto;
  min-height: 118px;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.mini-card:hover,
.test-link-card:hover {
  border-color: rgba(180, 220, 226, 0.34);
  box-shadow: 0 34px 92px rgba(7, 20, 30, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.mini-card strong,
.test-link-card strong {
  color: #fff;
  font-size: 1.14rem;
  font-weight: 760;
  line-height: 1.2;
  max-width: 92%;
}

.mini-card span,
.test-link-card span {
  align-self: end;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 999px;
  color: #a9dfe3;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 760;
  justify-self: start;
  padding: 6px 10px;
}

.mini-card span::after,
.test-link-card span::after {
  content: ">";
  font-size: 0.9rem;
  margin-left: 8px;
}

.catalogue-hero h1 {
  max-width: 760px;
}

.catalogue-groups {
  display: grid;
  gap: 42px;
}

.catalogue-group {
  scroll-margin-top: 96px;
}

.catalogue-group-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.catalogue-group-heading h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  margin: 0;
  max-width: 760px;
}

.catalogue-group-heading span {
  color: var(--teal-dark);
  font-weight: 900;
  white-space: nowrap;
}

/* Shared frosted-card design */
.hero-metrics div,
.service-card,
.pathway article,
.trust-list div,
.catalogue-preview,
.test-summary-card,
.detail-panel,
.cta-panel,
.mini-card,
.test-link-card,
.role-card,
.social-image-card,
.recommended-test-card,
.video-card {
  background:
    linear-gradient(145deg, rgba(23, 58, 72, 0.94), rgba(13, 41, 53, 0.88)),
    rgba(19, 53, 67, 0.86);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-top: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 18px;
  box-shadow: 0 26px 76px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-card::before,
.detail-panel::before {
  display: none;
}

.service-card:hover,
.pathway article:hover,
.trust-list div:hover,
.detail-panel:hover,
.mini-card:hover,
.test-link-card:hover,
.role-card:hover,
.social-image-card:hover,
.recommended-test-card:hover,
.video-card:hover {
  border-color: rgba(180, 220, 226, 0.34);
  box-shadow: 0 34px 92px rgba(7, 20, 30, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.service-card p,
.pathway p,
.trust-list span,
.hero-metrics dd,
.test-summary-card dd,
.detail-panel p,
.cta-panel p,
.check-list li,
.role-card p,
.social-image-card span,
.recommended-test-card p,
.video-card p {
  color: rgba(232, 241, 243, 0.78);
}

.service-card h3,
.pathway h3,
.trust-list strong,
.hero-metrics dt,
.detail-panel h2,
.mini-card strong,
.test-link-card strong,
.role-card h2,
.social-image-card strong,
.recommended-test-card strong,
.video-card h3 {
  color: #fff;
}

.service-card a,
.category-row strong,
.test-summary-card dt,
.recommended-test-card span,
.video-card p {
  color: #a9dfe3;
}

.booking-form {
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  border: 1px solid #d6e4e7;
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(16, 35, 49, 0.1);
  color: var(--ink);
  backdrop-filter: none;
}

/* Sean Willers partner page: align with the main AIO Medicals clinical style */
.partner-page {
  background: #fff;
}

.partner-hero {
  background:
    linear-gradient(90deg, rgba(16, 35, 49, 0.9) 0%, rgba(16, 35, 49, 0.72) 48%, rgba(16, 35, 49, 0.32) 100%),
    linear-gradient(180deg, rgba(16, 35, 49, 0.08), rgba(16, 35, 49, 0.34)),
    url("assets/sean-willers/coaching-transformation-clients.png");
  background-position: center;
  background-size: cover;
  min-height: 680px;
  padding: 110px clamp(20px, 5vw, 64px) 76px;
}

.partner-hero h1 {
  max-width: 760px;
}

.partner-hero .hero-copy {
  max-width: 700px;
}

.partner-hero .social-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(142, 231, 221, 0.28);
  border-radius: 22px;
  box-shadow: 0 26px 72px rgba(7, 20, 30, 0.28);
}

.partner-hero .social-hero-card img {
  aspect-ratio: 4 / 4.9;
}

.partner-hero .social-hero-card div {
  background: rgba(16, 35, 49, 0.78);
}

.partner-roles-section,
.recommended-tests-section,
.video-section {
  background: linear-gradient(180deg, #fff, #f7fbfb);
}

.partner-page .role-card,
.partner-page .recommended-test-card,
.partner-page .video-card {
  background:
    radial-gradient(circle at top right, rgba(7, 87, 99, 0.1), transparent 34%),
    linear-gradient(180deg, #fff, #fbfdfd);
  border: 1px solid #c7dde1;
  border-left: 5px solid var(--teal-dark);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.08);
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.partner-page .role-card:hover,
.partner-page .recommended-test-card:hover,
.partner-page .video-card:hover {
  border-color: #a9cbd0;
  border-left-color: var(--ink);
  box-shadow: 0 26px 60px rgba(16, 35, 49, 0.13);
}

.partner-page .role-card h2,
.partner-page .recommended-test-card strong,
.partner-page .video-card h3 {
  color: var(--ink);
}

.partner-page .role-card p,
.partner-page .role-card .check-list li,
.partner-page .recommended-test-card p,
.partner-page .video-card p {
  color: var(--muted);
}

.partner-page .role-card .eyebrow,
.partner-page .recommended-test-card span,
.partner-page .video-card p {
  color: var(--teal-dark);
}

.partner-page .role-actions {
  margin-top: 22px;
}

.partner-page .role-actions .button {
  border-color: #d6e2e6;
  color: var(--ink);
  width: 100%;
}

.partner-page .role-actions .button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.partner-page .role-card.clinical {
  border-left-color: var(--teal-dark);
}

.partner-page .social-image-card {
  background: #fff;
  border: 1px solid #c7dde1;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.09);
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.partner-page .social-image-card div {
  background: linear-gradient(180deg, #fff, #f8fbfb);
}

.partner-page .social-image-card strong {
  color: var(--ink);
}

.partner-page .social-image-card span {
  color: var(--muted);
}

.partner-page .video-thumb {
  background: #e8f2f4;
}

.partner-page .video-thumb img {
  opacity: 1;
}

.partner-page .video-thumb::after {
  background: linear-gradient(180deg, rgba(16, 35, 49, 0), rgba(16, 35, 49, 0.16));
}

.partner-page .recommended-test-card.featured {
  border-top: 1px solid #c7dde1;
  border-left-color: var(--teal-dark);
}

.partner-page .recommended-test-footer .button {
  width: auto;
}

.partner-page .pathway-section {
  background: #eef7f5;
}

.partner-page .pathway-section .booking-grid {
  align-items: start;
  gap: 40px;
}

.partner-page .pathway-section .booking-grid > div:first-child {
  padding-top: 10px;
}

.partner-page .pathway-section .booking-grid > div:first-child h2 {
  font-size: clamp(2.55rem, 5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 11ch;
}

.partner-page .pathway-section .booking-grid > div:first-child p:last-child {
  color: #617786;
  font-size: 1.02rem;
  line-height: 1.5;
  margin: 0;
  max-width: 32rem;
}

.partner-page .pathway-section .cta-panel {
  background:
    radial-gradient(circle at top right, rgba(8, 126, 139, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(223, 245, 242, 0.6), rgba(255, 255, 255, 0) 38%),
    #fff;
  border: 1px solid #a9cbd0;
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-strong);
  color: var(--ink);
  max-width: 620px;
  padding: 26px;
}

.partner-page .pathway-section .cta-panel .button {
  border-radius: 14px;
  min-height: 58px;
  width: 100%;
}

.partner-page .pathway-section .cta-panel .button.primary {
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(16, 35, 49, 0.16);
}

.partner-page .pathway-section .cta-panel .button.primary:hover {
  background: var(--teal-dark);
}

.partner-page .pathway-section .cta-panel .button.secondary {
  border-color: #c7dde1;
  color: var(--ink);
}

.partner-page .pathway-section .cta-panel .button.secondary:hover {
  border-color: #a9cbd0;
  color: var(--teal-dark);
}

.calendly-section {
  padding-top: 0;
}

.calendly-shell {
  background:
    linear-gradient(145deg, rgba(23, 58, 72, 0.94), rgba(13, 41, 53, 0.88)),
    rgba(19, 53, 67, 0.86);
  border: 1px solid rgba(180, 220, 226, 0.2);
  border-radius: 20px;
  box-shadow: 0 26px 76px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 16px;
}

.service-icon,
.pathway span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(180, 220, 226, 0.2);
  color: #a9dfe3;
  box-shadow: none;
}

.catalogue-preview {
  overflow: hidden;
}

.category-row {
  background: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(142, 231, 221, 0.14);
}

.category-row:nth-child(odd) {
  border-right-color: rgba(142, 231, 221, 0.14);
}

.category-row:hover {
  background: rgba(142, 231, 221, 0.08);
}

.category-row span {
  color: #fff;
}

.test-summary-card div,
.check-list li {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(180, 220, 226, 0.16);
}

.check-list li::before,
.mini-card span,
.test-link-card span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(180, 220, 226, 0.2);
  color: #a9dfe3;
}

.catalogue-page .catalogue-group {
  --card-accent: #087e8b;
  --card-border: #c7dde1;
  --card-badge-bg: #e5f5f3;
  --card-badge-text: #075763;
  --card-label: "TEST";
}

.catalogue-page #womens-health-tests {
  --card-accent: #087e8b;
  --card-border: #bddcdf;
  --card-badge-bg: #e2f5f3;
  --card-badge-text: #075763;
  --card-label: "WOMEN";
}

.catalogue-page #mens-health-tests {
  --card-accent: #246b9a;
  --card-border: #c3d9e9;
  --card-badge-bg: #e7f1f8;
  --card-badge-text: #1d557a;
  --card-label: "MEN";
}

.catalogue-page #general-health-tests {
  --card-accent: #3a8b73;
  --card-border: #c7e0d8;
  --card-badge-bg: #e8f5f0;
  --card-badge-text: #286a56;
  --card-label: "HEALTH";
}

.catalogue-page #prenatal-blood-tests {
  --card-accent: #8469a8;
  --card-border: #d9cfe7;
  --card-badge-bg: #f0ebf6;
  --card-badge-text: #604a80;
  --card-label: "NATAL";
}

.catalogue-page #food-allergy-nutrition-tests {
  --card-accent: #c4824a;
  --card-border: #e6d2bd;
  --card-badge-bg: #f8efe6;
  --card-badge-text: #8a5a30;
  --card-label: "NUTRI";
}

.catalogue-page #phlebotomy-appointment {
  --card-accent: #647681;
  --card-border: #d2dde2;
  --card-badge-bg: #edf2f4;
  --card-badge-text: #465a65;
  --card-label: "DRAW";
}

.catalogue-page .test-link-card {
  background: #fff;
  border-color: var(--card-border);
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.08);
  color: var(--ink);
  min-height: 150px;
  overflow: hidden;
  padding: 26px 26px 24px 34px;
  position: relative;
}

.catalogue-page .test-link-card::before {
  background: var(--card-accent);
  border-radius: 18px 0 0 18px;
  bottom: -1px;
  content: "";
  left: -1px;
  position: absolute;
  top: -1px;
  width: 6px;
}

.catalogue-page .test-link-card::after {
  align-items: center;
  background: var(--card-badge-bg);
  border-radius: 10px;
  color: var(--card-badge-text);
  content: var(--card-label);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  justify-self: start;
  letter-spacing: 0.03em;
  line-height: 1;
  min-height: 38px;
  min-width: 56px;
  order: -1;
  padding: 0 10px;
  position: relative;
}

.catalogue-page .test-link-card:hover {
  border-color: var(--card-accent);
  box-shadow: 0 24px 56px rgba(16, 35, 49, 0.12);
}

.catalogue-page .test-link-card span {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--card-badge-text);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  padding: 0;
}

.catalogue-page .test-link-card strong {
  color: var(--ink);
  font-size: 1.18rem;
  max-width: none;
}

.catalogue-page .test-link-card span::after {
  color: currentColor;
  content: ">";
  font-size: 0.95rem;
  margin-left: 8px;
  opacity: 0.75;
}

/* Light homepage card trial, keeping the pathway cards dark */
.service-card,
.trust-list div,
.catalogue-preview {
  background: #fff;
  border: 1px solid #c7dde1;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.08);
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.service-card {
  --service-accent: var(--teal);
  --service-accent-bg: #e5f5f3;
  --service-accent-border: #c6e5e2;
  --service-accent-text: var(--teal-dark);
  overflow: hidden;
  padding-left: 30px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin: 0 0 24px;
}

.service-card a {
  margin-top: 0;
}

.service-card::before {
  background: var(--service-accent);
  border-radius: 18px 0 0 18px;
  bottom: -1px;
  display: block;
  height: auto;
  left: -1px;
  right: auto;
  top: -1px;
  width: 6px;
}

.service-card:nth-child(2)::before,
.service-card:nth-child(5)::before {
  background: var(--service-accent);
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  --service-accent: #246b9a;
  --service-accent-bg: #e7f1f8;
  --service-accent-border: #c3d9e9;
  --service-accent-text: #1d557a;
}

.service-card:nth-child(3)::before,
.service-card:nth-child(6)::before {
  background: var(--service-accent);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
  --service-accent: #3a8b73;
  --service-accent-bg: #e8f5f0;
  --service-accent-border: #c7e0d8;
  --service-accent-text: #286a56;
}

.service-card:nth-child(4)::before,
.service-card:nth-child(9)::before {
  background: var(--service-accent);
}

.service-card:nth-child(4),
.service-card:nth-child(9) {
  --service-accent: #c4824a;
  --service-accent-bg: #f8efe6;
  --service-accent-border: #e6d2bd;
  --service-accent-text: #8a5a30;
}

.service-card:nth-child(7)::before {
  background: var(--service-accent);
}

.service-card:nth-child(7) {
  --service-accent: #b76362;
  --service-accent-bg: #faeeee;
  --service-accent-border: #ebcdca;
  --service-accent-text: #8d4746;
}

.service-card:nth-child(8)::before {
  background: var(--service-accent);
}

.service-card:nth-child(8) {
  --service-accent: #8469a8;
  --service-accent-bg: #f0ebf6;
  --service-accent-border: #d9cfe7;
  --service-accent-text: #604a80;
}

.service-card:hover,
.trust-list div:hover {
  border-color: #9fc7ce;
  box-shadow: 0 24px 56px rgba(16, 35, 49, 0.12);
  transform: translateY(-3px);
}

.service-card h3,
.trust-list strong {
  color: var(--ink);
}

.service-card p,
.trust-list span {
  color: var(--muted);
}

.service-card a {
  color: var(--service-accent-text);
}

.service-icon {
  background: var(--service-accent-bg);
  border: 1px solid var(--service-accent-border);
  border-radius: 10px;
  box-shadow: none;
  color: var(--service-accent-text);
}

.service-card .service-icon {
  display: none;
}

.catalogue-preview {
  overflow: hidden;
}

.category-row {
  background: #fff;
  border-bottom-color: #d9e4e7;
}

.category-row:nth-child(odd) {
  border-right-color: #d9e4e7;
}

.category-row:hover {
  background: #f5fbfa;
}

.category-row span {
  color: var(--ink);
}

.category-row strong {
  color: var(--teal-dark);
}

.hero-metrics div {
  background:
    linear-gradient(145deg, rgba(18, 47, 61, 0.66), rgba(13, 37, 50, 0.48)),
    rgba(16, 35, 49, 0.42);
  border: 1px solid rgba(174, 222, 226, 0.22);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(7, 20, 30, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 16px 17px 17px;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-metrics div::before {
  background: #8ee7dd;
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 17px;
  position: absolute;
  top: 14px;
  width: 26px;
}

.hero-metrics dt {
  color: #fff;
  font-size: 1rem;
  line-height: 1.15;
  margin: 14px 0 8px;
}

.hero-metrics dd {
  color: rgba(232, 241, 243, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.trust-list div {
  border-left: 6px solid var(--teal);
  padding-left: 22px;
}

.trust-list div:nth-child(2) {
  border-left-color: #246b9a;
}

.trust-list div:nth-child(3) {
  border-left-color: #3a8b73;
}

.trust-list div:nth-child(4) {
  border-left-color: #8469a8;
}

.trust-list {
  gap: 14px;
}

.trust-list div {
  background: linear-gradient(180deg, #ffffff, #fbfdfd);
  border: 1px solid #d3e4e7;
  border-left: 1px solid #d3e4e7;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(16, 35, 49, 0.065);
  padding: 22px 24px;
}

.trust-list div:nth-child(2),
.trust-list div:nth-child(3),
.trust-list div:nth-child(4) {
  border-left-color: #d3e4e7;
}

.trust-list div:hover {
  border-color: #b8d0d6;
  box-shadow: 0 24px 52px rgba(16, 35, 49, 0.095);
}

.trust-list strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.trust-list span {
  font-size: 0.98rem;
  line-height: 1.45;
  margin-top: 6px;
}

/* Final homepage polish for locations and booking */
.locations-section,
.booking-section {
  background:
    linear-gradient(180deg, #fbfdfd 0%, #f4faf9 100%);
}

.locations-section .section-heading,
.booking-section .booking-grid > div:first-child {
  max-width: 760px;
}

.location-card {
  background: linear-gradient(180deg, #ffffff, #fbfdfd);
  border: 1px solid #d3e4e7;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(16, 35, 49, 0.075);
  gap: 20px;
  padding: 24px;
}

.location-copy .eyebrow {
  color: var(--teal-dark);
  margin-bottom: 18px;
}

.location-copy h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  letter-spacing: 0;
}

.location-copy address {
  font-size: 1.02rem;
}

.location-copy a {
  align-items: center;
  color: var(--teal-dark);
  display: inline-flex;
  font-weight: 850;
  margin-top: 2px;
}

.location-copy a::after {
  content: ">";
  margin-left: 8px;
  opacity: 0.72;
}

.map-frame {
  border-color: #d3e4e7;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(16, 35, 49, 0.06);
}

.locations-section,
.faq-section {
  background: var(--soft);
}

.locations-section .eyebrow,
.locations-section .section-intro {
  color: #506874;
}

.locations-section .section-heading h2 {
  color: var(--ink);
}

.locations-section .section-inner {
  max-width: 1080px;
}

.locations-section .locations-grid {
  gap: 16px;
}

.locations-section .location-card {
  background: linear-gradient(180deg, #ffffff, #fbfdfd);
  border: 1px solid rgba(211, 228, 231, 0.9);
  border-radius: 20px;
  box-shadow: 0 22px 52px rgba(16, 35, 49, 0.14);
  color: var(--ink);
  gap: 16px;
  padding: 18px;
}

.locations-section .location-copy .eyebrow {
  color: var(--teal-dark);
}

.locations-section .location-copy h3 {
  color: var(--ink);
  font-size: clamp(1.14rem, 1.45vw, 1.32rem);
  margin-bottom: 10px;
}

.locations-section .location-copy address {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.48;
  margin-bottom: 14px;
}

.locations-section .location-copy a {
  color: var(--teal-dark);
}

.locations-section .map-frame {
  border-color: #d3e4e7;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(16, 35, 49, 0.1);
  height: 240px;
}

.booking-section .booking-grid {
  align-items: start;
}

.booking-section h2 {
  max-width: 560px;
}

.booking-section p {
  max-width: 680px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-strip a,
.contact-strip span {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(24, 61, 74, 0.98), rgba(18, 54, 67, 0.96)),
    var(--badge-dark);
  border: 1px solid rgba(180, 220, 226, 0.24);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(7, 20, 30, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  font-size: 0.95rem;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 46px;
  padding: 0 16px;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-strip a:hover {
  background:
    linear-gradient(145deg, rgba(31, 74, 88, 0.98), rgba(20, 65, 79, 0.96)),
    var(--badge-dark-hover);
  border-color: rgba(142, 231, 221, 0.34);
  box-shadow: 0 22px 46px rgba(7, 20, 30, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-strip a[href^="mailto:"] {
  background: transparent;
  border-color: rgba(16, 35, 49, 0.28);
  box-shadow: none;
  color: var(--ink);
}

.contact-strip a[href^="mailto:"]:hover {
  background: rgba(20, 56, 71, 0.06);
  border-color: var(--badge-dark);
  box-shadow: 0 14px 30px rgba(7, 20, 30, 0.08);
  color: var(--badge-dark);
}

.booking-form {
  background: linear-gradient(180deg, #ffffff, #fbfdfd);
  border: 1px solid #d3e4e7;
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(16, 35, 49, 0.095);
  gap: 18px;
  padding: 30px;
}

.booking-form label {
  color: #314c59;
  font-size: 0.98rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: #fcfefe;
  border-color: #d1e0e4;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(16, 35, 49, 0.025);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--teal);
  outline: 4px solid rgba(8, 126, 139, 0.12);
}

.booking-form .form-button {
  background:
    linear-gradient(145deg, rgba(24, 61, 74, 0.98), rgba(18, 54, 67, 0.96)),
    var(--badge-dark);
  border: 1px solid rgba(180, 220, 226, 0.24);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(7, 20, 30, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-top: 4px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.booking-form .form-button:hover {
  background:
    linear-gradient(145deg, rgba(31, 74, 88, 0.98), rgba(20, 65, 79, 0.96)),
    var(--badge-dark-hover);
  border-color: rgba(142, 231, 221, 0.34);
  box-shadow: 0 24px 56px rgba(7, 20, 30, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.booking-form .form-note {
  color: #657b87;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Individual test pages: light clinical report cards */
.test-page {
  --test-accent: #087e8b;
  --test-accent-border: #bddcdf;
  --test-accent-bg: #e2f5f3;
  --test-accent-text: #075763;
}

.test-page .test-summary-card,
.test-page .detail-panel,
.test-page .cta-panel,
.test-page .mini-card {
  background: #fff;
  border: 1px solid var(--test-accent-border);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.08);
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.test-page .test-summary-card div,
.test-page .check-list li {
  background: #f8fbfc;
  border: 1px solid var(--test-accent-border);
  border-radius: 12px;
  box-shadow: none;
}

.test-page .test-summary-card dt {
  color: var(--test-accent-text);
}

.test-page .test-summary-card dd,
.test-page .detail-panel p,
.test-page .cta-panel p,
.test-page .check-list li {
  color: var(--muted);
}

.test-page .test-hero .hero-actions .button {
  border-radius: 13px;
  min-height: 58px;
  position: relative;
  will-change: transform;
}

.test-page .test-hero .hero-actions .button::after {
  content: ">";
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.test-page .test-hero .hero-actions .button.primary {
  box-shadow: 0 20px 48px rgba(8, 126, 139, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.test-page .test-hero .hero-actions .button.primary:hover {
  background: #0a7d88;
  box-shadow: 0 28px 66px rgba(8, 126, 139, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.test-page .test-hero .hero-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(7, 20, 30, 0.2);
}

.test-page .test-hero .hero-actions .button.secondary:hover {
  background: var(--ink);
  border-color: rgba(180, 220, 226, 0.32);
  box-shadow: 0 26px 58px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-3px);
}

.test-page .test-hero .hero-actions .button:hover::after {
  opacity: 0.9;
  transform: translateX(0);
}

.test-page .test-hero .hero-actions .button:active {
  transform: translateY(-1px) scale(0.99);
}

.test-page .test-hero .hero-actions .button:focus-visible {
  outline: 3px solid rgba(142, 231, 221, 0.48);
  outline-offset: 4px;
}

.test-page .detail-panel,
.test-page .mini-card,
.test-page .cta-panel {
  overflow: hidden;
  padding-left: 34px;
  position: relative;
}

.test-page .pathway-section {
  background: #eef7f5;
}

.test-page .pathway-section .booking-grid {
  align-items: start;
  gap: 40px;
}

.test-page .pathway-section .booking-grid > div:first-child {
  padding-top: 10px;
}

.test-page .pathway-section .booking-grid > div:first-child h2 {
  font-size: clamp(2.55rem, 5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 11ch;
}

.test-page .pathway-section .booking-grid > div:first-child p:last-child {
  color: #617786;
  font-size: 1.02rem;
  line-height: 1.5;
  margin: 0;
  max-width: 32rem;
}

.test-page .pathway-section .cta-panel {
  background:
    radial-gradient(circle at top right, rgba(8, 126, 139, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(223, 245, 242, 0.6), rgba(255, 255, 255, 0) 38%),
    #fff;
  border: 1px solid #a9cbd0;
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-strong);
  padding: 26px;
}

.test-page .pathway-section .cta-panel::before {
  display: none;
}

.test-page .pathway-section .cta-panel .button {
  width: 100%;
}

.test-page .pathway-section .cta-panel .button.primary {
  background: #193f4d;
  box-shadow: 0 14px 30px rgba(16, 35, 49, 0.16);
}

.test-page .pathway-section .cta-panel .button.primary:hover {
  background: var(--teal-dark);
}

.test-page .pathway-section .cta-panel .button.secondary {
  background: #fff;
  border: 1px solid #cde1df;
  color: var(--ink);
}

.test-page .pathway-section .cta-panel .button.secondary:hover {
  border-color: #a9cbd0;
  color: var(--teal-dark);
}

.test-page .detail-panel::before,
.test-page .mini-card::before,
.test-page .cta-panel::before {
  background: var(--test-accent);
  border-radius: 18px 0 0 18px;
  bottom: -1px;
  content: "";
  display: block;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 6px;
}

.test-page .detail-panel h2,
.test-page .mini-card strong {
  color: var(--ink);
}

.test-page .detail-panel:hover,
.test-page .mini-card:hover {
  border-color: var(--test-accent);
  box-shadow: 0 24px 56px rgba(16, 35, 49, 0.12);
  transform: translateY(-3px);
}

.test-page .check-list li {
  padding-left: 44px;
}

.test-page .check-list li::before {
  background: var(--test-accent-bg);
  border: 1px solid var(--test-accent-border);
  color: var(--test-accent-text);
}

.test-page .related-guides-panel a {
  color: var(--ink);
}

.test-page .related-guides-panel a:hover {
  color: var(--test-accent-text);
}

.test-page .mini-card span {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--test-accent-text);
  font-size: 0.88rem;
  font-weight: 850;
  padding: 0;
}

.test-page .hero-actions .button.primary,
.test-page .cta-panel .button.primary {
  background: var(--test-accent);
}

.test-page .mini-card span::after {
  color: currentColor;
  font-size: 0.95rem;
  opacity: 0.75;
}

/* Related test cards: dark premium pathway style */
.test-page .mini-card {
  background:
    linear-gradient(145deg, rgba(24, 61, 74, 0.98), rgba(18, 54, 67, 0.96)),
    #143847;
  border: 1px solid rgba(180, 220, 226, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7, 20, 30, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
  min-height: 132px;
  padding: 28px;
}

.test-page .mini-card::before {
  display: none;
}

.test-page .mini-card strong {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 780;
  line-height: 1.2;
}

.test-page .mini-card span {
  color: rgba(169, 223, 227, 0.92);
  font-size: 0.9rem;
  font-weight: 800;
}

.test-page .mini-card:hover {
  border-color: rgba(142, 231, 221, 0.34);
  box-shadow: 0 32px 78px rgba(7, 20, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

/* Individual test page hero: darker frosted appointment card */
.test-page .test-summary-card {
  background:
    linear-gradient(145deg, rgba(23, 52, 65, 0.72), rgba(12, 35, 47, 0.66)),
    rgba(16, 35, 49, 0.42);
  border: 1px solid rgba(142, 231, 221, 0.16);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(5, 20, 30, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  color: #fff;
  max-width: 100%;
  min-width: 0;
  padding: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.test-page .test-summary-card dl {
  gap: 10px;
}

.test-page .test-summary-card div {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(142, 231, 221, 0.1);
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  padding: 15px 16px;
  position: relative;
}

.test-page .test-summary-card div::before {
  background: rgba(142, 231, 221, 0.68);
  border-radius: 999px;
  content: "";
  display: block;
  height: 5px;
  margin-bottom: 14px;
  width: 40px;
}

.test-page .test-summary-card .price-summary {
  background: rgba(142, 231, 221, 0.08);
  border-color: rgba(142, 231, 221, 0.22);
}

.test-page .test-summary-card .price-summary dd {
  color: #ffffff;
  font-size: 1.05rem;
}

.test-page .test-summary-card dt {
  color: #8ee7dd;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  margin-bottom: 7px;
}

.test-page .test-summary-card dd {
  color: rgba(236, 246, 248, 0.82);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.recommended-test-card.featured {
  border-top-width: 1px;
}

.booking-form label {
  color: #2e4856;
}

/* Card design concept page */
.card-design-page {
  padding-top: 76px;
}

.card-design-stack {
  display: grid;
  gap: 52px;
}

.card-concept {
  display: grid;
  gap: 22px;
}

.concept-heading {
  max-width: 780px;
}

.concept-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  margin-bottom: 10px;
}

.concept-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.concept-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-card,
.compact-test-card {
  border-radius: var(--radius);
  min-height: 154px;
  position: relative;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.concept-card {
  display: grid;
  gap: 14px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 22px;
}

.concept-card:hover,
.compact-test-card:hover {
  transform: translateY(-3px);
}

.concept-card strong,
.compact-test-card strong {
  font-size: 1.14rem;
  line-height: 1.2;
}

.concept-marker,
.concept-action {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  justify-self: start;
}

.concept-marker {
  min-height: 34px;
}

.concept-action::after,
.compact-test-card em::after {
  content: ">";
  margin-left: 8px;
}

.dark-clinical-cards .concept-card {
  background:
    radial-gradient(circle at 86% 12%, rgba(142, 231, 221, 0.16), transparent 28%),
    linear-gradient(145deg, #1d3540, #18242b 62%, #151c22);
  border: 1px solid rgba(180, 220, 226, 0.22);
  box-shadow: 0 24px 58px rgba(7, 20, 30, 0.26);
  color: #fff;
}

.dark-clinical-cards .concept-marker {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(180, 220, 226, 0.18);
  border-radius: var(--radius);
  color: #8ee7dd;
  padding: 0 10px;
}

.dark-clinical-cards .concept-action {
  color: #f3d88f;
}

.dark-clinical-cards .concept-card:hover {
  border-color: rgba(142, 231, 221, 0.48);
  box-shadow: 0 32px 74px rgba(7, 20, 30, 0.34);
}

.lab-report-cards .concept-card {
  background: #fff;
  border: 1px solid #c8dce1;
  box-shadow: 0 16px 36px rgba(16, 35, 49, 0.09);
  color: var(--ink);
}

.lab-report-cards .concept-card::before {
  background: linear-gradient(180deg, #087e8b, #5bbfae);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 5px;
}

.lab-report-cards .concept-marker {
  background: #e8f7f5;
  border-radius: var(--radius);
  color: var(--teal-dark);
  padding: 0 10px;
}

.lab-report-cards .concept-action {
  color: var(--teal-dark);
}

.lab-report-cards .concept-card:hover {
  border-color: #8bbbc2;
  box-shadow: 0 24px 52px rgba(16, 35, 49, 0.15);
}

.compact-card-list {
  background: #f5faf9;
  border: 1px solid #d8e7ea;
  border-radius: var(--radius);
  display: grid;
  overflow: hidden;
}

.compact-test-card {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #d8e7ea;
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  min-height: 76px;
  padding: 16px 18px;
}

.compact-test-card:last-child {
  border-bottom: 0;
}

.compact-test-card span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-test-card em {
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.compact-test-card:hover {
  background: #eef8f7;
  box-shadow: inset 5px 0 0 var(--teal);
}

.category-block-cards .concept-card {
  --block: #087e8b;
  --block-soft: #e7f6f4;
  --block-border: #a9cbd0;
  background: linear-gradient(180deg, var(--block-soft), #fff 48%);
  border: 1px solid var(--block-border);
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.1);
  color: var(--ink);
}

.category-block-cards .concept-card::after {
  background: var(--block);
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.category-block-cards .allergy {
  --block: #b76362;
  --block-border: #e5b8b4;
  --block-soft: #fff0ee;
}

.category-block-cards .nutrition {
  --block: #2f6f65;
  --block-border: #a8d0c7;
  --block-soft: #e8f6f1;
}

.category-block-cards .metabolic {
  --block: #245f87;
  --block-border: #a9c3d7;
  --block-soft: #e9f3fb;
}

.category-block-cards .concept-marker {
  color: var(--block);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-block-cards .concept-action {
  background: var(--block);
  border-radius: var(--radius);
  color: #fff;
  min-height: 36px;
  padding: 0 12px;
}

.category-block-cards .concept-card:hover {
  box-shadow: 0 26px 56px rgba(16, 35, 49, 0.16);
}

.image-led-cards .concept-card {
  background:
    linear-gradient(180deg, rgba(16, 35, 49, 0.22), rgba(16, 35, 49, 0.88)),
    var(--card-image);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 58px rgba(7, 20, 30, 0.26);
  color: #fff;
  min-height: 220px;
}

.image-led-cards .concept-card:nth-child(1) {
  --card-image: url("assets/card-concepts/coeliac-screen-card.png");
}

.image-led-cards .concept-card:nth-child(2) {
  --card-image: url("assets/card-concepts/cholesterol-card.png");
}

.image-led-cards .concept-card:nth-child(3) {
  --card-image: url("assets/card-concepts/advanced-vitamins-card.png");
}

.image-led-cards .concept-marker {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 0 10px;
}

.image-led-cards .concept-action {
  color: #8ee7dd;
}

.image-led-cards .concept-card:hover {
  border-color: rgba(142, 231, 221, 0.56);
  box-shadow: 0 34px 76px rgba(7, 20, 30, 0.34);
}

.appointment-cards .concept-card {
  background:
    linear-gradient(180deg, #ffffff, #f6fbfb);
  border: 1px solid #d3e3e6;
  box-shadow: 0 18px 40px rgba(16, 35, 49, 0.08);
  color: var(--ink);
}

.appointment-cards .concept-card::after {
  background: #edf7f6;
  border-top: 1px solid #d3e3e6;
  content: "Clinic appointment";
  color: #48606c;
  font-size: 0.76rem;
  font-weight: 800;
  inset: auto 0 0;
  padding: 10px 22px;
  position: absolute;
}

.appointment-cards .concept-marker {
  color: var(--teal-dark);
}

.appointment-cards .concept-action {
  color: var(--teal-dark);
  margin-bottom: 26px;
}

.minimal-line-cards .concept-card {
  background: #fff;
  border: 1px solid #d9e4e7;
  border-top: 4px solid var(--ink);
  box-shadow: none;
  color: var(--ink);
}

.minimal-line-cards .concept-marker {
  color: #82939b;
  font-size: 0.92rem;
}

.minimal-line-cards .concept-action {
  color: var(--teal-dark);
}

.minimal-line-cards .concept-card:hover {
  border-color: #a7c4c9;
  box-shadow: 0 18px 36px rgba(16, 35, 49, 0.08);
}

.folder-tab-cards .concept-card {
  background: #fffaf1;
  border: 1px solid #dec89b;
  box-shadow: 0 18px 40px rgba(97, 74, 34, 0.12);
  color: #18272e;
  overflow: visible;
  padding-top: 30px;
}

.folder-tab-cards .concept-marker {
  background: #d9af5c;
  border-radius: var(--radius) var(--radius) 0 0;
  color: #fff;
  left: 18px;
  min-height: 30px;
  padding: 0 12px;
  position: absolute;
  top: -16px;
}

.folder-tab-cards .concept-action {
  color: #705014;
}

.pathway-number-cards .concept-card {
  background: #173848;
  border: 1px solid rgba(180, 220, 226, 0.22);
  box-shadow: 0 22px 54px rgba(7, 20, 30, 0.24);
  color: #fff;
  padding-left: 86px;
}

.pathway-number-cards .concept-marker {
  align-items: center;
  background: #8ee7dd;
  border-radius: 50%;
  color: #102331;
  display: flex;
  font-size: 1.15rem;
  height: 44px;
  justify-content: center;
  left: 22px;
  position: absolute;
  top: 22px;
  width: 44px;
}

.pathway-number-cards .concept-action {
  color: #f4dfb8;
}

.split-detail-cards .concept-card {
  background: #fff;
  border: 1px solid #d4e3e6;
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.09);
  color: var(--ink);
  padding-left: 92px;
}

.split-detail-cards .concept-marker {
  align-items: center;
  background: var(--teal-dark);
  color: #fff;
  inset: 0 auto 0 0;
  justify-content: center;
  min-height: auto;
  padding: 0;
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  width: 58px;
}

.split-detail-cards .concept-action {
  color: var(--teal-dark);
}

.glass-clinic-cards {
  background:
    linear-gradient(135deg, rgba(223, 245, 242, 0.74), rgba(244, 249, 248, 0.5)),
    url("assets/clinic-hero.png");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  padding: 18px;
}

.glass-clinic-cards .concept-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(16, 35, 49, 0.14);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-clinic-cards .concept-marker {
  color: var(--teal-dark);
}

.glass-clinic-cards .concept-action {
  color: var(--teal-dark);
}

.bold-cta-cards .concept-card {
  background: #fff;
  border: 1px solid #d4e3e6;
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.1);
  color: var(--ink);
}

.bold-cta-cards .concept-marker {
  color: #b76362;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bold-cta-cards .concept-action {
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
  justify-content: center;
  min-height: 42px;
  width: 100%;
}

.marker-strip-cards .concept-card {
  background:
    linear-gradient(145deg, #1c3038, #111d24);
  border: 1px solid rgba(180, 220, 226, 0.2);
  box-shadow: 0 22px 52px rgba(7, 20, 30, 0.26);
  color: #fff;
}

.marker-strip-cards .concept-card::before {
  background: linear-gradient(90deg, #8ee7dd 0 28%, #f4dfb8 28% 56%, #b76362 56% 78%, #a9c3d7 78%);
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.marker-strip-cards .concept-marker {
  color: #a9dfe3;
  margin-top: 4px;
}

.marker-strip-cards .concept-action {
  color: #f4dfb8;
}

.calm-tint-cards .concept-card {
  --tint: #eef8f7;
  background: var(--tint);
  border: 1px solid #cfe3e6;
  box-shadow: 0 18px 40px rgba(16, 35, 49, 0.08);
  color: var(--ink);
}

.calm-tint-cards .concept-card:nth-child(2) {
  --tint: #f2f8ec;
}

.calm-tint-cards .concept-card:nth-child(3) {
  --tint: #fff1ef;
}

.calm-tint-cards .concept-marker {
  background: rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  color: #314b58;
  padding: 0 12px;
}

.calm-tint-cards .concept-action {
  color: var(--teal-dark);
}

.dark-outline-cards .concept-card {
  background: #111b22;
  border: 1px solid rgba(244, 223, 184, 0.32);
  box-shadow: 0 24px 60px rgba(7, 20, 30, 0.34);
  color: #fff;
}

.dark-outline-cards .concept-card::after {
  border: 1px solid rgba(142, 231, 221, 0.16);
  border-radius: calc(var(--radius) - 2px);
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.dark-outline-cards .concept-marker {
  color: #f4dfb8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark-outline-cards .concept-action {
  border: 1px solid rgba(244, 223, 184, 0.42);
  border-radius: var(--radius);
  color: #f4dfb8;
  padding: 8px 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: #fbfdfd;
  border-color: #cbdce0;
}

.booking-form .form-note {
  color: var(--muted);
}

.contact-strip a,
.contact-strip span {
  background: rgba(16, 35, 49, 0.92);
  border-color: rgba(142, 231, 221, 0.2);
  color: #fff;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 14px 20px 22px;
    position: absolute;
    right: 0;
    top: 75px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    border-radius: var(--radius);
    padding: 14px;
  }

  .nav-dropdown {
    position: static;
  }

  .blood-tests-panel {
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(16, 35, 49, 0.12);
    grid-template-columns: 1fr;
    left: auto;
    max-height: 62vh;
    max-width: none;
    min-height: auto;
    overflow: auto;
    padding: 16px;
    position: static;
    transform: none;
    width: 100%;
  }

  .blood-tests-menu-heading,
  .blood-tests-list-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .blood-tests-categories {
    grid-template-columns: 1fr;
  }

  .blood-tests-category {
    padding: 12px 14px;
  }

  .blood-tests-lists {
    padding: 16px;
  }

  .blood-tests-links {
    max-height: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 212px;
    padding-top: 118px;
  }

  .hero-image {
    filter: saturate(1.08) contrast(1.04) brightness(0.94);
    object-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(16, 35, 49, 0.68) 0%, rgba(16, 35, 49, 0.48) 46%, rgba(16, 35, 49, 0.24) 100%),
      linear-gradient(90deg, rgba(16, 35, 49, 0.54) 0%, rgba(16, 35, 49, 0.14) 100%);
  }

  .hero-content {
    max-width: 620px;
  }

  .hero-mobile-promo {
    left: 18px;
    right: 18px;
    bottom: 24px;
    min-height: 132px;
    top: auto;
    transform: none;
    width: auto;
  }

  .hero-metrics,
  .intro-grid,
  .barry-grid,
  .pathway,
  .trust-grid,
  .locations-grid,
  .booking-grid,
  .blog-preview-grid,
  .performance-grid,
  .partner-hero-grid,
  .partner-roles-grid,
  .social-grid,
  .recommended-test-grid,
  .service-grid,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .compact-test-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pathway-number-cards .concept-card,
  .split-detail-cards .concept-card {
    padding-left: 74px;
  }

  .split-detail-cards .concept-marker {
    width: 46px;
  }

  .category-row:nth-child(odd) {
    border-right: 0;
  }

  .category-row:nth-last-child(2) {
    border-bottom: 1px solid rgba(142, 231, 221, 0.14);
  }

  .catalogue-group-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .barry-card {
    grid-template-columns: 1fr;
    justify-self: center;
  }

  .credential-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .barry-portrait {
    min-height: 320px;
    margin: 22px 22px 0;
  }

  .performance-media,
  .social-hero-card {
    max-width: 420px;
    width: 100%;
  }

  .video-thumb img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  .cookie-banner {
    bottom: 14px;
    left: 14px;
    max-width: calc(100vw - 28px);
    padding: 18px;
    width: calc(100vw - 28px);
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-button,
  .cookie-settings-trigger {
    width: 100%;
  }

  .cookie-settings-trigger {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 174px;
  }

  .brand-tagline {
    display: none;
  }

  .site-nav {
    top: 67px;
  }

  .hero {
    min-height: 860px;
    padding: 104px 18px 38px;
  }

  .hero-image {
    filter: saturate(1.08) contrast(1.04) brightness(0.92);
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(16, 35, 49, 0.68) 0%, rgba(16, 35, 49, 0.48) 46%, rgba(16, 35, 49, 0.24) 100%),
      linear-gradient(90deg, rgba(16, 35, 49, 0.54) 0%, rgba(16, 35, 49, 0.14) 100%);
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1.08;
    max-width: calc(100vw - 36px);
    overflow-wrap: break-word;
  }

  .hero h1,
  .test-hero h1,
  .catalogue-hero h1 {
    max-width: calc(100vw - 36px);
  }

  .hero-content {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .hero .eyebrow {
    color: #8ee7dd;
  }

  .hero h1 {
    color: #fff;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
  }

  .hero-copy {
    color: #e8f1f3;
    font-size: 1.04rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  }

  .hero .button.secondary {
    background: rgba(255, 255, 255, 0.94);
  }

  .hero-metrics div {
    background:
      linear-gradient(145deg, rgba(18, 47, 61, 0.68), rgba(13, 37, 50, 0.5)),
      rgba(16, 35, 49, 0.44);
    border-color: rgba(174, 222, 226, 0.22);
    box-shadow: 0 14px 32px rgba(7, 20, 30, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .barry-card {
    border-radius: 18px;
  }

  .barry-portrait {
    min-height: 240px;
  }

  .hero-actions,
  .contact-strip {
    flex-direction: column;
  }

  .button,
  .contact-strip a,
  .contact-strip span {
    width: 100%;
  }

  .section {
    padding: 62px 18px;
  }

  .pathway {
    gap: 14px;
  }

  .location-card,
  .booking-form {
    padding: 18px;
  }

  .map-frame {
    height: 240px;
  }

  .test-page,
  .catalogue-page,
  .partner-page,
  .card-design-page,
  .blog-page,
  .blog-article-page {
    padding-top: 68px;
  }

  .test-hero,
  .catalogue-hero,
  .partner-hero,
  .blog-hub-hero,
  .blog-article-hero {
    padding: 48px 18px;
  }

  .test-page .test-hero-grid,
  .test-page .detail-grid,
  .test-page .booking-grid,
  .test-page .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .test-page .test-hero-grid {
    gap: 20px;
  }

  .test-page .test-hero h1 {
    max-width: none;
    overflow-wrap: normal;
  }

  .blog-grid,
  .blog-preview-grid,
  .blog-hub-grid,
  .blog-article-wrap {
    grid-template-columns: 1fr;
  }

  .blog-article-body .check-list + h2 {
    margin-top: 42px;
  }

  .test-page .test-summary-card {
    border-radius: 18px;
    padding: 14px;
  }

  .test-page .pathway-section .booking-grid {
    gap: 24px;
  }

  .test-page .mini-card {
    min-height: 0;
  }

  .test-page .pathway-section .booking-grid > div:first-child {
    padding-top: 0;
  }

  .test-page .pathway-section .booking-grid > div:first-child h2 {
    font-size: 2.35rem;
    max-width: none;
  }

  .test-page .test-summary-card dl {
    gap: 10px;
  }

  .test-page .test-summary-card div {
    border-radius: 14px;
    padding: 16px;
  }

  .test-page .test-summary-card div::before {
    height: 6px;
    margin-bottom: 14px;
    width: 42px;
  }

  .price-panel .price-amount {
    font-size: 2rem;
  }

  .test-page .test-summary-card dt {
    font-size: 0.8rem;
  }

  .test-page .test-summary-card dd {
    font-size: 0.96rem;
  }

  .partner-hero {
    background-position: center top;
  }

  .partner-hero-grid {
    gap: 28px;
  }

  .partner-hero h1 {
    font-size: 2.42rem;
    line-height: 1.02;
  }

  .partner-hero .hero-copy {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .partner-hero .social-hero-card {
    margin: 8px auto 0;
    max-width: 360px;
  }

  .partner-hero .social-hero-card img {
    aspect-ratio: 4 / 4.6;
    max-height: 430px;
    object-position: center 18%;
  }

  .partner-hero .social-hero-card div,
  .performance-media div,
  .social-image-card div {
    padding: 14px;
  }

  .partner-roles-grid,
  .recommended-test-grid,
  .video-grid {
    gap: 14px;
  }

  .role-card,
  .recommended-test-card {
    min-height: auto;
    padding: 20px;
  }

  .social-image-card img,
  .social-image-card.tall img {
    aspect-ratio: 4 / 3;
  }

  .hero-metrics {
    margin-top: 34px;
  }

  .footer-columns {
    display: none;
  }

  .footer-contact a {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final section background alignment */
.faq-section.section {
  background: #edf5f4;
  background-image: none;
}
