@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --fm-navy: #253d83;
  --fm-blue: #55bee6;
  --fm-cyan: #67d8f2;
  --black: #000000;
  --white: #ffffff;
  --muted: #c9d3e7;
  --panel-blue: #06142c;
  --header-height: 154px;
  --wrap: min(1390px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.page-wrap { width: var(--wrap); margin: 0 auto; }

/* Cookie and storage preferences */
.cookie-consent,
.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.cookie-consent { inset: auto 0 0; padding: 18px; background: rgba(0,0,0,.92); border-top: 1px solid rgba(255,255,255,.18); box-shadow: 0 -12px 40px rgba(0,0,0,.45); }
.cookie-consent__inner { width: min(1180px, 100%); margin: auto; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.cookie-consent h2, .cookie-preferences h2 { margin: 0 0 8px; color: #fff; font-size: 1.3rem; }
.cookie-consent p, .cookie-preferences p { margin: 0; color: #dbe5f5; line-height: 1.55; }
.cookie-consent a, .cookie-preferences a { color: var(--fm-blue); text-decoration: underline; }
.cookie-consent__actions, .cookie-preferences__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-button { min-height: 44px; padding: 10px 18px; border: 2px solid var(--fm-blue); border-radius: 999px; background: transparent; color: #fff; font: inherit; font-weight: 700; cursor: pointer; }
.cookie-button:hover, .cookie-button:focus-visible { background: var(--fm-blue); color: #001225; outline: none; }
.cookie-button--primary { background: var(--fm-blue); color: #001225; }
.cookie-button--reject { border-color: #fff; }
.cookie-preferences { display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.76); }
.cookie-preferences__panel { width: min(680px, 100%); max-height: min(760px, calc(100vh - 40px)); overflow: auto; padding: 28px; border: 1px solid rgba(255,255,255,.22); border-radius: 22px; background: #06142c; box-shadow: 0 24px 80px rgba(0,0,0,.62); }
.cookie-category { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.cookie-category h3 { margin: 0 0 5px; font-size: 1rem; color: #fff; }
.cookie-category small { display: block; color: #aebbd0; line-height: 1.45; }
.cookie-toggle { width: 52px; height: 28px; accent-color: var(--fm-blue); }
.cookie-preferences__actions { margin-top: 22px; }
.cookie-settings-trigger { position: fixed; z-index: 9998; left: 14px; bottom: 14px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: rgba(0,0,0,.84); color: #fff; font: inherit; font-size: .75rem; cursor: pointer; }
.cookie-settings-trigger:hover, .cookie-settings-trigger:focus-visible { border-color: var(--fm-blue); color: var(--fm-blue); }
body.cookie-dialog-open { overflow: hidden; }
.legal-table-wrap { overflow-x: auto; margin: 20px 0; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.legal-table th, .legal-table td { padding: 12px; border: 1px solid rgba(255,255,255,.18); text-align: left; vertical-align: top; }
.legal-table th { color: #fff; background: rgba(85,190,230,.12); }
.legal-table code { color: var(--fm-blue); }
@media (max-width: 760px) {
  .cookie-consent__inner { grid-template-columns: 1fr; }
  .cookie-consent__actions .cookie-button { flex: 1 1 135px; }
  .cookie-preferences__panel { padding: 22px 18px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 10% 10%, rgba(85,190,230,.18), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(37,61,131,.26), transparent 30%),
    linear-gradient(135deg, #02060e 0%, #071a35 55%, #03060d 100%);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 40px rgba(0,0,0,.28);
}

.header-inner {
  min-height: var(--header-height);
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 240px;
  align-items: center;
  gap: 38px;
}

.brand { display: flex; align-items: center; justify-self: start; }
.brand img { width: 300px; height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
  text-align: center;
}
.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 18px 5px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: #f7f7f7;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .015em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}
.primary-nav a:last-child { border-right: 0; }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  width: auto;
  height: 3px;
  background: linear-gradient(90deg, var(--fm-blue) 0%, var(--fm-cyan) 52%, var(--fm-navy) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--fm-blue); }
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }

.concierge-call {
  justify-self: end;
  position: relative;
  width: 226px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  isolation: isolate;
}
.concierge-call:focus-visible { outline: 3px solid var(--fm-blue); outline-offset: 6px; }
.concierge-static-ring,
.concierge-ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.concierge-static-ring {
  inset: 8px;
  border: 4px solid #fff;
  opacity: .98;
  filter: drop-shadow(0 0 7px rgba(255,255,255,.18));
}
.concierge-ring {
  inset: 0;
  border: 3px solid transparent;
}
.ring-cyan {
  border-top-color: var(--fm-blue);
  border-right-color: var(--fm-blue);
  border-bottom-color: rgba(85,190,230,.22);
  animation: rotate-oval-clockwise 12s linear infinite;
}
.ring-navy {
  inset: 14px;
  border-width: 3px;
  border-left-color: var(--fm-navy);
  border-bottom-color: var(--fm-navy);
  border-top-color: rgba(37,61,131,.16);
  animation: rotate-oval-counter 15s linear infinite;
}
.concierge-content {
  position: relative;
  z-index: 2;
  width: 186px;
  height: 76px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  line-height: 1;
  transform: translateY(-1px);
  padding-top: 1px;
}
.concierge-line-gp {
  color: var(--fm-blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.concierge-line-medical,
.concierge-line-concierge {
  color: #fff;
  font-size: 18px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.concierge-line-concierge { display: none; }
.concierge-number {
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  justify-self: end;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 30px; height: 2px; margin: 7px 0; background: var(--white); }

.hero-placeholder {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background:
    radial-gradient(circle at 18% 18%, rgba(85,190,230,.15), transparent 22%),
    radial-gradient(circle at 79% 22%, rgba(37,61,131,.52), transparent 25%),
    linear-gradient(135deg, #05070d, #0a132a 58%, #000);
}
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.16)); }
.hero-copy { position: relative; z-index: 1; padding: 0 0 90px; max-width: var(--wrap); }
.section-kicker { margin: 0 0 14px; color: var(--fm-blue); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1, h2 { margin: 0; text-transform: uppercase; }
h1 { max-width: 760px; font-size: clamp(4rem, 8vw, 7.2rem); line-height: .9; letter-spacing: -.05em; font-weight: 900; }
h1 span { color: var(--fm-blue); }
.hero-copy p:not(.section-kicker) { max-width: 760px; margin: 22px 0 0; color: #edf3ff; font-size: 20px; line-height: 1.6; }
.content-band { padding: 80px 0; }
.content-panel { border-radius: 30px; border: 1px solid rgba(255,255,255,.08); background: linear-gradient(135deg, rgba(37,61,131,.18), rgba(85,190,230,.04)); padding: 42px; }
.content-panel h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: .95; letter-spacing: -.04em; }
.content-panel p:last-child { max-width: 800px; color: var(--muted); font-size: 18px; line-height: 1.7; }

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(85,190,230,.18), transparent 24%),
    radial-gradient(circle at 78% 8%, rgba(37,61,131,.22), transparent 34%),
    linear-gradient(135deg, #01040a 0%, #071833 48%, #02050b 100%);
  border-top: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.05), transparent 22%, transparent 78%, rgba(255,255,255,.04));
  pointer-events: none;
}
.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .9fr 1.18fr 1.45fr 1.12fr;
  gap: 0;
  padding: 38px 0 24px;
}
.footer-column {
  min-width: 0;
  padding: 0 30px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.footer-column:first-child {
  border-left: 0;
  padding-left: 0;
}
.footer-column:last-child { padding-right: 0; }
.footer-logo { width: 230px; margin: 0 0 14px; }
.company-numbers { margin-top: 12px !important; color: #dce7f8 !important; font-size: 13px !important; line-height: 1.35 !important; white-space: nowrap; }
.company-numbers strong { display: inline-block; color: #fff; font-weight: 800; margin-bottom: 2px; }
.footer-brand-column p,
.footer-contact p,
.footer-bottom p {
  color: #f1f5ff;
  line-height: 1.55;
  font-size: 14px;
  margin: 0 0 14px;
}
.footer-brand-column p { max-width: 310px; }
.footer-socials { display: flex; align-items: center; gap: 14px; margin-top: 8px; margin-bottom: 6px; }
.footer-socials a {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,.9);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-socials a:hover { color: var(--fm-blue); border-color: var(--fm-blue); transform: translateY(-1px); }
.site-footer h3 {
  margin: 4px 0 18px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fm-blue);
  font-weight: 700;
}
.footer-links,
.footer-services,
.footer-contact,
.footer-accreditation { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links a,
.footer-services a {
  margin-bottom: 9px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover,
.policy-links a:hover { color: var(--fm-blue); }
.footer-contact p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}
.footer-contact a { color: #fff; font-weight: 500; }
.footer-icon { color: var(--fm-blue); font-size: 18px; line-height: 1; transform: translateY(1px); }
.footer-contact .contact-group span:last-child { line-height: 1.5; }
.footer-contact .contact-group a { display: inline; }

.cqc-logo { width: 255px; max-width: 100%; margin-top: 0; filter: drop-shadow(0 0 8px rgba(255,255,255,.08)); }
.cqc-provider { margin-top: 8px !important; color: #f1f5ff !important; font-size: 14px !important; line-height: 1.35 !important; }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 18px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-bottom p { margin: 0; color: #fff; }
.policy-links { display: flex; gap: 0; flex-wrap: wrap; align-items: center; }
.policy-links a {
  color: var(--fm-blue);
  font-size: 14px;
  padding: 0 18px;
  border-left: 1px solid rgba(255,255,255,.5);
}
.policy-links a:first-child { border-left: 0; }

@keyframes rotate-clockwise { to { transform: rotate(360deg); } }
@keyframes rotate-counter { to { transform: rotate(-360deg); } }
@keyframes rotate-oval-clockwise { to { transform: rotate(360deg); } }
@keyframes rotate-oval-counter { to { transform: rotate(-360deg); } }

@media (max-width: 1240px) {
  :root { --header-height: 132px; --wrap: min(1180px, calc(100vw - 40px)); }
  .header-inner { grid-template-columns: 240px 1fr 202px; gap: 20px; }
  .brand img { width: 240px; }
  .primary-nav a { font-size: 11px; padding: 0 10px 5px; }
  .primary-nav a::after { left: 10px; right: 10px; bottom: 0; }
  .concierge-call { width: 194px; height: 96px; }
  .concierge-static-ring { inset: 7px; border-width: 3px; }
  .ring-navy { inset: 12px; border-width: 2.5px; }
  .concierge-content { width: 158px; height: 64px; }
  .concierge-line-gp { font-size: 13px; }
  .concierge-line-medical,.concierge-line-concierge { font-size: 15px; }
  .concierge-number { margin-top: 7px; font-size: 11px; }
}

@media (max-width: 900px) {
  :root { --header-height: 88px; --wrap: min(100vw - 34px, 1180px); }
  .header-inner { min-height: var(--header-height); grid-template-columns: 1fr auto auto; }
  .brand img { width: 210px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: var(--header-height); left: 18px; right: 18px; display: none; flex-direction: column; align-items: flex-start; padding: 22px; border-radius: 22px; background: #020306; border: 1px solid rgba(255,255,255,.12); }
  .primary-nav.open { display: flex; }
  .primary-nav a { border-right: 0; font-size: 13px; padding: 9px 0 7px; }
  .primary-nav a::after { left: 0; right: 0; bottom: 2px; }
  .concierge-call { width: 116px; height: 58px; }
  .concierge-static-ring { inset: 4px; border-width: 2.5px; }
  .concierge-ring { border-width: 2px; }
  .ring-navy { inset: 8px; border-width: 2px; }
  .concierge-content { width: 94px; height: 40px; }
  .concierge-line-gp { font-size: 9px; letter-spacing:.04em; }
  .concierge-line-medical { font-size: 10px; letter-spacing:.05em; }
  .concierge-line-concierge,.concierge-number { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-column { padding: 0 24px 30px; }
  .footer-column:nth-child(odd) { border-left: 0; }
  .footer-brand-column p { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  :root { --wrap: min(100vw - 28px, 1180px); }
  .header-inner { width: calc(100vw - 24px); gap: 12px; }
  .brand img { width: 164px; }
  .concierge-call { width: 92px; height: 48px; }
  .concierge-content { width: 74px; height: 32px; }
  .concierge-line-gp { font-size: 8px; }
  .concierge-line-medical { font-size: 9px; display:block; }
  .hero-copy { padding-bottom: 54px; }
  .hero-copy p:not(.section-kicker) { font-size: 16px; }
  .content-panel { padding: 28px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-column { border-left: 0; padding: 0 0 30px; }
  .footer-logo { width: 220px; }
  .policy-links a { padding: 6px 12px 6px 0; margin-right: 12px; border-left: 0; }
}


/* Homepage hero v2 */
:root { --fm-orange: #ff7d1c; }
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(85,190,230,.20), transparent 24%),
    radial-gradient(circle at 70% 28%, rgba(37,61,131,.36), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255,125,28,.10), transparent 22%),
    linear-gradient(135deg, #01040a 0%, #071833 45%, #000 100%);
}
.home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.68)),
    linear-gradient(90deg, rgba(255,255,255,.045), transparent 22%, transparent 78%, rgba(255,255,255,.03));
  pointer-events: none;
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .86fr);
  align-items: center;
  gap: 72px;
  padding: 70px 0 86px;
}
.home-hero-copy { max-width: 820px; }
.home-hero-copy .section-kicker {
  margin-bottom: 20px;
  color: var(--fm-blue);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: .11em;
}
.home-hero h1 {
  max-width: 880px;
  font-size: clamp(4.2rem, 7.4vw, 7.65rem);
  line-height: .88;
  letter-spacing: -.058em;
}
.home-hero h1 .action-wrap { color: inherit; white-space: nowrap; }
.home-hero h1 .action-bracket { color: var(--fm-orange); }
.home-hero h1 .action-word { color: #fff; }
.home-hero-lead {
  max-width: 790px;
  margin: 28px 0 0;
  color: #edf4ff;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 34px;
  max-width: 820px;
}
.hero-service-card {
  padding: 18px 18px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(6,20,44,.82), rgba(0,0,0,.48));
  box-shadow: inset 0 0 22px rgba(85,190,230,.035), 0 18px 42px rgba(0,0,0,.24);
}
.hero-service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.hero-service-pill:hover { transform: translateY(-2px); }
.hero-service-pill-primary,
.hero-service-pill-secondary {
  color: #fff;
  border: 1px solid rgba(85,190,230,.66);
  background: rgba(85,190,230,.08);
  box-shadow: inset 0 0 18px rgba(85,190,230,.06);
}
.hero-service-pill-primary:hover,
.hero-service-pill-secondary:hover { border-color: var(--fm-blue); color: var(--fm-blue); }
.hero-service-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.hero-service-card li {
  position: relative;
  padding-left: 24px;
  color: #f6f9ff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.hero-service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .46em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--fm-blue);
  box-shadow: 0 0 15px rgba(85,190,230,.44);
}
.home-hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-photo-stage {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero-photo-circle {
  position: relative;
  z-index: 3;
  width: 83%;
  height: 83%;
  border-radius: 50%;
  overflow: hidden;
  background: #02060e;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 32px 80px rgba(0,0,0,.54),
    0 0 0 1px rgba(85,190,230,.12),
    0 0 48px rgba(85,190,230,.18);
}
.hero-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero-photo-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.30), transparent 42%);
  pointer-events: none;
}
.hero-photo-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 5px solid transparent;
}
.hero-photo-ring-cyan {
  inset: 2%;
  border-top-color: var(--fm-blue);
  border-right-color: var(--fm-cyan);
  border-bottom-color: rgba(85,190,230,.22);
  animation: hero-photo-clockwise 17s linear infinite;
  filter: drop-shadow(0 0 14px rgba(85,190,230,.34));
}
.hero-photo-ring-orange {
  inset: 9%;
  border-left-color: var(--fm-orange);
  border-bottom-color: var(--fm-orange);
  border-top-color: rgba(255,125,28,.20);
  animation: hero-photo-counter 20s linear infinite;
  filter: drop-shadow(0 0 12px rgba(255,125,28,.25));
}
.hero-photo-ring-navy {
  inset: -2%;
  border-width: 3px;
  border-top-color: rgba(37,61,131,.78);
  border-left-color: rgba(37,61,131,.82);
  animation: hero-photo-clockwise 28s linear infinite;
  opacity: .9;
}
@keyframes hero-photo-clockwise { to { transform: rotate(360deg); } }
@keyframes hero-photo-counter { to { transform: rotate(-360deg); } }

@media (max-width: 1240px) {
  .home-hero-inner { grid-template-columns: minmax(0,1fr) minmax(360px,.82fr); gap: 40px; }
  .home-hero-visual { min-height: 520px; }
  .hero-service-columns { grid-template-columns: 1fr; max-width: 560px; }
  .hero-photo-stage { width: min(100%, 500px); }
}

@media (max-width: 900px) {
  .home-hero { min-height: auto; }
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 54px 0 64px;
  }
  .home-hero-copy { max-width: none; }
  .home-hero h1 { font-size: clamp(3.3rem, 15vw, 5.8rem); }
  .home-hero-lead { font-size: 18px; line-height: 1.58; }
  .home-hero-visual { min-height: 0; padding: 18px 0 6px; }
  .hero-photo-stage { width: min(100%, 460px); }
}

@media (max-width: 540px) {
  .home-hero-inner { padding: 42px 0 52px; gap: 28px; }
  .home-hero-copy .section-kicker { font-size: 11px; letter-spacing: .08em; }
  .home-hero-lead { font-size: 16px; }
  .hero-service-columns { gap: 14px; margin-top: 28px; }
  .hero-service-card { padding: 15px; border-radius: 20px; }
  .hero-service-pill { width: 100%; min-height: 48px; font-size: 12px; }
  .hero-service-card li { font-size: 13px; }
  .hero-photo-stage { width: min(100%, 330px); }
  .hero-photo-ring { border-width: 4px; }
  .hero-photo-ring-navy { border-width: 2px; }
}

/* Homepage hero v3 additions */
.why-choose-wrap {
  position: relative;
  z-index: 1;
  padding: 0 0 86px;
}
.why-choose {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(6,20,44,.78), rgba(0,0,0,.50)),
    radial-gradient(circle at 96% 18%, rgba(255,125,28,.10), transparent 28%);
  box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 0 24px rgba(85,190,230,.035);
}
.why-choose-heading .section-kicker { margin-bottom: 12px; }
.why-choose h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.why-choose h2 span { color: var(--fm-blue); }
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.why-card {
  min-height: 136px;
  padding: 17px 17px 15px;
  border-radius: 22px;
  border: 1px solid rgba(255,125,28,.78);
  background: rgba(0,0,0,.32);
  box-shadow: inset 0 0 18px rgba(85,190,230,.025);
}
.why-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.28;
  letter-spacing: .01em;
}
.why-card p {
  margin: 0;
  color: #cfd8e9;
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 1040px) {
  .why-choose { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .why-choose-wrap { padding-bottom: 56px; }
  .why-choose { padding: 18px; border-radius: 24px; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 0; }
}

/* Homepage hero v5 refinements */
.hero-photo-caption {
  position: relative;
  z-index: 4;
  margin: -18px auto 0;
  max-width: 560px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(0,0,0,.58);
}
.hero-photo-caption .caption-small {
  display: block;
  margin-bottom: 8px;
  color: #f7fbff;
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero-photo-caption .caption-main {
  display: block;
  font-size: clamp(1.85rem, 3.6vw, 3.45rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.045em;
}
.hero-photo-caption .caption-main span {
  color: var(--fm-orange);
}
.home-hero-lead br + br {
  content: "";
}
@media (max-width: 900px) {
  .hero-photo-caption { margin-top: -6px; max-width: 480px; }
}
@media (max-width: 540px) {
  .hero-photo-caption { margin-top: 8px; }
  .hero-photo-caption .caption-main { font-size: clamp(1.7rem, 11vw, 2.65rem); }
}


/* Homepage hero v8 ambulance/trauma feature */
.trauma-feature-wrap {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}
.trauma-feature {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.trauma-visual {
  display: grid;
  place-items: center;
}
.trauma-photo-stage {
  width: min(100%, 470px);
}
.trauma-photo-circle img {
  object-position: 58% 82%;
  transform: scale(1.08);
}
.trauma-copy {
  justify-self: stretch;
  text-align: left;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.trauma-kicker {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(0.85rem, 1.7vw, 1.95rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: none;
}
.trauma-statement {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  text-shadow: 0 14px 30px rgba(0,0,0,.24);
}
.trauma-statement .line-one,
.trauma-statement .line-two {
  display: block;
  font-family: inherit;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.trauma-statement .orange-bracket {
  color: var(--fm-orange);
}
@media (max-width: 900px) {
  .trauma-feature { grid-template-columns: 1fr; gap: 28px; }
  .trauma-visual { order: 1; }
  .trauma-copy { order: 2; text-align: center; }
  .trauma-statement { text-align: center; }
  .trauma-photo-stage { width: min(100%, 390px); }
  .trauma-statement .line-one,
  .trauma-statement .line-two { white-space: normal; }
}
@media (max-width: 540px) {
  .trauma-feature-wrap { padding-bottom: 52px; }
  .trauma-photo-stage { width: min(100%, 310px); }
  .trauma-kicker { font-size: clamp(1.05rem, 6vw, 1.55rem); margin-bottom: 10px; }
  .trauma-statement .line-one,
  .trauma-statement .line-two { font-size: clamp(1.75rem, 8vw, 2.35rem); }
}


/* Legal policy pages */
.company-name {
  color: #fff;
  font-weight: 800;
  margin: 12px 0 0;
  line-height: 1.25;
}
.legal-hero {
  min-height: 260px;
  align-items: flex-end;
}
.legal-hero .hero-copy {
  padding: 52px 0 42px;
}
.legal-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
}
.legal-hero .hero-copy p:not(.section-kicker) {
  margin-top: 14px;
}
.legal-content-band {
  padding-top: 28px;
}
.legal-panel {
  max-width: 1080px;
  margin: 0 auto;
}
.legal-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 22px;
}
.legal-panel h3 {
  color: var(--fm-blue);
  margin: 34px 0 12px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.25;
}
.legal-panel p,
.legal-panel li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-panel ul {
  margin: 12px 0 22px;
  padding-left: 1.2rem;
}
.legal-panel a {
  color: var(--fm-blue);
}

/* Privacy notice lawful-basis table */
.lawful-basis-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 34px;
  border-radius: 18px;
  border: 1px solid rgba(255, 125, 28, 0.65);
  background: rgba(4, 10, 24, 0.45);
}
.lawful-basis-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: var(--muted);
}
.lawful-basis-table th,
.lawful-basis-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.09);
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: .94rem;
  line-height: 1.65;
}
.lawful-basis-table th:last-child,
.lawful-basis-table td:last-child { border-right: 0; }
.lawful-basis-table tr:last-child td { border-bottom: 0; }
.lawful-basis-table th {
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(38,88,255,.28), rgba(255,125,28,.14));
}
.lawful-basis-table td:first-child {
  color: #fff;
  font-weight: 700;
  width: 15%;
}
.lawful-basis-table td strong { color: #fff; }
@media (max-width: 760px) {
  .lawful-basis-table-wrap { border: 0; background: transparent; overflow: visible; }
  .lawful-basis-table { min-width: 0; display: block; }
  .lawful-basis-table thead { display: none; }
  .lawful-basis-table tbody,
  .lawful-basis-table tr,
  .lawful-basis-table td { display: block; width: 100%; }
  .lawful-basis-table tr {
    margin: 0 0 18px;
    border: 1px solid rgba(255, 125, 28, 0.65);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(4, 10, 24, 0.45);
  }
  .lawful-basis-table td {
    border-right: 0;
    padding: 14px 16px;
  }
  .lawful-basis-table td::before {
    content: attr(data-label);
    display: block;
    color: #fff;
    font-weight: 800;
    margin-bottom: 6px;
  }
}


/* v13 legal page refinements */
.compact-legal-hero {
  min-height: 170px;
}
.compact-legal-hero .hero-copy {
  padding: 34px 0 30px;
}
.legal-content-band {
  padding-top: 18px;
}
.legal-panel {
  padding-top: 30px;
  padding-bottom: 42px;
}
.legal-panel h2 {
  margin-top: 0;
}
.legal-subitem {
  padding-left: 1.1rem;
}
@media (max-width: 720px) {
  .compact-legal-hero { min-height: 145px; }
  .compact-legal-hero .hero-copy { padding: 26px 0 24px; }
  .legal-panel { padding: 24px 20px 34px; }
  .legal-panel p, .legal-panel li { font-size: .95rem; line-height: 1.65; }
}


/* Homepage clients and spotlight sections */
.clients-strip,
.instagram-spotlight {
  position: relative;
  padding: 64px 0;
}
.clients-strip { border-top: 1px solid rgba(255,255,255,.08); }
.clients-strip-header,
.spotlight-title-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}
.clients-strip h2,
.instagram-spotlight h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(9, minmax(94px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.client-logo-card {
  min-height: 96px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9,25,48,.9), rgba(0,0,0,.62));
  box-shadow: inset 0 0 18px rgba(72,199,238,.06), 0 12px 28px rgba(0,0,0,.22);
}
.client-logo-card img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: none;
}
.client-logo-text {
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  line-height: 1;
}
.client-logo-text span { font-size: 1.7rem; display: block; }
.client-logo-text small { font-size: .62rem; color: var(--fm-blue); letter-spacing: .18em; }
.spotlight-blue { color: var(--fm-blue); }
.spotlight-bracket { color: var(--fm-orange); }
.insta-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.insta-card {
  min-height: 180px;
  border: 1px solid var(--fm-orange);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 20% 18%, rgba(85,190,230,.24), transparent 34%),
    linear-gradient(145deg, rgba(5,20,40,.96), rgba(0,0,0,.82));
  box-shadow: inset 0 0 22px rgba(255,125,28,.06), 0 16px 34px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1;
}
.insta-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.insta-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.82)); }
.insta-card span { color: #fff; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; position: relative; z-index: 1; font-size: .78rem; text-shadow: 0 1px 5px #000; }
.insta-card:hover img, .insta-card:focus-visible img { transform: scale(1.035); }
.insta-card:focus-visible { outline: 3px solid var(--fm-blue); outline-offset: 3px; }
.instagram-note { text-align: center; color: rgba(255,255,255,.7); margin: 8px auto 0; max-width: 720px; }
.instagram-note a { color: var(--fm-blue); font-weight: 700; }
@media (max-width: 1180px) {
  .logo-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .clients-strip, .instagram-spotlight { padding: 46px 0; }
  .logo-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client-logo-card { min-height: 82px; padding: 14px; }
  .client-logo-card img { max-height: 44px; }
  .insta-scroller { grid-auto-columns: 76%; }
}

/* Shared homepage section heading style — matched to V17 Why Choose Feature Medical */
.clients-strip h2,
.instagram-spotlight h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.heading-white { color: #fff; }
.heading-blue,
.spotlight-blue { color: var(--fm-blue); }
.logos-mainpage-box {
  width: 100%;
  border: 1px solid rgba(85, 190, 230, .26);
  border-radius: 24px;
  padding: clamp(18px, 2.8vw, 34px);
  background: #1f3741;
  box-shadow: inset 0 0 30px rgba(85,190,230,.08), 0 18px 44px rgba(0,0,0,.28);
}
.logos-mainpage-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.spotlight-white { color: #fff; }
@media (max-width: 640px) {
  .logos-mainpage-box { padding: 16px; border-radius: 18px; }
}

/* Medical Services page v1 */
.section-heading-v17 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  border: 1px solid rgba(85,190,230,.72);
  background: rgba(85,190,230,.10);
  box-shadow: inset 0 0 18px rgba(85,190,230,.08), 0 0 22px rgba(85,190,230,.10);
}
.button-secondary {
  color: #fff;
  border: 1px solid rgba(255,125,28,.72);
  background: rgba(255,125,28,.09);
  box-shadow: inset 0 0 18px rgba(255,125,28,.06), 0 0 22px rgba(255,125,28,.09);
}
.button-primary:hover { color: var(--fm-blue); }
.button-secondary:hover { color: var(--fm-orange); }
.medical-page { background: #000; overflow: hidden; }
.medical-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.medical-hero-bg,
.medical-hero-bg img,
.medical-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.medical-hero-bg img { object-fit: cover; object-position: 50% 52%; filter: saturate(1.06) contrast(1.05); }
.medical-hero-overlay {
  background:
    radial-gradient(circle at 12% 20%, rgba(85,190,230,.18), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.30) 100%),
    linear-gradient(to top, rgba(0,0,0,.90), rgba(0,0,0,.20) 55%, rgba(0,0,0,.18));
}
.medical-hero-content { position: relative; z-index: 1; padding: 88px 0 92px; max-width: var(--wrap); }
.medical-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.medical-hero h1 span { color: var(--fm-blue); }
.medical-hero-lead {
  max-width: 800px;
  margin: 28px 0 0;
  color: #f1f6ff;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
}
.medical-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.med-intro-section,
.med-services-section,
.med-centre-section { position: relative; z-index: 1; padding: 82px 0; }
.med-intro-section,
.med-split-row,
.med-centre-layout,
.med-services-layout {
  display: grid;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}
.med-intro-section { grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); }
.med-intro-copy p,
.med-split-copy p,
.med-centre-copy p,
.medical-cta-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.med-intro-copy .section-heading-v17,
.med-split-copy .section-heading-v17,
.med-centre-heading .section-heading-v17,
.center-heading .section-heading-v17,
.medical-cta-panel .section-heading-v17 { margin: 0 0 24px; }
.med-feature-row,
.med-centre-points,
.med-service-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.med-feature-row span,
.med-centre-points span,
.med-service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(85,190,230,.45);
  color: #fff;
  background: rgba(85,190,230,.07);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.image-glow-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(85,190,230,.22);
  background: #071224;
  box-shadow: inset 0 0 35px rgba(85,190,230,.06), 0 26px 70px rgba(0,0,0,.34);
}
.image-glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,125,28,.18), inset 0 0 32px rgba(85,190,230,.08);
  z-index: 1;
}
.image-glow-card img { width: 100%; height: 100%; object-fit: cover; }
.med-intro-image { min-height: 520px; }
.med-intro-image img { object-position: center; }
.center-heading { text-align: center; max-width: 880px; margin: 0 auto 42px; }
.med-services-layout { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); }
.med-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.med-service-card {
  min-height: 236px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,125,28,.74);
  background: linear-gradient(145deg, rgba(6,20,44,.90), rgba(0,0,0,.64));
  box-shadow: inset 0 0 22px rgba(85,190,230,.035), 0 16px 36px rgba(0,0,0,.24);
}
.med-service-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.med-service-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.med-stage-card { min-height: 540px; }
.image-caption-pill {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid rgba(85,190,230,.68);
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.med-ambulance-section,
.med-one-provider-section {
  padding: 84px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(85,190,230,.12), transparent 28%),
    linear-gradient(135deg, rgba(4,14,32,.9), rgba(0,0,0,1));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.med-split-row { grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr); }
.med-ambulance-image,
.med-split-image { min-height: 520px; }
.med-tick-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.med-tick-list li {
  position: relative;
  padding-left: 30px;
  color: #f8fbff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}
.med-tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .36em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--fm-blue);
  box-shadow: 0 0 14px rgba(85,190,230,.42);
}
.med-centre-heading { text-align: left; max-width: 900px; margin-bottom: 36px; }
.med-centre-layout { grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); align-items: stretch; }
.med-centre-sign { min-height: 420px; }
.med-centre-sign img { object-position: 50% 38%; }
.med-centre-copy {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(6,20,44,.72), rgba(0,0,0,.42));
}
.med-centre-copy p:first-child { margin-top: 0; }
.medical-carousel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.medical-carousel figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(85,190,230,.22);
  background: #071224;
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
}
.medical-carousel img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.medical-carousel figure:hover img { transform: scale(1.04); }
.med-one-provider-section { background: #000; }
.med-service-tags { margin-top: 26px; }
.medical-cta-section { padding: 94px 0; }
.medical-cta-panel {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(255,125,28,.74);
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 16%, rgba(85,190,230,.16), transparent 30%),
    linear-gradient(145deg, rgba(7,24,52,.94), rgba(0,0,0,.82));
  box-shadow: inset 0 0 34px rgba(85,190,230,.06), 0 22px 56px rgba(0,0,0,.30);
}
.medical-cta-panel p { max-width: 760px; }
@media (max-width: 1180px) {
  .medical-hero h1 { font-size: clamp(3.4rem, 7vw, 5.8rem); }
  .med-intro-section,
  .med-services-layout,
  .med-split-row,
  .med-centre-layout { grid-template-columns: 1fr; }
  .reverse-on-mobile .med-ambulance-image { order: 2; }
  .reverse-on-mobile .med-split-copy { order: 1; }
  .med-intro-image,
  .med-stage-card,
  .med-ambulance-image,
  .med-split-image,
  .med-centre-sign { min-height: 420px; }
}
@media (max-width: 760px) {
  .medical-hero { min-height: auto; }
  .medical-hero-content { padding: 64px 0 70px; }
  .medical-hero-lead,
  .med-intro-copy p,
  .med-split-copy p,
  .med-centre-copy p,
  .medical-cta-panel p { font-size: 16px; line-height: 1.65; }
  .med-intro-section,
  .med-services-section,
  .med-centre-section,
  .med-ambulance-section,
  .med-one-provider-section,
  .medical-cta-section { padding: 56px 0; }
  .med-service-grid,
  .medical-carousel { grid-template-columns: 1fr; }
  .med-intro-image,
  .med-stage-card,
  .med-ambulance-image,
  .med-split-image,
  .med-centre-sign { min-height: 320px; }
  .med-service-card { min-height: 0; }
  .med-centre-copy { padding: 22px; }
}

/* Medical Services v22 refinements */
.medical-hero h1 .orange-bracket,
.medical-page .orange-bracket { color: var(--fm-orange); }
.medical-hero h1 span:not(.orange-bracket) { color: #fff; }
.medical-hero .button-primary,
.medical-cta-panel .button-primary,
.medical-hero .button-secondary,
.medical-cta-panel .button-secondary {
  border-radius: 999px;
  border: 1px solid rgba(85,190,230,.72);
  background: linear-gradient(135deg, rgba(85,190,230,.16), rgba(0,0,0,.58));
  color: #fff;
  box-shadow: 0 0 20px rgba(85,190,230,.20), inset 0 0 20px rgba(85,190,230,.08);
}
.medical-hero .button-primary:hover,
.medical-cta-panel .button-primary:hover,
.medical-hero .button-secondary:hover,
.medical-cta-panel .button-secondary:hover {
  border-color: var(--fm-orange);
  box-shadow: 0 0 22px rgba(255,125,28,.22), inset 0 0 20px rgba(85,190,230,.10);
}
.medical-section-title .heading-blue { color: var(--fm-blue); }
.med-intro-section-refined { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .9fr); }
.medical-circle-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.medical-photo-circle {
  position: relative;
  z-index: 3;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  overflow: hidden;
  background: #02060e;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 32px 80px rgba(0,0,0,.54), 0 0 48px rgba(85,190,230,.16);
}
.medical-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.med-intro-circle .medical-photo-circle img { object-position: 58% 48%; }
.med-centre-circle .medical-photo-circle img { object-position: 52% 40%; transform: scale(1.02); }
.med-stage-circle .medical-photo-circle img { object-position: 50% 50%; }
.med-centre-layout-refined { grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr); }
.med-centre-copy-refined { align-self: center; }
.medical-carousel-orange figure {
  border: 1px solid rgba(255,125,28,.82);
  box-shadow: 0 14px 34px rgba(0,0,0,.26), 0 0 18px rgba(255,125,28,.10);
}
.med-one-provider-row { grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); }
.medical-cta-panel .section-kicker { display: none; }
@media (max-width: 1180px) {
  .med-intro-section-refined,
  .med-centre-layout-refined,
  .med-one-provider-row { grid-template-columns: 1fr; }
  .medical-circle-stage { width: min(100%, 440px); }
}
@media (max-width: 540px) {
  .medical-circle-stage { width: min(100%, 330px); }
}

.med-cta-heading-one-line { white-space: nowrap; }
@media (max-width: 760px) { .med-cta-heading-one-line { white-space: normal; } }


/* Medical Services v24 final refinements */
.medical-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(85,190,230,.20), transparent 24%),
    radial-gradient(circle at 70% 28%, rgba(37,61,131,.36), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255,125,28,.10), transparent 22%),
    linear-gradient(135deg, #01040a 0%, #071833 45%, #000 100%);
}
.medical-hero-overlay {
  background:
    radial-gradient(circle at 14% 18%, rgba(85,190,230,.18), transparent 25%),
    radial-gradient(circle at 70% 28%, rgba(37,61,131,.28), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255,125,28,.10), transparent 22%),
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(3,16,38,.66) 44%, rgba(0,0,0,.30) 100%),
    linear-gradient(to top, rgba(0,0,0,.90), rgba(0,0,0,.22) 56%, rgba(0,0,0,.16));
}
.medical-sign-circle { background: #02060e; }
.med-centre-circle .medical-sign-circle img {
  object-fit: contain;
  object-position: center center;
  transform: scale(.94);
}
.med-one-provider-section .one-number-kicker {
  color: var(--fm-blue);
  font-weight: 900;
  letter-spacing: .12em;
}
.med-one-provider-section .medical-section-title { margin-top: 0; }
.med-cta-heading-one-line {
  white-space: nowrap;
  font-size: clamp(2rem, 4vw, 3.15rem);
}
@media (max-width: 760px) {
  .med-cta-heading-one-line { white-space: normal; }
}

/* Medical Services v25 final polish */
.medical-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(85,190,230,.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(37,61,131,.28), transparent 32%),
    radial-gradient(circle at 85% 72%, rgba(255,125,28,.08), transparent 24%),
    linear-gradient(135deg, #01040a 0%, #06162f 42%, #000 100%);
  overflow: hidden;
}
.medical-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(85,190,230,.08), transparent 25%),
    radial-gradient(circle at 72% 48%, rgba(37,61,131,.12), transparent 28%);
}
.medical-page > section,
.medical-page .page-wrap {
  position: relative;
  z-index: 1;
}
.med-intro-section,
.med-centre-section,
.med-one-provider-section,
.medical-cta-section {
  background: transparent !important;
}
.med-one-provider-section,
.medical-cta-section {
  border-top: 1px solid rgba(255,255,255,.08);
}
.medical-sign-circle img,
.med-centre-circle .medical-sign-circle img {
  object-fit: contain;
  object-position: center center;
  transform: scale(1.10);
}


/* Medical Services v26 timeline infographic */
.med-timeline-section {
  position: relative;
  z-index: 1;
  padding: 82px 0 36px;
}
.med-timeline-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 34px;
}
.med-timeline-heading .section-heading-v17 {
  margin: 0;
}
.med-timeline-image-card {
  width: min(920px, 100%);
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,125,28,.74);
  background:
    radial-gradient(circle at 70% 14%, rgba(85,190,230,.15), transparent 32%),
    linear-gradient(145deg, rgba(6,20,44,.88), rgba(0,0,0,.72));
  box-shadow: 0 28px 80px rgba(0,0,0,.42), 0 0 28px rgba(85,190,230,.10), inset 0 0 26px rgba(85,190,230,.06);
}
.med-timeline-image-card img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 760px) {
  .med-timeline-section { padding: 56px 0 24px; }
  .med-timeline-image-card { border-radius: 22px; }
}

/* GP & Concierge Services page v1 */
.concierge-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(85,190,230,.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(37,61,131,.28), transparent 32%),
    radial-gradient(circle at 85% 72%, rgba(255,125,28,.08), transparent 24%),
    linear-gradient(135deg, #01040a 0%, #06162f 42%, #000 100%);
}
.concierge-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(85,190,230,.08), transparent 25%),
    radial-gradient(circle at 72% 48%, rgba(37,61,131,.12), transparent 28%);
}
.concierge-page > section,
.concierge-page .page-wrap { position: relative; z-index: 1; }
.concierge-hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 86px 0;
}
.concierge-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}
.concierge-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.1rem);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.concierge-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: #f1f6ff;
  font-size: 20px;
  line-height: 1.65;
}
.concierge-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.concierge-visual-stack { display: grid; place-items: center; }
.concierge-orbit-card {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.concierge-orbit-card img {
  position: relative;
  z-index: 3;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.54), 0 0 48px rgba(85,190,230,.16);
}
.concierge-pill-row {
  padding: 34px 0 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.concierge-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(85,190,230,.45);
  color: #fff;
  background: rgba(85,190,230,.07);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.concierge-section,
.concierge-service-grid-section,
.concierge-pathway-layout,
.concierge-cta-section { padding: 82px 0; }
.concierge-section-split,
.concierge-pathway-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.concierge-section-copy p,
.concierge-pathway-copy p,
.concierge-cta-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.concierge-section-copy .section-heading-v17,
.concierge-pathway-copy .section-heading-v17,
.concierge-cta-panel .section-heading-v17 { margin: 0 0 24px; }
.concierge-image-panel {
  min-height: 480px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(85,190,230,.24);
  background: linear-gradient(145deg, rgba(6,20,44,.72), rgba(0,0,0,.42));
  box-shadow: inset 0 0 35px rgba(85,190,230,.06), 0 26px 70px rgba(0,0,0,.34);
}
.concierge-image-panel img { width: 100%; height: 100%; object-fit: cover; }
.concierge-dark-band,
.concierge-pathway-band {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(85,190,230,.12), transparent 28%),
    linear-gradient(135deg, rgba(4,14,32,.72), rgba(0,0,0,.36));
}
.concierge-center-heading { margin-bottom: 42px; }
.concierge-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.concierge-service-card {
  min-height: 240px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,125,28,.78);
  background: linear-gradient(145deg, rgba(6,20,44,.72), rgba(0,0,0,.44));
  box-shadow: 0 18px 44px rgba(0,0,0,.22), inset 0 0 24px rgba(85,190,230,.05);
}
.concierge-service-card .card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(85,190,230,.7);
  color: var(--fm-orange);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(85,190,230,.18);
}
.concierge-service-card h3 {
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .04em;
}
.concierge-service-card p { margin: 0; color: var(--muted); line-height: 1.62; font-size: 15px; }
.concierge-steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}
.concierge-steps li {
  position: relative;
  padding: 18px 18px 18px 62px;
  border: 1px solid rgba(85,190,230,.22);
  border-radius: 20px;
  background: rgba(3,12,28,.46);
}
.concierge-steps li::before {
  content: counter(list-item, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--fm-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(85,190,230,.18);
}
.concierge-steps strong { display: block; color: #fff; margin-bottom: 5px; }
.concierge-steps span { display: block; color: var(--muted); line-height: 1.55; }
.tall-panel { min-height: 560px; }
.concierge-cta-section { padding-top: 94px; }
.concierge-cta-panel {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(255,125,28,.74);
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 16%, rgba(85,190,230,.16), transparent 30%),
    linear-gradient(145deg, rgba(7,24,52,.94), rgba(0,0,0,.82));
  box-shadow: inset 0 0 34px rgba(85,190,230,.06), 0 22px 56px rgba(0,0,0,.30);
}
.concierge-cta-panel p { max-width: 800px; }
@media (max-width: 1180px) {
  .concierge-hero-grid,
  .concierge-section-split,
  .concierge-pathway-layout { grid-template-columns: 1fr; }
  .concierge-orbit-card { width: min(100%, 440px); }
  .concierge-image-panel { min-height: 420px; }
  .concierge-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reverse-on-mobile .concierge-image-panel { order: 2; }
  .reverse-on-mobile .concierge-section-copy { order: 1; }
}
@media (max-width: 760px) {
  .concierge-hero { min-height: auto; padding: 60px 0; }
  .concierge-hero h1 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .concierge-lead,
  .concierge-section-copy p,
  .concierge-pathway-copy p,
  .concierge-cta-panel p { font-size: 16px; line-height: 1.65; }
  .concierge-section,
  .concierge-service-grid-section,
  .concierge-pathway-layout,
  .concierge-cta-section { padding: 56px 0; }
  .concierge-card-grid { grid-template-columns: 1fr; }
  .concierge-image-panel { min-height: 320px; border-radius: 24px; }
  .concierge-service-card { min-height: 0; }
}

/* GP & Concierge Services v2 refinements */
.concierge-page .orange-bracket { color: var(--fm-orange); }
.concierge-page .button-secondary {
  color: #fff;
  border-color: rgba(85,190,230,.72);
  background: rgba(85,190,230,.08);
  box-shadow: inset 0 0 18px rgba(85,190,230,.06), 0 0 22px rgba(85,190,230,.09);
}
.concierge-page .button-secondary:hover { color: var(--fm-blue); }
.concierge-page .section-kicker { color: var(--fm-blue); }
.concierge-service-card h3 { color: #fff; }

/* GP & Concierge v3 image updates */
.concierge-hero-photo {
  position: relative;
  overflow: hidden;
  background: #020712;
}
.concierge-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.concierge-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(1.05) contrast(1.04);
}
.concierge-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(85,190,230,.18), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(2,11,28,.74) 38%, rgba(0,0,0,.28) 74%, rgba(0,0,0,.18) 100%),
    linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.08) 58%, rgba(0,0,0,.18));
}
.concierge-hero-photo .concierge-hero-grid,
.concierge-hero-photo .page-wrap {
  position: relative;
  z-index: 1;
}
.concierge-hero-photo .concierge-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
}
.concierge-hero-spacer { min-height: 420px; }
.concierge-circle-visual {
  display: grid;
  place-items: center;
  min-height: 520px;
}
.concierge-photo-circle {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.concierge-photo-circle img {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 82%;
  object-fit: cover;
  object-position: 57% center;
  border-radius: 50%;
  box-shadow: 0 32px 80px rgba(0,0,0,.50), 0 0 44px rgba(85,190,230,.16);
}
@media (max-width: 1180px) {
  .concierge-hero-photo .concierge-hero-grid { grid-template-columns: 1fr; }
  .concierge-hero-spacer { display: none; }
  .concierge-circle-visual { min-height: 0; }
  .concierge-photo-circle { width: min(100%, 440px); }
}
@media (max-width: 760px) {
  .concierge-hero-bg img { object-position: 68% center; }
  .concierge-photo-circle { width: min(100%, 330px); }
}

/* GP & Concierge v4 content refinements */
.network-circle-visual,
.insurance-section .concierge-circle-visual {
  min-height: 520px;
}
.signpost-circle img {
  object-position: 50% 50%;
  transform: scale(1.08);
}
.insurance-circle img {
  object-position: 50% 50%;
  transform: scale(1.06);
}
.concierge-bullet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.concierge-bullet-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,125,28,.78);
  background: linear-gradient(145deg, rgba(6,20,44,.72), rgba(0,0,0,.44));
  box-shadow: 0 18px 44px rgba(0,0,0,.22), inset 0 0 24px rgba(85,190,230,.05);
  min-height: 96px;
}
.concierge-bullet-card .bullet-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(85,190,230,.8);
  color: var(--fm-blue);
  font-weight: 900;
  box-shadow: 0 0 18px rgba(85,190,230,.18);
}
.concierge-bullet-card h3 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .04em;
}
.concierge-flow-section {
  padding: 76px 0;
}
.concierge-flow-line {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 28px clamp(18px, 3vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(85,190,230,.24);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(234,245,255,.90));
  box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 0 28px rgba(85,190,230,.14);
  overflow-x: auto;
}
.flow-step {
  min-width: 130px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  text-align: center;
  color: #071a36;
}
.flow-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 2px solid var(--fm-blue);
  color: #1e6fc7;
  font-size: 30px;
  line-height: 1;
  background: rgba(255,255,255,.55);
}
.flow-step p {
  margin: 0;
  color: #071a36;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}
.flow-arrow {
  align-self: center;
  color: var(--fm-blue);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 1180px) {
  .concierge-bullet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .network-circle-visual,
  .insurance-section .concierge-circle-visual { min-height: 0; }
}
@media (max-width: 760px) {
  .concierge-bullet-grid { grid-template-columns: 1fr; }
  .concierge-flow-section { padding: 56px 0; }
  .concierge-flow-line {
    justify-content: flex-start;
    padding: 22px;
  }
  .flow-step { min-width: 118px; }
  .flow-icon { width: 50px; height: 50px; font-size: 26px; }
  .flow-step p { font-size: 13px; }
}

/* GP Concierge v5 process cards */
.concierge-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 0;
}
.concierge-process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(85,190,230,.9), rgba(255,125,28,.9), rgba(85,190,230,.9), transparent);
  box-shadow: 0 0 22px rgba(85,190,230,.34);
  pointer-events: none;
}
.process-card {
  position: relative;
  min-height: 210px;
  padding: 26px 18px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,125,28,.72);
  background: linear-gradient(145deg, rgba(5,20,45,.88), rgba(0,7,18,.72));
  box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 0 28px rgba(85,190,230,.06);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  text-align: center;
  overflow: hidden;
}
.process-card::after {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,190,230,.14), transparent 70%);
}
.process-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85,190,230,.85);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(85,190,230,.22);
  background: rgba(1,13,35,.86);
}
.process-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(85,190,230,.9);
  color: var(--fm-orange);
  font-size: 36px;
  line-height: 1;
  background: rgba(255,255,255,.03);
  box-shadow: 0 0 24px rgba(85,190,230,.2), inset 0 0 18px rgba(85,190,230,.08);
  z-index: 1;
}
.process-card h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  z-index: 1;
}
@media (max-width: 1050px) {
  .concierge-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concierge-process-grid::before { display: none; }
}
@media (max-width: 640px) {
  .concierge-process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; padding: 24px 18px; }
}

/* Aesthetics page v1 */
.aesthetics-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(85,190,230,.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(37,61,131,.26), transparent 32%),
    radial-gradient(circle at 85% 72%, rgba(255,125,28,.08), transparent 24%),
    linear-gradient(135deg, #01040a 0%, #06162f 42%, #000 100%);
}
.aesthetics-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(85,190,230,.08), transparent 25%),
    radial-gradient(circle at 72% 48%, rgba(37,61,131,.12), transparent 28%);
}
.aesthetics-page > section,
.aesthetics-page .page-wrap { position: relative; z-index: 1; }
.aesthetics-page .orange-bracket { color: var(--fm-orange); }
.aesthetics-page .section-heading-v17 { margin: 0 0 24px; }
.aesthetics-hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 86px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.aesthetics-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}
.aesthetics-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.1rem);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.06em;
  text-transform: uppercase;
  color: #fff;
}
.aesthetics-lead {
  max-width: 790px;
  margin: 28px 0 0;
  color: #f1f6ff;
  font-size: 20px;
  line-height: 1.65;
}
.aesthetics-strapline {
  margin: 24px 0 0;
  color: var(--fm-blue);
  font-weight: 900;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.aesthetics-hero-visual { display: grid; place-items: center; min-height: 620px; }
.aesthetics-main-circle .aesthetics-face-circle img { object-position: 58% 45%; transform: scale(1.02); }
.aesthetics-section { padding: 82px 0; }
.aesthetics-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.aesthetics-split.reverse { grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr); }
.aesthetics-copy p,
.aesthetics-center-heading p,
.aesthetics-cta-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.aesthetics-image-card {
  min-height: 480px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(85,190,230,.24);
  background: linear-gradient(145deg, rgba(6,20,44,.72), rgba(0,0,0,.42));
  box-shadow: inset 0 0 35px rgba(85,190,230,.06), 0 26px 70px rgba(0,0,0,.34);
}
.aesthetics-image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aesthetics-dark-band {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(85,190,230,.12), transparent 28%),
    linear-gradient(135deg, rgba(4,14,32,.72), rgba(0,0,0,.36));
}
.aesthetics-center-heading { max-width: 980px; margin: 0 auto 42px; text-align: center; }
.aesthetics-card-grid { display: grid; gap: 18px; }
.aesthetics-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.aesthetics-card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.aesthetics-card,
.aesthetics-detail-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,125,28,.78);
  background: linear-gradient(145deg, rgba(6,20,44,.72), rgba(0,0,0,.44));
  box-shadow: 0 18px 44px rgba(0,0,0,.22), inset 0 0 24px rgba(85,190,230,.05);
}
.aesthetics-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(85,190,230,.7);
  color: var(--fm-orange);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(85,190,230,.18);
}
.aesthetics-card h3,
.aesthetics-detail-card h3 {
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .04em;
}
.aesthetics-card p,
.aesthetics-detail-card p,
.aesthetics-detail-card li { margin: 0; color: var(--muted); line-height: 1.62; font-size: 15px; }
.aesthetics-detail-card ul { margin: 16px 0 0; padding-left: 20px; display: grid; gap: 8px; }
.circular-panel { min-height: 0; display: grid; place-items: center; border: none; background: transparent; box-shadow: none; overflow: visible; }
.small-aesthetic-circle { width: min(100%, 440px); }
.small-aesthetic-circle .hero-photo-circle img { object-position: 50% 50%; transform: scale(1.06); }
.aesthetics-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}
.aesthetics-benefit-list span,
.aesthetics-location-list div {
  border: 1px solid rgba(85,190,230,.35);
  background: rgba(85,190,230,.08);
  border-radius: 18px;
  padding: 14px 16px;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}
.aesthetics-treatment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.aesthetics-location-list { display: grid; gap: 14px; margin-top: 28px; }
.aesthetics-location-list strong { display: block; color: #fff; text-transform: uppercase; letter-spacing: .03em; }
.aesthetics-location-list span { display: block; margin-top: 5px; color: var(--fm-blue); font-weight: 800; }
.aesthetics-process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.aesthetics-process-row div {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(85,190,230,.34);
  background: rgba(4,14,32,.68);
}
.aesthetics-process-row span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--fm-blue);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 0 16px rgba(85,190,230,.22);
}
.aesthetics-process-row strong { display: block; color: #fff; text-transform: uppercase; font-size: 16px; letter-spacing: .04em; }
.aesthetics-process-row p { color: var(--muted); line-height: 1.55; font-size: 14px; }
.aesthetics-price-table {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,125,28,.78);
  background: linear-gradient(145deg, rgba(6,20,44,.72), rgba(0,0,0,.44));
}
.price-row {
  display: grid;
  grid-template-columns: 1.5fr .8fr .45fr;
  gap: 18px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  line-height: 1.35;
}
.price-row:first-child { border-top: 0; }
.price-head { color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; background: rgba(85,190,230,.10); }
.aesthetics-cta-section { padding: 82px 0 96px; }
.aesthetics-cta-panel {
  text-align: center;
  border-radius: 36px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(85,190,230,.28);
  background:
    radial-gradient(circle at 20% 20%, rgba(85,190,230,.16), transparent 30%),
    linear-gradient(135deg, rgba(4,14,32,.84), rgba(0,0,0,.44));
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
}
.aesthetics-cta-panel .concierge-actions { justify-content: center; }
@media (max-width: 1100px) {
  .aesthetics-hero-grid,
  .aesthetics-split,
  .aesthetics-split.reverse { grid-template-columns: 1fr; }
  .aesthetics-hero-visual { min-height: 0; }
  .aesthetics-card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .aesthetics-hero,
  .aesthetics-section,
  .aesthetics-cta-section { padding: 56px 0; }
  .aesthetics-hero h1 { font-size: clamp(3.1rem, 13vw, 4.2rem); }
  .aesthetics-lead,
  .aesthetics-copy p,
  .aesthetics-center-heading p,
  .aesthetics-cta-panel p { font-size: 16px; }
  .aesthetics-card-grid.three,
  .aesthetics-card-grid.four,
  .aesthetics-treatment-grid,
  .aesthetics-process-row,
  .aesthetics-benefit-list { grid-template-columns: 1fr; }
  .aesthetics-image-card { min-height: 340px; }
  .price-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 16px; }
}

/* Aesthetics page v2 refinements */
.consultation-flow.aesthetics-card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.regeneration-circle .hero-photo-circle,
.map-circle .hero-photo-circle { background: #06142c; }
.regeneration-circle .hero-photo-circle img,
.map-circle .hero-photo-circle img { object-fit: cover; object-position: center; transform: scale(1.04); }
.aesthetics-skin-section .small-aesthetic-circle .hero-photo-circle img { object-position: 73% 50%; transform: scale(1.22); }
.aesthetics-pathways-section .aesthetics-treatment-grid { margin-top: 8px; }
.aesthetics-locations-section .map-circle { width: min(100%, 460px); }
@media (max-width: 1100px) {
  .consultation-flow.aesthetics-card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .consultation-flow.aesthetics-card-grid.four { grid-template-columns: 1fr; }
}

/* Aesthetics page v3 refinements */
.aesthetics-lead-secondary {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted);
}
.aesthetics-location-list em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}
.aesthetics-location-list .location-address {
  color: rgba(255,255,255,.88);
  font-weight: 400;
}

/* v28: Lighten page hero headings to match homepage statement headings */
.home-hero h1,
.medical-hero h1,
.concierge-hero h1,
.aesthetics-hero h1 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 3.15rem) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase;
}

.home-hero h1 .action-bracket,
.medical-hero h1 .orange-bracket,
.concierge-hero h1 .orange-bracket,
.aesthetics-hero h1 .orange-bracket {
  color: var(--fm-orange) !important;
}

.home-hero h1 .action-word,
.concierge-hero h1 .heading-white,
.aesthetics-hero h1,
.medical-hero h1 {
  color: #fff;
}

@media (max-width: 900px) {
  .home-hero h1,
  .medical-hero h1,
  .concierge-hero h1,
  .aesthetics-hero h1 {
    font-size: clamp(2rem, 9vw, 3.15rem) !important;
  }
}

/* v29: Aesthetics hero converted to banner style and hero image moved to approach */
.aesthetics-banner-hero {
  position: relative;
  min-height: clamp(560px, 70vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 96px;
  border-bottom: 1px solid rgba(85,190,230,.16);
  background: #020812;
}
.aesthetics-hero-bg,
.aesthetics-hero-bg img,
.aesthetics-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.aesthetics-hero-bg img {
  object-fit: cover;
  object-position: 72% 48%;
  filter: saturate(1.05) contrast(1.04);
}
.aesthetics-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,6,18,.98) 0%, rgba(2,12,28,.92) 28%, rgba(2,12,28,.55) 52%, rgba(0,0,0,.12) 100%),
    radial-gradient(circle at 18% 22%, rgba(85,190,230,.18), transparent 28%),
    radial-gradient(circle at 72% 35%, rgba(255,125,28,.12), transparent 25%);
}
.aesthetics-banner-hero .aesthetics-hero-grid {
  position: relative;
  z-index: 2;
  display: block;
}
.aesthetics-banner-hero .aesthetics-hero-copy {
  max-width: 720px;
}
.aesthetics-banner-hero .aesthetics-lead {
  max-width: 700px;
}
.aesthetics-approach-photo img {
  object-position: 58% 45% !important;
  transform: scale(1.04) !important;
}
@media (max-width: 900px) {
  .aesthetics-banner-hero {
    min-height: auto;
    padding: 64px 0 70px;
  }
  .aesthetics-hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,6,18,.96) 0%, rgba(2,12,28,.88) 52%, rgba(0,0,0,.42) 100%),
      radial-gradient(circle at 18% 22%, rgba(85,190,230,.16), transparent 32%);
  }
  .aesthetics-hero-bg img { object-position: 66% 50%; }
}

/* v30: Aesthetics page polish */
.aesthetics-brand-banner {
  position: relative;
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 26px;
  border: 2px solid rgba(255,125,28,.88);
  background: rgba(255,255,255,.92);
  min-height: 190px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 0 24px rgba(255,125,28,.08);
}
.aesthetics-brand-banner img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}
.brand-banner-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  max-width: min(520px, calc(100% - 48px));
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,125,28,.9);
  background: rgba(2,8,18,.78);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 0 24px rgba(255,125,28,.18);
}
.aesthetics-banner-hero {
  min-height: clamp(500px, 58vh, 640px);
}
.aesthetics-hero-bg img {
  object-position: 72% 39%;
}
@media (max-width: 760px) {
  .aesthetics-brand-banner { min-height: 140px; border-radius: 20px; }
  .aesthetics-brand-banner img { min-height: 140px; }
  .brand-banner-caption { position: static; margin: 0; border-radius: 0; max-width: none; font-size: 12px; text-align: center; }
}

/* v31: Aesthetics page final brochure + reduced brand banner */
.brochure-pill {
  white-space: normal;
  text-align: center;
  line-height: 1.15;
}
.aesthetics-brand-banner {
  min-height: 108px !important;
  max-height: 128px !important;
  border: 2px solid rgba(255,125,28,.95) !important;
  border-radius: 22px !important;
}
.aesthetics-brand-banner img {
  min-height: 108px !important;
  height: 128px !important;
  object-fit: cover !important;
  object-position: center 50% !important;
  transform: scale(1.18);
}
.brand-banner-caption {
  top: 10px !important;
  bottom: auto !important;
  left: 18px !important;
  font-size: 12px !important;
  padding: 8px 14px !important;
}
@media (max-width: 760px) {
  .aesthetics-brand-banner { min-height: 100px !important; max-height: none !important; }
  .aesthetics-brand-banner img { min-height: 100px !important; height: 110px !important; transform: scale(1.22); }
  .brand-banner-caption { position: static !important; font-size: 11px !important; }
}

/* v32: use supplied uncropped aesthetics brand banner and bottom overlay */
.aesthetics-brand-banner {
  min-height: 0 !important;
  max-height: none !important;
  border: 2px solid rgba(255,125,28,.95) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: transparent !important;
}
.aesthetics-brand-banner img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  display: block !important;
}
.brand-banner-caption {
  top: auto !important;
  bottom: 14px !important;
  left: 18px !important;
  font-size: 12px !important;
  padding: 8px 14px !important;
}
@media (max-width: 760px) {
  .aesthetics-brand-banner { min-height: 0 !important; max-height: none !important; border-radius: 16px !important; }
  .aesthetics-brand-banner img { height: auto !important; min-height: 0 !important; transform: none !important; }
  .brand-banner-caption { position: absolute !important; bottom: 8px !important; left: 8px !important; right: 8px !important; margin: 0 !important; max-width: none !important; font-size: 9px !important; border-radius: 999px !important; }
}

/* Recruitment page */
.recruitment-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(85,190,230,.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(37,61,131,.28), transparent 32%),
    linear-gradient(135deg, #020814 0%, #06142c 45%, #02060e 100%);
  color: #fff;
}
.recruitment-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.recruitment-hero-bg,
.recruitment-hero-bg img,
.recruitment-hero-overlay {
  position: absolute;
  inset: 0;
}
.recruitment-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.05) contrast(1.05);
}
.recruitment-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,6,17,.95) 0%, rgba(0,10,28,.85) 36%, rgba(0,8,20,.28) 68%, rgba(0,6,17,.42) 100%),
    linear-gradient(180deg, rgba(0,6,17,.55), rgba(0,6,17,.15) 48%, rgba(0,6,17,.75));
  z-index: 1;
}
.recruitment-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 120px 24px 110px;
}
.recruitment-hero h1,
.recruitment-page .section-heading-v17 {
  font-family: 'Montserrat','Poppins',sans-serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}
.recruitment-hero h1 { font-size: clamp(2.6rem, 5vw, 5.4rem); max-width: 760px; }
.recruitment-page .orange-bracket { color: var(--fm-orange); }
.recruitment-page .heading-white { color: #fff; }
.recruitment-hero-lead,
.recruitment-copy p,
.recruitment-center-heading p,
.recruitment-status-panel p,
.recruitment-highlight-card p,
.recruitment-cta-panel p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.68;
}
.recruitment-hero-lead { max-width: 740px; margin: 28px 0 0; }
.recruitment-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.recruitment-intro-section,
.recruitment-skill-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 58px;
  align-items: center;
  padding: 92px 24px;
}
.recruitment-copy p { margin: 22px 0 0; }
.recruitment-circle-stage {
  position: relative;
  width: min(100%, 450px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.recruitment-photo-circle {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  border: 1px solid rgba(85,190,230,.25);
  background: #02060e;
}
.recruitment-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 45%;
  transform: scale(1.05);
  display: block;
}
.recruitment-band,
.recruitment-skill-section,
.recruitment-cta-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(85,190,230,.12), transparent 30%),
    linear-gradient(180deg, rgba(5,18,41,.94), rgba(2,8,20,.98));
  border-top: 1px solid rgba(85,190,230,.14);
  border-bottom: 1px solid rgba(85,190,230,.10);
}
.recruitment-center-heading { max-width: 1040px; margin: 0 auto 36px; text-align: center; }
.recruitment-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.recruitment-card-grid article,
.recruitment-status-panel,
.recruitment-highlight-card,
.recruitment-cta-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(85,190,230,.22);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.20);
}
.recruitment-card-grid article {
  padding: 24px 22px;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.recruitment-card-grid span {
  color: var(--fm-orange);
  font-weight: 900;
  letter-spacing: .09em;
  font-size: 13px;
}
.recruitment-card-grid h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.recruitment-status-section { padding: 88px 24px; }
.recruitment-status-panel {
  padding: clamp(32px, 5vw, 58px);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  border-color: rgba(255,125,28,.35);
}
.recruitment-status-panel .recruitment-actions,
.recruitment-cta-panel .recruitment-actions { justify-content: center; }
.recruitment-highlight-card { padding: clamp(28px, 4vw, 44px); border-color: rgba(255,125,28,.25); }
.recruitment-highlight-card h3 {
  color: var(--fm-blue);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.recruitment-cta-panel {
  padding: clamp(34px, 5vw, 62px);
  text-align: center;
  max-width: 1050px;
  margin: 0 auto;
  border-color: rgba(85,190,230,.26);
}
.recruitment-cta-panel p { max-width: 760px; margin: 22px auto 0; }
@media (max-width: 980px) {
  .recruitment-intro-section,
  .recruitment-skill-grid { grid-template-columns: 1fr; padding: 64px 24px; }
  .recruitment-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .recruitment-hero { min-height: 560px; }
  .recruitment-hero-content { padding: 90px 22px; }
  .recruitment-card-grid { grid-template-columns: 1fr; }
  .recruitment-hero-lead,
  .recruitment-copy p,
  .recruitment-center-heading p,
  .recruitment-status-panel p,
  .recruitment-highlight-card p,
  .recruitment-cta-panel p { font-size: 16px; }
}


/* Recruitment page tweaks */
.recruitment-hero-left{
  text-align:left !important;
  align-items:flex-start !important;
}
.recruitment-card-grid article span{
  display:none !important;
}

/* Recruitment v3: align hero copy with other pages and match hero heading style */
.recruitment-hero-content.recruitment-hero-left{
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  text-align: left !important;
  align-items: flex-start !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.recruitment-hero h1{
  font-family: 'Montserrat', 'Poppins', sans-serif !important;
  font-size: clamp(2rem, 3vw, 3.15rem) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase !important;
  max-width: 760px !important;
  margin: 0 !important;
  color: #fff !important;
}
.recruitment-hero h1 .orange-bracket{
  color: var(--fm-orange) !important;
}
.recruitment-hero-lead{
  max-width: 740px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}
@media (max-width: 900px){
  .recruitment-hero-content.recruitment-hero-left{
    width: calc(100% - 44px) !important;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .recruitment-hero h1{
    font-size: clamp(2rem, 9vw, 3.15rem) !important;
  }
}


/* Recruitment v4 final hero alignment: pin copy to the same left page-wrap edge as the content sections */
.recruitment-hero {
  justify-content: flex-start !important;
}
.recruitment-hero-content.recruitment-hero-left {
  width: min(760px, calc(100% - 48px)) !important;
  max-width: 760px !important;
  margin-left: max(24px, calc((100vw - 1180px) / 2)) !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
}
.recruitment-hero h1 {
  font-family: inherit !important;
  font-size: clamp(2rem, 3vw, 3.15rem) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase !important;
  max-width: 760px !important;
  margin: 0 !important;
}
.recruitment-hero-lead {
  max-width: 740px !important;
  margin-left: 0 !important;
  text-align: left !important;
}
@media (max-width: 640px) {
  .recruitment-hero-content.recruitment-hero-left {
    width: calc(100% - 44px) !important;
    margin-left: 22px !important;
  }
}

/* Contact page v1 */
.contact-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(85,190,230,.16), transparent 30%),
    linear-gradient(135deg, #020814 0%, #06142c 45%, #02060e 100%);
  color: #fff;
  overflow: hidden;
}
.contact-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  border-bottom: 1px solid rgba(85,190,230,.18);
  background:
    radial-gradient(circle at 84% 20%, rgba(85,190,230,.22), transparent 30%),
    linear-gradient(90deg, rgba(0,8,22,.98), rgba(0,16,43,.88));
}
.contact-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,125,28,.08), transparent 34%),
    radial-gradient(circle at 20% 70%, rgba(85,190,230,.10), transparent 32%);
  pointer-events:none;
}
.contact-hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0 84px;
  max-width: 820px;
}
.contact-hero h1 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.contact-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  line-height: 1.65;
}
.contact-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }
.contact-section { padding: 86px 0; }
.contact-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}
.contact-card, .contact-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(85,190,230,.22);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.20);
}
.contact-card { padding: 30px 28px; }
.contact-card h2, .contact-panel h2 {
  margin:0 0 16px;
  color:#fff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height:1.05;
  text-transform:uppercase;
  letter-spacing:-.03em;
}
.contact-card p, .contact-card a, .contact-panel p, .contact-panel li {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height:1.6;
}
.contact-card a { text-decoration:none; font-weight:800; }
.contact-card a:hover { color: var(--fm-blue); }
.contact-icon {
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:50%;
  color:var(--fm-blue);
  border:1px solid rgba(85,190,230,.45);
  background: rgba(85,190,230,.08);
  font-weight:900;
}
.contact-panel-wrap {
  display:grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap:24px;
  align-items:stretch;
  margin-top:24px;
}
.contact-panel { padding: clamp(30px, 4vw, 48px); }
.contact-location-list { list-style:none; padding:0; margin:22px 0 0; display:grid; gap:18px; }
.contact-location-list strong { color: var(--fm-blue); display:block; text-transform:uppercase; margin-bottom:4px; }
.contact-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:20px; }
.contact-form-grid .full { grid-column:1/-1; }
.contact-field {
  border:1px solid rgba(85,190,230,.22);
  background:rgba(0,0,0,.18);
  border-radius:16px;
  padding:16px 16px;
  color:#fff;
  min-height:54px;
  font: inherit;
}
textarea.contact-field { min-height:132px; resize:vertical; }
.contact-note { margin-top:18px; font-size:14px!important; opacity:.78; }
.contact-emergency {
  margin-top:24px;
  border-color: rgba(255,125,28,.35);
  background: linear-gradient(180deg, rgba(255,125,28,.10), rgba(255,255,255,.03));
}
@media (max-width: 980px) {
  .contact-grid, .contact-panel-wrap { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .contact-hero { min-height: 500px; }
  .contact-hero-content { padding: 70px 0; }
  .contact-hero p { font-size:16px; }
  .contact-form-grid { grid-template-columns:1fr; }
}


/* Recruitment v5 alignment and image rotation */
.recruitment-hero-content.recruitment-hero-left{
  width: var(--wrap) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
}
.recruitment-hero-content.recruitment-hero-left > *{
  max-width: 760px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}
.recruitment-hero-content.recruitment-hero-left .recruitment-actions{
  justify-content: flex-start !important;
}
.recruitment-photo-circle img{
  transform: rotate(4deg) scale(1.16) !important;
  object-position: 56% 45% !important;
}
@media (max-width: 640px){
  .recruitment-hero-content.recruitment-hero-left{ width: calc(100% - 44px) !important; }
}

/* Contact page v2 hero image and contact options */
.contact-hero{
  position: relative !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  background: #020814 !important;
  overflow: hidden !important;
  isolation: isolate !important;
}
.contact-hero-bg,
.contact-hero-bg img,
.contact-hero-overlay{
  position:absolute;
  inset:0;
}
.contact-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 46%;
  filter:saturate(1.05) contrast(1.05);
}
.contact-hero-overlay{
  z-index:1;
  background:
    linear-gradient(90deg, rgba(0,6,17,.96) 0%, rgba(0,10,28,.86) 38%, rgba(0,8,20,.35) 68%, rgba(0,6,17,.56) 100%),
    linear-gradient(180deg, rgba(0,6,17,.55), rgba(0,6,17,.15) 50%, rgba(0,6,17,.78));
}
.contact-hero::before{ display:none !important; }
.contact-hero-content{
  z-index:2 !important;
  padding: 110px 0 100px !important;
  max-width: none !important;
}
.contact-hero-content > *{
  max-width: 820px;
}
.contact-action-groups{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:32px;
}
.contact-action-stack{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:min(100%, 270px);
}
.button-blue-outline{
  color:#fff !important;
  border:1px solid rgba(85,190,230,.85) !important;
  background:rgba(85,190,230,.06) !important;
  box-shadow:0 0 22px rgba(85,190,230,.12) !important;
}
.button-blue-outline:hover{
  background:rgba(85,190,230,.18) !important;
}
.button-orange-outline{
  color:#fff !important;
  border:1px solid rgba(255,125,28,.9) !important;
  background:rgba(255,125,28,.07) !important;
  box-shadow:0 0 22px rgba(255,125,28,.12) !important;
}
.button-orange-outline:hover{
  background:rgba(255,125,28,.18) !important;
}
.contact-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
@media (max-width: 1100px){
  .contact-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px){
  .contact-hero{ min-height: 560px !important; }
  .contact-hero-content{ padding: 90px 0 !important; }
  .contact-grid{ grid-template-columns: 1fr !important; }
  .contact-action-groups{ flex-direction:column; }
  .contact-action-stack{ width:100%; }
}

/* v6 true fixes: recruitment hero alignment and contact brackets */
.recruitment-hero-content.recruitment-hero-left{
  width: var(--wrap) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  text-align: left !important;
}
.recruitment-hero-content.recruitment-hero-left > *{
  max-width: 760px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}
.recruitment-hero-content.recruitment-hero-left .section-kicker,
.recruitment-hero-content.recruitment-hero-left h1,
.recruitment-hero-content.recruitment-hero-left .recruitment-hero-lead,
.recruitment-hero-content.recruitment-hero-left .recruitment-actions{
  margin-left: 0 !important;
  text-align: left !important;
  justify-content: flex-start !important;
}
.recruitment-photo-circle img{
  object-position: 34% 30% !important;
  transform: rotate(9deg) scale(1.30) !important;
  transform-origin: 42% 30% !important;
}
.contact-page .orange-bracket{
  color: var(--fm-orange) !important;
}
@media (max-width: 640px){
  .recruitment-hero-content.recruitment-hero-left{
    width: calc(100% - 44px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .recruitment-photo-circle img{
    object-position: 34% 30% !important;
    transform: rotate(9deg) scale(1.26) !important;
  }
}


/* Recruitment image crop correction v7 */
.recruitment-photo-circle img{
  object-position:center center !important;
  transform:none !important;
}


/* Wellbeing page first draft */
.wellbeing-page{
  background:
    radial-gradient(circle at top right, rgba(0,163,255,.16) 0%, rgba(0,163,255,0) 35%),
    linear-gradient(90deg,#00102b 0%,#000814 35%,#000000 100%);
  color:#fff;
}
.service-hero.wellbeing-hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#000814;
}
.wellbeing-hero .hero-bg-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.wellbeing-hero .hero-bg-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(1.02) contrast(1.02);
}
.wellbeing-hero .hero-bg-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,8,20,.96) 0%, rgba(0,12,30,.82) 34%, rgba(0,12,30,.35) 62%, rgba(0,0,0,.25) 100%),
    linear-gradient(0deg, rgba(0,8,20,.65), rgba(0,8,20,.05));
}
.wellbeing-hero .hero-inner{
  position:relative;
  z-index:1;
  width:100%;
}
.wellbeing-hero .hero-copy{
  max-width:760px;
  text-align:left;
}
.hero-title-lite{
  font-size:clamp(2.5rem,5vw,5.25rem);
  line-height:.94;
  letter-spacing:-.045em;
  text-transform:uppercase;
  font-weight:800;
  margin:0 0 1.4rem;
}
.hero-title-lite .bracket,
.section-heading .bracket,
.split-copy .bracket,
.cta-panel .bracket{
  color:#ff7a1a;
}
.hero-lead{
  max-width:720px;
  color:rgba(255,255,255,.86);
  font-size:clamp(1rem,1.35vw,1.18rem);
  line-height:1.6;
}
.wellbeing-page .section{
  padding:72px 0;
}
.wellbeing-page .section-heading h2,
.wellbeing-page .split-copy h2,
.wellbeing-page .cta-panel h2{
  margin:0;
  font-size:clamp(2rem,3vw,3.15rem);
  line-height:1;
  letter-spacing:-.04em;
  text-transform:uppercase;
}
.section-intro{
  max-width:980px;
  color:rgba(255,255,255,.82);
  font-size:1.1rem;
  line-height:1.65;
  margin:22px 0 34px;
}
.wellbeing-card-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.wellbeing-card-grid article,
.split-card,
.cta-panel{
  background:linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(91,194,231,.28);
  border-radius:22px;
  padding:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.24);
}
.wellbeing-card-grid article{
  border-color:rgba(255,122,26,.38);
}
.wellbeing-card-grid h3{
  margin:0 0 10px;
  color:#5bc2e7;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.wellbeing-card-grid p,
.split-card p,
.cta-panel p,
.split-copy p{
  color:rgba(255,255,255,.82);
  line-height:1.6;
}
.split-section{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:38px;
  align-items:center;
}
.feature-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
}
.feature-list li{
  border:1px solid rgba(91,194,231,.28);
  border-radius:999px;
  padding:12px 16px;
  color:#fff;
  background:rgba(255,255,255,.04);
}
.cta-panel{
  text-align:center;
  max-width:1100px;
  margin:0 auto;
  border-color:rgba(255,122,26,.45);
}
.cta-panel .hero-actions{
  justify-content:center;
}
@media (max-width: 980px){
  .wellbeing-card-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .split-section{grid-template-columns:1fr;}
}
@media (max-width: 620px){
  .service-hero.wellbeing-hero{min-height:auto; padding:96px 0 72px;}
  .wellbeing-card-grid{grid-template-columns:1fr;}
  .feature-list{grid-template-columns:1fr;}
}


/* Wellbeing hero refinement v2 */
.wellbeing-hero .hero-inner{
  max-width:1180px !important;
  margin:0 auto !important;
  padding-left:clamp(28px,5vw,72px) !important;
  padding-right:clamp(28px,5vw,72px) !important;
  box-sizing:border-box;
}
.wellbeing-hero .hero-copy{
  max-width:720px !important;
  margin-left:0 !important;
  text-align:left !important;
}
.wellbeing-hero .hero-title-lite{
  font-size:clamp(2rem,3vw,3.15rem) !important;
  line-height:1 !important;
  letter-spacing:-0.04em !important;
  text-transform:uppercase !important;
  font-weight:800 !important;
  color:#fff !important;
  margin:0 0 1.35rem !important;
}
.wellbeing-hero .hero-title-lite .white-word{
  color:#fff !important;
}
.wellbeing-hero .hero-title-lite .bracket{
  color:#ff7a1a !important;
}
.wellbeing-hero .hero-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:14px !important;
  justify-content:flex-start !important;
  align-items:center !important;
  margin-top:28px !important;
}
.wellbeing-hero .hero-actions .pill{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:46px !important;
  padding:0 22px !important;
  border-radius:999px !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  font-weight:800 !important;
  letter-spacing:.02em !important;
  color:#fff !important;
  background:rgba(0,8,20,.35) !important;
}
.wellbeing-hero .hero-actions .pill-blue{
  border:1.5px solid #5bc2e7 !important;
  box-shadow:0 0 18px rgba(91,194,231,.22) !important;
}
.wellbeing-hero .hero-actions .pill-orange{
  border:1.5px solid #ff7a1a !important;
  box-shadow:0 0 18px rgba(255,122,26,.22) !important;
}
.wellbeing-hero .hero-bg-media img{
  object-position:78% center !important;
}
@media (max-width: 760px){
  .wellbeing-hero .hero-bg-media img{
    object-position:70% center !important;
  }
  .wellbeing-hero .hero-inner{
    padding-left:24px !important;
    padding-right:24px !important;
  }
}


/* Wellbeing hero mockup refinement */
.wellbeing-page .wellbeing-hero.service-hero{
  min-height:720px !important;
  display:flex !important;
  align-items:center !important;
  border-bottom:1px solid rgba(91,194,231,.18);
}
.wellbeing-hero .hero-bg-media img{
  object-position:78% 62% !important;
  transform:none !important;
}
.wellbeing-hero .hero-bg-overlay{
  background:
    linear-gradient(90deg, rgba(0,9,24,.98) 0%, rgba(0,14,34,.92) 29%, rgba(0,14,34,.62) 46%, rgba(0,0,0,.08) 72%, rgba(0,0,0,.02) 100%),
    radial-gradient(circle at 25% 50%, rgba(24,152,221,.22), rgba(0,0,0,0) 38%) !important;
}
.wellbeing-hero .hero-inner{
  max-width:1240px !important;
  margin:0 auto !important;
  padding-left:clamp(34px,5vw,72px) !important;
  padding-right:clamp(34px,5vw,72px) !important;
}
.wellbeing-hero .hero-copy{
  max-width:690px !important;
}
.wellbeing-hero .eyebrow{
  color:#ff7a1a !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
}
.wellbeing-hero .hero-title-lite{
  font-family:'Montserrat','Poppins',sans-serif !important;
  font-size:clamp(3rem,4.7vw,5.45rem) !important;
  line-height:.95 !important;
  letter-spacing:-2px !important;
  font-weight:800 !important;
  text-transform:uppercase !important;
  color:#fff !important;
  margin-bottom:28px !important;
}
.wellbeing-hero .hero-title-lite .white-word{
  color:#fff !important;
}
.wellbeing-hero .hero-title-lite .bracket{
  color:#ff7a1a !important;
}
.wellbeing-hero .hero-lead{
  max-width:660px !important;
  font-size:clamp(1.04rem,1.2vw,1.17rem) !important;
  line-height:1.62 !important;
  color:rgba(255,255,255,.90) !important;
  margin:0 0 22px !important;
}
.wellbeing-hero-actions{
  margin-top:36px !important;
  gap:18px !important;
}
.wellbeing-hero-actions .pill{
  min-height:52px !important;
  padding:0 24px !important;
  border-radius:999px !important;
  font-size:.92rem !important;
}
.wellbeing-hero-actions .pill-orange{
  border-color:#ff7a1a !important;
  color:#ff7a1a !important;
  background:rgba(255,122,26,.06) !important;
}
.wellbeing-hero-actions .pill-blue{
  border-color:#5bc2e7 !important;
  color:#dff7ff !important;
  background:rgba(91,194,231,.06) !important;
}
@media (max-width: 920px){
  .wellbeing-page .wellbeing-hero.service-hero{
    min-height:auto !important;
    padding:110px 0 78px !important;
  }
  .wellbeing-hero .hero-bg-media img{
    object-position:68% 58% !important;
  }
  .wellbeing-hero .hero-bg-overlay{
    background:linear-gradient(90deg, rgba(0,9,24,.98) 0%, rgba(0,12,30,.90) 58%, rgba(0,0,0,.35) 100%) !important;
  }
}


/* Wellbeing hero alignment tweak */
.wellbeing-hero .hero-inner{
    max-width: 1180px !important;
}
.wellbeing-hero .hero-copy{
    margin-left: -110px !important;
}
@media (max-width: 1200px){
  .wellbeing-hero .hero-copy{
      margin-left: 0 !important;
  }
}


/* Wellbeing hero final alignment */
.wellbeing-hero .hero-copy{
    margin-left:-170px !important;
}
.wellbeing-hero .hero-title-lite{
    font-size:clamp(2rem,3vw,3.15rem) !important;
    line-height:1 !important;
    letter-spacing:-0.04em !important;
}
@media (max-width:1200px){
  .wellbeing-hero .hero-copy{
      margin-left:0 !important;
  }
}


/* Wellbeing page background alignment */
.wellbeing-page{
  background:
    radial-gradient(circle at 18% 0%, rgba(91,194,231,.18) 0%, rgba(91,194,231,0) 34%),
    radial-gradient(circle at 92% 12%, rgba(26,57,132,.42) 0%, rgba(26,57,132,0) 38%),
    linear-gradient(90deg,#001326 0%,#000918 45%,#000000 100%) !important;
}
.wellbeing-page .wellbeing-overview,
.wellbeing-page .wellbeing-days,
.wellbeing-page .final-cta{
  background:transparent !important;
}


/* Expandable wellbeing service cards */
.wellbeing-card-grid .expandable-service{
  grid-column:span 2;
  padding:0 !important;
  overflow:hidden;
}
.service-toggle{
  appearance:none;
  border:0;
  background:transparent;
  color:inherit;
  width:100%;
  text-align:left;
  padding:24px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  cursor:pointer;
}
.service-toggle h3{
  margin:0 0 10px;
}
.service-toggle p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.6;
}
.expand-indicator{
  flex:0 0 auto;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(255,122,26,.75);
  display:grid;
  place-items:center;
  color:#ff7a1a;
  font-size:1.45rem;
  line-height:1;
  margin-top:2px;
}
.expandable-service.is-open .expand-indicator{
  transform:rotate(45deg);
}
.service-expanded{
  border-top:1px solid rgba(255,122,26,.28);
  padding:0 24px 24px;
}
.expanded-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  padding-top:22px;
}
.expanded-grid > div{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(91,194,231,.22);
  border-radius:16px;
  padding:18px;
}
.expanded-grid h4{
  margin:0 0 8px;
  color:#5bc2e7;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.expanded-grid p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.55;
}
@media (max-width: 980px){
  .wellbeing-card-grid .expandable-service{grid-column:span 1;}
  .expanded-grid{grid-template-columns:1fr;}
}


/* Wellbeing refinements v9 */
.wellbeing-page{
  background:
    radial-gradient(circle at 15% 0%, rgba(91,194,231,.16) 0%, rgba(91,194,231,0) 32%),
    radial-gradient(circle at 92% 8%, rgba(26,57,132,.38) 0%, rgba(26,57,132,0) 38%),
    linear-gradient(90deg,#001326 0%,#000918 45%,#000000 100%) !important;
}
.wellbeing-page .wellbeing-overview,
.wellbeing-page .wellbeing-days,
.wellbeing-page .final-cta{
  background:transparent !important;
}
.wellbeing-card-grid h3,
.service-toggle h3{
  font-size:1.02rem !important;
  line-height:1.18 !important;
  margin:0 0 10px !important;
}
.wellbeing-card-grid p,
.service-toggle p{
  font-size:.96rem !important;
  line-height:1.55 !important;
}
.wellbeing-card-grid .expandable-service{
  grid-column:span 2;
}
@media (max-width: 980px){
  .wellbeing-card-grid .expandable-service{grid-column:span 1;}
}

/* Health assessment expandable layout */
.expanded-grid-three{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
}
.expanded-grid p + p{
  margin-top:10px;
}
.expanded-grid strong{
  color:#fff;
}
@media (max-width: 1180px){
  .expanded-grid-three{
    grid-template-columns:1fr !important;
  }
}


/* Wellbeing service layout updates v12 */
.wellbeing-card-grid .wide-service-card{
  grid-column:span 2;
}
.expanded-note{
  margin-top:18px;
  padding:20px;
  border:1px solid rgba(255,122,26,.34);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}
.expanded-note h4{
  margin:0 0 8px;
  color:#5bc2e7;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.expanded-note p{
  color:rgba(255,255,255,.82);
  line-height:1.6;
  margin:0;
}
.expanded-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:18px;
}
.expanded-actions .pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 20px;
  border-radius:999px;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.02em;
  color:#fff;
  background:rgba(0,8,20,.35);
}
.expanded-actions .pill-blue{
  border:1.5px solid #5bc2e7;
}
.expanded-actions .pill-orange{
  border:1.5px solid #ff7a1a;
}
.disabled-pill{
  opacity:.55;
  pointer-events:none;
}
@media (max-width:980px){
  .wellbeing-card-grid .wide-service-card{
    grid-column:span 1;
  }
}

/* Wellbeing standard service card text emphasis */
.wellbeing-service-card em{
  font-style:normal;
  font-weight:800;
  color:#fff;
}


/* Wellbeing v14 refinements */
.wellbeing-days{
  padding-top:42px !important;
}
.feature-list li{
  display:flex;
  flex-direction:column;
  gap:4px;
  line-height:1.25;
}
.feature-list li span{
  display:block;
  font-size:.82rem;
  color:rgba(255,255,255,.68);
  font-weight:600;
  text-transform:none;
}
.wellbeing-enquiry-form{
  margin-top:30px;
  text-align:left;
}
.wellbeing-enquiry-form .form-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.wellbeing-enquiry-form label,
.wellbeing-enquiry-form legend{
  color:#fff;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size:.86rem;
}
.wellbeing-enquiry-form input[type="text"],
.wellbeing-enquiry-form input[type="email"],
.wellbeing-enquiry-form input[type="tel"],
.wellbeing-enquiry-form textarea{
  width:100%;
  box-sizing:border-box;
  margin-top:8px;
  border:1px solid rgba(91,194,231,.38);
  border-radius:14px;
  background:rgba(0,8,20,.55);
  color:#fff;
  padding:13px 14px;
  font:inherit;
  outline:none;
}
.wellbeing-enquiry-form input:focus,
.wellbeing-enquiry-form textarea:focus{
  border-color:#5bc2e7;
  box-shadow:0 0 0 3px rgba(91,194,231,.14);
}
.wellbeing-enquiry-form fieldset{
  border:1px solid rgba(255,122,26,.34);
  border-radius:18px;
  padding:20px;
  margin:20px 0;
}
.wellbeing-enquiry-form legend{
  color:#5bc2e7;
  padding:0 10px;
}
.checkbox-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px 16px;
}
.checkbox-grid label{
  display:flex;
  align-items:flex-start;
  gap:9px;
  text-transform:none;
  letter-spacing:0;
  font-weight:600;
  color:rgba(255,255,255,.85);
  font-size:.92rem;
}
.checkbox-grid input{
  margin-top:3px;
  accent-color:#ff7a1a;
}
.comments-label{
  display:block;
  margin-top:16px;
}
.send-enquiry-pill{
  margin-top:22px;
  border:1.5px solid #ff7a1a;
  background:rgba(255,122,26,.06);
  color:#fff;
  cursor:pointer;
}
@media (max-width:900px){
  .wellbeing-enquiry-form .form-grid,
  .checkbox-grid{
    grid-template-columns:1fr;
  }
}


/* Homepage final review tweaks */
.homepage-ready-image img,
.hero-circle img,
.ready-action-circle img,
.homepage-hero-circle img{
  object-position: 45% 52% !important;
  object-fit: cover !important;
}
.spotlight-section h2,
.instagram-section h2{
  color:#fff !important;
}
.spotlight-section h2 .bracket,
.instagram-section h2 .bracket{
  color:#ff7a1a !important;
}
.spotlight-card{
  background:linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(91,194,231,.28);
  border-radius:20px;
  padding:18px;
  min-height:160px;
}
.spotlight-placeholder{
  border-radius:14px;
  min-height:84px;
  display:grid;
  place-items:center;
  background:rgba(91,194,231,.10);
  color:#5bc2e7;
  font-weight:800;
  margin-bottom:14px;
}
.spotlight-card h3{
  margin:0 0 8px;
  color:#fff;
  text-transform:uppercase;
  font-size:1rem;
}
.spotlight-card p{
  color:rgba(255,255,255,.78);
  margin:0;
  line-height:1.5;
}


/* Homepage v18 final photo and spotlight refinements */
.home-hero .hero-photo-circle img[src*="homepage-ready-for-action-team"],
.hero-photo-circle img[src*="homepage-ready-for-action-team"]{
  object-position:35% 52% !important;
  object-fit:cover !important;
}
.instagram-spotlight #spotlight-title,
.instagram-spotlight #spotlight-title .spotlight-heading-white{
  color:#fff !important;
}
.instagram-spotlight #spotlight-title .spotlight-bracket{
  color:#ff7a1a !important;
}
.insta-card.insta-image-card{
  position:relative;
  padding:0 !important;
  overflow:hidden;
  min-height:220px;
  background:#061326;
  border-color:#ff7a1a;
}
.insta-card.insta-image-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.insta-card.insta-image-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,8,20,.78) 100%);
}
.insta-card.insta-image-card span{
  position:relative;
  z-index:1;
  padding:18px;
  text-shadow:0 2px 8px rgba(0,0,0,.65);
}


/* Leavesden Life hidden page */
.leavesden-life-page{
  margin:0;
  background:#f7fbff;
  color:#08224a;
  font-family:'Montserrat',sans-serif;
}
.ll-header{
  position:sticky;
  top:0;
  z-index:20;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(18px,5vw,54px);
  background:linear-gradient(90deg,#02132c,#062b5d);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.ll-brand img{height:34px;width:auto;display:block;}
.ll-header-actions{display:flex;align-items:center;gap:18px;}
.ll-book-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 25px;
  border-radius:999px;
  background:linear-gradient(90deg,#5bc2e7,#8ee4ff);
  color:#031735;
  font-weight:800;
  text-decoration:none;
}
.ll-menu-toggle{
  width:34px;
  height:30px;
  border:0;
  background:transparent;
  display:flex;
  flex-direction:column;
  gap:6px;
  justify-content:center;
  cursor:pointer;
}
.ll-menu-toggle span{display:block;height:3px;background:#fff;border-radius:999px;}
.ll-hero{
  position:relative;
  min-height:560px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.ll-hero-media{position:absolute;inset:0;}
.ll-hero-media img{width:100%;height:100%;object-fit:cover;object-position:64% center;}
.ll-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,13,32,.94) 0%,rgba(0,20,48,.78) 38%,rgba(0,0,0,.20) 76%),
    radial-gradient(circle at 24% 40%,rgba(91,194,231,.22),transparent 38%);
}
.ll-hero-content{
  position:relative;
  z-index:1;
  width:min(92vw,1180px);
  margin:0 auto;
  color:#fff;
}
.ll-logo-lockup{
  display:flex;
  align-items:center;
  gap:28px;
  margin-bottom:28px;
}
.ll-leavesden-logo{
  width:150px;
  height:150px;
  object-fit:contain;
  border-radius:34px;
  box-shadow:0 22px 48px rgba(0,0,0,.28);
}
.ll-fm-logo{width:270px;max-width:48vw;height:auto;}
.ll-lockup-divider{width:1px;height:96px;background:rgba(255,255,255,.75);}
.ll-kicker{
  color:#ff7a1a;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.05em;
  margin:0 0 12px;
}
.ll-hero h1{
  max-width:580px;
  margin:0 0 18px;
  font-size:clamp(2.2rem,5vw,4.2rem);
  line-height:.98;
  letter-spacing:-.05em;
  font-weight:900;
}
.ll-hero p:not(.ll-kicker){
  max-width:500px;
  font-size:1.05rem;
  line-height:1.55;
  color:rgba(255,255,255,.92);
}
.ll-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px;}
.ll-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:1.5px solid transparent;
  cursor:pointer;
}
.ll-button-primary{background:linear-gradient(90deg,#5bc2e7,#8ee4ff);color:#031735;}
.ll-button-secondary{border-color:rgba(255,255,255,.75);color:#fff;background:rgba(0,0,0,.16);}
.ll-services{
  width:min(92vw,1120px);
  margin:0 auto;
  padding:48px 0 32px;
}
.ll-section-head{text-align:center;margin-bottom:28px;}
.ll-section-head h2{
  margin:0;
  font-size:clamp(2rem,4vw,3rem);
  letter-spacing:-.04em;
  color:#0a2b60;
}
.ll-section-head span,
.ll-short-line{
  display:block;
  width:54px;
  height:3px;
  border-radius:999px;
  background:#5bc2e7;
  margin:14px auto;
}
.ll-section-head p{
  max-width:680px;
  margin:0 auto;
  line-height:1.55;
  color:#173567;
  font-weight:500;
}
.ll-service-list{display:grid;gap:12px;}
.ll-service-card{
  display:grid;
  grid-template-columns:70px 1fr auto 22px;
  align-items:center;
  gap:16px;
  padding:18px 22px;
  background:#fff;
  border:1px solid #d9ecfb;
  border-radius:18px;
  box-shadow:0 14px 35px rgba(0,25,70,.06);
}
.ll-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#edf7ff;
  font-size:1.65rem;
}
.ll-service-main h3{
  margin:0 0 5px;
  color:#092657;
  font-size:1.05rem;
}
.ll-service-main p{
  margin:0;
  color:#173567;
  font-size:.94rem;
  line-height:1.35;
}
.ll-service-card strong{
  color:#1681d3;
  white-space:nowrap;
  text-align:right;
}
.ll-service-card strong small{
  display:block;
  font-size:.67rem;
  color:#315179;
  margin-top:3px;
}
.ll-chevron{font-size:1.9rem;color:#1681d3;line-height:1;}
.ll-cqc-strip{
  margin-top:22px;
  border:1px solid #cfe9fb;
  border-radius:18px;
  background:linear-gradient(90deg,#edf8ff,#fff);
  display:grid;
  grid-template-columns:70px 1fr auto;
  gap:16px;
  align-items:center;
  padding:22px;
}
.ll-cqc-icon{font-size:2rem;text-align:center;}
.ll-cqc-strip p{margin:0;line-height:1.45;}
.ll-cqc-text{color:#6e4a84;}
.ll-contact-panel{
  width:min(92vw,1120px);
  margin:18px auto 0;
  border-radius:18px 18px 0 0;
  background:linear-gradient(135deg,#02132c,#06356e);
  color:#fff;
  display:grid;
  grid-template-columns:1fr 1fr;
  overflow:hidden;
}
.ll-contact-form-wrap,
.ll-links-wrap{padding:38px;}
.ll-contact-panel h2{margin:0;font-size:1.55rem;}
.ll-contact-panel .ll-short-line{margin:12px 0 20px;}
.ll-contact-panel p{color:rgba(255,255,255,.82);line-height:1.55;}
.ll-contact-form input,
.ll-contact-form textarea,
.ll-contact-form select{
  width:100%;
  box-sizing:border-box;
  margin:0 0 12px;
  padding:14px 15px;
  border-radius:10px;
  border:1px solid rgba(91,194,231,.35);
  background:rgba(0,10,28,.38);
  color:#fff;
  font:inherit;
}
.ll-contact-form input::placeholder,
.ll-contact-form textarea::placeholder{color:rgba(255,255,255,.58);}
.ll-contact-form select option{color:#001b3d;}
.ll-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.ll-links-wrap{border-left:1px solid rgba(255,255,255,.24);}
.ll-link-row{
  position:relative;
  display:grid;
  grid-template-columns:44px 1fr 24px;
  gap:16px;
  align-items:center;
  padding:20px 0;
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.ll-link-row span{font-size:1.6rem;}
.ll-link-row strong{display:block;}
.ll-link-row small{display:block;color:rgba(255,255,255,.72);margin-top:4px;}
.ll-link-row b{font-size:1.8rem;color:#5bc2e7;}
.ll-footer{
  background:#02132c;
  color:rgba(255,255,255,.72);
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px clamp(18px,5vw,54px);
  font-size:.86rem;
}
.ll-footer a{color:rgba(255,255,255,.82);text-decoration:none;margin-left:20px;}
@media (max-width:800px){
  .ll-header{height:62px;padding:0 16px;}
  .ll-brand img{height:28px;}
  .ll-book-pill{min-height:38px;padding:0 18px;}
  .ll-hero{min-height:660px;align-items:flex-end;padding-bottom:44px;}
  .ll-hero-media img{object-position:70% center;}
  .ll-hero-overlay{background:linear-gradient(180deg,rgba(0,13,32,.52),rgba(0,13,32,.94) 62%,rgba(0,13,32,.98));}
  .ll-logo-lockup{gap:14px;margin-bottom:24px;}
  .ll-leavesden-logo{width:104px;height:104px;border-radius:24px;}
  .ll-fm-logo{width:190px;}
  .ll-lockup-divider{height:76px;}
  .ll-hero h1{font-size:2.35rem;}
  .ll-hero-actions .ll-button{width:100%;}
  .ll-service-card{
    grid-template-columns:54px 1fr;
    gap:12px;
    padding:16px;
  }
  .ll-icon{width:48px;height:48px;font-size:1.3rem;}
  .ll-service-card strong{
    grid-column:2;
    text-align:left;
  }
  .ll-chevron{
    grid-column:2;
    justify-self:end;
    margin-top:-34px;
  }
  .ll-cqc-strip{grid-template-columns:1fr;text-align:center;}
  .ll-contact-panel{grid-template-columns:1fr;}
  .ll-links-wrap{border-left:0;border-top:1px solid rgba(255,255,255,.24);}
  .ll-contact-form-wrap,.ll-links-wrap{padding:28px 20px;}
  .ll-form-grid{grid-template-columns:1fr;}
  .ll-footer{flex-direction:column;text-align:center;}
  .ll-footer a{margin:0 10px;}
}

.ll-service-main h3 span{display:block;font-size:.78rem;line-height:1.25;color:#315179;margin-top:3px}.ll-service-card strong:empty{display:none}.ll-service-expandable{display:block!important;padding:0!important}.ll-service-toggle{appearance:none;border:0;background:transparent;width:100%;display:grid;grid-template-columns:70px 1fr auto 36px;align-items:center;gap:16px;padding:18px 22px;text-align:left;cursor:pointer;font:inherit;color:inherit}.ll-expand-plus{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;border:1.5px solid #1681d3;color:#1681d3;font-size:1.45rem;font-weight:800}.ll-service-expandable.is-open .ll-expand-plus{transform:rotate(45deg)}.ll-service-expanded{border-top:1px solid #d9ecfb;padding:18px 22px 22px;background:linear-gradient(180deg,#fff,#f8fcff)}.ll-expand-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.ll-expand-grid div{border:1px solid #d9ecfb;border-radius:14px;padding:16px;background:#fff}.ll-expand-grid h4{margin:0 0 8px;color:#0a2b60;font-size:.96rem;text-transform:uppercase}.ll-expand-grid p{margin:0 0 12px;color:#173567;line-height:1.45;font-size:.9rem}.ll-expand-grid strong{color:#1681d3}@media(max-width:800px){.ll-service-toggle{grid-template-columns:54px 1fr 36px;gap:12px;padding:16px}.ll-service-toggle>strong{grid-column:2;justify-self:start}.ll-expand-plus{grid-column:3;grid-row:1/span 2}.ll-expand-grid{grid-template-columns:1fr}}

/* Leavesden Life v24 refinements */
.ll-section-head p br{display:block;margin:4px 0}.ll-service-expanded .ll-expand-grid{align-items:stretch}.ll-contact-panel a{color:#8ee4ff}.ll-cqc-strip{grid-template-columns:1fr auto!important}.ll-cqc-strip p{font-size:1rem}.ll-cqc-logo{max-width:180px;max-height:70px;object-fit:contain}.ll-expand-grid div:last-child:nth-child(odd){grid-column:auto}@media(max-width:800px){.ll-cqc-strip{grid-template-columns:1fr!important}.ll-cqc-logo{margin:0 auto}.ll-section-head p br{display:none}}


/* Leavesden Life v25 refinements */
.ll-expanded-intro{
  border:1px solid #d9ecfb;
  border-radius:14px;
  padding:16px;
  background:#fff;
  margin-bottom:14px;
}
.ll-expanded-intro p{
  margin:0 0 8px;
  color:#173567;
  line-height:1.45;
  font-size:.94rem;
}
.ll-expanded-intro p:last-child{margin-bottom:0;}
.ll-expand-grid-two{grid-template-columns:repeat(2,minmax(0,1fr));}
@media(max-width:800px){.ll-expand-grid-two{grid-template-columns:1fr;}}

/* Leavesden Life v26 refinements */
.ll-expand-grid-single{grid-template-columns:1fr!important;}
.ll-link-row{
  grid-template-columns:44px 1fr 24px !important;
}
.ll-link-row small{
  grid-column:2 !important;
  display:block !important;
  margin-top:4px !important;
  color:rgba(255,255,255,.72) !important;
  line-height:1.3 !important;
}
.ll-link-row b{
  grid-column:3 !important;
  grid-row:1 / span 2 !important;
}
