/* =========================================================
   Fonts (self-hosted)
   ========================================================= */
/* Montserrat */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Libre Baskerville */
@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/libre-baskerville-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/libre-baskerville-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   Global Health Solutions — Global tokens
   ========================================================= */
:root {
  --color-text: #000000;
  --color-accent: #0082f3;   /* active nav link */
  --color-brand: #3898ec;    /* primary button  */
  --color-eyebrow: #63c8c4;  /* section eyebrow  */
  --color-white: #ffffff;
  --color-footer-bg: #fafafa;
  --color-border: #e0e0e0;

  --font-heading: "Libre Baskerville", Georgia, serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container-max: 1400px;
  --container-pad: 60px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
}

/* ---- Reusable button ---- */
.book-btn{
  width: fit-content;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--color-brand);
  color: var(--color-white);
}

.btn--primary:hover { background: #2f86d4; }

.btn--light {
  background: var(--color-white);
  color: #5ab1e1;
}

.btn--light:hover { background: #eef6fc; }

/* =========================================================
   Scroll reveal animations
   (only active when JS is present and motion is allowed)
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .js [data-animate] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
  }
  .js [data-animate="left"] { transform: translate3d(-48px, 0, 0); }
  .js [data-animate="right"] { transform: translate3d(48px, 0, 0); }
  .js [data-animate="fade"] { transform: none; }
  .js [data-animate].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  background: var(--color-white);
  width: 100%;
	
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--container-max);
  height: 100px;
  margin: 0 auto;
  /* padding: 20px var(--container-pad); */
}

.site-header__logo img {
  width: 188px;
  height: auto;
  object-fit: contain;
}

/* ---- Navigation ---- */
.site-nav {
  flex: 1;
  align-self: stretch;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav__link:hover { color: var(--color-accent); }

.site-nav__link.is-active { color: var(--color-accent); }

.site-nav__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-header__cta { flex-shrink: 0; }

/* Mobile-only Contact Us (shown inside the open menu on small screens) */
.site-nav__cta { display: none; }

/* ---- Services mega menu ---- */
.site-nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.site-nav__toggle .site-nav__chevron { transition: transform 0.25s ease; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 100;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.site-nav__item--dropdown:hover .mega-menu,
.site-nav__item--dropdown:focus-within .mega-menu,
.site-nav__item--dropdown.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-nav__item--dropdown:hover .site-nav__chevron,
.site-nav__item--dropdown.is-open .site-nav__chevron {
  transform: rotate(180deg);
}

.mega-menu__panel {
  display: flex;
  gap: 56px;
  width: 820px;
  padding: 40px 56px;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 41, 0.14);
}

.mega-menu__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.mega-menu__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.mega-menu__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-menu__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #0f1729;
}

.mega-menu__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  color: #6b7688;
}

.mega-menu__item:hover .mega-menu__title { color: var(--color-accent); }

/* ---- Mobile burger (hidden on desktop) ---- */
.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.site-header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: var(--color-white);
  width: 100%;
}

.hero__inner {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: var(--container-max);
  height: 600px;
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  width: 472px;
  flex-shrink: 0;
  padding: 10px 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--color-text);
}

.hero__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: var(--color-text);
}

.hero__cta { align-self: flex-start; }

.hero__media {
  flex: 1;
  min-width: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================================
   Feature row (reusable: image + text, alternating)
   ========================================================= */
.feature {
  background: var(--color-white);
  width: 100%;
}

.feature__inner {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: var(--container-max);
  height: 600px;
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.feature__media {
  flex-shrink: 0;
  height: 100%;
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
}

.feature__content--pad-left { padding-left: 100px; }

.feature__eyebrow {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--color-eyebrow);
}

.feature__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: var(--color-text);
}

.feature__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: var(--color-text);
}

.feature__cta { align-self: flex-start; }

.feature__content--pad-right { padding-right: 27px; }
.feature__content--pad-left-59 { padding-left: 59px; }

/* Per-section media widths */
.feature__media--flu { width: 467px; }

/* Solutions row: fixed-width text on the left, flexible image on the right */
.feature--solutions .feature__content { flex: 0 0 715px; }
.feature--solutions .feature__media { flex: 1; width: auto; }

/* Insurance Paramedical — reuses .feature with different column widths */
.feature--ip-excellence .feature__content { flex: 0 0 614px; }
.feature--ip-excellence .feature__media { flex: 1; width: auto; }
.feature__media--ip-paramedical { width: 589px; }

/* =========================================================
   Professional experts (panel + overlapping portrait cards)
   ========================================================= */
.experts {
  background: var(--color-white);
  width: 100%;
}

.experts__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.experts__panel {
  flex: 1;
  min-width: 0;
  height: 658px;
}

.experts__panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experts__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  width: 580px;
  flex-shrink: 0;
  padding: 10px 0 100px 30px;
}

.experts__portraits {
  position: absolute;
  top: 108px;
  left: 388px;
  width: 968px;
  height: 220px;
  object-fit: cover;
}

/* =========================================================
   Trusted by (client logo wall)
   ========================================================= */
.trusted {
  background: var(--color-white);
  width: 100%;
}

.trusted__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: var(--container-max);
  height: 653px;
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.trusted__intro { max-width: 806px; }

.trusted__grid {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.trusted__row {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 20px;
}

.trusted__cell {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted__cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =========================================================
   CTA banner (inset blue band)
   ========================================================= */
.cta-band {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 619px;
  padding: 50px var(--container-pad);
  background: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  top: 7.25%;
  left: 3.05%;
  width: 93.93%;
  height: 74.01%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  z-index: 0;
}

.cta-band__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-white);
}

.cta-band__btn {
  position: relative;
  z-index: 1;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--color-footer-bg);
  width: 100%;
  color: var(--color-text);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px 30px;
}

.footer__top {
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-height: 413px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

/* Shared footer headings (Libre Baskerville, uppercase) */
.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-text);
}

.footer__heading--sm { font-size: 18px; }

/* Col 1 — brand */
.footer__brand {
  flex: 1;
  min-width: 0;
  padding-right: 85px;
}

.footer__logo {
  flex: 1;
  display: flex;
  align-items: center;
}

.footer__logo img { width: 196px; height: auto; }

.footer__social-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer__social img { width: 30px; height: 30px; }

/* Col 2 — services */
.footer__services {
  width: 323px;
  flex-shrink: 0;
  gap: 10px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 10px 0;
}

.footer__links a {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--color-brand); }

/* Col 3 — newsletter */
.footer__newsletter {
  width: 333px;
  flex-shrink: 0;
  gap: 20px;
  padding: 0 10px;
}

.footer__subscribe-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}

.footer__newsletter-desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.footer__form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.03);
}

.footer__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-text);
  background: transparent;
}

.footer__input::placeholder { color: var(--color-text); opacity: 1; }

/* Col 4 — map + address */
.footer__contact {
  flex: 1;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.footer__map {
  width: 100%;
  height: 302px;
}

.footer__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__address {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.footer__copy {
  display: flex;
  align-items: center;
  width: 370px;
  flex-shrink: 0;
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
}

.footer__legal {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 10px;
}

.footer__legal a {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer__legal a:hover { color: var(--color-brand); }

.footer__contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  width: 370px;
  flex-shrink: 0;
  padding: 10px 0;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  white-space: nowrap;
}

.footer__contact-item img { width: 24px; height: 24px; }

/* =========================================================
   About page
   ========================================================= */
.about__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 35px;
  line-height: 1.3;
  color: var(--color-text);
  text-align: center;
}

.about__heading--left { text-align: left; }

/* Intro: centered title + wide banner image */
.about-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 100px var(--container-pad) 50px;
}

.about-hero__media img {
  width: 100%;
  height: 555px;
  object-fit: contain;
  display: block;
}

/* Standalone centered heading band */
.about-band {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

/* Three value cards */
.about-cards {
  display: flex;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.about-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 4px 24px 4px rgba(0, 0, 0, 0.16);
}

.about-card__icon { width: 50px; height: 50px; }

.about-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text);
}

.about-card__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 32px;
  color: var(--color-text);
}

/* Strong foundation: text left, stacked images right */
.about-experience {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.about-experience__content {
  width: 715px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 10px 27px 10px 0;
}

.about-experience__media {
  flex: 1;
  min-width: 0;
}

.about-experience__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================================================
   Corporate Wellness page
   ========================================================= */
.cw-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.cw-intro__shape {
  width: 260px;
  height: 230px;
  flex-shrink: 0;
}

.cw-intro__shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cw-intro__content {
  width: 807px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 0 0 10px 53px;
}

.cw-intro__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--color-text);
}

/* Shared bold section heading (Libre Baskerville, 35px) */
.cw-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  color: var(--color-text);
}

/* Flu / biometric row */
.cw-flu {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.cw-flu__media {
  width: 537px;
  height: 361px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
}

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

.cw-flu__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 10px 0 10px 120px;
}

.cw-flu__cta { align-self: flex-start; }

/* Long-form content blocks */
.cw-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.cw-content__block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cw-content__text { max-width: 1045px; }

.cw-content__list {
  max-width: 1045px;
  list-style: none;
}

.cw-content__list li {
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  color: var(--color-text);
}

.cw-content__list li::before { content: "–  "; }

.cw-content__text a {
  color: var(--color-brand);
  text-decoration: underline;
}

/* =========================================================
   Flu Vaccination page
   ========================================================= */
.fv-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: var(--color-text);
}

/* Hero */
.fv-hero {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.fv-hero__content {
  width: 743px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 10px 79px 10px 0;
}

.fv-hero__media {
  flex: 1;
  min-width: 0;
  height: 599px;
}

.fv-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fv-subhead {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-text);
}

.fv-hero__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-lead {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-text);
}

.fv-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: var(--color-text);
}

/* Why choose */
.fv-why {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.fv-why__media {
  flex: 1;
  min-width: 0;
  height: 460px;
}

.fv-why__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fv-why__content {
  width: 743px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding-left: 79px;
}

/* Benefits */
.fv-benefits-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 35px;
  line-height: 50px;
  text-align: center;
  color: var(--color-text);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad) 30px;
}

.fv-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px var(--container-pad) 100px;
}

.fv-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 48px 24px;
  background: var(--color-white);
  border: 1px solid #eff0f6;
  border-radius: 24px;
  box-shadow: 0 2px 7px rgba(20, 20, 43, 0.06);
}

.fv-benefit__icon { width: 74px; height: 74px; }

.fv-benefit__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: var(--color-text);
}

.fv-benefit__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #6e7191;
}

/* CTA + lead form */
.fv-form-section { background: #f7f7f7; }

.fv-form-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 75px var(--container-pad);
}

.fv-form-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fv-form-info__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #6e7191;
}

.fv-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.fv-checklist__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fv-checklist__item img { width: 20px; height: 20px; flex-shrink: 0; }

.fv-checklist__item span {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text);
}

.fv-form-wrap {
  flex: 1;
  min-width: 0;
  padding: 20px 0 0 50px;
}

.fv-form-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 7px rgba(20, 20, 43, 0.06);
}

.fv-form-row { display: flex; gap: 10px; }

.fv-field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fv-field label {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text);
}

.fv-input,
.fv-select,
.fv-textarea {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: #f7f7f7;
  border: 1px solid #eff0f6;
  border-radius: 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
}

.fv-textarea {
  height: 117px;
  padding: 12px 14px;
  resize: vertical;
}

.fv-form-card .btn { width: 100%; }

/* Invest CTA */
.fv-invest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.fv-invest__content {
  width: 800px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 23px 10px 0;
}

.fv-invest__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-text);
}

.fv-invest__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
}

.fv-invest__media {
  flex: 1;
  min-width: 0;
  height: 356px;
}

.fv-invest__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* FAQ */
.fv-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.fv-faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.fv-faq__eyebrow {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: #3898eb;
}

.fv-faq__subtitle {
  font-weight: 300;
  font-size: 16px;
  line-height: 32px;
  color: #6e7191;
}

.fv-faq__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 30px 0;
}

.fv-faq__item {
  width: 812px;
  max-width: 100%;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(20, 20, 43, 0.08);
}

.fv-faq__q {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 48px 64px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.fv-faq__item.is-open .fv-faq__q { padding-bottom: 20px; }

.fv-faq__q-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.fv-faq__item.is-open .fv-faq__q-icon { transform: rotate(45deg); }

.fv-faq__q-text {
  flex: 1;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-text);
}

.fv-faq__panel { padding: 0 64px 48px 114px; }

.fv-faq__panel p {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #6e7191;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.contact-intro__text { max-width: 830px; }

.contact-form-section {
  display: flex;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 75px var(--container-pad);
}

.contact-form__media {
  width: 585px;
  height: 787px;
  flex-shrink: 0;
}

.contact-form__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-form__wrap {
  flex: 1;
  min-width: 0;
  padding: 20px 10px 20px 50px;
}

/* =========================================================
   Legal pages (Terms of Use / Privacy Policy)
   ========================================================= */
.legal {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.legal__subtitle {
  max-width: 1045px;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-text);
}

.legal__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: var(--color-text);
}

/* =========================================================
   Blog listing
   ========================================================= */
.blog-head {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad) 0;
  text-align: center;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 75px var(--container-pad);
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__media { height: 476px; }

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

.blog-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.blog-card__date {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-text);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--color-text);
}

/* =========================================================
   Blog detail (article)
   ========================================================= */
.post {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--container-pad);
}

.post__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post__date {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-text);
}

.post__hero {
  height: 500px;
  margin-top: 10px;
}

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

.post__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Article typography */
.post__h2,
.post__h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  max-width: 1045px;
}

.post__h2 { font-size: 35px; line-height: 1.3; }
.post__h3 { font-size: 30px; line-height: 1.35; }
.post__h4 { font-size: 20px; line-height: 32px; }

.post__h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  max-width: 1045px;
}

.post__list {
  list-style: disc;
  padding-left: 24px;
}

.post__list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: var(--color-text);
}

.post__body a {
  color: var(--color-brand);
  text-decoration: underline;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  :root { --container-pad: 40px; }
  .site-nav__list { gap: 28px; }
}

@media (max-width: 900px) {
  .site-header { position: relative; }

  /* Compact header bar on mobile */
  .site-header__inner {
    height: 72px;
    padding: 14px 20px;
  }

  .site-header__logo img { width: 150px; }

  /* Burger pushed to the far right */
  .site-header__burger {
    display: flex;
    margin-left: auto;
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Slide-down nav panel, anchored to the header bottom */
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    align-self: auto;
    flex-direction: column;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 50;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 8px 0 16px;
  }

  .site-nav__list li { width: 100%; }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 20px;
  }

  /* Mobile-only Contact Us inside the menu */
  .site-nav__cta {
    display: flex;
    margin: 8px 20px 0;
  }

  .site-header__cta { display: none; }

  /* Mega menu collapses inline within the mobile nav */
  .site-nav__item--dropdown {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    width: 100%;
  }

  .mega-menu {
    position: static;
    display: none;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav__item--dropdown:hover .mega-menu,
.site-nav__item--dropdown:focus-within .mega-menu,
.site-nav__item--dropdown.is-open .mega-menu {

  transform: translateX(0%) translateY(0);
}

  .site-nav__item--dropdown.is-open .mega-menu { display: block; }

  .mega-menu__panel {
    flex-direction: column;
    width: 100%;
    gap: 22px;
    padding: 4px 20px 18px;
    border-radius: 0;
    box-shadow: none;
  }

  /* Compact mega-menu rows on mobile */
  .mega-menu__item {
    flex: none;
    gap: 16px;
  }

  .mega-menu__icon {
    width: 48px;
    height: 48px;
  }

  .mega-menu__title { font-size: 17px; }

  .mega-menu__desc {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 30px;
  }

  .hero__content {
    width: 100%;
    order: 2;
  }

  .hero__media { order: 1; }

  .hero__title { font-size: 36px; }

  .feature__inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 30px;
  }

  .feature__media {
    width: 100% !important;
    height: auto;
    order: 1;
  }

  .feature__content {
    order: 2;
    padding-left: 0;
  }

  .feature__content--pad-left { padding-left: 0; }
  .feature__content--pad-right { padding-right: 0; }
  .feature__content--pad-left-59 { padding-left: 0; }

  .feature--solutions .feature__content,
  .feature--ip-excellence .feature__content { flex: 1 1 auto; }
  .feature--solutions .feature__media,
  .feature--ip-excellence .feature__media { flex: none; }

  .feature__title { font-size: 36px; }

  /* Experts: drop the absolute overlay, stack portraits over text */
  .experts__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .experts__panel { display: none; }

  .experts__portraits {
    position: static;
    width: 100%;
    height: auto;
    order: 1;
  }

  .experts__content {
    width: 100%;
    padding: 0;
    order: 2;
  }

  /* Trusted: release fixed height, wrap logos to 3-up */
  .trusted__inner { height: auto; }

  .trusted__grid { margin-top: 20px; }

  .trusted__row {
    flex-wrap: wrap;
  }

  .trusted__cell {
    flex: 1 1 28%;
    min-height: 70px;
  }

  /* CTA band */
  .cta-band {
    height: auto;
    min-height: 360px;
    padding: 60px 40px;
  }

  .cta-band__bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .cta-band__title { font-size: 26px; }

  /* Footer */
  .footer__top {
    flex-wrap: wrap;
    min-height: 0;
    gap: 40px;
  }

  .footer__brand,
  .footer__services,
  .footer__newsletter,
  .footer__contact {
    flex: 1 1 45%;
    width: auto;
    padding: 0;
    align-items: flex-start;
  }

  .footer__logo { flex: none; }

  .footer__map { width: 100%; }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer__copy,
  .footer__contacts {
    width: auto;
    justify-content: center;
  }

  .footer__legal { gap: 30px; }

  /* About page */
  .about__heading { font-size: 26px; }

  .about-hero { padding: 60px 20px 40px; }

  .about-hero__media img { height: auto; }

  .about-band { padding: 40px 20px; }

  .about-cards {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }

  .about-experience {
    flex-direction: column;
    padding: 30px 20px;
  }

  .about-experience__content {
    width: 100%;
    padding: 0;
  }

  /* Corporate Wellness page */
  .cw-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 20px;
  }

  .cw-intro__content {
    width: 100%;
    padding: 0;
  }

  .cw-intro__title { font-size: 32px; }

  .cw-heading { font-size: 26px; line-height: 1.35; }

  .cw-flu {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 20px;
  }

  .cw-flu__media {
    width: 100%;
    height: auto;
    aspect-ratio: 537 / 361;
  }

  .cw-flu__content {
    padding: 0;
  }

  .cw-content {
    padding: 30px 20px;
  }

  .cw-content__text { max-width: 100%; }

  /* Flu Vaccination page */
  .fv-h1 { font-size: 32px; line-height: 1.25; }

  .fv-hero,
  .fv-why,
  .fv-invest {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 20px;
  }

  .fv-hero__content,
  .fv-why__content,
  .fv-invest__content {
    width: 100%;
    padding: 0;
  }

  .fv-hero__media,
  .fv-why__media,
  .fv-invest__media {
    height: auto;
  }

  .fv-hero__media img,
  .fv-why__media img { height: auto; }

  .fv-invest__media { aspect-ratio: 500 / 309; }

  .fv-benefits-title { font-size: 26px; line-height: 1.3; padding: 40px 20px 20px; }

  .fv-benefits {
    grid-template-columns: 1fr;
    padding: 12px 20px 50px;
  }

  .fv-form-section__inner {
    flex-direction: column;
    padding: 40px 20px;
  }

  .fv-form-wrap { padding: 20px 0 0; }

  .fv-form-row { flex-direction: column; }

  .fv-invest__title { font-size: 30px; }

  .fv-faq { padding: 40px 20px; }

  .fv-faq__item { width: 100%; }

  .fv-faq__q { padding: 24px; gap: 16px; }

  .fv-faq__item.is-open .fv-faq__q { padding-bottom: 12px; }

  .fv-faq__q-text { font-size: 17px; line-height: 1.4; }

  .fv-faq__panel { padding: 0 24px 24px 40px; }

  /* Contact page */
  .contact-intro { padding: 40px 20px; }

  .contact-form-section {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 20px;
  }

  .contact-form__media {
    width: 100%;
    height: auto;
  }

  .contact-form__wrap { padding: 24px 0 0; }

  /* Legal pages */
  .legal { padding: 40px 20px; }

  .legal__subtitle { max-width: 100%; font-size: 18px; }

  /* Blog listing */
  .blog-head { padding: 40px 20px 0; }

  .blog-list {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .blog-card__media { height: auto; aspect-ratio: 605 / 476; }

  /* Blog detail */
  .post { padding: 40px 20px; }

  .post__hero { height: auto; aspect-ratio: 16 / 9; }

  .post__h2 { font-size: 26px; }
  .post__h3 { font-size: 22px; }
}

@media (max-width: 560px) {
  .footer__brand,
  .footer__services,
  .footer__newsletter,
  .footer__contact {
    flex: 1 1 100%;
  }
}
