/**
 * @file
 * AbroadLink Home page styles.
 *
 * All component styles for the Home page layout.
 * Built on the existing AbroadLink design tokens (general.less).
 *
 * Loaded by the home library on the front page only.
 */
/* =========================================================================
   Hide default Drupal page title — the hero H1 replaces it
   ========================================================================= */
.node--type-home-page .page-title,
.node--type-home-page .block-page-title-block {
  display: none;
}
/* =========================================================================
   Break all full-width-bg sections out of the Bootstrap container.
   Each section independently forces viewport width via negative margin trick.
   Inner .container constrains content while backgrounds bleed edge-to-edge.
   ========================================================================= */
.node--type-home-page {
  --container-md: 960px;
  overflow-x: clip;
}
.node--type-home-page .hero,
.node--type-home-page .impact,
.node--type-home-page .finalcta,
.node--type-home-page .orgsec,
.node--type-home-page .problems--home,
.node--type-home-page .whychoose,
.node--type-home-page .servicessec,
.node--type-home-page .industries,
.node--type-home-page .proof,
.node--type-home-page .about-company,
.node--type-home-page .faq {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
/* Ensure inner content stays within the design container */
.node--type-home-page .hero__inner,
.node--type-home-page .impact .container,
.node--type-home-page .finalcta .container,
.node--type-home-page .orgsec .container,
.node--type-home-page .problems--home .container,
.node--type-home-page .whychoose .container,
.node--type-home-page .servicessec .container,
.node--type-home-page .industries .container,
.node--type-home-page .proof .container,
.node--type-home-page .about-company .container,
.node--type-home-page .faq .container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 28px;
}
/* =========================================================================
   Transparent header on home page — becomes solid on scroll
   ========================================================================= */
.node--type-home-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
  transition: background var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.node--type-home-page .site-header.is-scrolled {
  background: var(--al-navy-dark);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
/* =========================================================================
   Impact grid — make Drupal field wrappers transparent to CSS grid
   ========================================================================= */
.node--type-home-page .impact__grid > .field {
  display: contents;
}
.node--type-home-page .impact__grid > .field > .field__items {
  display: contents;
}
/* Make Drupal field wrappers transparent to CSS grid in all card grid sections */
.node--type-home-page .problems__grid > .field,
.node--type-home-page .problems__grid > .field > .field__items,
.node--type-home-page .proof__grid > .field,
.node--type-home-page .proof__grid > .field > .field__items {
  display: contents;
}
/* =========================================================================
   Smooth in-page anchor jumps that clear the sticky header
   ========================================================================= */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
#main section[id],
#main [id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}
/* =========================================================================
   Home surface variables — keep new sections working in dark mode,
   mirroring the navy / navy-900 alternation.
   ========================================================================= */
body {
  --home-white: #ffffff;
  --home-tint: var(--al-navy-50);
  --home-card: #ffffff;
  --home-card-bd: var(--al-gray-100);
  --home-head: var(--al-navy);
  --home-text: var(--al-navy-600);
  --home-muted: var(--al-navy-500);
  --home-hair: var(--al-gray-100);
}
body.dark {
  --home-white: var(--al-navy);
  --home-tint: var(--al-navy-900);
  --home-card: rgba(255, 255, 255, 0.04);
  --home-card-bd: rgba(255, 255, 255, 0.1);
  --home-head: #ffffff;
  --home-text: rgba(255, 255, 255, 0.76);
  --home-muted: rgba(255, 255, 255, 0.6);
  --home-hair: rgba(255, 255, 255, 0.1);
}
/* =========================================================================
   Inline links (orange) used in lede paragraphs throughout the home page
   ========================================================================= */
a.inline-link,
.lede a.inline-link,
.lede a[href] {
  color: var(--al-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 144, 48, 0.35);
  transition: color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
a.inline-link:hover,
.lede a.inline-link:hover,
.lede a[href]:hover {
  color: var(--al-orange-700);
  border-bottom-color: var(--al-orange-700);
}
body.dark a.inline-link,
body.dark .lede a[href] {
  color: var(--al-orange-300);
  border-bottom-color: rgba(243, 196, 131, 0.45);
}
body.dark a.inline-link:hover,
body.dark .lede a[href]:hover {
  color: #fff;
  border-bottom-color: #fff;
}
/* =========================================================================
   Shared text-link CTA used by every card on the home page
   ========================================================================= */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--al-orange);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out), gap var(--dur-1) var(--ease-out);
}
.card-cta a,
.card-cta a:link,
.card-cta a:visited {
  color: var(--al-orange);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: color var(--dur-1) var(--ease-out);
}
.card-cta svg {
  transition: transform var(--dur-1) var(--ease-out);
}
.card-cta:hover {
  color: var(--al-orange-700);
  gap: 11px;
  text-decoration: none;
}
.card-cta:hover svg {
  transform: translateX(2px);
}
body.dark .card-cta {
  color: var(--al-orange-300);
}
body.dark .card-cta:hover {
  color: #fff;
}
/* =====================================================================
   [Hero]
   ===================================================================== */
.hero {
  position: relative;
  background: var(--al-navy);
  color: #fff;
  margin-top: calc(-1 * var(--hdr-h, 132px));
  padding: calc(var(--hdr-h, 132px) + 40px) 0 128px;
  overflow: hidden;
}
/* Hero background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__video-src {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 85% 30%, rgba(224, 144, 48, 0.12), transparent 55%), linear-gradient(180deg, rgba(0, 31, 54, 0.72) 0%, rgba(0, 31, 54, 0.8) 60%, rgba(0, 31, 54, 0.92) 100%);
  pointer-events: none;
}
.hero__orbit {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 720px;
  height: 720px;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 3;
}
/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumb__current {
  color: var(--al-orange-300);
}
/* Hero grid */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}
.hero__h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__sub {
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60ch;
  margin: 0 0 36px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* Hero in-page section jump nav */
.hero__jumpnav {
  display: none;
}
/* Hero ISO pills */
.hero__iso-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.iso-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.iso-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--al-orange);
  display: inline-block;
}
/* Hero right-side mini summary panel */
.hero__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero__panel-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange-300);
  margin: 0 0 18px;
}
.hero__panel-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
/* Borders between rows — on field__item wrappers since Drupal wraps each paragraph */
.field__item + .field__item .hero__panel-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}
.hero__panel-row:first-of-type,
.field__item:first-child .hero__panel-row {
  border-top: 0;
}
.hero__panel-row svg,
.hero__panel-row .svg-inline--fa {
  flex-shrink: 0;
  color: var(--al-orange);
  margin-top: 2px;
}
/* Hero microcopy */
.hero__microcopy {
  margin: 22px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  max-width: 56ch;
}
/* Hero subtitle inline-links — lighter so H1 stays the focus */
.hero__sub .inline-link {
  color: var(--al-orange-300);
  border-bottom-color: rgba(243, 196, 131, 0.4);
}
.hero__sub .inline-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.hero__cta .al-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero__cta .al-btn--ghost:hover {
  background: #fff;
  color: var(--al-navy);
  border-color: #fff;
}
/* =====================================================================
   [FloatingSideJumpnav]
   ===================================================================== */
.side-jumpnav {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px;
  background: rgba(0, 48, 80, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 16, 32, 0.28);
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), padding var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.side-jumpnav__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom-color: transparent;
  transition: max-width var(--dur-2) var(--ease-out), max-height var(--dur-2) var(--ease-out), padding var(--dur-2) var(--ease-out), margin var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.side-jumpnav a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 8px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), gap var(--dur-2) var(--ease-out), padding var(--dur-2) var(--ease-out);
}
.side-jumpnav a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  flex-shrink: 0;
  transition: background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.side-jumpnav__label {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width var(--dur-2) var(--ease-out), opacity var(--dur-2) var(--ease-out);
}
.side-jumpnav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.side-jumpnav a:hover::before {
  background: var(--al-orange-300);
  transform: scale(1.2);
}
.side-jumpnav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.side-jumpnav a.is-active::before {
  background: var(--al-orange);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(224, 144, 48, 0.22);
}
.side-jumpnav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 144, 48, 0.45);
}
/* Expand on hover/focus — dot strip becomes a labeled list */
.side-jumpnav:hover,
.side-jumpnav:focus-within {
  padding: 12px 10px;
}
.side-jumpnav:hover .side-jumpnav__title,
.side-jumpnav:focus-within .side-jumpnav__title {
  max-width: 200px;
  max-height: 32px;
  padding: 4px 10px 8px;
  margin-bottom: 4px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.side-jumpnav:hover a,
.side-jumpnav:focus-within a {
  gap: 10px;
  padding: 7px 10px;
}
.side-jumpnav:hover .side-jumpnav__label,
.side-jumpnav:focus-within .side-jumpnav__label {
  max-width: 160px;
  opacity: 1;
}
.side-jumpnav__toggle {
  display: none;
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 41;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--al-navy);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(0, 16, 32, 0.25);
  cursor: pointer;
  padding: 0;
}
.side-jumpnav__toggle svg {
  transition: transform var(--dur-1) var(--ease-out);
}
@media (max-width: 1080px) {
  .side-jumpnav {
    opacity: 0;
    pointer-events: none;
    transform: translate(-12px, -50%);
    padding: 12px 10px;
  }
  .side-jumpnav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
  }
  .side-jumpnav.is-open .side-jumpnav__title {
    max-width: 200px;
    max-height: 32px;
    padding: 4px 10px 8px;
    margin-bottom: 4px;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  .side-jumpnav.is-open a {
    gap: 10px;
    padding: 7px 10px;
  }
  .side-jumpnav.is-open .side-jumpnav__label {
    max-width: 160px;
    opacity: 1;
  }
  .side-jumpnav__toggle {
    display: inline-flex;
  }
  .side-jumpnav__toggle.is-open svg {
    transform: rotate(180deg);
  }
}
@media (max-width: 640px) {
  .side-jumpnav {
    left: 8px;
  }
  .side-jumpnav__toggle {
    left: 10px;
  }
}
body:not(.dark) .side-jumpnav {
  background: rgba(0, 48, 80, 0.94);
}
/* =====================================================================
   [HeroParagraphs] — what / who / why / approach
   ===================================================================== */
.heroparas {
  background: var(--al-navy-50);
  padding: 80px 0;
  border-bottom: 1px solid var(--al-gray-100);
}
.heroparas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.heropara {
  padding: 0;
  position: relative;
}
.heropara::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--al-orange);
  margin-bottom: 18px;
}
.heropara__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin: 0 0 6px;
}
.heropara h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.heropara p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--al-navy-600);
  margin: 0;
}
/* =====================================================================
   [GenericSectionHeader]
   ===================================================================== */
section.padded {
  padding: 128px 0;
}
.section-head {
  max-width: 760px;
  margin: 0 0 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.55vw, 44px);
  font-weight: 800;
  color: var(--al-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-head .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--al-navy-600);
  max-width: 68ch;
  margin: 18px 0 0;
}
.section-head .lede p {
  margin: 0;
}
.section-head .lede .field {
  margin: 0;
}
.section-head .lede a {
  color: var(--al-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 144, 48, 0.35);
}
.section-head .lede a:hover {
  color: var(--al-orange-700);
  border-bottom-color: var(--al-orange-700);
}
section.dark .section-head h2 {
  color: #fff;
}
section.dark .section-head .lede {
  color: rgba(255, 255, 255, 0.78);
}
/* =====================================================================
   [Benefits] — card grids
   ===================================================================== */
.benefits {
  background: #fff;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.b-card {
  background: #fff;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all var(--dur-2) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.b-card:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.b-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.b-card:hover .b-card__icon {
  background: var(--al-orange);
  color: #fff;
}
.b-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.b-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--al-navy-600);
  margin: 0;
}
/* =====================================================================
   [Problems]
   ===================================================================== */
.problems {
  background: var(--al-navy-50);
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-card {
  background: #fff;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 26px 26px 30px;
  position: relative;
  transition: all var(--dur-2) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.p-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--al-orange);
}
.p-card:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.p-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-card__icon {
  width: 32px;
  height: 32px;
  color: var(--al-orange);
  flex-shrink: 0;
}
.p-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.p-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--al-navy-600);
  margin: 0;
}
/* =====================================================================
   [Solutions]
   ===================================================================== */
.solutions {
  background: #fff;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.s-card {
  grid-column: span 3;
  background: var(--al-navy-50);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all var(--dur-2) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.s-card:hover {
  border-color: var(--al-navy-100);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.s-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--al-navy-100);
}
.s-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin: 0 0 -4px;
}
.s-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.s-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--al-navy-600);
  margin: 0;
}
/* 4 + 3 layout: row 1 = 4 cards (span 3), row 2 = 3 cards (span 4) */
.s-card.row2 {
  grid-column: span 4;
}
/* =====================================================================
   [Workflow]
   ===================================================================== */
.workflow {
  background: var(--al-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.workflow::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 2px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(-22deg) scale(1, 0.32);
  opacity: 0.18;
  pointer-events: none;
}
.workflow .container {
  position: relative;
}
.workflow__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  position: relative;
}
.w-step {
  position: relative;
  padding: 0 4px;
}
.w-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--al-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(224, 144, 48, 0.1);
}
/* Horizontal connector dashed lines between steps in a row */
.w-step:not(:nth-child(4n))::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 56px;
  right: -24px;
  height: 2px;
  background-image: linear-gradient(to right, rgba(243, 196, 131, 0.55) 50%, transparent 50%);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}
.w-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.w-step p {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
/* =====================================================================
   [Trust] / Proof
   ===================================================================== */
.trust {
  background: #fff;
}
.trust__section-head {
  max-width: none;
}
.trust__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust__title-row h2 {
  flex: 1 1 auto;
  max-width: 760px;
  margin-bottom: 0;
}
.trust__iso {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
@media (max-width: 640px) {
  .trust__title-row {
    align-items: flex-start;
  }
  .trust__iso {
    padding-bottom: 0;
  }
}
.trust__paras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.trust__paras p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--al-navy-600);
  margin: 0;
}
.trust__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust__table thead th {
  background: var(--al-navy);
  color: #fff;
  text-align: left;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.trust__table th:first-child {
  width: 32%;
}
.trust__table tbody tr:nth-child(odd) td {
  background: var(--al-navy-50);
}
.trust__table td {
  padding: 18px 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--al-navy-600);
  border-top: 1px solid var(--al-gray-100);
  vertical-align: top;
}
.trust__table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--al-navy);
}
/* =====================================================================
   [RelatedSolutions]
   ===================================================================== */
.related {
  background: var(--al-navy-50);
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.r-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--al-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  transition: all var(--dur-2) var(--ease-out);
}
.r-link:hover {
  border-color: var(--al-orange);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--al-navy);
  text-decoration: none;
}
.r-link__chev {
  margin-left: auto;
  color: var(--al-orange);
  transition: transform var(--dur-2) var(--ease-out);
}
.r-link:hover .r-link__chev {
  transform: translateX(3px);
}
.r-link__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--al-orange);
  background: transparent;
  flex-shrink: 0;
  transition: background var(--dur-2) var(--ease-out);
}
.r-link:hover .r-link__bullet {
  background: var(--al-orange);
}
/* =====================================================================
   [FAQ]
   ===================================================================== */
.faq {
  background: #fff;
}
.faq .section-head {
  text-align: center;
  margin: 0 auto 40px;
}
.faq .section-head h2 {
  margin-bottom: 0;
}
.faq__wrap {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--al-gray-100);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--al-gray-100);
}
.faq-item__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--al-navy);
  letter-spacing: -0.005em;
  list-style: none;
  transition: color var(--dur-1) var(--ease-out);
}
.faq-item__btn::-webkit-details-marker {
  display: none;
}
.faq-item__btn::marker {
  content: '';
}
.faq-item__btn:hover {
  color: var(--al-orange-700);
}
.faq-item__btn:focus-visible {
  outline: 2px solid var(--al-orange);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.faq-item__btn > span:first-child {
  flex: 1;
  padding-top: 2px;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--al-navy-100);
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--al-orange);
  color: #fff;
  border-color: var(--al-orange);
}
.faq-item__body {
  padding: 0 56px 28px 0;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--al-navy-600);
  max-width: 78ch;
}
.faq-item__body p {
  margin: 0;
}
/* =====================================================================
   [FinalCTA]
   ===================================================================== */
.finalcta {
  background: var(--al-navy-900);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 2px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(-15deg) scale(1, 0.34);
  opacity: 0.22;
  pointer-events: none;
}
.finalcta::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(28deg) scale(1, 0.4);
  opacity: 0.14;
  pointer-events: none;
}
.finalcta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.finalcta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.15vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 24px;
  max-width: 16ch;
  text-wrap: balance;
}
.finalcta p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
  max-width: 60ch;
}
.finalcta__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.finalcta .finalcta__microcopy {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}
/* Final CTA form panel */
.finalcta__inner.with-form {
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.finalcta__copy {
  padding-top: 8px;
}
.finalcta__mailto {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  margin-top: 24px;
  transition: border-color var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.finalcta__mailto:hover {
  color: #fff;
  border-color: var(--al-orange);
  background: rgba(224, 144, 48, 0.1);
  text-decoration: none;
}
/* Contact form — transparent wrapper; the webform <form> carries its own card styles */
.finalcta .contact-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.contact-form {
  background: var(--al-paper);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 16, 32, 0.32), 0 4px 14px rgba(0, 16, 32, 0.18);
  position: relative;
  color: var(--al-navy);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field--full {
  grid-column: 1 / -1;
}
.contact-form__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-navy);
}
.contact-form__req {
  color: var(--al-orange);
  margin-left: 2px;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--al-navy);
  background: #fff;
  padding: 12px 14px;
  border: 1px solid var(--al-gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--al-gray-400);
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--al-orange);
  box-shadow: var(--shadow-focus);
}
.contact-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%231e4a6e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color: var(--al-gray-400);
}
.contact-form__field select.has-value {
  color: var(--al-navy);
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-sans);
  line-height: 1.5;
}
/* File upload */
.contact-form__file {
  position: relative;
}
.contact-form__file input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form__dropzone {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 1px dashed var(--al-gray-300);
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  cursor: pointer;
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.contact-form__dropzone:hover,
.contact-form__file.is-drag .contact-form__dropzone {
  border-color: var(--al-orange);
  background: var(--al-orange-50);
}
.contact-form__file input[type="file"]:focus-visible + .contact-form__dropzone {
  border-color: var(--al-orange);
  box-shadow: var(--shadow-focus);
}
.contact-form__dropzone-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--al-orange);
  border: 1px solid var(--al-gray-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-form__dropzone-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-form__dropzone-text b {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--al-navy);
}
.contact-form__dropzone-text b u {
  color: var(--al-orange);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
}
.contact-form__dropzone-text span {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--al-gray-500);
}
.contact-form__filelist {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__filelist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--al-navy);
  background: var(--al-navy-50);
  border: 1px solid var(--al-navy-100);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
}
.contact-form__filelist li svg {
  flex-shrink: 0;
  color: var(--al-orange);
}
.contact-form__filelist li span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-form__filelist li small {
  color: var(--al-gray-500);
  flex-shrink: 0;
}
.contact-form__file-remove {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--al-gray-400);
  display: inline-flex;
  padding: 2px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  transition: color var(--dur-1) var(--ease-out);
}
.contact-form__file-remove:hover {
  color: var(--status-error);
}
/* Captcha */
.contact-form__captcha {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.contact-form__captcha-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-navy);
  margin-bottom: 8px;
}
.contact-form__captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--al-gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  max-width: 340px;
}
.contact-form__captcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--al-navy);
  cursor: pointer;
  user-select: none;
}
.contact-form__captcha-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--al-gray-300);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.contact-form__captcha-check svg {
  opacity: 0;
  transition: opacity var(--dur-1) var(--ease-out);
}
.contact-form__captcha input:checked + .contact-form__captcha-left .contact-form__captcha-check {
  background: var(--al-orange);
  border-color: var(--al-orange);
}
.contact-form__captcha input:checked + .contact-form__captcha-left .contact-form__captcha-check svg {
  opacity: 1;
}
.contact-form__captcha-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.contact-form__captcha-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--al-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
}
.contact-form__captcha-badge svg {
  color: var(--al-orange);
}
.contact-form__captcha-meta {
  font-size: 9px;
  color: var(--al-gray-500);
  letter-spacing: var(--tracking-wide);
}
.contact-form__captcha-meta a {
  color: var(--al-gray-500);
  text-decoration: none;
}
.contact-form__captcha-meta a:hover {
  color: var(--al-orange);
}
/* Form actions */
.contact-form__hint {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--al-gray-500);
  line-height: 1.5;
  margin: 4px 0 0;
}
.contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}
.contact-form__submit {
  background: #013753;
  color: #fff;
  border: 0;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.contact-form__submit:hover {
  background: #002438;
}
.contact-form__submit:active {
  transform: translateY(1px);
}
.contact-form__submit:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}
.contact-form__privacy {
  font-size: 11px;
  color: var(--al-gray-500);
  line-height: 1.5;
  max-width: 28ch;
}
.contact-form__privacy a {
  color: var(--al-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form__privacy a:hover {
  color: var(--al-orange);
}
/* Success state */
.contact-form.is-success .contact-form__grid {
  display: none;
}
.contact-form__success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}
.contact-form.is-success .contact-form__success {
  display: block;
}
.contact-form__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--al-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form__success h3 {
  font-family: var(--font-display);
  color: var(--al-navy);
  font-size: 22px;
  margin: 0 0 8px;
}
.contact-form__success p {
  color: var(--al-navy-600);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 36ch;
}
/* =====================================================================
   [FloatingCTA]
   ===================================================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--al-orange);
  color: #fff !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--al-orange-700);
}
/* =====================================================================
   [TrustLine]
   ===================================================================== */
.trustline {
  background: var(--home-white);
  border-bottom: 1px solid var(--home-hair);
}
.trustline__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 22px 0;
}
.trustline__group {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.trustline__divider {
  width: 1px;
  align-self: stretch;
  min-height: 26px;
  background: var(--home-hair);
  margin: 0 6px;
}
.trustline__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: var(--al-navy-50);
  color: var(--al-navy);
  border: 1px solid var(--al-navy-100);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.trustline__pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--al-orange);
  flex-shrink: 0;
}
.trustline__pill--iso {
  background: var(--al-navy);
  color: #fff;
  border-color: var(--al-navy);
}
a.trustline__pill:hover {
  border-color: var(--al-orange);
  color: var(--al-orange-700);
  text-decoration: none;
}
body.dark .trustline__pill {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
}
body.dark .trustline__pill--iso {
  background: var(--al-orange);
  color: #fff;
  border-color: var(--al-orange);
}
body.dark .trustline__pill--iso::before {
  background: #fff;
}
.trustline__short {
  display: none;
}
@media (max-width: 720px) {
  .trustline__inner {
    gap: 0;
  }
  .trustline__group,
  .trustline__divider {
    display: none;
  }
  .trustline__short {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.7;
    color: var(--home-text);
  }
}
/* =====================================================================
   [OrganizationCarousel] — tabbed
   ===================================================================== */
.orgsec {
  background: var(--home-tint);
}
.orgsec__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 70px;
}
.orgsec__intro .section-head {
  margin-bottom: 0;
}
.orggfx {
  position: relative;
}
.orggfx svg.orggfx__art {
  width: 100%;
  height: auto;
  display: block;
}
.orggfx__cap {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--home-muted);
}
.orggfx__cap svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--al-orange);
}
@media (max-width: 920px) {
  .orgsec__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .orggfx {
    max-width: 480px;
  }
}
.orgtabs-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 38px;
}
.orgcarousel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--home-hair);
}
.orgcarousel-count {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--home-muted);
  padding-top: 14px;
}
.orgtabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}
.orgtab {
  appearance: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  background: var(--home-card);
  border: 1px solid var(--home-card-bd);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
/* left accent bar that grows in when selected */
.orgtab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--al-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-2) var(--ease-out);
}
.orgtab:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
body.dark .orgtab:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.orgtab__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  color: var(--al-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
body.dark .orgtab__icon {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.orgtab__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.orgtab__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--home-head);
}
.orgtab__desc {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--home-muted);
}
.orgtab__count {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: var(--al-navy-50);
  color: var(--al-navy-500);
  border: 1px solid var(--al-navy-100);
  transition: all var(--dur-2) var(--ease-out);
}
body.dark .orgtab__count {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
}
/* selected */
.orgtab[aria-selected="true"] {
  background: var(--al-navy);
  border-color: var(--al-navy);
  box-shadow: var(--shadow-md);
}
body.dark .orgtab[aria-selected="true"] {
  background: var(--al-navy-900);
  border-color: rgba(255, 255, 255, 0.18);
}
.orgtab[aria-selected="true"]::before {
  transform: scaleY(1);
}
.orgtab[aria-selected="true"] .orgtab__icon {
  background: var(--al-orange);
  color: #fff;
}
.orgtab[aria-selected="true"] .orgtab__title {
  color: #fff;
}
.orgtab[aria-selected="true"] .orgtab__desc {
  color: rgba(255, 255, 255, 0.62);
}
.orgtab[aria-selected="true"] .orgtab__count {
  background: rgba(224, 144, 48, 0.18);
  color: var(--al-orange-300);
  border-color: rgba(224, 144, 48, 0.4);
}
.orgtab:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}
/* "Who we help" tabs share the white card surface — tint the unselected ones
   so they read as distinct from the white content cards in the panel. */
#organisations .orgtab:not([aria-selected="true"]) {
  background: var(--al-navy-100);
}
body.dark #organisations .orgtab:not([aria-selected="true"]) {
  background: var(--home-tint);
}
/* Services section sits on pure white — give its unselected tabs an ice-white fill so they read as cards */
#services .orgtab:not([aria-selected="true"]) {
  background: var(--al-navy-50);
}
body.dark #services .orgtab:not([aria-selected="true"]) {
  background: var(--home-card);
}
.orgpanel {
  display: none;
}
.orgpanel.is-active {
  display: block;
  animation: homeFadeUp var(--dur-2) var(--ease-out);
}
@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.orgcards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 20px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.orgcards::-webkit-scrollbar {
  display: none;
}
.org-card {
  scroll-snap-align: start;
}
.org-card {
  background: var(--home-card);
  border: 1px solid var(--home-card-bd);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 230px;
  transition: all var(--dur-2) var(--ease-out);
}
.org-card:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
body.dark .org-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.org-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.dark .org-card__icon {
  background: rgba(255, 255, 255, 0.06);
}
.org-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--home-head);
  margin: 0;
  letter-spacing: -0.005em;
}
.org-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--home-text);
  margin: 0 0 4px;
}
/* Carousel responsive: 2-per-view on tablet, ~1.1 on mobile */
@media (max-width: 900px) {
  .orgcards {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}
@media (max-width: 760px) {
  .orgtabs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .orgtab__desc {
    display: none;
  }
  .orgtab {
    padding: 14px 16px;
    align-items: center;
  }
}
@media (max-width: 640px) {
  .orgcards {
    grid-auto-columns: 84%;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .org-card {
    min-height: 0;
  }
  .orgcarousel-nav {
    display: none;
  }
}
/* =====================================================================
   [ProblemSection] — reuses .problems / .p-card; just the 2x2 grid + CTA
   ===================================================================== */
.problems--home {
  background: var(--home-white);
}
body.dark .problems.problems--home {
  background: var(--al-navy);
}
.problems--home .problems__grid {
  grid-template-columns: repeat(2, 1fr);
}
.challenge-head {
  display: grid;
  grid-template-columns: minmax(300px, 405px) 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.challenge-head .section-head {
  max-width: none;
  margin-bottom: 0;
}
.challenge-head .section-head .lede {
  margin-left: auto;
}
.challenge-head__art svg {
  width: 100%;
  height: auto;
  display: block;
}
.field--name-field-challenge-intro {
  max-width: 560px;
  margin-left: auto;
  float: right;
}
@media (max-width: 760px) {
  .challenge-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .challenge-head .section-head {
    text-align: left !important;
  }
  .challenge-head__art {
    max-width: 340px;
    margin: 0 auto;
  }
}
.section-cta {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--al-orange);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out), gap var(--dur-1) var(--ease-out);
}
.text-link svg {
  transition: transform var(--dur-1) var(--ease-out);
}
.text-link:hover {
  color: var(--al-orange-700);
  gap: 12px;
  text-decoration: none;
}
.text-link:hover svg {
  transform: translateX(3px);
}
body.dark .text-link {
  color: var(--al-orange-300);
}
body.dark .text-link:hover {
  color: #fff;
}
@media (max-width: 760px) {
  .problems--home .problems__grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================================================
   [WhyChooseAbroadLink] — five pillars
   ===================================================================== */
.whychoose {
  background: var(--home-tint);
  position: relative;
  overflow: hidden;
}
/* Header laid out as text-left / graphic-right, mirroring .orgsec__intro */
.whychoose__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 8px;
}
.whychoose__intro .section-head {
  margin-bottom: 0;
}
.whychoose__intro .lede {
  margin-bottom: 80px;
}
.whychoose__gfx {
  position: relative;
}
.whychoose__gfx img {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .whychoose__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .whychoose__gfx {
    max-width: 440px;
    margin: 0 auto;
    order: 2;
  }
  .whychoose__gfx img {
    width: 100%;
  }
}
/* Pill tab row */
.wc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 24px;
}
.wc-tab {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--home-muted);
  background: var(--home-card);
  border: 1px solid var(--home-card-bd);
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  transition: color var(--dur-1) var(--ease-out), background var(--dur-2) var(--ease-out), border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.wc-tab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wc-tab__icon svg {
  width: 17px;
  height: 17px;
  display: block;
}
.wc-tab:hover {
  color: var(--home-head);
  border-color: var(--al-navy-100);
}
body.dark .wc-tab:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.wc-tab[aria-selected="true"] {
  background: var(--al-navy);
  border-color: var(--al-navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
body.dark .wc-tab[aria-selected="true"] {
  background: var(--al-orange);
  border-color: var(--al-orange);
}
.wc-tab[aria-selected="true"] .wc-tab__icon {
  color: var(--al-orange-300);
}
body.dark .wc-tab[aria-selected="true"] .wc-tab__icon {
  color: #fff;
}
.wc-tab:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}
/* Big rounded panel */
.wc-panel {
  background: var(--home-tint);
  border: 1px solid var(--home-hair);
  border-radius: var(--radius-2xl);
  padding: 48px;
}
body.dark .wc-panel {
  background: var(--al-navy-900);
}
.wc-pane {
  display: none;
}
.wc-pane.is-active {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
  gap: 48px;
  animation: homeFadeUp var(--dur-2) var(--ease-out);
}
/* Left column */
.wc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin: 0 0 14px;
}
.wc-left h3 {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 800;
  color: var(--home-head);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px;
  text-wrap: balance;
}
.wc-left__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--home-muted);
  font-style: italic;
  margin: 0 0 18px;
}
.wc-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--home-text);
  margin: 0 0 24px;
}
.wc-bullets {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.wc-bullet {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--home-head);
}
.wc-bullet svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--al-orange);
  margin-top: 1px;
}
.wc-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.wc-actions > .al-btn,
.wc-actions > .text-link {
  white-space: nowrap;
}
/* Right column — supporting cards */
.wc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-content: start;
  align-self: center;
}
.wc-card {
  background: var(--home-card);
  border: 1px solid var(--home-card-bd);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
  text-decoration: none;
}
a.wc-card:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
body.dark a.wc-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.wc-card__badge {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  background: var(--al-orange-50);
  border: 1px solid var(--al-orange-100);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
}
body.dark .wc-card__badge {
  background: rgba(224, 144, 48, 0.12);
  border-color: rgba(224, 144, 48, 0.35);
  color: var(--al-orange-300);
}
.wc-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  color: var(--al-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.dark .wc-card__icon {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.wc-card h4 {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--home-head);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0;
}
.wc-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--home-text);
  margin: 0;
}
.wc-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--al-orange);
}
body.dark .wc-card__more {
  color: var(--al-orange-300);
}
a.wc-card:hover .wc-card__more svg {
  transform: translateX(2px);
}
.wc-card__more svg {
  transition: transform var(--dur-1) var(--ease-out);
}
.whychoose__close {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 32px;
  align-items: center;
}
.whychoose__close p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--home-head);
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
@media (max-width: 980px) {
  .wc-panel {
    padding: 32px;
  }
  .wc-pane.is-active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wc-cards {
    margin-top: 0;
  }
}
@media (max-width: 620px) {
  .wc-panel {
    padding: 24px 20px;
  }
  .wc-cards {
    grid-template-columns: 1fr;
  }
  .wc-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 4px;
    scrollbar-width: none;
  }
  .wc-tabs::-webkit-scrollbar {
    display: none;
  }
  .wc-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .whychoose__close {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
}
/* =====================================================================
   [ServicesCarousel]
   ===================================================================== */
.servicessec {
  background: var(--home-white);
}
/* Services intro: text-left / translation-bubble graphic-right (mirrors .orgsec__intro) */
.svcsec__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 65px;
}
.svcsec__intro .section-head {
  margin-bottom: 0;
  max-width: 640px;
}
.svcgfx {
  position: relative;
  display: flex;
  justify-content: center;
}
.svcgfx__art {
  width: 100%;
  height: auto;
  display: block;
  max-width: 396px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-inline: auto;
}
@media (max-width: 920px) {
  .svcsec__intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svcgfx__art {
    max-width: 343px;
  }
}
.carousel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.carousel-head .section-head {
  margin-bottom: 0;
}
.carousel-nav {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--al-navy-100);
  background: var(--home-card);
  color: var(--al-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-1) var(--ease-out);
}
.carousel-arrow:hover:not(:disabled) {
  background: var(--al-navy);
  color: #fff;
  border-color: var(--al-navy);
}
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.carousel-arrow:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}
body.dark .carousel-arrow {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
body.dark .carousel-arrow:hover:not(:disabled) {
  background: var(--al-orange);
  border-color: var(--al-orange);
}
@media (max-width: 560px) {
  .services-track {
    grid-auto-columns: 84%;
  }
  .carousel-nav {
    display: none;
  }
}
/* =====================================================================
   [IndustriesInternalLinks]
   ===================================================================== */
.industries {
  background: var(--home-tint);
}
.node--type-home-page .industries .industries__inner {
  max-width: var(--container-md);
  margin-left: 0;
}
.industries__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.industries__text {
  min-width: 0;
}
.industries__media {
  min-width: 0;
}
.industries__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 480px;
  margin-inline: auto;
  transform: translateX(120px);
}
@media (max-width: 900px) {
  .industries__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .industries__media img {
    max-width: 380px;
    transform: none;
  }
}
.industries h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--home-head);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 16px;
  text-wrap: balance;
}
.industries__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--home-text);
  margin: 0 0 24px;
  max-width: 70ch;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--home-card);
  color: var(--al-navy);
  border: 1px solid var(--al-navy-100);
  text-decoration: none;
  transition: all var(--dur-1) var(--ease-out);
}
.industry-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid var(--al-orange);
  flex-shrink: 0;
  transition: background var(--dur-1) var(--ease-out);
}
.industry-tag:hover {
  border-color: var(--al-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--al-navy);
  text-decoration: none;
}
.industry-tag:hover::before {
  background: var(--al-orange);
}
body.dark .industry-tag {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}
body.dark .industry-tag:hover {
  border-color: var(--al-orange);
}
/* =====================================================================
   [ImpactStats] — always navy band
   ===================================================================== */
.impact {
  background: var(--al-navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.impact.padded,
body[data-density] section.impact.padded {
  padding: 40px 0;
}
body.dark .impact {
  background: #00131f;
}
.impact::before {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 440px;
  height: 440px;
  border: 2px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(20deg) scale(1, 0.34);
  opacity: 0.16;
  pointer-events: none;
}
.impact .container {
  position: relative;
}
.impact__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.impact__head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.placeholder-flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  color: var(--al-orange-300);
  background: rgba(224, 144, 48, 0.12);
  border: 1px dashed rgba(224, 144, 48, 0.5);
  border-radius: var(--radius-pill);
  padding: 6px 13px;
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-tile {
  padding: 0 6px 0 24px;
  border-left: 2px solid rgba(224, 144, 48, 0.55);
}
.stat-tile__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  display: block;
}
.stat-tile__num .ph {
  color: var(--al-orange-300);
  border-bottom: 2px dashed rgba(224, 144, 48, 0.6);
}
.stat-tile__label {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 900px) {
  .impact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 480px) {
  .impact__grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================================================
   [ProofCertifications]
   ===================================================================== */
.proof {
  background: var(--home-white);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-card {
  background: var(--home-card);
  border: 1px solid var(--home-card-bd);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 210px;
  transition: all var(--dur-2) var(--ease-out);
}
.proof-card:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
body.dark .proof-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.proof-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.dark .proof-card__icon {
  background: rgba(255, 255, 255, 0.06);
}
.proof-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--home-head);
  margin: 0;
  letter-spacing: -0.005em;
}
.proof-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--home-text);
  margin: 0;
}
/* ISO cards reserve space for a Bureau Veritas badge (artwork to be supplied) */
.proof-card--iso {
  border-color: var(--al-navy-100);
}
.proof-badge-slot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px dashed var(--al-navy-100);
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--al-navy-500);
  line-height: 1.4;
}
body.dark .proof-badge-slot {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
}
.proof-badge-slot svg {
  flex-shrink: 0;
  color: var(--al-orange);
}
/* Certificate download link (replaces the placeholder badge slot) */
a.proof-badge-slot {
  text-decoration: none;
  transition: background var(--dur-2, 240ms) var(--ease-out, ease), border-color var(--dur-2, 240ms) var(--ease-out, ease), color var(--dur-2, 240ms) var(--ease-out, ease);
}
a.proof-badge-slot:hover {
  background: var(--al-navy-50);
  border-color: var(--al-orange);
  color: var(--al-navy);
}
body.dark a.proof-badge-slot:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
a.proof-badge-slot:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}
@media (max-width: 900px) {
  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .proof__grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================================================
   [AboutTranslationCompanySection]
   ===================================================================== */
.about-company {
  background: var(--home-tint);
  position: relative;
}
.about-company__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  position: relative;
  gap: 56px;
  align-items: start;
}
.about-company__grid h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.3vw, 42px);
  font-weight: 800;
  color: var(--home-head);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}
.about-company__figure {
  position: absolute;
  left: -8px;
  bottom: -150px;
  width: 400px;
  max-width: 42vw;
  z-index: 2;
  pointer-events: none;
}
.about-company__figure svg {
  width: 100%;
  height: auto;
  display: block;
}
.about-company__body p {
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--home-text);
  margin: 0 0 18px;
}
@media (max-width: 1040px) {
  .about-company__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-company__figure {
    display: none;
  }
}
/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .hero {
    padding: calc(var(--hdr-h, 132px) + 24px) 0 80px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__panel {
    max-width: 520px;
  }
  .heroparas__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 28px;
  }
  .benefits__grid,
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s-card,
  .s-card.row2 {
    grid-column: span 6;
  }
  .workflow__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .w-step:not(:nth-child(4n))::after {
    display: none;
  }
  .w-step:not(:nth-child(2n))::after {
    content: '';
    position: absolute;
    top: 21px;
    left: 56px;
    right: -16px;
    height: 2px;
    background-image: linear-gradient(to right, rgba(243, 196, 131, 0.55) 50%, transparent 50%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    z-index: 1;
  }
  .trust__paras {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .finalcta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .finalcta__inner.with-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  section.padded {
    padding: 64px 0;
  }
  .heroparas {
    padding: 56px 0;
  }
  .heroparas__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .benefits__grid,
  .problems__grid {
    grid-template-columns: 1fr;
  }
  .s-card,
  .s-card.row2 {
    grid-column: span 12;
  }
  .workflow__grid {
    grid-template-columns: 1fr;
  }
  .w-step:not(:last-child)::after {
    display: none !important;
  }
  .trust__table thead {
    display: none;
  }
  .trust__table tbody,
  .trust__table tr,
  .trust__table td {
    display: block;
    width: 100%;
  }
  .trust__table td:first-child {
    background: var(--al-navy);
    color: #fff;
    padding: 10px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
  }
  .trust__table td {
    padding: 14px 16px;
  }
  .related__grid {
    grid-template-columns: 1fr;
  }
  .hero__h1 {
    font-size: 36px;
  }
  .container {
    padding: 0 18px;
  }
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  .contact-form {
    padding: 24px 20px;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-form__captcha-box {
    max-width: 100%;
  }
  .contact-form__actions {
    flex-direction: column;
    align-items: center;
  }
}
/* =====================================================================
   Dark mode overrides
   ===================================================================== */
body.dark {
  background: var(--al-navy);
  color: rgba(255, 255, 255, 0.82);
}
/* Section backgrounds: alternate navy / navy-900 */
body.dark .heroparas {
  background: var(--al-navy-900);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
body.dark .benefits {
  background: var(--al-navy);
}
body.dark .problems {
  background: var(--al-navy-900);
}
body.dark .solutions {
  background: var(--al-navy);
}
body.dark .trust {
  background: var(--al-navy-900);
}
body.dark .related {
  background: var(--al-navy);
}
body.dark .faq {
  background: var(--al-navy);
}
/* Hero-paragraphs strip */
body.dark .heropara h3 {
  color: #fff;
}
body.dark .heropara p {
  color: rgba(255, 255, 255, 0.76);
}
/* Section headings */
body.dark .section-head h2 {
  color: #fff;
}
body.dark .section-head .lede {
  color: rgba(255, 255, 255, 0.78);
}
/* Benefit cards */
body.dark .b-card {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark .b-card:hover {
  background: var(--al-navy-700);
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark .b-card h3 {
  color: #fff;
}
body.dark .b-card p {
  color: rgba(255, 255, 255, 0.74);
}
body.dark .b-card__icon {
  background: rgba(255, 255, 255, 0.06);
}
/* Problem cards */
body.dark .p-card {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark .p-card:hover {
  background: var(--al-navy-700);
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark .p-card h3 {
  color: #fff;
}
body.dark .p-card p {
  color: rgba(255, 255, 255, 0.74);
}
/* Solution cards */
body.dark .s-card {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark .s-card:hover {
  background: var(--al-navy-700);
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark .s-card h3 {
  color: #fff;
}
body.dark .s-card p {
  color: rgba(255, 255, 255, 0.74);
}
body.dark .s-card__icon {
  background: var(--al-navy-700);
  border-color: rgba(255, 255, 255, 0.1);
}
/* Trust / Proof */
body.dark .trust__paras p {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .trust__iso .iso-pill {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}
body.dark .trust__table {
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark .trust__table thead th {
  background: var(--al-navy-700);
  color: #fff;
}
body.dark .trust__table tbody tr:nth-child(odd) td {
  background: var(--al-navy-800);
}
body.dark .trust__table tbody tr:nth-child(even) td {
  background: var(--al-navy-900);
}
body.dark .trust__table td {
  color: rgba(255, 255, 255, 0.78);
  border-top-color: rgba(255, 255, 255, 0.06);
}
body.dark .trust__table td:first-child {
  color: #fff;
}
/* Related links */
body.dark .r-link {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
body.dark .r-link:hover {
  background: var(--al-navy-700);
  border-color: var(--al-orange);
  color: #fff;
}
/* FAQ */
body.dark .faq-item {
  border-top-color: rgba(255, 255, 255, 0.1);
}
body.dark .faq-item:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
body.dark .faq-item__btn {
  color: #fff;
}
body.dark .faq-item__btn:hover {
  color: var(--al-orange-300);
}
body.dark .faq-item__body {
  color: rgba(255, 255, 255, 0.78);
}
body.dark .faq-item__icon {
  border-color: rgba(255, 255, 255, 0.18);
}
