/* =========================================================
   EPX Logistics — Hero + Navbar
   ========================================================= */

/* Roc Grotesk via Fontshare (free) with a clean fallback chain */
:root {
  --epx-red: #e11f26;
  --epx-green: #6eaf47;
  --epx-light: #dadada;
  --epx-dark: #111111;
  --epx-white: #ffffff;

  --nav-h: 84px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: "Roc Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--epx-dark);
  background: var(--epx-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Prevent horizontal scroll without breaking position:sticky on descendants.
   Apply overflow-x to html only \u2014 body must remain the document's normal flow. */
html { overflow-x: clip; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  top: var(--banner-h); left: 50%;
  width: 100%;
  max-width: none;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: linear-gradient(to bottom, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0) 100%);
  border-radius: 0;
  transform: translate(-50%, 0);
  transition:
    transform 480ms var(--ease),
    top 480ms var(--ease),
    width 480ms var(--ease),
    max-width 480ms var(--ease),
    height 480ms var(--ease),
    padding 480ms var(--ease),
    border-radius 480ms var(--ease),
    background-color 380ms var(--ease),
    backdrop-filter 380ms var(--ease),
    box-shadow 480ms var(--ease);
  will-change: transform, width, top;
}

.nav.nav-hidden { transform: translate(-50%, -120%); }
.nav.nav-visible { transform: translate(-50%, 0); }

/* ===== FLOATING PILL STATE ===== */
/* Triggered when user scrolls UP after passing the hero. */
.nav.is-floating {
  top: calc(var(--banner-h) + 18px);
  width: auto;
  max-width: calc(100% - 32px);
  height: 64px;
  padding: 0 12px 0 18px;
  border-radius: 999px;
  background: rgba(17,17,17,0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 12px 28px -12px rgba(0,0,0,0.5),
    0 30px 60px -20px rgba(0,0,0,0.45);
  gap: 12px;
}
.nav.is-floating .nav-logo { height: 38px; }
.nav.is-floating nav { display: flex; align-items: center; }
.nav.is-floating .nav-links { gap: 2px; }
.nav.is-floating .nav-link {
  padding: 8px 14px;
  font-size: 13.5px;
}
.nav.is-floating .nav-link::after {
  left: 14px; right: 14px; bottom: 4px;
}

/* Once user has scrolled past hero a bit, give the bar its own surface */
.nav.is-scrolled {
  background: rgba(17,17,17,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}

/* When mega-menu is open, the nav itself flips to the light surface */
.nav.menu-open {
  background: var(--epx-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav.menu-open .nav-link,
.nav.menu-open .nav-cta-mini { color: var(--epx-dark); }

.nav-logo {
  display: flex;
  align-items: center;
  height: 56px;
  position: relative;
  z-index: 2;
}
.nav-logo img {
  height: 100%;
  width: auto;
  /* On dark hero video, use the original (already legible). On light bg same. No filter needed. */
}

/* RIGHT SIDE — links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--epx-white);
  border-radius: 10px;
  transition: color 220ms var(--ease), background-color 220ms var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  /* subtle hover underline — modern, not chunky */
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 6px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
}
.nav-link:not(.nav-trigger):hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--epx-red); }
.nav-link .caret {
  width: 10px; height: 10px;
  transition: transform 220ms var(--ease);
  opacity: 0.7;
}
.nav-trigger[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* Modern CTA — soft rounded rect, animated icon, flush hover sheen */
.nav-cta {
  --cta-bg: var(--epx-red);
  position: relative;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px 11px 20px;
  background: var(--cta-bg);
  color: var(--epx-white);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  overflow: hidden;
  isolation: isolate;
  transition: transform 280ms var(--ease), background-color 280ms var(--ease), box-shadow 280ms var(--ease), opacity 320ms var(--ease);
  /* Hidden by default — revealed once user scrolls past hero */
  opacity: 0;
  transform: translateY(-6px) scale(0.96);
  pointer-events: none;
}
.nav-cta::before {
  /* subtle gradient sheen */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 50%);
  z-index: -1;
}
.nav-cta .cta-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 280ms var(--ease), transform 320ms var(--ease);
}
.nav-cta .cta-icon svg { width: 12px; height: 12px; transition: transform 320ms var(--ease); }
.nav-cta:hover {
  background: #c41a20;
  box-shadow: 0 10px 28px -8px rgba(225,31,38,0.55);
}
.nav-cta:hover .cta-icon { background: rgba(255,255,255,0.26); }
.nav-cta:hover .cta-icon svg { transform: translateX(2px); }

/* Visible state, applied via JS once scrolled past hero */
.nav.is-past-hero .nav-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* MEGA MENU */
.mega {
  position: fixed;
  top: calc(var(--banner-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--epx-light);
  color: var(--epx-dark);
  padding: 64px 48px 80px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
  z-index: 99;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}
.mega.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.mega-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--epx-red);
  font-weight: 600;
  margin-bottom: 18px;
}
.mega-title {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 380px;
}
.mega-blurb {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(17,17,17,0.65);
  max-width: 380px;
}

.mega-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 56px;
}
.mega-col-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--epx-dark);
  border-bottom: 1px solid rgba(17,17,17,0.12);
  transition: color 200ms var(--ease), padding 220ms var(--ease);
}
.mega-col-link .arrow {
  width: 22px; height: 22px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}
.mega-col-link:hover {
  color: var(--epx-red);
  padding-left: 8px;
}
.mega-col-link:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Mega menu scrim — closes on hover/click outside */
.mega-scrim {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0);
  z-index: 98;
  pointer-events: none;
  transition: background-color 280ms var(--ease);
}
.mega-scrim.is-open {
  pointer-events: auto;
  background: rgba(17,17,17,0.35);
}

/* =========================================================
   MOBILE NAV
   ========================================================= */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.nav-burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--epx-white);
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms var(--ease), top 280ms var(--ease), background-color 200ms var(--ease);
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav.menu-open .nav-burger span,
.nav.is-scrolled .nav-burger span { background: var(--epx-white); }
.nav.menu-open.mobile-open .nav-burger span { background: var(--epx-dark); }

.nav.mobile-open .nav-burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.mobile-open .nav-burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-panel {
  position: fixed;
  top: calc(var(--banner-h) + var(--nav-h));
  left: 0; right: 0;
  bottom: 0;
  background: var(--epx-light);
  padding: 32px 32px 48px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 360ms var(--ease);
  z-index: 99;
}
.nav.mobile-open ~ .mobile-panel { transform: translateX(0); }

.mobile-section { padding: 16px 0; border-bottom: 1px solid rgba(17,17,17,0.12); }
.mobile-section-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--epx-red);
  font-weight: 600;
  margin-bottom: 12px;
}
.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--epx-dark);
}
.mobile-link:hover { color: var(--epx-red); }
.mobile-cta {
  margin-top: 32px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--epx-red);
  color: white;
  padding: 16px 18px 16px 22px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.005em;
  box-shadow: 0 14px 30px -10px rgba(225,31,38,0.5);
}
.mobile-cta .cta-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-cta .cta-icon svg { width: 14px; height: 14px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--epx-dark);
  color: var(--epx-white);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Layered overlay — vertical for text legibility, slight vignette on edges */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(17,17,17,0.78) 0%, rgba(17,17,17,0.45) 45%, rgba(17,17,17,0.25) 100%),
    linear-gradient(to top, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0) 35%);
  z-index: 1;
}

/* Faint EPX accent strip at the bottom — green for dark hero */
.hero-accent {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--epx-green) 0%, var(--epx-green) 38%, var(--epx-red) 38%, var(--epx-red) 50%, transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 24px) 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 900ms var(--ease) 200ms forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--epx-green);
}

.hero-h1 {
  max-width: 780px;
  font-size: clamp(40px, 6.2vw, 92px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: rgb(225,31,38);
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-h1 span.line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 1100ms var(--ease) forwards;
}
.hero-h1 span.line:nth-child(1) { animation-delay: 320ms; }
.hero-h1 span.line:nth-child(2) { animation-delay: 460ms; color: rgba(255,255,255,0.78); font-weight: 300; }

.hero-sub {
  max-width: 620px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1100ms var(--ease) 600ms forwards;
}

/* Floating CTA bottom-right */
.hero-cta-wrap {
  position: absolute;
  right: 48px;
  bottom: 56px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1100ms var(--ease) 800ms forwards;
}

/* Modern hero CTA — soft rounded square, contained icon tile, sheen + lift */
.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--epx-red);
  color: var(--epx-white);
  padding: 14px 16px 14px 26px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  isolation: isolate;
  overflow: hidden;
  transition: transform 320ms var(--ease), background-color 320ms var(--ease), box-shadow 320ms var(--ease);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -2px 0 rgba(0,0,0,0.18) inset,
    0 14px 30px -8px rgba(225,31,38,0.55),
    0 30px 60px -20px rgba(0,0,0,0.5);
}
.hero-cta::before {
  /* sheen */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%);
  z-index: -1;
}
.hero-cta:hover {
  background: #c41a20;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -2px 0 rgba(0,0,0,0.18) inset,
    0 22px 40px -10px rgba(225,31,38,0.6),
    0 40px 70px -20px rgba(0,0,0,0.55);
}
.hero-cta .icon-circle {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 280ms var(--ease), transform 320ms var(--ease);
}
.hero-cta .icon-circle svg { transition: transform 320ms var(--ease); }
.hero-cta:hover .icon-circle { background: rgba(255,255,255,0.26); }
.hero-cta:hover .icon-circle svg { transform: translateX(3px); }
.hero-cta svg { width: 16px; height: 16px; }

/* Scroll cue, bottom-left */
.scroll-cue {
  position: absolute;
  left: 48px;
  bottom: 56px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  animation: rise 900ms var(--ease) 1000ms forwards;
}
.scroll-cue .line {
  width: 56px; height: 1px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--epx-white);
  transform: translateX(-100%);
  animation: cue 2400ms ease-in-out infinite;
}

/* Region tags floating on the right edge */
.hero-regions {
  position: absolute;
  right: 48px;
  top: calc(var(--nav-h) + 32px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  opacity: 0;
  animation: rise 1000ms var(--ease) 900ms forwards;
}
.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.region-tag .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--epx-green);
  box-shadow: 0 0 0 4px rgba(110,175,71,0.18);
}
.region-tag--planned .dot {
  background: var(--epx-red);
  box-shadow: 0 0 0 4px rgba(225,31,38,0.18);
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cue {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* =========================================================
   TRUSTED BY — dual opposing logo marquees
   ========================================================= */
.trusted {
  position: relative;
  background: #fff;
  color: var(--epx-dark);
  padding: 160px 0 180px;
  overflow: hidden;
}

.trusted-head {
  max-width: 1280px;
  margin: 0 auto 96px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.trusted-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-red);
}
.trusted-eyebrow::before {
  content: "";
  width: 36px; height: 2px;
  background: var(--epx-red);
}

.trusted-title {
  margin-top: 24px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--epx-dark);
  max-width: 640px;
  text-wrap: balance;
}
.trusted-title em {
  font-style: normal;
  color: rgba(17,17,17,0.45);
  font-weight: 300;
}

.trusted-meta {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(17,17,17,0.62);
  max-width: 420px;
  justify-self: end;
}
.trusted-meta strong {
  display: block;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--epx-dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* Marquee rails */
.marquee-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* fade out the edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 64px;
  padding: 12px 0;
  animation: marquee-l 90s linear infinite;
  will-change: transform;
  contain: layout style;
}
.marquee--reverse .marquee-track {
  animation-name: marquee-r;
  animation-duration: 105s;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-l {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes marquee-r {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  padding: 0 28px;
  transition: filter 300ms var(--ease), transform 280ms var(--ease);
}
.brand:hover {
  transform: translateY(-5px);
}
.brand img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .trusted { padding: 120px 0 140px; }
  .trusted-head {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 28px;
    margin-bottom: 72px;
  }
  .trusted-meta { justify-self: start; }
}
@media (max-width: 768px) {
  .trusted { padding: 96px 0 112px; }
  .trusted-head { padding: 0 24px; margin-bottom: 56px; }
  .trusted-meta strong { font-size: 36px; }
  .brand { height: 68px; padding: 0 20px; }
  .brand img { height: 40px; max-width: 150px; }
  .marquee-stack { gap: 20px; }
  .marquee-track { gap: 40px; }
}

/* =========================================================
   SERVICES — sticky head left, vertical column of cards right
   The page scrolls normally; the head stays pinned via position:sticky
   while the user scrolls past the right column.
   ========================================================= */
.services {
  position: relative;
  background: var(--epx-dark);
  color: var(--epx-white);
  padding: 160px 0 200px;
}

.services-stage {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-green);
}
.services-eyebrow::before {
  content: "";
  width: 36px; height: 2px;
  background: var(--epx-green);
}
.services-title {
  margin-top: 24px;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--epx-white);
  text-wrap: balance;
}
.services-title em {
  font-style: normal;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.services-blurb {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
  max-width: 420px;
  justify-self: end;
}

/* 3×3 grid of cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 340px;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--epx-white);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), border-color 320ms var(--ease);
}
.service-card.is-in {
  opacity: 1;
  transform: translateY(0);
}
/* dark gradient overlay */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
  transition: background 400ms var(--ease);
}
.service-card:hover {
  border-color: rgba(110,175,71,0.4);
}
.service-card:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.58) 50%, rgba(0,0,0,0.32) 100%);
}

/* background image */
.service-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.service-card:hover .service-bg img {
  transform: scale(1.05);
}

/* content sits above overlay */
.service-body,
.service-foot {
  position: relative;
  z-index: 2;
}
.service-title {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--epx-green);
  margin-bottom: 14px;
  text-wrap: balance;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.service-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  text-wrap: pretty;
}
.service-foot {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.service-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgb(255, 255, 255);
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--epx-white);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 280ms var(--ease), border-color 280ms var(--ease), transform 280ms var(--ease);
}
.service-cta svg {
  width: 14px; height: 14px;
  transition: transform 280ms var(--ease);
}
.service-cta:hover {
  background: var(--epx-green);
  border-color: var(--epx-green);
  transform: translateY(-1px);
}
.service-cta:hover svg { transform: translateX(3px); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
  .services-blurb { justify-self: start; max-width: 560px; }
}
@media (max-width: 900px) {
  .services { padding: 100px 0 120px; }
  .services-stage { padding: 0 28px; }
  .service-card { padding: 28px; min-height: 260px; }
}
@media (max-width: 600px) {
  .services { padding: 80px 0 100px; }
  .services-stage { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-head { margin-bottom: 40px; }
  .service-card { padding: 24px; min-height: 280px; border-radius: 20px; }
  .service-title { font-size: 22px; }
  .service-desc { font-size: 14px; }
  .service-cta { padding: 11px 16px; font-size: 13px; }
}

/* =========================================================
   NUMBERS — light section, 3×2 grid, red accent.
   Cards adopt the Services card vocabulary (24px radius,
   soft gradient, 1px hairline, 44px padding, numbered head
   row, icon tile) — but inverted for a light background.
   ========================================================= */
.numbers {
  position: relative;
  background: #fff;
  color: var(--epx-dark);
  padding: 160px 0 180px;
  overflow: hidden;
}
.numbers::before {
  /* glow removed per request */
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.numbers-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ---------- Header ---------- */
.numbers-head {
  margin-bottom: 64px;
  max-width: 1100px;
}
.numbers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-red);
  margin-bottom: 24px;
}
.numbers-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--epx-red);
  box-shadow: 0 0 0 0 rgba(225,31,38,0.5);
  animation: stat-pulse 1.6s ease-out infinite;
}
@keyframes stat-pulse {
  0% { box-shadow: 0 0 0 0 rgba(225,31,38,0.5); }
  100% { box-shadow: 0 0 0 12px rgba(225,31,38,0); }
}
.numbers-headline {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.numbers-title {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.numbers-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(17,17,17,0.4);
}
.numbers-blurb {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17,17,17,0.6);
  max-width: 44ch;
  margin: 0;
  padding-bottom: 8px;
  text-wrap: pretty;
}

/* ---------- 3×2 Grid ---------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Stat card — Services vocabulary, light variant ---------- */
.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border: 1px solid rgba(17,17,17,0.08);
  color: var(--epx-dark);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), border-color 320ms var(--ease), background-color 320ms var(--ease), box-shadow 320ms var(--ease);
}
.stat-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.stat-card::before {
  /* red glow that mirrors green on services */
  content: "";
  position: absolute;
  top: -30%; right: -30%;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,31,38,0.16) 0%, rgba(225,31,38,0) 70%);
  opacity: 0;
  transition: opacity 600ms var(--ease);
  z-index: -1;
}
.stat-card:hover {
  border-color: rgba(225,31,38,0.4);
  box-shadow: 0 12px 30px -16px rgba(17,17,17,0.18);
}
.stat-card:hover::before { opacity: 1; }

/* Head row — index + icon tile */
.stat-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.stat-num-idx {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  font-variant-numeric: tabular-nums;
  color: rgba(17,17,17,0.4);
  padding-top: 18px;
}
.stat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,31,38,0.10);
  color: var(--epx-red);
  flex-shrink: 0;
  transition: background-color 320ms var(--ease), color 320ms var(--ease);
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-card:hover .stat-icon {
  background: var(--epx-red);
  color: #fff;
}

/* Big counter */
.stat-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--epx-dark);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.stat-value, .stat-suffix {
  font-size: clamp(52px, 4.8vw, 72px);
  font-weight: 600;
}
.stat-suffix { color: var(--epx-red); }

.stat-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--epx-dark);
  margin-bottom: 8px;
  text-wrap: balance;
}
.stat-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17,17,17,0.6);
  text-wrap: pretty;
  max-width: 44ch;
}

/* Foot — tag pill + magnitude bar */
.stat-foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(17,17,17,0.55);
  padding: 7px 12px;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
}

/* ---------- Card 06 — Footprint per country ---------- */
.stat-card--footprint .stat-num { margin-bottom: 6px; }
.stat-countries {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat-country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(17,17,17,0.05);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.sc-flag {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.stat-country-card .sc-num {
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--epx-dark);
  line-height: 1;
}
.stat-country-card .sc-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(17,17,17,0.6);
}

@media (max-width: 1080px) {
  .numbers { padding: 120px 0 140px; }
  .numbers-inner { padding: 0 32px; }
  .numbers-headline { grid-template-columns: 1fr; gap: 24px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 32px; min-height: 320px; }
}
@media (max-width: 768px) {
  .numbers { padding: 90px 0 110px; }
  .numbers-inner { padding: 0 24px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 28px; min-height: 300px; border-radius: 20px; }
  .stat-icon { width: 48px; height: 48px; border-radius: 12px; }
  .stat-icon svg { width: 22px; height: 22px; }
  .stat-value, .stat-suffix { font-size: clamp(48px, 13vw, 72px); }
  .stat-country { grid-template-columns: 80px 1fr 28px; gap: 10px; }
}

@media (max-width: 1080px) {
  .hero-regions { display: none; }
  .nav { padding: 0 28px; }
  .hero-content { padding-left: 28px; padding-right: 28px; }
  .hero-cta-wrap { right: 28px; }
  .scroll-cue { left: 28px; }
  .mega { padding-left: 28px; padding-right: 28px; }
  .mega-inner { grid-template-columns: 1fr; gap: 40px; }
  .mega-cols { grid-template-columns: 1fr; }
  .mega-title { font-size: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .nav-logo { height: 42px; }

  /* Disable floating pill on mobile \u2014 nav stays full-width */
  .nav.is-floating {
    top: 0;
    width: 100%;
    max-width: none;
    height: var(--nav-h);
    border-radius: 0;
    padding: 0 24px;
  }
  .nav.is-floating .nav-logo { height: 42px; }

  .hero { min-height: 560px; }
  .hero-content { padding: calc(var(--nav-h) + 16px) 24px 140px; }
  .hero-h1 { font-size: clamp(36px, 11vw, 56px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-cta-wrap { left: 24px; right: 24px; bottom: 32px; justify-content: space-between; }
  .scroll-cue { display: none; }
  .hero-cta { padding: 16px 20px 16px 24px; font-size: 14px; flex: 1; justify-content: center; }
  .hero-cta .icon-circle { width: 30px; height: 30px; }
}


/* =========================================================
   LOCATIONS — stylized map + country tabs + site list
   ========================================================= */
.locations {
  position: relative;
  background: #fff;
  color: var(--epx-dark);
  padding: 160px 0 180px;
  overflow: hidden;
}
.locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.loc-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ---- Header ---- */
.loc-head { margin-bottom: 56px; }
.loc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-red);
  margin-bottom: 24px;
}
.loc-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--epx-red);
  box-shadow: 0 0 0 0 rgba(225,31,38,0.5);
  animation: stat-pulse 1.6s ease-out infinite;
}
.loc-headline {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.loc-title {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.loc-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(17,17,17,0.4);
}
.loc-blurb {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17,17,17,0.6);
  max-width: 44ch;
  margin: 0;
  padding-bottom: 8px;
  text-wrap: pretty;
}

/* ---- Country tabs ---- */
.loc-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.loc-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 14px;
  color: var(--epx-dark);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background-color 280ms var(--ease), border-color 280ms var(--ease), transform 280ms var(--ease);
}
.loc-tab:hover {
  background: #ffffff;
  border-color: rgba(17,17,17,0.18);
}
.loc-tab.is-active {
  background: rgba(225,31,38,0.06);
  border-color: rgba(225,31,38,0.5);
}
.loc-tab--soon {
  border-style: dashed;
  border-color: rgba(225,31,38,0.4);
  background: rgba(225,31,38,0.03);
}
.loc-tab--soon:hover {
  border-color: rgba(225,31,38,0.65);
  background: rgba(225,31,38,0.06);
}
.loc-tab-flag {
  width: 36px; height: 26px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(17,17,17,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17,17,17,0.10);
}
.loc-tab-flag img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.loc-tab-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 1;
  min-width: 0;
}
.loc-tab-count {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(17,17,17,0.5);
  font-variant-numeric: tabular-nums;
}
.loc-tab.is-active .loc-tab-count { color: var(--epx-red); }
.loc-tab--soon .loc-tab-count { color: rgba(225,31,38,0.85); }

/* ---- Stage: map + list ---- */
.loc-stage {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 20px;
}

/* ---- Map panel ---- */
.loc-map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(225,31,38,0.04), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border: 1px solid rgba(17,17,17,0.08);
  min-height: 540px;
}
.loc-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
}
.loc-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.loc-map-meta {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 12px 30px -10px rgba(17,17,17,0.25);
}

/* ---- Leaflet overrides ---- */
.loc-leaflet-pin {
  overflow: visible !important;
  background: none !important;
  border: none !important;
}
.loc-leaflet-pin .loc-pin-marker {
  display: block;
  position: relative;
  cursor: pointer;
  transition: transform 220ms var(--ease);
}
.loc-leaflet-pin .loc-pin-marker:hover { transform: scale(1.12); }
.loc-leaflet-pin .loc-pin-logo {
  position: absolute;
  top: 15px; left: 65%;
  transform: translateX(-50%);
  width: 20px; height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-leaflet-pin .loc-pin-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.loc-leaflet-pin.pin-pulse .loc-pin-marker {
  animation: pin-pulse 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pin-pulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.loc-leaflet-tooltip {
  background: rgba(17,17,17,0.88) !important;
  border: none !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  padding: 5px 10px !important;
  box-shadow: 0 4px 14px rgba(17,17,17,0.25) !important;
  white-space: nowrap !important;
}
.loc-leaflet-tooltip::before { display: none !important; }
/* Zoom control */
#loc-map .leaflet-control-zoom {
  border: 1px solid rgba(17,17,17,0.12) !important;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(17,17,17,0.10) !important;
}
#loc-map .leaflet-control-zoom a {
  color: rgba(17,17,17,0.75) !important;
  font-weight: 600 !important;
  background: #fff !important;
  border-bottom: 1px solid rgba(17,17,17,0.08) !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
}
#loc-map .leaflet-control-zoom a:hover {
  background: rgba(225,31,38,0.06) !important;
  color: var(--epx-red) !important;
}
#loc-map .leaflet-control-zoom-out { border-bottom: none !important; }
/* Attribution */
#loc-map .leaflet-control-attribution {
  background: rgba(255,255,255,0.7) !important;
  font-size: 10px !important;
  backdrop-filter: blur(4px);
}
/* Site ID badge (replaces sqm) */
.loc-site-id {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  color: rgba(17,17,17,0.38) !important;
  text-transform: uppercase;
}
.loc-map-meta-name {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-red);
  margin-bottom: 4px;
}
.loc-map-meta-sub {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
}
.loc-map-frame.is-soon::after {
  /* Dashed treatment overlay */
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px dashed rgba(225,31,38,0.35);
  border-radius: 16px;
  pointer-events: none;
}

/* ---- Connecting lines ---- */
.loc-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.loc-lines-path {
  stroke-dashoffset: 0;
  animation: loc-line-flow 14s linear infinite;
  filter: drop-shadow(0 0 6px rgba(225,31,38,0.18));
}
@keyframes loc-line-flow {
  to { stroke-dashoffset: -40; }
}

/* ---- Pins ---- */
.loc-pins {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.loc-pin {
  position: absolute;
  width: 0; height: 0;
  pointer-events: auto;
  opacity: 0;
  transform: translate(-50%, -100%) translateY(-12px);
  transition: opacity 480ms var(--ease), transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.loc-pin.is-in {
  opacity: 1;
  transform: translate(-50%, -100%) translateY(0);
}
.loc-pin-marker {
  position: relative;
  display: block;
  width: 40px; height: 52px;
  filter: drop-shadow(0 4px 8px rgba(17,17,17,0.25));
  cursor: pointer;
  transition: transform 220ms var(--ease);
}
.loc-pin-marker:hover { transform: scale(1.12); }
.loc-pin-marker svg { display: block; }
.loc-pin-logo {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.loc-pin-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.loc-pin-shadow {
  position: absolute;
  left: 50%; bottom: -52px;
  transform: translateX(-50%);
  width: 28px; height: 6px;
  background: radial-gradient(ellipse, rgba(17,17,17,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
/* Tooltip on hover */
.loc-pin::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--epx-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}
.loc-pin:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Site list ---- */
.loc-list {
  position: relative;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.08);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  height: 540px;
  overflow: hidden;
}
.loc-list-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}
.loc-list-count {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--epx-red);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.loc-list-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(17,17,17,0.55);
}
.loc-site-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(17,17,17,0.15) transparent;
}
.loc-site-list::-webkit-scrollbar {
  width: 4px;
}
.loc-site-list::-webkit-scrollbar-track {
  background: transparent;
}
.loc-site-list::-webkit-scrollbar-thumb {
  background: rgba(17,17,17,0.15);
  border-radius: 2px;
}
.loc-site-list::-webkit-scrollbar-thumb:hover {
  background: rgba(17,17,17,0.28);
}
.loc-site {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(17,17,17,0.06);
  transition: background-color 220ms var(--ease);
}
.loc-site:last-child { border-bottom: none; }
.loc-site:hover { background-color: rgba(17,17,17,0.025); }
.loc-site.is-selected {
  background-color: rgba(225,31,38,0.05);
  border-radius: 8px;
}
.loc-site.is-selected .loc-site-city { color: var(--epx-red); }
.loc-site { cursor: pointer; }
.loc-site-idx {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(17,17,17,0.35);
  font-variant-numeric: tabular-nums;
}
.loc-site-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.loc-site-city {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--epx-dark);
}
.loc-site-type {
  font-size: 12px;
  color: rgba(17,17,17,0.55);
  letter-spacing: 0.02em;
}
.loc-site-sqm {
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--epx-dark);
  letter-spacing: -0.01em;
}
.loc-site-sqm em {
  font-style: normal;
  font-size: 10px;
  color: rgba(17,17,17,0.4);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 2px;
}
.loc-site.is-soon .loc-site-sqm {
  color: rgba(225,31,38,0.85);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.loc-soon-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  background: rgba(225,31,38,0.06);
  border: 1px dashed rgba(225,31,38,0.4);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(17,17,17,0.78);
  text-wrap: pretty;
}
.loc-site-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 6px;
  color: rgba(17,17,17,0.3);
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
  flex-shrink: 0;
}
.loc-site-map:hover {
  color: var(--epx-red);
  background: rgba(225,31,38,0.08);
}
.loc-site-map:focus-visible {
  outline: 2px solid var(--epx-red);
  outline-offset: 2px;
  color: var(--epx-red);
}
.loc-site-map::after {
  content: "Open in Maps";
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
}
.loc-site-map:hover::after,
.loc-site-map:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .locations { padding: 120px 0 140px; }
  .loc-inner { padding: 0 32px; }
  .loc-headline { grid-template-columns: 1fr; gap: 24px; }
  .loc-tabs { grid-template-columns: repeat(2, 1fr); }
  .loc-stage { grid-template-columns: 1fr; }
  .loc-map { min-height: 420px; }
  .loc-map-frame { min-height: 420px; }
  .loc-list { height: 420px; }
}
@media (max-width: 768px) {
  .locations { padding: 90px 0 110px; }
  .loc-inner { padding: 0 24px; }
  .loc-tabs { grid-template-columns: 1fr; }
  .loc-tab { padding: 14px 18px; }
  .loc-list { padding: 22px 22px 24px; height: 380px; }
  .loc-list-count { font-size: 38px; }
}

/* =========================================================
   INDUSTRIES — dark section, two-card pill layout
   ========================================================= */
.industries {
  position: relative;
  background: var(--epx-dark);
  color: #fff;
  padding: 160px 0 180px;
  overflow: hidden;
}
.industries::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(110,175,71,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 85%, rgba(225,31,38,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ind-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ---- Header ---- */
.ind-head {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px 80px;
  align-items: end;
}
.ind-eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-green);
  margin-bottom: -8px;
}
.ind-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--epx-green);
  box-shadow: 0 0 0 0 rgba(110,175,71,0.5);
  animation: stat-pulse 1.6s ease-out infinite;
}
.ind-title {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.ind-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
}
.ind-blurb {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 44ch;
  margin: 0;
  padding-bottom: 8px;
  text-wrap: pretty;
}

/* ---- Grid: stacked cards, full-width ---- */
.ind-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ind-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 44px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: border-color 280ms var(--ease), background-color 280ms var(--ease);
  isolation: isolate;
}
.ind-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms var(--ease);
  z-index: -1;
}
.ind-card--health::before {
  background: radial-gradient(ellipse 80% 70% at 0% 0%, rgba(225,31,38,0.10), transparent 60%);
}
.ind-card--non::before {
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(110,175,71,0.10), transparent 60%);
}
.ind-card:hover { border-color: rgba(255,255,255,0.14); }
.ind-card:hover::before { opacity: 1; }

.ind-card-head { display: flex; flex-direction: column; gap: 14px; }
.ind-card-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ind-card-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
}
.ind-card-line::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 36px; height: 1px;
}
.ind-card-line--red::after  { background: var(--epx-red);   box-shadow: 0 0 8px rgba(225,31,38,0.6); }
.ind-card-line--green::after { background: var(--epx-green); box-shadow: 0 0 8px rgba(110,175,71,0.6); }

.ind-card-title {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1;
  margin: 0;
  color: #fff;
}
.ind-card-sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 36ch;
  text-wrap: pretty;
}

/* ---- Pills ---- */
.ind-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ind-pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
  border: 1px solid;
  min-width: 0;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}
.ind-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ind-pills--red li {
  background: rgba(225,31,38,0.08);
  border-color: rgba(225,31,38,0.30);
  color: rgba(255,255,255,0.92);
}
.ind-pills--red li:hover {
  background: rgba(225,31,38,0.16);
  border-color: rgba(225,31,38,0.55);
  transform: translateY(-1px);
}
.ind-pills--red .ind-pill-dot {
  background: var(--epx-red);
  box-shadow: 0 0 8px rgba(225,31,38,0.55);
}

.ind-pills--green li {
  background: rgba(110,175,71,0.08);
  border-color: rgba(110,175,71,0.30);
  color: rgba(255,255,255,0.92);
}
.ind-pills--green li:hover {
  background: rgba(110,175,71,0.16);
  border-color: rgba(110,175,71,0.55);
  transform: translateY(-1px);
}
.ind-pills--green .ind-pill-dot {
  background: var(--epx-green);
  box-shadow: 0 0 8px rgba(110,175,71,0.55);
}

@media (max-width: 1080px) {
  .industries { padding: 120px 0 140px; }
  .ind-inner { padding: 0 32px; }
  .ind-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .ind-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 32px 40px;
  }
  .ind-pills { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .industries { padding: 90px 0 110px; }
  .ind-inner { padding: 0 24px; }
  .ind-card { padding: 28px 22px 32px; gap: 24px; }
  .ind-pills { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ind-pills li { font-size: 12px; padding: 10px 14px 10px 12px; }
}

/* =========================================================
   TECHNOLOGY — light section, full-width media tiles
   ========================================================= */
.tech {
  position: relative;
  background: #fff;
  color: var(--epx-dark);
  padding: 160px 0 180px;
  overflow: hidden;
}
.tech-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ---- Header ---- */
.tech-head {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px 80px;
  align-items: end;
}
.tech-eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-red);
  margin-bottom: -8px;
}
.tech-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--epx-red);
  box-shadow: 0 0 0 0 rgba(225,31,38,0.5);
  animation: stat-pulse 1.6s ease-out infinite;
}
.tech-title {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.tech-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(17,17,17,0.42);
}
.tech-blurb {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17,17,17,0.6);
  max-width: 44ch;
  margin: 0;
  padding-bottom: 8px;
  text-wrap: pretty;
}

/* ---- Stack of tiles ---- */
.tech-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- Individual tile (full width, media bg + overlay) ---- */
.tech-tile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: 0 18px 40px -20px rgba(17,17,17,0.18);
  transition: transform 480ms var(--ease), box-shadow 480ms var(--ease);
}
.tech-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -22px rgba(17,17,17,0.28);
}

/* Media bg layer */
.tech-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tech-bg-media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
}
.tech-tile:hover .tech-bg-media { transform: scale(1.08); }

/* Veil — gradient from dark-left to transparent-right so the text panel is legible */
.tech-bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,0.86) 0%, rgba(17,17,17,0.66) 38%, rgba(17,17,17,0.18) 70%, rgba(17,17,17,0.05) 100%),
    linear-gradient(180deg, rgba(17,17,17,0.30) 0%, rgba(17,17,17,0.05) 60%, rgba(17,17,17,0.45) 100%);
}

/* Body sits over the dark side */
.tech-tile-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #fff;
}

.tech-tile-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tech-tile-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.tech-tile-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--epx-red) 0%, var(--epx-red) 36px, rgba(255,255,255,0.18) 36px, rgba(255,255,255,0.18) 100%);
  min-width: 80px;
  max-width: 200px;
  box-shadow: 0 0 8px rgba(225,31,38,0.4);
}
.tech-tile-flag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-red);
  padding: 6px 10px;
  border: 1px solid rgba(225,31,38,0.45);
  background: rgba(225,31,38,0.10);
  border-radius: 999px;
  white-space: nowrap;
}

.tech-tile-title {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.02;
  margin: 0;
  color: #fff;
  text-wrap: balance;
  max-width: 620px;
}
.tech-tile-blurb {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 56ch;
  text-wrap: pretty;
}

.tech-tile-stats {
  list-style: none;
  margin: 12px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 620px;
}
.tech-tile-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tech-tile-stats strong {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.tech-tile-stats span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.tech-tile-watch-cta {
  align-self: flex-end;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--epx-red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease, transform 150ms ease;
}

.tech-tile-watch-cta:hover {
  background: #c41920;
  transform: scale(1.03);
}

@media (max-width: 1080px) {
  .tech { padding: 120px 0 140px; }
  .tech-inner { padding: 0 32px; }
  .tech-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .tech-tile { min-height: 360px; }
  .tech-tile-body { padding: 40px 36px; }
  .tech-tile-title { max-width: 480px; }
  .tech-tile-stats { max-width: 480px; }
  .tech-bg-veil {
    background:
      linear-gradient(180deg, rgba(17,17,17,0.78) 0%, rgba(17,17,17,0.55) 50%, rgba(17,17,17,0.45) 100%);
  }
}
@media (max-width: 768px) {
  .tech { padding: 90px 0 110px; }
  .tech-inner { padding: 0 24px; }
  .tech-tile { min-height: 320px; }
  .tech-tile-body { padding: 28px 22px; gap: 16px; }
  .tech-tile-title { max-width: 100%; }
  .tech-tile-stats { max-width: 100%; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .tech-tile-stats strong { font-size: 22px; }
  .tech-tile-stats span { font-size: 10px; letter-spacing: 0.12em; }
  .tech-tile-watch-cta { align-self: flex-start; margin-top: 4px; }
}

/* =========================================================
   AUTOMATION: LOGISTICS WITH A PULSE */
.automation-section {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid rgba(17,17,17,0.08);
}

.automation-head {
  margin-bottom: 40px;
}

.automation-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-red);
  margin-bottom: 14px;
}
.automation-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--epx-red);
  box-shadow: 0 0 0 0 rgba(225,31,38,0.5);
  animation: stat-pulse 1.6s ease-out infinite;
}

.automation-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--epx-dark);
  margin: 0;
  text-wrap: balance;
}

.automation-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1080px) {
  .automation-section { margin-top: 60px; padding-top: 60px; }
  .automation-head { margin-bottom: 32px; }
}

@media (max-width: 768px) {
  .automation-section { margin-top: 40px; padding-top: 40px; }
  .automation-head { margin-bottom: 24px; }
}

/* =========================================================
   SUSTAINABILITY — light section, 4-col card grid + certs
   ========================================================= */
.sust {
  position: relative;
  background: #fff;
  color: var(--epx-dark);
  padding: 160px 0 180px;
  overflow: hidden;
}
.sust-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ---- Header ---- */
.sust-head {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px 80px;
  align-items: end;
}
.sust-eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-green);
  margin-bottom: -8px;
}
.sust-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--epx-green);
  box-shadow: 0 0 0 0 rgba(110,175,71,0.5);
  animation: stat-pulse 1.6s ease-out infinite;
}
.sust-title {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.sust-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--epx-green);
  opacity: 0.85;
}
.sust-blurb {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17,17,17,0.6);
  max-width: 44ch;
  margin: 0;
  padding-bottom: 8px;
  text-wrap: pretty;
}

/* ---- Card grid ---- */
.sust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.sust-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 18px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 320px;
  transition: border-color 280ms var(--ease), transform 280ms var(--ease), box-shadow 280ms var(--ease);
  isolation: isolate;
}
.sust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(110,175,71,0.08), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
  z-index: -1;
}
.sust-card:hover {
  border-color: rgba(110,175,71,0.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -16px rgba(17,17,17,0.18);
}
.sust-card:hover::before { opacity: 1; }

.sust-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(110,175,71,0.10);
  border: 1px solid rgba(110,175,71,0.25);
  color: var(--epx-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sust-icon svg { width: 36px; height: 36px; }

.sust-body { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sust-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(17,17,17,0.4);
  font-variant-numeric: tabular-nums;
}
.sust-card-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin: 0;
  color: var(--epx-dark);
  text-wrap: balance;
}
.sust-card-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17,17,17,0.62);
  margin: 0;
  text-wrap: pretty;
}
.sust-card-text strong {
  color: var(--epx-dark);
  font-weight: 600;
}
.sust-tag {
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-green);
  padding: 6px 10px;
  border: 1px solid rgba(110,175,71,0.30);
  background: rgba(110,175,71,0.06);
  border-radius: 999px;
  margin-top: auto;
}

/* ---- Certifications — featured panel ---- */
.sust-certs-panel {
  position: relative;
  margin-top: 24px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(110,175,71,0.08), transparent 60%),
    linear-gradient(180deg, #1a2418 0%, #111811 100%);
  color: #fff;
  padding: 64px 56px 56px;
  overflow: hidden;
  isolation: isolate;
}
.sust-certs-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}
.sust-certs-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.sust-certs-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.sust-certs-line {
  width: 40px; height: 2px;
  background: var(--epx-green);
  box-shadow: 0 0 6px rgba(110,175,71,0.55);
}
.sust-certs-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-green);
}
.sust-certs-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}
.sust-certs-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(246,245,241,0.72);
}
.sust-certs-blurb {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(246,245,241,0.6);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}
.sust-cert-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* A final row holding a single card sits centred, not hanging left. */
.sust-cert-list > .sust-cert:last-child:nth-child(3n + 1) {
  grid-column: 2;
}
.sust-cert {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  color: #fff;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), background 240ms var(--ease);
}
.sust-cert:hover {
  border-color: rgba(110,175,71,0.45);
  background: rgba(110,175,71,0.06);
  transform: translateY(-2px);
}
.sust-cert-seal {
  width: 76px; height: 76px;
  flex-shrink: 0;
  color: var(--epx-green);
  filter: drop-shadow(0 0 14px rgba(110,175,71,0.20));
}
.sust-cert-seal svg { width: 100%; height: 100%; display: block; }
.sust-cert-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sust-cert-kicker {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-green);
}
.sust-cert-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.008em;
  line-height: 1.25;
  color: #fff;
  text-wrap: balance;
}
.sust-cert-name sup {
  font-size: 9px;
  vertical-align: super;
  font-weight: 500;
}
.sust-cert-sub {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(246,245,241,0.5);
  margin-top: 2px;
}

/* Gold (EcoVadis) */
.sust-cert--gold .sust-cert-seal   { color: #d4a83a; filter: drop-shadow(0 0 14px rgba(212,168,58,0.30)); }
.sust-cert--gold .sust-cert-kicker { color: #d4a83a; }
.sust-cert--gold {
  background: linear-gradient(180deg, rgba(212,168,58,0.08) 0%, rgba(212,168,58,0.02) 100%);
  border-color: rgba(212,168,58,0.32);
}

/* Platinum (Roche) */
.sust-cert--platinum .sust-cert-seal   { color: #cdd4d8; filter: drop-shadow(0 0 14px rgba(205,212,216,0.25)); }
.sust-cert--platinum .sust-cert-kicker { color: #cdd4d8; }
.sust-cert--platinum {
  background: linear-gradient(180deg, rgba(205,212,216,0.07) 0%, rgba(205,212,216,0.02) 100%);
  border-color: rgba(205,212,216,0.30);
}

@media (max-width: 1180px) {
  .sust-grid { grid-template-columns: repeat(2, 1fr); }
  .sust-cert-list { grid-template-columns: repeat(2, 1fr); }
  .sust-cert-list > .sust-cert:last-child:nth-child(3n + 1) { grid-column: auto; }
  .sust-cert-list > .sust-cert:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }
}
@media (max-width: 1080px) {
  .sust { padding: 120px 0 140px; }
  .sust-inner { padding: 0 32px; }
  .sust-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .sust-certs-panel { padding: 48px 36px 40px; }
}
@media (max-width: 768px) {
  .sust { padding: 90px 0 110px; }
  .sust-inner { padding: 0 24px; }
  .sust-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 56px; }
  .sust-cert-list { grid-template-columns: 1fr; }
  .sust-cert-list > .sust-cert:last-child:nth-child(2n + 1) {
    grid-column: auto;
    width: auto;
  }
  .sust-card { min-height: auto; padding: 24px 22px; }
  .sust-certs-panel { padding: 36px 24px 32px; border-radius: 20px; }
  .sust-cert { padding: 18px; }
  .sust-cert-seal { width: 64px; height: 64px; }
}

/* =========================================================
   FOOTER — dark, brand + columns + wordmark + socials
   ========================================================= */
.footer {
  position: relative;
  background: #0a0d0a;
  color: rgba(246,245,241,0.7);
  padding: 120px 0 36px;
  overflow: hidden;
  isolation: isolate;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(110,175,71,0.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(225,31,38,0.06), transparent 60%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 30%, #000 30%, transparent 80%);
  z-index: -1;
  pointer-events: none;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ----- Top: brand + 4 cols ----- */
.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 28px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
}
.footer-logo img { height: 44px; width: auto; display: block; }
.footer-tagline {
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}

.footer-news { display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.footer-news-label {
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-green);
}
.footer-news-row {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: border-color 220ms var(--ease);
}
.footer-news-row:focus-within { border-color: var(--epx-green); }
.footer-news-row input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font: inherit;
  font-size: 14px;
  padding: 12px 14px;
}
.footer-news-row input::placeholder { color: rgba(246,245,241,0.4); }
.footer-news-row button {
  flex-shrink: 0;
  width: 48px;
  background: var(--epx-green);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 220ms var(--ease);
}
.footer-news-row button:hover { background: #5a9a39; }
.footer-news-row button svg { width: 18px; height: 18px; }

/* ----- Columns ----- */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-h {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(246,245,241,0.45);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 200ms var(--ease), padding-left 220ms var(--ease);
  display: inline-block;
}
.footer-col a:hover { color: var(--epx-green); padding-left: 4px; }

.footer-contact { gap: 16px; }
.footer-contact li {
  display: flex; flex-direction: column; gap: 2px;
}
.footer-contact-k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(246,245,241,0.4);
}
.footer-contact-v {
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 200ms var(--ease);
}
a.footer-contact-v:hover { color: var(--epx-green); }

/* ----- Socials — icon-only row ----- */
.footer-socials {
  list-style: none;
  margin: 4px 0 0; padding: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.025);
  color: #fff;
  text-decoration: none;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease), transform 200ms var(--ease), color 200ms var(--ease);
}
.footer-socials a svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-socials a:hover {
  border-color: var(--epx-green);
  background: rgba(110,175,71,0.12);
  color: var(--epx-green);
  transform: translateY(-2px);
}

/* ----- Base bar ----- */
.footer-base {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  color: rgba(246,245,241,0.5);
}
.footer-base-l { display: flex; align-items: center; gap: 8px; }
.footer-base-sep { opacity: 0.5; }
.footer-base-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1180px) {
  .footer-top { grid-template-columns: 1fr; gap: 56px; }
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}
@media (max-width: 768px) {
  .footer { padding: 80px 0 28px; }
  .footer-inner { padding: 0 24px; }
  .footer-top { padding-bottom: 56px; gap: 40px; }
  .footer-base { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .footer-base-r { justify-content: flex-start; }
  .footer-base-links { flex-wrap: wrap; gap: 12px 18px; }
  .footer-offices-row-inner { grid-template-columns: 1fr; }
}

/* =========================================================
   ANNOUNCEMENT BANNER
   ========================================================= */
:root {
  --banner-h: 48px;
}

.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-h);
  z-index: 200;
  background: linear-gradient(90deg, #1a0a0b 0%, #2d0b0e 40%, #1c1c1c 100%);
  border-bottom: 1px solid rgba(225, 31, 38, 0.35);
  display: flex;
  align-items: center;
  transition: transform 380ms cubic-bezier(.22,.61,.36,1), opacity 380ms ease;
  will-change: transform;
}

.announcement-banner.announcement-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  overflow: hidden;
}

.announcement-badge {
  flex-shrink: 0;
  background: var(--epx-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  line-height: 1.4;
}

.announcement-text {
  flex: 1;
  color: rgba(218, 218, 218, 0.9);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-text strong {
  color: #fff;
  font-weight: 600;
}

.announcement-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.announcement-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--epx-red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 200ms ease, transform 150ms ease;
  white-space: nowrap;
}

.announcement-cta:hover {
  background: #c41920;
  transform: scale(1.03);
}

.announcement-cta svg {
  transition: transform 200ms ease;
}

.announcement-cta:hover svg {
  transform: scale(1.15);
}

.announcement-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.06);
  color: rgba(218,218,218,0.7);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.announcement-close:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}


/* =========================================================
   AUTOSTORE MODAL (native <dialog>)
   ========================================================= */
.autostore-dialog:not([open]) {
  display: none;
}

.autostore-dialog {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  /* <dialog> resets — override them */
  border: none;
  background: transparent;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0;
  transition: opacity 320ms ease;
}

.autostore-dialog::backdrop {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.autostore-dialog.autostore-modal-open {
  opacity: 1;
}

.autostore-modal-box {
  position: relative;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 36px 32px;
  transform: translateY(24px) scale(0.97);
  transition: transform 340ms cubic-bezier(.22,.61,.36,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}

.autostore-modal-open .autostore-modal-box {
  transform: translateY(0) scale(1);
}

.autostore-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: rgba(218,218,218,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  z-index: 1;
}

.autostore-modal-close:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.autostore-modal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(218,218,218,0.5);
}

.autostore-modal-flag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--epx-red);
  background: rgba(225,31,38,0.12);
  border: 1px solid rgba(225,31,38,0.3);
  padding: 2px 8px;
  border-radius: 3px;
}

.autostore-modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.autostore-modal-blurb {
  font-size: 14px;
  color: rgba(218,218,218,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 580px;
}

.autostore-modal-video-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  margin-bottom: 28px;
  aspect-ratio: 16/9;
}

.autostore-modal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Mobile adjustments for banner + modal */
@media (max-width: 640px) {
  :root { --banner-h: 0px; }
  .announcement-banner { display: none; }

  .autostore-modal-box { padding: 24px 20px 20px; }
  .autostore-modal-title { font-size: 22px; }
}

/* =========================================================
   MOBILE ANNOUNCEMENT POPUP (native <dialog>)
   ========================================================= */
.ann-popup:not([open]) { display: none; }

.ann-popup {
  position: fixed;
  inset: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 350ms ease;
}
.ann-popup::backdrop {
  background: rgba(17,17,17,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ann-popup.ann-popup-open { opacity: 1; }

.ann-popup-box {
  position: relative;
  background: var(--epx-light);
  border-radius: 24px;
  padding: 36px 28px 28px;
  width: 100%;
  max-width: 380px;
  transform: translateY(24px) scale(0.97);
  transition: transform 380ms var(--ease);
  box-shadow: 0 24px 64px -16px rgba(0,0,0,0.45);
}
.ann-popup.ann-popup-open .ann-popup-box { transform: translateY(0) scale(1); }

.ann-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(17,17,17,0.08);
  color: var(--epx-dark);
  transition: background 200ms ease;
}
.ann-popup-close:hover { background: rgba(17,17,17,0.15); }
.ann-popup-logo { height: 32px; width: auto; margin-bottom: 20px; }
.ann-popup-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--epx-red);
  margin-bottom: 10px;
}
.ann-popup-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--epx-dark);
  margin-bottom: 12px;
}
.ann-popup-blurb {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17,17,17,0.6);
  margin-bottom: 24px;
}
.ann-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--epx-red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px -6px rgba(225,31,38,0.45);
  transition: background 200ms ease, transform 150ms ease;
}
.ann-popup-cta:active { background: #c41920; transform: scale(0.98); }

/* =========================================================
   FOOTER — OFFICE CARDS
   ========================================================= */
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  transition: color 200ms ease;
}
.footer-email-link:hover { color: #fff; }

.footer-offices-row {
  margin-top: 40px;
}

.footer-offices-row-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .footer-offices-row-inner { grid-template-columns: 1fr; }
}

.footer-office {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}

.footer-office-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-office-hd span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.footer-office-flag {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.footer-office-addr {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  margin-bottom: 10px;
}

.footer-office-ctas {
  display: flex;
  gap: 8px;
}

.footer-office-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 9px;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}

.footer-office-cta:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
