/* =========================================================
   Warehousing — page-specific styles
   ========================================================= */

.page-main {
  min-height: 100vh;
  padding-top: calc(var(--banner-h) + var(--nav-h));
  background: var(--epx-dark);
}

.page-hero {
  padding: 100px 0 120px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.page-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--epx-red);
  flex-shrink: 0;
}

.page-title {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 28px;
  max-width: 800px;
}

.page-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

.page-blurb {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.65;
}

/* ---------- Split hero: copy left, image stack right ---------- */
.page-hero-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-hero-text { max-width: 620px; }

.hero-images {
  position: relative;
  height: 520px;
}

.hero-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px -16px rgba(0,0,0,0.6);
}

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

.hero-img--1 {
  width: 72%;
  height: 72%;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-1.5deg);
  transition: transform 500ms var(--ease);
}
.hero-img--2 {
  width: 58%;
  height: 58%;
  top: 0;
  right: 0;
  z-index: 2;
  transform: rotate(1.8deg);
  transition: transform 500ms var(--ease) 60ms;
}
.hero-img--3 {
  width: 46%;
  height: 44%;
  bottom: 20%;
  right: 8%;
  z-index: 3;
  transform: rotate(-0.8deg);
  box-shadow: 0 12px 36px -10px rgba(0,0,0,0.65);
  transition: transform 500ms var(--ease) 120ms;
}

.hero-images:hover .hero-img--1 { transform: rotate(-2.5deg) translateY(-4px); }
.hero-images:hover .hero-img--2 { transform: rotate(2.8deg) translateY(-6px); }
.hero-images:hover .hero-img--3 { transform: rotate(-1.4deg) translateY(-8px); }

.page-hero-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--epx-red);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease);
}
.page-hero-cta:hover {
  background: #c41a20;
  box-shadow: 0 10px 28px -8px rgba(225,31,38,0.4);
  transform: translateY(-1px);
}

/* =========================================================
   BY THE NUMBERS — full-width countries card (07)
   ========================================================= */
.stat-card--countries {
  grid-column: 1 / -1;
  min-height: 0;
}

.stat-countries-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.stat-countries-lead {
  display: flex;
  flex-direction: column;
}

.stat-countries--four {
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}
.stat-countries--four .stat-country-card {
  justify-content: center;
  gap: 12px;
  padding: 22px 12px;
}

.sc-soon {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(17,17,17,0.58);
  line-height: 1;
  padding: 3px 0;
}

/* =========================================================
   INDUSTRIES — five compact category cards below the feature
   ========================================================= */
.wh-ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.wh-ind-card {
  position: relative;
  grid-column: span 2;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  isolation: isolate;
  transition: border-color 280ms var(--ease), transform 280ms var(--ease);
}
.wh-ind-card:nth-child(4),
.wh-ind-card:nth-child(5) { grid-column: span 3; }

.wh-ind-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(110,175,71,0.10), transparent 62%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
  z-index: -1;
}
.wh-ind-card:hover {
  border-color: rgba(110,175,71,0.38);
  transform: translateY(-3px);
}
.wh-ind-card:hover::before { opacity: 1; }

.wh-ind-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(110,175,71,0.10);
  border: 1px solid rgba(110,175,71,0.25);
  color: var(--epx-green);
  flex-shrink: 0;
  transition: background-color 280ms var(--ease), color 280ms var(--ease);
}
.wh-ind-icon svg { width: 26px; height: 26px; }
.wh-ind-card:hover .wh-ind-icon {
  background: rgba(110,175,71,0.18);
  color: #8ecb66;
}

.wh-ind-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.wh-ind-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
  margin: 0;
  max-width: 46ch;
  text-wrap: pretty;
}

/* =========================================================
   SHARED SECTION SCAFFOLD — storage + footprint
   ========================================================= */
.wh-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.wh-head {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px 80px;
  align-items: end;
}
.wh-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;
}
.wh-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;
}
.wh-title {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--epx-dark);
  text-wrap: balance;
}
.wh-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(17,17,17,0.42);
}
.wh-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;
}

.wh-head--dark .wh-title { color: #fff; }
.wh-head--dark .wh-title em { color: rgba(255,255,255,0.42); }
.wh-head--dark .wh-blurb { color: rgba(255,255,255,0.6); }

/* =========================================================
   SPECIALIZED STORAGE — light section, calibrated strip
   ========================================================= */
.wh-storage {
  position: relative;
  background: #fff;
  color: var(--epx-dark);
  padding: 160px 0 180px;
  overflow: hidden;

  /* Storage-regime accents — a thermal ramp, cold to warm to restricted */
  --wh-dry: #a9722b;
  --wh-controlled: #4f8a2e;
  --wh-cold: #2f6ea6;
  --wh-secure: var(--epx-red);
}

.wh-cond-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
}

.wh-cond {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 38px 34px 34px;
  border-left: 1px solid rgba(17,17,17,0.09);
  border-top: 3px solid var(--accent);
  transition: background-color 300ms var(--ease);
}
.wh-cond:first-child { border-left: none; }
.wh-cond:hover { background: rgba(17,17,17,0.02); }

.wh-cond--dry {
  --accent: var(--wh-dry);
  --accent-soft: rgba(169,114,43,0.10);
  --accent-line: rgba(169,114,43,0.28);
}
.wh-cond--controlled {
  --accent: var(--wh-controlled);
  --accent-soft: rgba(79,138,46,0.10);
  --accent-line: rgba(79,138,46,0.28);
}
.wh-cond--cold {
  --accent: var(--wh-cold);
  --accent-soft: rgba(47,110,166,0.10);
  --accent-line: rgba(47,110,166,0.28);
}
.wh-cond--secure {
  --accent: var(--wh-secure);
  --accent-soft: rgba(225,31,38,0.09);
  --accent-line: rgba(225,31,38,0.26);
}

.wh-cond-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  flex-shrink: 0;
  margin-bottom: 6px;
}
.wh-cond-icon svg { width: 26px; height: 26px; }

.wh-cond-range {
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
/* Keeps the fourth column's baseline aligned with the three temperature bands */
.wh-cond-range--word { letter-spacing: -0.03em; }
.wh-cond-unit {
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 2px;
  vertical-align: baseline;
}

.wh-cond-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--epx-dark);
  margin: 0;
  text-wrap: balance;
}
.wh-cond-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17,17,17,0.62);
  margin: 0;
  text-wrap: pretty;
}
.wh-cond-tag {
  align-self: flex-start;
  margin-top: auto;
  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.7);
}

/* ---------- Clinical Trial Depot — featured dark panel ---------- */
.wh-depot {
  position: relative;
  margin-top: 24px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(225,31,38,0.10), transparent 60%),
    linear-gradient(180deg, #1c1616 0%, #111111 100%);
  color: #fff;
  padding: 64px 56px 56px;
  overflow: hidden;
  isolation: isolate;
}
.wh-depot-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;
}

.wh-depot-head {
  max-width: 760px;
  margin-bottom: 52px;
}
.wh-depot-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.wh-depot-line {
  width: 40px;
  height: 2px;
  background: var(--epx-red);
  box-shadow: 0 0 6px rgba(225,31,38,0.55);
}
.wh-depot-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: #ff5a60;
}
.wh-depot-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;
}
.wh-depot-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(246,245,241,0.7);
}
.wh-depot-blurb {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(246,245,241,0.62);
  margin: 0;
  max-width: 62ch;
  text-wrap: pretty;
}

.wh-depot-list {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wh-depot-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 24px 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  transition: border-color 240ms var(--ease), background-color 240ms var(--ease), transform 240ms var(--ease);
}
.wh-depot-item:hover {
  border-color: rgba(225,31,38,0.45);
  background: rgba(225,31,38,0.06);
  transform: translateY(-2px);
}
.wh-depot-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,31,38,0.12);
  border: 1px solid rgba(225,31,38,0.28);
  color: #ff5a60;
  flex-shrink: 0;
}
.wh-depot-icon svg { width: 22px; height: 22px; }
.wh-depot-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.wh-depot-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.008em;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.wh-depot-sub {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(246,245,241,0.58);
  margin: 0;
  text-wrap: pretty;
}

.wh-depot-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 240ms var(--ease), color 240ms var(--ease), background-color 240ms var(--ease), transform 240ms var(--ease);
}
.wh-depot-cta:hover {
  border-color: rgba(225,31,38,0.7);
  background: rgba(225,31,38,0.10);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   REGIONAL FOOTPRINT — dark section, country rail + 2030 meter
   ========================================================= */
.wh-footprint {
  position: relative;
  background: var(--epx-dark);
  color: #fff;
  padding: 160px 0 180px;
  overflow: hidden;
}
.wh-footprint::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 88% 12%, rgba(225,31,38,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 8% 88%, rgba(110,175,71,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.wh-fp-rail {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.wh-fp-country {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 36px 32px 40px;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--accent);
  margin-top: -1px;
  transition: background-color 300ms var(--ease);
}
.wh-fp-country:first-child { border-left: none; }
.wh-fp-country:hover { background: rgba(255,255,255,0.02); }

.wh-fp-country--eg { --accent: var(--epx-red); }
.wh-fp-country--ae { --accent: #b0b0b0; }
.wh-fp-country--sa { --accent: var(--epx-green); }
.wh-fp-country--kw { --accent: #6b6b6b; }

.wh-fp-flag {
  width: 34px;
  height: 23px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14);
}
.wh-fp-name {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #fff;
  margin: 4px 0 0;
  text-wrap: balance;
}
.wh-fp-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
  margin: 0;
}
.wh-fp-count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.wh-fp-count-n {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.wh-fp-count-n--soon {
  font-size: 30px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.5);
}
.wh-fp-count-l {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}
.wh-fp-detail {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
  text-wrap: pretty;
}
.wh-fp-detail strong {
  color: #fff;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.wh-fp-status {
  margin-top: auto;
  padding-top: 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--epx-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wh-fp-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}
.wh-fp-status--soon { color: rgba(255,255,255,0.58); }
.wh-fp-status--soon::before { box-shadow: none; }

/* ---------- 2030 target meter ---------- */
.wh-fp-target {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 48px 52px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background: rgba(255,255,255,0.025);
}
.wh-fp-target-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 12px;
  text-wrap: balance;
}
.wh-fp-target-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0 0 24px;
  max-width: 48ch;
  text-wrap: pretty;
}
.wh-fp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ff5a60;
  transition: gap 240ms var(--ease), color 240ms var(--ease);
}
.wh-fp-link:hover { gap: 14px; color: #fff; }

.wh-fp-meter-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}
.wh-fp-meter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #8c1116 0%, var(--epx-red) 100%);
  box-shadow: 0 0 18px -2px rgba(225,31,38,0.65);
  transition: width 1600ms cubic-bezier(.16,.84,.32,1);
}
.wh-fp-meter.is-revealed .wh-fp-meter-fill { width: 46%; }

.wh-fp-meter-legend {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.wh-fp-meter-legend strong {
  color: #fff;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .wh-fp-meter-fill { transition: none; }
  .wh-eyebrow .dot { animation: none; }
}

/* =========================================================
   SUSTAINABILITY — three-card variant of the shared grid
   ========================================================= */

/* Technology and Sustainability are both light sections here, with no dark
   panel between them — close the seam so the pair reads as one white field. */
.tech { padding-bottom: 90px; }
.sust { padding-top: 90px; }

.sust-grid--three {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}
.sust-grid--three .sust-card { min-height: 264px; }

/* =========================================================
   CALL TO ACTION
   ========================================================= */
.svc-cta {
  background: var(--epx-dark);
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.svc-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-cta-title {
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.svc-cta-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}
.svc-cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
}
.svc-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease);
}
.cta-btn--primary {
  background: var(--epx-red);
  color: #fff;
  width: 100%;
  justify-content: center;
}
.cta-btn--primary:hover {
  background: #c41a20;
  box-shadow: 0 10px 28px -8px rgba(225,31,38,0.45);
  transform: translateY(-1px);
}
.cta-btn--outline {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  width: 100%;
  justify-content: center;
}
.cta-btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .wh-cond-strip { grid-template-columns: repeat(2, 1fr); }
  .wh-cond:nth-child(3) { border-top: 3px solid var(--accent); }
  .wh-cond:nth-child(odd) { border-left: none; }
  .wh-depot-list { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .page-hero-inner--split { grid-template-columns: 1fr; gap: 48px; }
  .hero-images { height: 380px; }

  .stat-countries-split { grid-template-columns: 1fr; gap: 32px; }

  .wh-ind-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wh-ind-card,
  .wh-ind-card:nth-child(4),
  .wh-ind-card:nth-child(5) { grid-column: span 1; }
  .wh-ind-card:nth-child(5) { grid-column: 1 / -1; }

  .wh-storage,
  .wh-footprint { padding: 120px 0 140px; }
  .wh-inner { padding: 0 32px; }
  .wh-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }

  .wh-depot { padding: 48px 36px 44px; }
  .wh-depot-head { margin-bottom: 40px; }

  .wh-fp-rail { grid-template-columns: repeat(2, 1fr); }
  .wh-fp-country { border-left: none; }
  .wh-fp-country:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.08); }

  .wh-fp-target { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px 44px; }

  .sust-grid--three { grid-template-columns: repeat(2, 1fr); }

  .svc-cta { padding: 100px 0; }
  .svc-cta-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .svc-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .cta-btn { width: auto; }
}

@media (max-width: 768px) {
  .page-hero { padding: 64px 0 80px; }
  .page-hero-inner { padding: 0 24px; }
  .hero-images { height: 300px; }

  .stat-countries--four { grid-template-columns: repeat(2, 1fr); }

  .wh-ind-grid { grid-template-columns: 1fr; }
  .wh-ind-card,
  .wh-ind-card:nth-child(4),
  .wh-ind-card:nth-child(5) { grid-column: 1 / -1; }
  .wh-ind-card { padding: 26px 24px 28px; }

  .wh-storage,
  .wh-footprint { padding: 90px 0 110px; }
  .wh-inner { padding: 0 24px; }

  .wh-cond-strip { grid-template-columns: 1fr; border-radius: 20px; }
  .wh-cond { padding: 30px 24px 28px; border-left: none; }

  .wh-depot { padding: 36px 24px 32px; border-radius: 20px; }
  .wh-depot-item { padding: 20px; }
  .wh-depot-cta { width: 100%; justify-content: center; }

  .wh-fp-rail { grid-template-columns: 1fr; }
  .wh-fp-country,
  .wh-fp-country:nth-child(even) { border-left: none; padding: 30px 0 34px; }
  .wh-fp-count-n { font-size: 40px; }

  .wh-fp-target { padding: 32px 24px 36px; border-radius: 20px; }
  .wh-fp-meter-legend { font-size: 11px; }

  .sust-grid--three { grid-template-columns: 1fr; }

  .svc-cta { padding: 80px 0; }
  .svc-cta-inner { padding: 0 24px; }
  .svc-cta-actions { flex-direction: column; align-self: stretch; }
  .cta-btn { width: 100%; }
}
