@charset "UTF-8";
:root {
  --font-sans: "Poppins", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #1b1b1b;
  --muted: #6e6e6e;
  --green: #72b672;
  --blue: #19397d;
  --blue-deep: #142d69;
  --dark: #232323;
  --dark-soft: #4f4f4f;
  --line: rgba(25, 28, 28, 0.12);
  --shadow: 0 20px 55px rgba(15, 41, 97, 0.08);
  --radius: 18px;
  --shell: min(1400px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
  background: var(--bg);
  color: var(--ink);
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.site-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 106px;
  padding-left: 300px;
  gap: 2.5rem;
  transition: min-height 0.24s ease, padding-left 0.24s ease;
}

.header-brand {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 3;
  transition: top 0.24s ease;
}

.site-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  padding: 12px 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 28px rgba(16, 31, 74, 0.1);
  overflow: hidden;
  transition: width 0.24s ease, height 0.24s ease, padding 0.24s ease, box-shadow 0.24s ease;
}

.site-logo::before {
  display: none;
}

.site-logo::after {
  display: none;
}

.site-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin-top: 0;
}

.site-header.is-scrolled .header-inner {
  min-height: 88px;
  padding-left: 176px;
}

.site-header.is-scrolled .header-brand {
  top: 8px;
}

.site-header.is-scrolled .site-logo {
  width: 138px;
  height: 138px;
  padding: 8px 10px;
  box-shadow: 0 10px 22px rgba(16, 31, 74, 0.08);
}

.header-nav {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1 1 auto;
  justify-content: center;
  gap: 2rem;
}

.nav-links,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 3.25rem;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 106px;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 0.1rem;
}

.nav-links > li.current-menu-item > a,
.nav-links > li.current_page_item > a,
.nav-links > li.current-menu-ancestor > a,
.nav-links > li.current-page-ancestor > a,
.nav-links > li.current-menu-parent > a,
.nav-links > li.current-page-parent > a {
  color: var(--green);
}

/* ------------------------------------------------------------ dropdown --- */
/*
 * Submenus render as a plain <ul class="sub-menu"> from wp_nav_menu, which
 * without this sits in the flow and pushes the header open. Positioned under
 * its parent instead, revealed on hover, focus, or tap.
 */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  display: grid;
  gap: 0.1rem;
  min-width: 274px;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid rgba(25, 57, 125, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(15, 41, 97, 0.16);
  list-style: none;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-links > li.menu-item-has-children:hover > .sub-menu,
.nav-links > li.menu-item-has-children:focus-within > .sub-menu,
.nav-links > li.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-links .sub-menu li {
  display: block;
  min-height: 0;
}

.nav-links .sub-menu a {
  display: block;
  padding: 0.62rem 0.85rem;
  border-radius: 12px;
  color: #222a31;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-links .sub-menu a:hover,
.nav-links .sub-menu a:focus-visible,
.nav-links .sub-menu .current-menu-item > a {
  background: rgba(25, 57, 125, 0.06);
  color: var(--blue);
}

/* Keeps the pointer from crossing dead space between parent and panel. */
.nav-links > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-links > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15em) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-links > li.menu-item-has-children:hover > a::after,
.nav-links > li.menu-item-has-children.is-open > a::after {
  transform: translateY(0.05em) rotate(-135deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-links .sub-menu,
  .nav-links > li.menu-item-has-children > a::after {
    transition: none;
  }
}
.nav-links > li.current-menu-item::before,
.nav-links > li.current_page_item::before,
.nav-links > li.current-menu-ancestor::before,
.nav-links > li.current-page-ancestor::before,
.nav-links > li.current-menu-parent::before,
.nav-links > li.current-page-parent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 2rem;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-green {
  background: var(--green);
  color: #fff;
}

.button-light {
  background: #fff;
  border-color: var(--blue);
  color: var(--blue);
  padding: 1.05rem 1.9rem;
  border-width: 2px;
}

.button-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}

.button-outline.light {
  border-color: #fff;
  color: #fff;
}

.button.small {
  padding: 0.8rem 1.35rem;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle-icon {
  display: block;
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu-toggle-icon-close {
  display: none;
}

.menu-toggle[aria-expanded=true] .menu-toggle-icon-open {
  display: none;
}

.menu-toggle[aria-expanded=true] .menu-toggle-icon-close {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home,
.hero-inner,
.hero-generic {
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.96), rgba(35, 35, 35, 0.88)), radial-gradient(circle at 80% 40%, rgba(114, 182, 114, 0.1), transparent 32%);
  color: #fff;
}

.hero-home {
  padding: 9.25rem 0 5rem;
  min-height: 740px;
}

.hero-home-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 610px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding-top: 5.75rem;
}

.hero-copy h1,
.hero-center h1 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 6.2rem);
  line-height: 0.92;
  font-weight: 700;
}

.hero-line {
  display: block;
}

.hero-copy h1 span,
.hero-center h1 span,
.footer-cta-copy h2 span {
  color: var(--green);
}

.hero-label {
  margin: 1.85rem 0 0.85rem;
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  line-height: 1.08;
  font-weight: 700;
}

.hero-description,
.hero-center p {
  max-width: 430px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 2rem;
}

.hero-home .button-green {
  min-height: 72px;
  padding: 0 2.8rem;
  border: 3px solid #fff;
  border-radius: 999px;
  font-size: 1.05rem;
  letter-spacing: 1.4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero-mark-wrap {
  position: absolute;
  right: 0;
  bottom: 18px;
  pointer-events: none;
}

.hero-mark-wrap img {
  width: min(31vw, 420px);
  opacity: 0.18;
  filter: saturate(0.9);
}

.hero-mouse {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  margin: 0;
}

.hero-mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-inner,
.hero-generic {
  padding: 7rem 0 5rem;
}

.hero-center {
  text-align: center;
}

.section {
  padding: 4.5rem 0;
}

.section-intro {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 6rem;
  background: #eef1f4;
  overflow: visible;
}

.section-kicker {
  margin: 0 0 1.5rem;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
}

.center {
  text-align: center;
}

.intro-block {
  width: var(--shell);
  margin: 0 auto;
  text-align: center;
}

.section-intro .section-kicker,
.section-intro .section-heading h2,
.section-intro .prose,
.section-intro .prose p {
  color: var(--ink);
}

.section-intro .section-kicker {
  color: #8fd18f;
}

.intro-statement {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.62;
  font-weight: 500;
}

.intro-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3.5rem;
  padding-bottom: 4rem;
}

.intro-logo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #ffffff;
  filter: none;
}

.intro-logo img {
  position: relative;
  z-index: 1;
  width: 150px;
  margin-top: 0.5rem;
}

.intro-logo-divider {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  height: 100px;
}

.intro-logo-divider .intro-logo {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  margin-top: 0;
  padding-bottom: 0;
}

.intro-logo-divider .intro-logo::before {
  background: #eef1f4;
  width: 190px;
  height: 190px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.intro-logo-divider .intro-logo img {
  width: 140px;
  margin-top: 0;
}

.section-heading {
  margin-bottom: 2rem;
  width: 100%;
}

.section-heading h2 {
  margin: 0 auto;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.08;
}

.intro-heading {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-align: center;
}

.intro-heading.has-badge {
  text-wrap: balance;
}

.intro-heading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(90px, 8vw, 130px);
  margin: 0 0.3em;
  vertical-align: middle;
}

.intro-heading-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-services-home .section-heading.split {
  text-align: left;
}

.section-services-home .section-heading.split h2 {
  margin: 0;
  text-align: left;
}

.section-heading.light,
.section-heading.light h2 {
  color: #fff;
}

.services-strip,
.services-grid,
.experts-grid,
.education-grid,
.badges-row,
.partners-row,
.process-grid,
.qms-grid,
.test-pills {
  display: grid;
  gap: 1.5rem;
}

.services-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 96px) / 5);
  gap: 24px;
}

.services-carousel {
  position: relative;
}

.services-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-viewport::-webkit-scrollbar {
  display: none;
}

.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(25, 57, 125, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #19397d;
  box-shadow: 0 10px 24px rgba(20, 45, 105, 0.12);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.24s ease, opacity 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.services-arrow:hover,
.services-arrow:focus-visible {
  background: #fff;
  border-color: rgba(25, 57, 125, 0.28);
  box-shadow: 0 14px 30px rgba(20, 45, 105, 0.16);
  outline: none;
}

.services-arrow[disabled] {
  opacity: 0.32;
  cursor: default;
}

.services-arrow span {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.services-arrow-prev {
  left: -72px;
}

.services-arrow-prev span {
  transform: rotate(-135deg);
}

.services-arrow-next {
  right: -72px;
}

.services-arrow-next span {
  transform: rotate(45deg);
}

.services-carousel-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 24px auto 0;
}

.services-carousel-indicator button {
  width: 10px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #dbead8;
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

.services-carousel-indicator button.is-active {
  width: 26px;
  background: #79be78;
}

@media (max-width: 1200px) {
  .services-strip {
    grid-auto-columns: calc((100% - 48px) / 3);
  }
}
@media (max-width: 860px) {
  .services-strip {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
  .services-arrow {
    display: none;
  }
}
@media (max-width: 640px) {
  .services-strip {
    grid-auto-columns: 100%;
  }
}
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 2.15rem 2.15rem 2.05rem;
  border-radius: 22px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(17, 33, 72, 0.1);
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: box-shadow 0.28s ease;
  scroll-snap-align: start;
}

.service-card.large {
  min-height: 380px;
  padding: 2.15rem 2.15rem 2.05rem;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 2.15rem;
  right: 2.15rem;
  bottom: 5.65rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  z-index: 2;
  transition: opacity 0.28s ease;
}

.service-card h3 {
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
  margin: 0;
  max-width: 240px;
  font-size: 26px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  font-weight: 700;
}

.service-card p {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  z-index: 2;
  margin: 1.1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(18px);
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.service-card a {
  position: relative;
  flex: 0 0 auto;
  margin-top: 1rem;
  z-index: 2;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.service-card a::after {
  content: "→";
  font-size: 1.15em;
  line-height: 1;
}

.section-services-home {
  background: #fff !important;
}

/* Cards with image: photo bg + dark overlay, hide paragraph */
.service-card.has-image {
  position: relative;
}

.service-card.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 20, 16, 0.08) 0%, rgba(8, 20, 16, 0.24) 52%, rgba(8, 20, 16, 0.7) 100%);
  transition: background 0.28s ease, opacity 0.28s ease;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 24px 56px rgba(17, 33, 72, 0.16);
}

.service-card.has-image:hover::before,
.service-card.has-image:focus-within::before {
  background: linear-gradient(180deg, rgba(29, 48, 102, 0.78) 0%, rgba(29, 48, 102, 0.89) 54%, rgba(25, 43, 93, 0.95) 100%);
}

.service-card:hover p,
.service-card:focus-within p {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 0;
}

.tone-slate {
  background: linear-gradient(180deg, #5b5b5d, #49494d);
}

.tone-indigo {
  background: linear-gradient(180deg, #253b73, #1a2c5d);
}

.tone-forest {
  background: linear-gradient(180deg, #46604e, #2d3d34);
}

.tone-charcoal {
  background: linear-gradient(180deg, #565656, #454545);
}

.tone-gray {
  background: linear-gradient(180deg, #686868, #565656);
}

.tone-navy {
  background: linear-gradient(180deg, #2d3c70, #24345f);
}

.services-indicator {
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #d8d8d8 70%);
  margin: 1.4rem auto 0;
}

.services-indicator.light {
  background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.4) 70%);
}

.process-shell {
  position: relative;
}

.process-center-mark {
  position: absolute;
  inset: 10px 0 auto;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.process-center-mark img {
  width: 320px;
  opacity: 0.14;
}

.process-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.process-card {
  text-align: center;
  padding: 0 0.5rem;
}

.process-icon,
.qms-item span {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 57, 125, 0.12);
  position: relative;
}

.process-icon::before,
.qms-item span::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  border: 3px solid var(--blue);
}

.process-card h3,
.education-card h3,
.expert-card h3,
.feature-mini-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.process-card p,
.process-card small,
.qms-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.experts-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

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

@media (max-width: 1200px) {
  .experts-grid.experts-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .experts-grid.experts-grid-4 {
    grid-template-columns: 1fr;
  }
}
.experts-carousel {
  position: relative;
}

.experts-viewport {
  padding: 4px 0 10px;
}

.experts-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
}

.section-experts .section-heading.split {
  align-items: center;
  text-align: left;
}

.section-experts .section-heading.split h2 {
  margin: 0;
}

.expert-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(23, 49, 97, 0.08);
  outline: none;
  scroll-snap-align: start;
}

.expert-image {
  position: relative;
  /* Matches the 2:3 portrait the headshots are shot at, so the frame crops
     nothing. A square frame cut a third off every photo. */
  aspect-ratio: 2/3;
  min-height: 260px;
  height: auto;
  border-radius: 16px;
  background: linear-gradient(180deg, #b4b4b4, #8d8d8d);
  overflow: hidden;
  isolation: isolate;
}

.expert-image.has-image {
  background: #eef2f6;
}

.expert-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Any residual crop on an off-ratio source comes off the bottom, never the head. */
  -o-object-position: center top;
     object-position: center top;
}

.expert-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 20, 16, 0.04) 0%, rgba(8, 20, 16, 0.28) 58%, rgba(8, 20, 16, 0.76) 100%);
  transition: background 0.28s ease;
}

.expert-overlay {
  position: absolute;
  inset: 24px;
  z-index: 2;
  color: #fff;
}

.expert-summary {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.expert-summary h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #fff;
}

.expert-summary p {
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.9);
}

.expert-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  max-height: calc(100% - 2px);
  overflow-y: auto;
  scrollbar-width: thin;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.expert-card:hover .expert-image::before,
.expert-card:focus .expert-image::before,
.expert-card:focus-within .expert-image::before {
  background: linear-gradient(180deg, rgba(29, 48, 102, 0.7) 0%, rgba(29, 48, 102, 0.86) 54%, rgba(25, 43, 93, 0.94) 100%);
}

.expert-card.has-content:hover .expert-summary,
.expert-card.has-content:focus .expert-summary,
.expert-card.has-content:focus-within .expert-summary {
  opacity: 0;
  transform: translateY(-12px);
}

.expert-card.has-content:hover .expert-content,
.expert-card.has-content:focus .expert-content,
.expert-card.has-content:focus-within .expert-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1200px) {
  .experts-strip {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}
@media (max-width: 640px) {
  .experts-strip {
    grid-auto-columns: 100%;
  }
}
.section-partners {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.partners-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-card,
.badge-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.section-education,
.section-qms,
.section-leadership,
.section-regulatory {
  background: linear-gradient(180deg, #112660, #0e3550);
  color: #fff;
}

.section-education .site-shell,
.section-qms .site-shell {
  position: relative;
}

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

.education-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1rem 1.25rem;
  color: var(--ink);
  min-height: 270px;
}

.education-date {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.education-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.education-card a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
}

.section-badges {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-badges-carousel .partner-card {
  min-height: 96px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 49, 97, 0.08);
}

.section-badges-carousel .partner-card img {
  display: block;
  width: 100%;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-badges-carousel .partner-card span {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}

.badges-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.section-badges .badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.section-badges .badge-card {
  flex: 0 0 calc((100% - 6rem) / 5);
  max-width: calc((100% - 6rem) / 5);
}

@media (max-width: 1200px) {
  .section-badges .badge-card {
    flex-basis: calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 640px) {
  .section-badges .badge-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.about-grid,
.compliance-grid,
.leadership-grid,
.regulatory-grid,
.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-mini-card {
  background: #1f1f1f;
  color: #fff;
  padding: 1rem;
  border-radius: 10px;
}

.feature-image,
.media-placeholder {
  background: linear-gradient(180deg, #b3b3b3, #8e8e8e);
  border-radius: 2px;
}

.feature-image {
  height: 320px;
  margin-bottom: 1rem;
}

.media-placeholder.large {
  min-height: 420px;
}

.media-placeholder.wide {
  min-height: 284px;
  margin-top: 2rem;
}

.media-placeholder.gradient {
  min-height: 420px;
  background: linear-gradient(135deg, #315287, #12374f);
}

.compliance-card,
.leadership-card,
.regulatory-card {
  padding: 2.25rem 2rem;
  background: #fff;
  border-radius: 0;
  color: var(--ink);
}

.quality-split .compliance-card {
  background: #fff;
}

.compliance-card h2,
.leadership-card h2,
.regulatory-card h2,
.section-about-who h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.compliance-card h3,
.leadership-card h3,
.regulatory-card h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.compliance-card p,
.leadership-card p,
.regulatory-card p,
.about-copy p,
.copy-column p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

.compliance-card ul,
.leadership-card ul,
.regulatory-card ul,
.footer-list {
  display: grid;
  gap: 1rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.compliance-card li,
.leadership-card li,
.regulatory-card li {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.section-qms {
  position: relative;
}

.section-qms::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(114, 182, 114, 0.12), transparent 35%);
  pointer-events: none;
}

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

.qms-item {
  text-align: center;
}

.qms-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.copy-grid {
  margin-top: 2rem;
}

.copy-column p {
  margin-top: 0;
}

.test-pills {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 2rem;
}

.test-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.8rem;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 600;
}

.footer-cta-wrap {
  padding-top: 0;
  margin-top: 12px;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 28px;
  min-height: 206px;
  padding: 24px 40px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #183776 0%, #1f3f88 100%);
  color: #fff;
}

.footer-cta-logo img {
  width: 150px;
}

.footer-cta-copy {
  position: relative;
  z-index: 2;
}

.footer-cta-copy h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.footer-cta-copy p {
  margin: 10px 0 16px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.footer-cta .button-green {
  min-height: 48px;
  padding: 0 28px;
  border: 3px solid #fff;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer-cta-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  overflow: hidden;
}

.footer-cta-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 55, 118, 0) 0%, rgba(24, 55, 118, 0.08) 18%, rgba(24, 55, 118, 0.18) 100%);
  z-index: 1;
}

.footer-cta-art img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.05) brightness(0.95);
}

.site-footer {
  background: #fff;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
  padding: 28px 0 34px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
  color: #171b20;
}

.footer-brand {
  padding-top: 4px;
}

.footer-brand img {
  display: block;
  width: 170px;
}

.footer-list {
  gap: 10px;
  margin-top: 0;
}

.footer-list li,
.footer-list a,
.footer-contact li,
.footer-contact a,
.footer-contact span {
  font-size: 14px;
  line-height: 1.7;
  color: #3f454d;
  text-decoration: none;
}

.footer-contact {
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: #3f454d;
}

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

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-socials img {
  display: block;
  width: 32px;
  height: 32px;
}

.footer-legal span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0.4rem;
  border-radius: 50%;
  background: var(--muted);
}

.footer-legal,
.footer-legal a,
.footer-bottom p {
  font-size: 14px;
  line-height: 1.4;
  color: #3f454d;
  text-decoration: none;
}

.prose {
  max-width: 900px;
}

.prose a,
.blog-post-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.2s ease;
}

.prose a:hover,
.blog-post-content a:hover {
  opacity: 0.78;
}

.section-intro .prose.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro .prose.center ul,
.section-intro .prose.center ol {
  display: inline-block;
  text-align: left;
}

@media (max-width: 1200px) {
  .services-grid,
  .badges-row,
  .partners-row,
  .process-grid,
  .qms-grid,
  .test-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-home-inner,
  .footer-cta,
  .about-grid,
  .compliance-grid,
  .leadership-grid,
  .regulatory-grid,
  .copy-grid {
    grid-template-columns: 1fr;
  }
  .hero-mark-wrap {
    justify-content: flex-start;
  }
  .footer-cta {
    grid-template-columns: 150px minmax(0, 1fr);
    padding-right: 220px;
  }
  .footer-cta-logo img {
    width: 136px;
  }
  .footer-cta-art {
    width: 210px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 40px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-brand img {
    width: 150px;
  }
  .header-inner {
    padding-left: 250px;
    gap: 1.5rem;
  }
  .site-logo {
    width: 190px;
    height: 190px;
    padding: 10px 12px 16px;
  }
  .header-nav {
    justify-content: center;
  }
  .nav-links {
    gap: 1.65rem;
  }
}
@media (max-width: 1180px) {
  .site-header {
    background: #fff;
  }
  .menu-toggle {
    display: flex;
  }
  .header-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 0;
    padding: 0 2rem;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -14px);
    pointer-events: none;
    transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.24s ease, transform 0.32s ease;
  }
  .header-nav.is-open {
    max-height: calc(100vh - 96px);
    padding-top: 2rem;
    padding-bottom: 2.25rem;
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
  .nav-links,
  .header-actions,
  .about-feature-cards,
  .education-grid,
  .experts-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .nav-links {
    display: grid;
    justify-items: center;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    gap: 1.35rem;
    white-space: normal;
    width: 100%;
    text-align: center;
  }
  .nav-links > li {
    min-height: auto;
  }
  .nav-links > li::before {
    display: none;
  }
  /*
   * In the mobile drawer the submenu stacks under its parent rather than
   * floating: there is no hover, and an absolutely positioned panel would
   * overlay the items below it.
   */
  .nav-links > li {
    display: grid;
    justify-items: center;
    width: 100%;
  }
  .nav-links .sub-menu {
    position: static;
    display: none;
    width: min(360px, 100%);
    margin: 0.9rem auto 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .nav-links > li.menu-item-has-children.is-open > .sub-menu {
    display: grid;
    transform: none;
  }
  .nav-links > li.menu-item-has-children::after {
    display: none;
  }
  .nav-links .sub-menu a {
    text-align: center;
  }
  .header-actions {
    position: static;
    transform: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.55rem;
  }
  .header-actions .button {
    min-width: min(360px, 100%);
  }
  .hero-home,
  .hero-inner,
  .hero-generic {
    padding-top: 6rem;
  }
  .header-inner {
    min-height: 88px;
    padding-left: 0;
    justify-content: space-between;
  }
  .header-brand {
    position: static;
  }
  .site-logo {
    width: 124px;
    height: 124px;
    padding: 8px 8px;
    box-shadow: 0 10px 24px rgba(16, 31, 74, 0.12);
  }
  .site-header.is-scrolled .header-inner {
    min-height: 88px;
    padding-left: 0;
  }
  .site-header.is-scrolled .header-brand {
    position: static;
    top: auto;
  }
  .site-header.is-scrolled .site-logo {
    width: 124px;
    height: 124px;
    padding: 8px 8px;
  }
  .site-logo::before {
    display: none;
  }
  .footer-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 28px 24px;
    padding-right: 24px;
  }
  .footer-cta-logo img {
    width: 128px;
  }
  .footer-cta-copy h2 {
    max-width: 420px;
  }
  .footer-cta-art {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 640px) {
  :root {
    --shell: min(1400px, calc(100vw - 24px));
  }
  .services-grid,
  .badges-row,
  .partners-row,
  .process-grid,
  .qms-grid,
  .test-pills {
    grid-template-columns: 1fr;
  }
  .footer-cta {
    padding: 1.5rem;
  }
  .footer-cta-copy h2 {
    font-size: 42px;
  }
  .service-card h3 {
    font-size: 1.65rem;
  }
}/*# sourceMappingURL=style.css.map */