/* =============================================================
   DIGINEXT SCANDINAVIA — Premium Industrial B2B
   Brand Blue + Dark. Photo-led. Montserrat throughout.
   Brand: #1034A6 (blue), #0E171D (dark), #C4C4C4 / #F5F5F5 / #F9F9F9
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ── Brand colours ─────────────────────────────────────────── */
  --navy-900: #0E171D;           /* brand dark (was deep navy)    */
  --navy-800: #131f28;
  --navy-700: #1034A6;           /* brand primary blue            */
  --navy-600: #1a3fc2;           /* slightly lighter blue         */
  --cyan:     #1034A6;           /* accent = brand blue           */
  --cyan-600: #0d289e;           /* darker pressed state          */
  --cyan-light: #a8bfff;         /* tint for overlays             */
  --gold:     #C8A96E;           /* kept for awards/ESG           */
  --gold-light: #E8D0A0;

  /* ── Ink & text ────────────────────────────────────────────── */
  --ink:      #0E171D;           /* brand dark                    */
  --ink-2:    #2d3748;           /* body text                     */
  --gray:     #64748B;
  --gray-2:   #94A3B8;

  /* ── UI surfaces ───────────────────────────────────────────── */
  --rule:     #E2E8F0;           /* borders                       */
  --rule-2:   #C4C4C4;           /* brand grey 4                  */
  --bg:       #FFFFFF;
  --bg-alt:   #F9F9F9;           /* brand grey 5                  */
  --bg-mid:   #F5F5F5;           /* brand grey 3                  */
  --bg-navy-alt: rgba(255,255,255,0.06);
  --green:    #22C55E;

  /* ── Semantic aliases (keep map sections working) ──────────── */
  --ink-3:    #94A3B8;
  --ink-4:    #7B9CED;

  /* ── Typography ─────────────────────────────────────────────  */
  --sans:    "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;

  /* ── Layout ─────────────────────────────────────────────────  */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);

  /* ── Shadows ────────────────────────────────────────────────  */
  --shadow-sm: 0 1px 3px rgba(14,23,29,0.06), 0 2px 8px rgba(14,23,29,0.04);
  --shadow-md: 0 4px 16px rgba(14,23,29,0.08), 0 16px 48px -12px rgba(14,23,29,0.14);
  --shadow-lg: 0 8px 32px rgba(14,23,29,0.12), 0 32px 80px -16px rgba(14,23,29,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: clip;
}

@view-transition { navigation: auto; }
@keyframes page-enter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
body > *:not(.topbar):not(header):not(script) {
  animation: page-enter 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.topbar { view-transition-name: topbar; }
.nav    { view-transition-name: site-nav; }
@media (prefers-reduced-motion: reduce) { body > * { animation: none !important; } }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--cyan); color: #fff; }

.mono { font-family: var(--mono); letter-spacing: -0.01em; }
.display { font-family: var(--display); }

/* =============================================================
   TOPBAR
   ============================================================= */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-family: var(--mono);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar a:hover { color: var(--cyan); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulse 2.4s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 3px 4px;
}
.lang-switch__btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.lang-switch__btn.is-active {
  background: var(--cyan);
  color: #fff;
  font-weight: 700;
}
.lang-switch__btn:not(.is-active):hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: box-shadow 0.3s var(--ease);
}
.nav.is-scrolled { box-shadow: 0 2px 24px rgba(14,23,29,0.08); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 19px;
}
.logo__mark {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo__mark::after {
  content: "";
  position: absolute;
  top: 6px; right: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}
.logo__mark svg { width: 18px; height: 18px; }

.nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--navy-900); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--cyan);
  transition: right 0.3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { right: 0; }
.nav__links a.is-active { color: var(--navy-800); }

.nav__cta-group { display: inline-flex; gap: 10px; align-items: center; }

/* Mobile hamburger */
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule-2);
  width: 38px; height: 38px;
  border-radius: 4px;
  padding: 0;
  color: var(--navy-900);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle-bar {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}
.nav__toggle-bar::before, .nav__toggle-bar::after {
  content: "";
  position: absolute;
  left: 0; width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}
.nav__toggle-bar::before { top: -6px; }
.nav__toggle-bar::after  { top:  6px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__cta-group .btn--ghost { display: none; }
  .nav__inner { grid-template-columns: auto auto; justify-content: space-between; gap: 16px; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 1000px) {
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 16px var(--gutter) 24px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(14,23,29,0.12);
    z-index: 99;
  }
  .nav.is-open .nav__links a { padding: 10px 0; font-size: 16px; }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
  font-family: var(--sans);
}
.btn svg { transition: transform 0.25s var(--ease); flex-shrink: 0; }

.btn--primary {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}
.btn--primary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover svg { transform: translateX(3px); }

.btn--accent {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
  font-weight: 700;
}
.btn--accent:hover {
  background: var(--cyan-600);
  border-color: var(--cyan-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(16,52,166,0.35);
}
.btn--accent:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--rule-2);
}
.btn--ghost:hover {
  border-color: var(--navy-700);
  background: var(--bg-alt);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200,169,110,0.3);
}

.btn--lg { padding: 16px 30px; font-size: 15px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }

/* =============================================================
   SECTION LAYOUT
   ============================================================= */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--navy-900);
  color: #fff;
}
.section--navy {
  background: var(--navy-800);
  color: #fff;
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section__head--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section__head--center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.section__head--center .eyebrow_title { justify-content: center; }

.eyebrow_title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rule-2);
  margin-bottom: 20px;
}
.eyebrow_title::before {
  content: "";
  width: 24px; height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.section__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0;
}
.section--dark .section__title,
.section--navy .section__title { color: #fff; }

.section__desc {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
  max-width: 52ch;
}
.section--dark .section__desc,
.section--navy .section__desc { color: rgba(255,255,255,0.72); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 760px;
  background: var(--navy-900);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.65) contrast(1.1);
}
.hero__bg::after {
  
    background: linear-gradient(120deg, var(--navy-900) 0%, rgba(14,23,29,0.7) 100%);

}
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    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: 72px 72px;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) var(--gutter) clamp(80px, 12vw, 150px);
}
.hero__content { max-width: clamp(440px, 44vw, 620px); }

.hero__title {
  font-family: var(--display);
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
  color: #fff;
}
.hero__title span { color: var(--ink-4); }
.hero__title em { font-style: normal; color: var(--gold); }

.hero__desc {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 40px;
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* Slideshow images */
.hero__visual {
  position: absolute;
  inset: 0; z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__visual-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  filter: saturate(0.85) contrast(1.05);
  animation: hero-kenburns 22s ease-in-out infinite alternate;
}
.hero__visual-slide.is-active { opacity: 1; }
@keyframes hero-kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10) translate(-1.5%, -1%); }
}
.hero__visual-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(14,23,29,0.96) 0%, rgba(14,23,29,0.88) 28%, rgba(14,23,29,0.48) 55%, rgba(14,23,29,0.15) 100%),
    linear-gradient(180deg, rgba(14,23,29,0.15) 0%, transparent 20%, transparent 75%, rgba(14,23,29,0.6) 100%);
}

/* =============================================================
   STATS BAND
   ============================================================= */
.stats-band {
  background: var(--navy-800);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  transition: background 0.3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,0.03); }
.stat-cell__value {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-cell__value span { color: var(--cyan); }
.stat-cell__label {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.07); }
}

/* =============================================================
   SERVICE CARDS
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg-alt); }

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(16,52,166,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
  transition: background 0.25s, transform 0.25s;
}
.service-card:hover .service-card__icon {
  background: rgba(16,52,166,0.18);
  transform: scale(1.08);
}
.service-card__title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.service-card__body {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 20px;
}
.service-card__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.service-card:hover .service-card__link { gap: 10px; color: var(--cyan-600); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   PROJECT TYPE CARDS (Hyperscale / Edge / Enterprise)
   ============================================================= */
.project-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.project-type-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--rule);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  background: var(--bg);
}
.project-type-card:hover,
.project-type-card.is-selected {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(16,52,166,0.15);
  transform: translateY(-2px);
}
.project-type-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.project-type-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
  filter: saturate(0.8);
}
.project-type-card:hover .project-type-card__img img { transform: scale(1.05); }
.project-type-card__body {
  padding: 20px;
}
.project-type-card__check {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s, transform 0.25s;
}
.project-type-card.is-selected .project-type-card__check {
  opacity: 1; transform: scale(1);
}
.project-type-card__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}
.project-type-card__title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
}
.project-type-card__desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 700px) {
  .project-types { grid-template-columns: 1fr; }
}

/* =============================================================
   INDUSTRIES
   ============================================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--rule);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: var(--bg);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.industry-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.industry-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s;
  filter: saturate(0.75);
}
.industry-card:hover .industry-card__img img {
  transform: scale(1.07);
  filter: saturate(1);
}
.industry-card__body {
  padding: 20px;
}
.industry-card__title {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  color: var(--navy-900); margin: 0 0 6px;
}
.industry-card__desc {
  font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin: 0;
}

@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   ACCREDITATIONS & RECOGNITION
   ============================================================= */
.accred-section {
  background: var(--bg-alt);
  padding: clamp(64px, 9vw, 120px) 0;
}
.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.accred-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.accred-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--navy-700));
}
.accred-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.accred-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(16,52,166,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy-700);
  font-size: 28px;
}
.accred-card__title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.accred-card__body {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}
.accred-card__year {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(16,52,166,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.accred-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.accred-award {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 16px 20px;
  flex: 1;
  min-width: 220px;
  transition: box-shadow 0.2s;
}
.accred-award:hover { box-shadow: var(--shadow-sm); }
.accred-award__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
}
.accred-award__title {
  font-size: 14px; font-weight: 700; color: var(--navy-900); margin: 0 0 2px;
  font-family: var(--display);
}
.accred-award__body { font-size: 12.5px; color: var(--gray); margin: 0; }

@media (max-width: 900px) {
  .accred-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .accred-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   ESG & SUSTAINABILITY
   ============================================================= */
.esg-section {
  background: var(--navy-900);
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.esg-section .section__title { color: #fff; }
.esg-section .section__desc { color: rgba(255,255,255,0.82); }
.esg-section .eyebrow { color: var(--cyan); }
.esg-section::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.esg-hero-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 56px;
}
.esg-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}
.esg-hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,23,29,0.8) 100%);
}
.esg-hero-img__caption {
  position: absolute;
  bottom: 24px; left: 32px; right: 32px;
  z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
}
.esg-hero-img__title {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.esg-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.esg-pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}
.esg-pillar:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(16,52,166,0.3);
}
.esg-pillar__color {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
.esg-pillar--e .esg-pillar__color { background: linear-gradient(90deg, #22c55e, #16a34a); }
.esg-pillar--s .esg-pillar__color { background: linear-gradient(90deg, #1034A6, #0d289e); }
.esg-pillar--g .esg-pillar__color { background: linear-gradient(90deg, #c8a96e, #e8d0a0); }
.esg-pillar__letter {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.12;
  position: absolute;
  top: 16px; right: 20px;
  color: #fff;
}
.esg-pillar__icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.esg-pillar--e .esg-pillar__icon { background: rgba(34,197,94,0.15); color: #22c55e; }
.esg-pillar--s .esg-pillar__icon { background: rgba(16,52,166,0.15); color: var(--cyan); }
.esg-pillar--g .esg-pillar__icon { background: rgba(200,169,110,0.15); color: var(--gold); }
.esg-pillar__title {
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  color: #fff; margin: 0 0 10px;
}
.esg-pillar__body {
  font-size: 14.5px; color: rgba(255,255,255,0.88);
  line-height: 1.7; margin: 0 0 20px;
}
.esg-pillar__stats {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.esg-pillar__stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 8px 12px;
}
.esg-pillar__stat-val {
  font-family: var(--display);
  font-size: 22px; font-weight: 800;
  color: #fff; line-height: 1;
}
.esg-pillar__stat-label {
  font-family: var(--mono);
  font-size: 10px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 4px;
}
.esg-pillar--e .esg-pillar__stat-val { color: #22c55e; }
.esg-pillar--s .esg-pillar__stat-val { color: var(--cyan); }
.esg-pillar--g .esg-pillar__stat-val { color: var(--gold); }

.esg-commitments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.esg-commit {
  background: rgba(255,255,255,0.03);
  padding: 28px 24px;
  text-align: center;
  transition: background 0.25s;
}
.esg-commit:hover { background: rgba(255,255,255,0.06); }
.esg-commit__val {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.esg-commit__val span { color: var(--cyan); }
.esg-commit__label {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4;
}

@media (max-width: 900px) {
  .esg-pillars { grid-template-columns: 1fr; }
  .esg-commitments { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .esg-commitments { grid-template-columns: 1fr; }
}

/* =============================================================
   OUR PARTNERS
   ============================================================= */
.partners-section {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--bg);
}
.partners-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.partner-logo {
  background: var(--bg);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.partner-logo:hover { background: var(--bg-alt); }
.partner-logo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}
.partner-logo:hover .partner-logo__inner {
  opacity: 1;
  filter: grayscale(0);
}
.partner-logo__icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.partner-logo__name {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  text-align: center;
}
.partner-logo__category {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.partners-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
  background: var(--bg);
  display: flex; flex-direction: column; gap: 16px;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.partner-card__head {
  display: flex; align-items: center; gap: 14px;
}
.partner-card__logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.partner-card__title {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  color: var(--navy-900); margin: 0 0 2px;
}
.partner-card__type {
  font-family: var(--mono);
  font-size: 10px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.partner-card__body {
  font-size: 14px; color: var(--ink-2); line-height: 1.6; margin: 0; flex: 1;
}
.partner-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.partner-card__tag {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .partners-logos { grid-template-columns: repeat(3, 1fr); }
  .partners-featured { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .partners-logos { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   REACH MAP
   ============================================================= */
.reach-section { background: var(--navy-900); }
.reach-live {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.reach-live__svg { width: 100%; height: auto; display: block; }
.reach-marker { pointer-events: none; }
.reach-ring {
  transform-origin: center;
  transform-box: fill-box;
  animation: reach-pulse 3s ease-out infinite;
  animation-delay: var(--delay, 0s);
}
.reach-dot {
  transform-origin: center;
  transform-box: fill-box;
  animation: reach-bob 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes reach-pulse {
  0%   { transform: scale(0.4); opacity: 0.9; }
  80%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes reach-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* =============================================================
   PROJECT WIZARD (Contact Page)
   ============================================================= */
.wizard-section {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--bg-alt);
}
.wizard-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.wizard-steps-bar {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}
.wizard-steps-bar::before {
  content: "";
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  height: 2px;
  background: var(--rule-2);
  z-index: 0;
}
.wizard-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  gap: 8px;
}
.wizard-step-indicator__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--rule-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  transition: all 0.3s var(--ease);
}
.wizard-step-indicator__label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-align: center;
  transition: color 0.3s;
}
.wizard-step-indicator.is-active .wizard-step-indicator__num {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(15,36,81,0.12);
}
.wizard-step-indicator.is-active .wizard-step-indicator__label { color: var(--navy-800); }
.wizard-step-indicator.is-done .wizard-step-indicator__num {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--rule);
}
.wizard-step-indicator.is-done .wizard-step-indicator__label { color: var(--cyan-600); }

.wizard-pane {
  display: none;
  animation: page-enter 0.4s var(--ease) both;
}
.wizard-pane.is-active { display: block; }

.wizard-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.wizard-card__title {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.wizard-card__sub {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 36px;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

/* Step 1 — Build Type */
.build-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.build-type-btn {
  border: 2px solid var(--rule-2);
  border-radius: 8px;
  padding: 24px 18px;
  background: var(--bg-alt);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s var(--ease);
  display: flex; flex-direction: column; gap: 10px;
}
.build-type-btn:hover {
  border-color: var(--cyan);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.build-type-btn.is-selected {
  border-color: var(--navy-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}
.build-type-btn__img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 4px;
}
.build-type-btn__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.3s, transform 0.4s;
}
.build-type-btn:hover .build-type-btn__img img,
.build-type-btn.is-selected .build-type-btn__img img { filter: saturate(1); transform: scale(1.03); }
.build-type-btn__icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(16,52,166,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 20px;
}
.build-type-btn__label {
  font-family: var(--mono);
  font-size: 10px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.build-type-btn__title {
  font-family: var(--display);
  font-size: 17px; font-weight: 700;
  color: var(--navy-900);
}
.build-type-btn__desc {
  font-size: 13px; color: var(--ink-2); line-height: 1.55;
}

/* Step 2 — Map */
.wizard-map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  margin-bottom: 24px;
  position: relative;
}
.wizard-map-container iframe {
  display: block;
  width: 100%; height: 420px;
  border: none;
}
.wizard-map-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.wizard-region-btn {
  border: 1px solid var(--rule-2);
  border-radius: 6px;
  padding: 14px 12px;
  background: var(--bg-alt);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: var(--display);
  font-size: 14px; font-weight: 600;
  color: var(--navy-800);
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.wizard-region-btn__flag { font-size: 24px; }
.wizard-region-btn__sub { font-family: var(--mono); font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.wizard-region-btn:hover,
.wizard-region-btn.is-selected {
  border-color: var(--navy-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.08);
  transform: translateY(-1px);
}
.wizard-region-btn.is-selected { border-color: var(--cyan); }

/* Step 3 — Contact Details */
.wizard-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wizard-form-grid .form__field--full { grid-column: 1 / -1; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
}
.form__label span { color: var(--cyan); }
.form__input {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--rule-2);
  padding: 12px 14px;
  border-radius: 5px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form__input:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}
.form__input--textarea {
  resize: vertical;
  min-height: 120px;
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748B' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.wizard-summary {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.wizard-summary__title {
  font-family: var(--mono);
  font-size: 11px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
  margin-bottom: 12px;
}
.wizard-summary__items {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.wizard-summary__item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13.5px; color: var(--navy-800); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.wizard-summary__item::before {
  content: "✓";
  color: var(--cyan);
  font-size: 12px;
}

.wizard-success {
  text-align: center;
  padding: 48px 24px;
}
.wizard-success__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--green);
  font-size: 32px;
}
.wizard-success__title {
  font-family: var(--display);
  font-size: 28px; font-weight: 700;
  color: var(--navy-900); margin: 0 0 12px;
}
.wizard-success__body { font-size: 16px; color: var(--ink-2); margin: 0 0 32px; }

@media (max-width: 700px) {
  .build-types { grid-template-columns: 1fr; }
  .wizard-map-regions { grid-template-columns: repeat(2, 1fr); }
  .wizard-form-grid { grid-template-columns: 1fr; }
  .wizard-steps-bar::before { display: none; }
}

/* =============================================================
   CAREERS
   ============================================================= */
.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.careers-intro__img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.careers-intro__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.careers-intro__tag {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(14,23,29,0.7);
  padding: 6px 12px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.careers-list { display: flex; flex-direction: column; }
.career-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: padding-left 0.25s var(--ease);
  gap: 16px;
}
.career-item:first-child { border-top: 1px solid var(--rule); }
.career-item:hover { padding-left: 8px; }
.career-item__title {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  color: var(--navy-900); margin: 0 0 4px;
}
.career-item__meta {
  font-family: var(--mono);
  font-size: 11px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.career-item__arrow { color: var(--navy-700); transition: transform 0.25s var(--ease); flex-shrink: 0; }
.career-item:hover .career-item__arrow { transform: translateX(5px); }
.careers-note {
  margin-top: 24px; padding: 20px 24px;
  background: var(--bg-alt);
  border-left: 3px solid var(--cyan);
  border-radius: 0 4px 4px 0;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.5;
}
.careers-note a { color: var(--navy-700); font-weight: 600; border-bottom: 1px solid currentColor; }

@media (max-width: 900px) {
  .careers-layout { grid-template-columns: 1fr; }
  .careers-intro__img { aspect-ratio: 16/10; max-height: 380px; }
}

/* =============================================================
   CONTACT CARDS
   ============================================================= */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  padding: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.contact-card__label {
  font-family: var(--mono); font-size: 11px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; font-weight: 500;
}
.contact-card__name { font-size: 18px; font-weight: 700; color: var(--navy-900); margin: 0 0 8px; font-family: var(--display); }
.contact-card__body { font-size: 14.5px; color: var(--ink-2); line-height: 1.65; margin: 0 0 14px; }
.contact-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy-700); font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--rule-2); padding-bottom: 2px;
  margin-right: 16px; margin-bottom: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.contact-card__link:hover { color: var(--cyan-600); border-bottom-color: var(--cyan); }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card__quote { font-size: 28px; color: var(--cyan); line-height: 1; }
.testimonial-card__body { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin: 0; flex: 1; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-alt); border: 2px solid var(--rule);
  overflow: hidden; flex-shrink: 0;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--navy-900); margin: 0 0 2px; }
.testimonial-card__role { font-family: var(--mono); font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.testimonial-card__stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* =============================================================
   IMAGE FEATURE BLOCKS
   ============================================================= */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid var(--rule);
}
.feature-block:first-of-type { border-top: none; }
.feature-block--reverse .feature-block__img { order: 2; }
.feature-block--reverse .feature-block__body { order: 1; }
.feature-block__img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.feature-block__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.feature-block__img:hover img { transform: scale(1.04); }
.feature-block__img-tag {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,0.85); letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(14,23,29,0.65); padding: 5px 10px; border-radius: 3px;
  backdrop-filter: blur(6px);
}
.feature-block__list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.feature-block__list-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink-2);
}
.feature-block__list-item::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0; margin-top: 7px;
}

@media (max-width: 860px) {
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block--reverse .feature-block__img { order: 0; }
  .feature-block--reverse .feature-block__body { order: 0; }
}

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band {
  background: linear-gradient(105deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: clamp(56px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,52,166,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700; color: #fff; margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.cta-band__body { font-size: 16px; color: rgba(255,255,255,0.7); margin: 0; }
.cta-band__desc { font-size: 16px; color: #fff; margin: 0; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================================
   FOOTER
   ============================================================= */
.foot {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  position: relative;
}
.foot__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.foot__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.foot__brand-block { max-width: 340px; }
.foot__brand {
  display: inline-flex; align-items: center; gap: 11px;
  margin-bottom: 20px; color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 18px;
}
.foot__about {
  font-size: 14px; line-height: 1.7; margin: 0 0 24px;
  color: rgba(255,255,255,0.6);
}
.foot__social { display: flex; gap: 10px; }
.foot__social a {
  width: 36px; height: 36px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all 0.2s var(--ease);
}
.foot__social a:hover {
  background: var(--cyan); border-color: var(--cyan);
  color: var(--navy-900); transform: translateY(-2px);
}
.foot__col h4 {
  color: #fff; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 18px;
}
.foot__col a {
  display: block; padding: 6px 0; font-size: 14px;
  color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.foot__col a:hover { color: var(--cyan); }
.foot__certifications {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.foot__cert-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 4px 10px;
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase;
}
.foot__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.foot__bottom-links { display: inline-flex; gap: 24px; }
.foot__bottom-links a { color: rgba(255,255,255,0.6); }
.foot__bottom-links a:hover { color: var(--cyan); }

@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand-block { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .foot__top { grid-template-columns: 1fr; } }

/* =============================================================
   ABOUT / TEAM
   ============================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--bg);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__img {
  aspect-ratio: 3/4; overflow: hidden;
}
.team-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.5s var(--ease), filter 0.5s;
}
.team-card:hover .team-card__img img { transform: scale(1.05); filter: grayscale(0); }
.team-card__body { padding: 20px; }
.team-card__name { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--navy-900); margin: 0 0 4px; }
.team-card__role { font-family: var(--mono); font-size: 11px; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* =============================================================
   TIMELINE / HISTORY
   ============================================================= */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute; top: 8px; bottom: 8px; left: 12px;
  width: 2px; background: var(--rule-2);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: "";
  position: absolute; left: -35px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 2px solid var(--cyan);
  box-shadow: 0 0 0 3px rgba(16,52,166,0.15);
}
.timeline-item__year {
  font-family: var(--mono); font-size: 11px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 4px;
}
.timeline-item__title { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--navy-900); margin: 0 0 6px; }
.timeline-item__body { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin: 0; }

/* =============================================================
   MISC UTILITIES
   ============================================================= */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,52,166,0.1);
  border: 1px solid rgba(16,52,166,0.2);
  border-radius: 20px; padding: 4px 12px;
  font-family: var(--mono); font-size: 11px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
}
.badge--green {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.2);
  color: #16a34a;
}
.badge--gold {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.25);
  color: #92600a;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--bg-alt); border: 1px solid var(--rule);
  border-radius: 4px; padding: 4px 12px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-2);
  letter-spacing: 0.06em; text-transform: uppercase;
}

.divider {
  border: none; height: 1px;
  background: var(--rule); margin: 0;
}

.scroll-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.scroll-reveal.in { opacity: 1; transform: translateY(0); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 700px) {
  .hero__title { font-size: clamp(36px, 9vw, 54px); }
  .section__head { grid-template-columns: 1fr; gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================================
   MOBILE RESPONSIVE — PREMIUM FULL SYSTEM
   Breakpoints: 1100px | 900px | 700px | 480px | 360px
   ============================================================= */

/* ── Responsive utility classes ─────────────────────────────── */
.grid-2col   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3col   { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4col   { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-map    { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.grid-doc    { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.grid-services-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ── Topbar ─────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .topbar { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { min-height: 600px; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(36px, 8vw, 58px); letter-spacing: -0.02em; }
  .hero__desc { font-size: 16px; }
}
@media (max-width: 600px) {
  .hero { min-height: unset; }
  .hero__inner { padding-top: 56px; padding-bottom: 64px; }
  .hero__title { font-size: clamp(30px, 9vw, 48px); }
  .hero__desc { font-size: 15px; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__badges { gap: 8px; }
  .hero__badge { font-size: 10px; padding: 6px 10px; }
}

/* ── Stats band ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .stats-band__inner { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 24px 16px; }
  .stat-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-cell:nth-child(even) { border-right: none; }
}

/* ── Section head ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .section__head { grid-template-columns: 1fr; gap: 16px; }
  .section__desc { max-width: 100%; font-size: 15px; }
}
@media (max-width: 600px) {
  .section__title { font-size: clamp(24px, 6.5vw, 38px); }
}

/* ── Service cards grid ─────────────────────────────────────── */
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
}

/* ── Service card expanded (services page) ──────────────────── */
.grid-services-2 .service-card { display: flex; flex-direction: column; }
@media (max-width: 860px) {
  .grid-services-2 { grid-template-columns: 1fr; }
}
/* Full-width expanded service cards on services page */
@media (max-width: 700px) {
  .service-card__media { max-height: 220px; }
}

/* ── Industries grid ────────────────────────────────────────── */
@media (max-width: 600px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* ── Project type cards ─────────────────────────────────────── */
@media (max-width: 860px) {
  .project-types { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .project-types { grid-template-columns: 1fr; }
}

/* ── Accreditations ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .accred-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .accred-grid { grid-template-columns: 1fr; }
}

/* ── ESG ────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .esg-hero-img { aspect-ratio: 4/3; }
  .esg-hero-img__caption { flex-direction: column; align-items: flex-start; gap: 12px; bottom: 16px; left: 16px; right: 16px; }
  .esg-hero-img__title { font-size: clamp(18px, 5vw, 26px); }
  .esg-pillars { grid-template-columns: 1fr; }
  .esg-commitments { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .esg-commitments { grid-template-columns: 1fr; }
}

/* ── Partners ───────────────────────────────────────────────── */
@media (max-width: 700px) {
  .partners-logos { grid-template-columns: repeat(2,1fr); }
  .partners-featured { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .partners-logos { grid-template-columns: 1fr; }
  .partner-logo { padding: 20px; }
}

/* ── Feature blocks ─────────────────────────────────────────── */
@media (max-width: 700px) {
  .feature-block { gap: 24px; }
  .feature-block--reverse .feature-block__img { order: 0 !important; }
}

/* ── Testimonials ───────────────────────────────────────────── */
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── CTA band ───────────────────────────────────────────────── */
@media (max-width: 700px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-band__actions { width: 100%; flex-direction: column; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
  .cta-band__title { font-size: clamp(22px, 6vw, 34px); }
}

/* ── Wizard (contact page) ──────────────────────────────────── */
@media (max-width: 600px) {
  .wizard-wrap { width: 100%; }
  .build-types { grid-template-columns: 1fr; gap: 12px; }
  .wizard-map-regions { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .wizard-form-grid { grid-template-columns: 1fr; gap: 16px; }
  .wizard-card { padding: 20px; }
  .wizard-steps-bar { gap: 0; }
  .wizard-step-indicator__label { font-size: 9px; }
  .wizard-map-container iframe { height: 260px; }
}
@media (max-width: 400px) {
  .wizard-map-regions { grid-template-columns: 1fr 1fr; }
}

/* ── Careers ────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .career-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .career-item__arrow { align-self: flex-end; }
}

/* ── Footer ─────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__brand-block { grid-column: 1 / -1; max-width: 100%; }
  .foot { padding-top: 48px; }
}
@media (max-width: 480px) {
  .foot__top { grid-template-columns: 1fr; gap: 28px; }
  .foot__bottom { flex-direction: column; gap: 12px; text-align: center; justify-content: center; }
  .foot__bottom-links { justify-content: center; }
}

/* ── Nav open-menu CTA ──────────────────────────────────────── */
@media (max-width: 1000px) {
  .nav.is-open .nav__cta-group .btn--accent { display: inline-flex; }
}
@media (max-width: 480px) {
  .nav__inner { padding: 12px var(--gutter); }
  .logo { font-size: 16px; }
  .logo__mark { width: 30px; height: 30px; }
}

/* ── Inline grid overrides ───────────────────────────────────── 
   These target inline style grids via wrapper classes added to HTML.
   Wrapper classes: .rg-map, .rg-4col, .rg-2col, .rg-doc, .rg-2s, .rg-3col-stat
   ─────────────────────────────────────────────────────────────*/

/* Map section sidebar layout */
.rg-map { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 960px) {
  .rg-map { grid-template-columns: 1fr; }
  .rg-map > :last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 560px) {
  .rg-map > :last-child { grid-template-columns: 1fr; }
}

/* 4-column accred cards */
.rg-4col { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 860px) { .rg-4col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .rg-4col { grid-template-columns: 1fr; } }

/* Generic 2-column */
.rg-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .rg-2col { grid-template-columns: 1fr; } }

/* 2-column service card pairs */
.rg-2s { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .rg-2s { grid-template-columns: 1fr; } }

/* Legal page doc layout with sidebar */
.rg-doc { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
@media (max-width: 960px) {
  .rg-doc { grid-template-columns: 1fr; }
  .rg-doc aside { position: static !important; top: auto !important; }
  .rg-doc aside > div:last-child { display: none; } /* hide sidebar duplicate nav on mobile */
}

/* 3-column stats */
.rg-3col-stat { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
@media (max-width: 600px) { .rg-3col-stat { grid-template-columns: 1fr 1fr; } }

/* 3-column generic */
.rg-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 860px) { .rg-3col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .rg-3col { grid-template-columns: 1fr; } }

/* ── Inline style overrides via attribute selectors ──────────── */

/* ESG report modal and article modals — full width on mobile */
@media (max-width: 700px) {
  #esgReportOverlay > div,
  #articleOverlay > div {
    border-radius: 12px;
    margin: 0 8px;
  }
  #esgReportOverlay > div > div:first-child,
  #articleOverlay > div > div:first-child {
    height: 200px !important;
  }
  #esgReportOverlay > div > div:first-child + div,
  #articleOverlay > div > div:first-child + div {
    padding: 24px 20px !important;
  }
}

/* Values grid (about page) — inline grid */
@media (max-width: 860px) {
  /* 4-col values grid → 2 col */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width: 480px) {
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* 3-col inline grids → stack on mobile */
@media (max-width: 700px) {
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* 2-col inline grids → stack on mobile */
@media (max-width: 600px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Map layout 1fr 340px → stack */
@media (max-width: 960px) {
  [style*="grid-template-columns:1fr 340px"],
  [style*="grid-template-columns: 1fr 340px"] {
    grid-template-columns: 1fr !important;
  }
}

/* Doc layout 1fr 300px / 1fr 320px → stack */
@media (max-width: 960px) {
  [style*="grid-template-columns:1fr 300px"],
  [style*="grid-template-columns: 1fr 300px"],
  [style*="grid-template-columns:1fr 320px"],
  [style*="grid-template-columns: 1fr 320px"] {
    grid-template-columns: 1fr !important;
  }
}

/* Services page 1fr 1fr explicit side-by-side blocks */
@media (max-width: 860px) {
  [style*="grid-template-columns:1fr 1fr; gap:64px"],
  [style*="grid-template-columns: 1fr 1fr; gap: 64px"],
  [style*="grid-template-columns:1fr 1fr; gap:56px"],
  [style*="grid-template-columns: 1fr 1fr; gap:56px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Ongoing project cards 2x2 → 1 col */
@media (max-width: 700px) {
  [style*="grid-template-columns:repeat(2,1fr); gap:2px"],
  [style*="grid-template-columns: repeat(2, 1fr); gap: 2px"],
  [style*="grid-template-columns:repeat(2,1fr); gap:24px"],
  [style*="grid-template-columns: repeat(2, 1fr); gap: 24px"] {
    grid-template-columns: 1fr !important;
  }
}

/* Article modal inner 2-col → 1 col */
@media (max-width: 700px) {
  [style*="grid-template-columns:1fr 1fr; gap:32px"],
  [style*="grid-template-columns: 1fr 1fr; gap:32px"],
  [style*="grid-template-columns:1fr 1fr; gap:28px"] {
    grid-template-columns: 1fr !important;
  }
  /* Article featured card 1fr 1fr → stack */
  [style*="grid-template-columns:1fr 1fr; gap:0"],
  [style*="display:grid; grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Sticky sidebar on legal pages ──────────────────────────── */
@media (max-width: 960px) {
  aside[style*="position:sticky"],
  aside[style*="position: sticky"] {
    position: static !important;
    top: auto !important;
  }
}

/* ── Flex direction overrides ───────────────────────────────── */
@media (max-width: 700px) {
  /* ESG report performance rows */
  [style*="display:flex; align-items:center; justify-content:space-between; padding:24px 28px"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  [style*="display:flex; align-items:center; justify-content:space-between; padding:24px 28px"] .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Accreditation card header min-height ───────────────────── */
@media (max-width: 700px) {
  [style*="min-height:180px"] {
    min-height: 160px !important;
    padding: 24px 20px !important;
  }
  [style*="font-size:42px"] {
    font-size: 32px !important;
  }
}

/* ── Article featured card (careers From the Field) ─────────── */
@media (max-width: 700px) {
  [style*="grid-column:1 / -1; display:grid; grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="min-height:300px; position:relative; background:var(--navy-900)"] {
    min-height: 200px !important;
  }
  [style*="padding:36px 32px; display:flex; flex-direction:column"] {
    padding: 24px 20px !important;
  }
}

/* ── Services page fibre table ──────────────────────────────── */
@media (max-width: 700px) {
  [style*="display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ── 4-tier uptime table in ESG modal ───────────────────────── */
@media (max-width: 600px) {
  [style*="grid-template-columns:repeat(4,1fr); gap:1px"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── About page reach image block ───────────────────────────── */
@media (max-width: 860px) {
  [style*="display:grid; grid-template-columns:3fr 2fr; gap:40px"],
  [style*="grid-template-columns:3fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Buttons full-width on mobile when in flex col ──────────── */
@media (max-width: 480px) {
  .btn--lg { padding: 14px 22px; font-size: 14px; }
  .hero__actions .btn { padding: 14px 20px; }
}

/* ── Typography scale ───────────────────────────────────────── */
@media (max-width: 480px) {
  body { font-size: 15px; }
  .eyebrow { font-size: 10px; }
  .section { padding: clamp(48px, 8vw, 80px) 0; }
}

/* ── Ongoing projects dark section ──────────────────────────── */
@media (max-width: 700px) {
  [style*="min-height:380px"] {
    min-height: 280px !important;
  }
}

/* ── Map section Europe SVG ─────────────────────────────────── */
@media (max-width: 700px) {
  #europemap { height: 320px; }
}

/* ── Privacy / Terms / GDPR sticky TOC bar ──────────────────── */
@media (max-width: 700px) {
  [style*="background:var(--bg-alt); border-bottom:1px solid var(--rule); position:sticky"] {
    display: none;
  }
}

/* ── Contact office cards ───────────────────────────────────── */
@media (max-width: 700px) {
  [style*="display:grid; grid-template-columns:repeat(3,1fr); gap:20px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Premium touch — larger tap targets ─────────────────────── */
@media (max-width: 700px) {
  .career-item { min-height: 56px; }
  .nav__links a { min-height: 44px; display: flex; align-items: center; }
  .btn { min-height: 44px; }
  .wizard-region-btn { min-height: 60px; }
  .build-type-btn { padding: 16px; }
}

/* ── Scroll reveal — respect reduced motion ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .topbar, .nav, .foot, .cta-band { display: none; }
  .section { padding: 24px 0; }
  .hero { min-height: unset; padding: 32px 0; }
}

/* ── rg-doc responsive layout ────────────────────────────────── */
.rg-doc {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
  padding: 64px 0 80px;
}
@media (max-width: 960px) {
  .rg-doc {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 60px;
  }
  .rg-doc aside {
    position: static !important;
    top: auto !important;
  }
}

/* ── rg-map responsive layout ────────────────────────────────── */
.rg-map {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1000px) {
  .rg-map {
    grid-template-columns: 1fr;
  }
}

/* ── Nav mobile — show Start a Project CTA in mobile menu ────── */
@media (max-width: 1000px) {
  .nav.is-open .nav__links::after {
    content: "";
    display: block;
    padding: 8px 0 4px;
    border-top: 1px solid var(--rule);
    margin-top: 8px;
  }
}

/* ── Scroll container on mobile for horizontal overflow ──────── */
@media (max-width: 700px) {
  .foot__bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* Hero slideshow buttons */
  .hero__actions { gap: 10px; }
  /* Topbar hidden → nav offset fix */
  .nav { top: 0; }
}

/* ── Service page detail lists ───────────────────────────────── */
@media (max-width: 700px) {
  [style*="grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px"],
  [style*="grid-template-columns: repeat(3, 1fr); gap: 12px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(2,1fr); gap:14px"],
  [style*="grid-template-columns:repeat(2, 1fr); gap:14px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Careers From the Field article featured card ─────────────── */
@media (max-width: 860px) {
  [style*="grid-column:1 / -1; display:grid; grid-template-columns:1fr 1fr"] {
    grid-column: 1 !important;
    grid-template-columns: 1fr !important;
  }
}

/* ── ESG report modal — grid overrides ───────────────────────── */
@media (max-width: 700px) {
  [style*="display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:16px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="display:grid; grid-template-columns:repeat(2,1fr); gap:12px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Premium mobile touches ──────────────────────────────────── */
@media (max-width: 700px) {
  /* Smooth scroll momentum on mobile */
  html { -webkit-overflow-scrolling: touch; }

  /* Better tap highlight */
  a, button, [role="button"] {
    -webkit-tap-highlight-color: rgba(16,52,166,0.15);
    tap-highlight-color: rgba(16,52,166,0.15);
  }

  /* Cards consistent padding */
  .accred-card { padding: 20px 16px; }
  .partner-card { padding: 20px; }
  .testimonial-card { padding: 20px 16px; }

  /* CTA band premium spacing */
  .cta-band { padding: clamp(40px,8vw,60px) 0; }

  /* Map country info sidebar — stack below map */
  #map-default, .country-info {
    margin-top: 4px;
  }

  /* Article modal close btn */
  #articleOverlay button[onclick*="closeArticle"] {
    top: 12px; right: 12px;
  }
  #esgReportOverlay button[onclick*="closeESGReport"] {
    top: 12px; right: 12px;
  }
}

/* ── 360px extreme small ─────────────────────────────────────── */
@media (max-width: 360px) {
  :root { --gutter: 16px; }
  .hero__title { font-size: 28px; }
  .section__title { font-size: 22px; }
  .btn { font-size: 13px; padding: 10px 16px; }
  .stat-cell__value { font-size: 28px; }
  .foot__top { gap: 20px; }
}


/* ════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE — all pages
   Breakpoints: 1100px, 900px, 700px, 480px, 360px
   ════════════════════════════════════════════════════════════════ */

/* ── Section inner padding ── */
@media (max-width:900px){
  .section__inner { padding-left:20px; padding-right:20px; }
  .section__head { flex-direction:column; gap:16px; }
  .section__head-left, .section__head-right { width:100%; }
  .section__title { font-size:clamp(24px,5vw,36px); }
}
@media (max-width:480px){
  .section__inner { padding-left:16px; padding-right:16px; }
  .section__title { font-size:22px; }
}

/* ── Navigation ── */
@media (max-width:700px){
  .nav__inner { padding:0 16px; }
  .nav.is-open .nav__links { padding:16px; gap:4px; }
  .nav.is-open .nav__links a { font-size:15px; padding:12px 0; }
}

/* ── Hero ── */
@media (max-width:900px){
  .hero { min-height:auto; padding:100px 20px 60px; }
  .hero__content { max-width:100%; text-align:center; }
  .hero__badge-row { justify-content:center; flex-wrap:wrap; gap:8px; }
  .hero__title { font-size:clamp(28px,6vw,48px); }
  .hero__cta-row { flex-direction:column; align-items:center; gap:12px; }
  .hero__cta-row .btn { width:100%; max-width:320px; justify-content:center; }
}
@media (max-width:480px){
  .hero { padding:90px 16px 50px; }
  .hero__title { font-size:26px; }
  .hero__desc { font-size:15px; }
}

/* ── Project type cards ── */
@media (max-width:900px){
  .project-types { grid-template-columns:1fr!important; gap:16px; }
  .project-type-card { min-height:240px; }
}

/* ── Feature block (how we deliver) ── */
@media (max-width:860px){
  .feature-block { grid-template-columns:1fr!important; gap:32px; }
  .feature-block__media { min-height:280px; border-radius:12px; }
  .feature-block--reverse .feature-block__media { order:0!important; }
}
@media (max-width:480px){
  .feature-block__media { min-height:220px; }
}

/* ── Stats band ── */
@media (max-width:700px){
  .stats-band { grid-template-columns:repeat(2,1fr)!important; }
  .stat-cell { padding:20px 12px; }
  .stat-cell__value { font-size:32px; }
}
@media (max-width:380px){
  .stats-band { grid-template-columns:1fr!important; }
}

/* ── Map section ── */
@media (max-width:960px){
  .rg-map { grid-template-columns:1fr!important; gap:24px; }
  #mapWrap { min-height:380px!important; }
  #dnmap   { min-height:380px!important; }
}
@media (max-width:700px){
  #mapWrap { min-height:300px!important; border-radius:12px!important; }
  #dnmap   { min-height:300px!important; }
  .rg-map > div:last-child { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
  .rg-map > div:last-child > *:first-child,
  .rg-map > div:last-child > *:nth-child(2) { grid-column:1/-1; }
}
@media (max-width:480px){
  #mapWrap { min-height:260px!important; }
  #dnmap   { min-height:260px!important; }
  .rg-map > div:last-child { grid-template-columns:1fr; }
  #mlist { max-height:220px!important; }
  #zm-in,#zm-rst,#zm-out { width:30px!important; height:30px!important; font-size:15px!important; }
}

/* ── Accreditation cards ── */
@media (max-width:900px){
  .accred-grid { grid-template-columns:repeat(2,1fr)!important; }
}
@media (max-width:480px){
  .accred-grid { grid-template-columns:1fr!important; }
}

/* ── CTA band ── */
@media (max-width:700px){
  .cta-band__inner { flex-direction:column; text-align:center; align-items:center; gap:20px; }
  .cta-band__actions { flex-direction:column; width:100%; }
  .cta-band__actions .btn { width:100%; justify-content:center; }
}

/* ── Footer ── */
@media (max-width:700px){
  .foot__top { grid-template-columns:1fr 1fr!important; gap:24px; }
  .foot__brand { grid-column:1/-1; }
}
@media (max-width:480px){
  .foot__top { grid-template-columns:1fr!important; }
  .foot__bottom { flex-direction:column; gap:12px; text-align:center; }
  .foot__legal { flex-direction:column; gap:8px; align-items:center; }
  .foot__certs { justify-content:center; flex-wrap:wrap; gap:8px; }
}

/* ── Values grid (about) ── */
@media (max-width:1100px){
  .val-grid, [style*="repeat(4,1fr)"] { grid-template-columns:repeat(3,1fr)!important; }
}
@media (max-width:860px){
  .val-grid, [style*="repeat(4,1fr)"] { grid-template-columns:repeat(2,1fr)!important; }
}
@media (max-width:480px){
  .val-grid, [style*="repeat(4,1fr)"] { grid-template-columns:1fr!important; }
}

/* ── Reach section (about) ── */
@media (max-width:860px){
  #reach .section__inner > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns:1fr!important; }
}

/* ── Journey timeline (about) ── */
@media (max-width:860px){
  .journey-item { grid-template-columns:1fr!important; gap:12px!important; }
  .journey-item > div:nth-child(2) { display:none!important; }
  .journey-item > div:last-child,
  .journey-item > div:first-child { padding:0!important; text-align:left!important; width:100%!important; }
}

/* ── Services page ── */
@media (max-width:900px){
  .service-block { grid-template-columns:1fr!important; }
  .service-block--reverse .service-block__media { order:0!important; }
  .service-block__media { min-height:240px; }
}

/* ── Industry tiles ── */
@media (max-width:900px){
  .industries-grid { grid-template-columns:repeat(2,1fr)!important; }
}
@media (max-width:560px){
  .industries-grid { grid-template-columns:1fr!important; }
}

/* ── Careers ── */
@media (max-width:860px){
  .careers-grid { grid-template-columns:1fr!important; }
  .job-card { flex-direction:column; gap:12px; }
  .job-card__meta { flex-direction:row; flex-wrap:wrap; }
}

/* ── Contact wizard ── */
@media (max-width:860px){
  .wizard-layout { grid-template-columns:1fr!important; }
  .wizard-sidebar { display:none; }
}
@media (max-width:700px){
  .wizard-card { padding:24px 16px; }
  .build-types { grid-template-columns:1fr!important; gap:10px!important; }
  .wizard-map-regions { grid-template-columns:repeat(2,1fr)!important; }
  .wizard-nav { flex-direction:column; gap:10px; }
  .wizard-nav .btn { width:100%; justify-content:center; }
}
@media (max-width:480px){
  .wizard-map-regions { grid-template-columns:1fr!important; }
  .wizard-progress { display:none; }
}

/* ── Legal pages ── */
@media (max-width:860px){
  .rg-doc { grid-template-columns:1fr!important; }
  .legal-toc { display:none; }
}

/* ── General grid helpers ── */
@media (max-width:900px){
  .rg-2col { grid-template-columns:1fr!important; }
  .rg-3col { grid-template-columns:repeat(2,1fr)!important; }
  .rg-4col { grid-template-columns:repeat(2,1fr)!important; }
}
@media (max-width:560px){
  .rg-3col, .rg-4col { grid-template-columns:1fr!important; }
}

/* ── Touch improvements ── */
@media (hover:none){
  .btn, button, a, .mrow, [onclick] {
    -webkit-tap-highlight-color:transparent;
    min-height:44px;
  }
  .nav__links a { padding:14px 0; }
}

/* ── Global utility ── */
@media (max-width:700px){
  img { max-width:100%; height:auto; }
  table { display:block; overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .hide-mobile { display:none!important; }
}
@media (max-width:480px){
  .btn { font-size:13.5px; padding:12px 20px; }
  .eyebrow { font-size:10px; }
  h1 { font-size:26px; }
  h2 { font-size:22px; }
  h3 { font-size:18px; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE PROFESSIONAL — Comprehensive additions
   Targets: 1100 / 960 / 860 / 700 / 480 / 380px
   ══════════════════════════════════════════════════════════════ */

/* ── Base touch improvements (all sizes) ── */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
input, textarea, select, button { font-family: inherit; }

/* Tap targets — minimum 44px on touch devices */
@media (hover: none) {
  .btn, button, a, [onclick], .mrow, .nav__links a,
  .project-type-card, .val-card, .loc-item { min-height: 44px; }
  a, button, [onclick] { -webkit-tap-highlight-color: transparent; }
}

/* ── Section spacing ── */
@media (max-width: 900px) {
  .section, section[id] { padding-top: clamp(48px, 8vw, 80px); padding-bottom: clamp(48px, 8vw, 80px); }
  .section__inner { padding-left: 20px; padding-right: 20px; }
  .section__head { flex-direction: column; gap: 14px; }
  .section__head-left, .section__head-right { width: 100%; max-width: 100%; }
  .section__desc { font-size: 15px; }
}
@media (max-width: 480px) {
  .section__inner { padding-left: 16px; padding-right: 16px; }
  .section__title { font-size: clamp(22px, 6vw, 30px) !important; }
  .section__desc { font-size: 14px; }
  .eyebrow { font-size: 10px; }
}

/* ── Navigation ── */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta-group .btn--ghost { display: none; }
  .nav__inner { grid-template-columns: auto auto; justify-content: space-between; }
}
@media (max-width: 700px) {
  .nav__inner { padding: 0 16px; height: 56px; }
  .nav.is-open .nav__links { padding: 12px 16px 20px; }
  .nav.is-open .nav__links a { font-size: 16px; padding: 13px 0; border-bottom: 1px solid var(--rule); }
  .nav__cta-group .btn { padding: 9px 16px; font-size: 13px; }
}

/* ── Hero ── */
@media (max-width: 960px) {
  .hero { padding: 96px 20px 60px; min-height: auto; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(28px, 6vw, 46px); }
  .hero__badge-row { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 700px) {
  .hero { padding: 88px 16px 48px; text-align: center; }
  .hero__badge-row { justify-content: center; }
  .hero__title { font-size: clamp(26px, 7vw, 38px); }
  .hero__desc { font-size: 15px; }
  .hero__cta-row { flex-direction: column; align-items: center; gap: 12px; }
  .hero__cta-row .btn { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 16px 40px; }
  .hero__title { font-size: 24px; letter-spacing: -0.02em; }
}

/* ── Project type cards ── */
@media (max-width: 960px) {
  .project-types { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .project-types { grid-template-columns: 1fr !important; gap: 14px !important; }
  .project-type-card { min-height: 220px !important; }
}

/* ── Feature / How We Deliver blocks ── */
@media (max-width: 860px) {
  .feature-block { grid-template-columns: 1fr !important; gap: 28px !important; }
  .feature-block--reverse .feature-block__media { order: -1 !important; }
  .feature-block__media { min-height: 260px !important; border-radius: 12px; overflow: hidden; }
  .feature-block__body { padding: 0 !important; }
}
@media (max-width: 480px) {
  .feature-block__media { min-height: 200px !important; }
  .feature-block__steps { gap: 16px; }
}

/* ── Stats band ── */
@media (max-width: 700px) {
  .stats-band { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-cell { padding: 20px 10px; }
  .stat-cell__value { font-size: 30px !important; }
  .stat-cell__label { font-size: 10px; }
}
@media (max-width: 380px) {
  .stats-band { grid-template-columns: 1fr !important; }
}

/* ── Europe map ── */
@media (max-width: 960px) {
  .rg-map { grid-template-columns: 1fr !important; gap: 20px !important; }
  #mapWrap { min-height: 420px !important; border-radius: 14px !important; }
  #dnmap   { min-height: 420px !important; }
}
@media (max-width: 700px) {
  #mapWrap { min-height: 340px !important; border-radius: 12px !important; }
  #dnmap   { min-height: 340px !important; }
  #mlist   { max-height: 240px !important; }
  #zm-in, #zm-rst, #zm-out { width: 32px !important; height: 32px !important; font-size: 15px !important; }
  #zbadge  { display: none; }
}
@media (max-width: 480px) {
  #mapWrap { min-height: 280px !important; }
  #dnmap   { min-height: 280px !important; }
  #mlist   { max-height: 200px !important; }
}

/* ── Map legend / toolbar ── */
@media (max-width: 700px) {
  #coverage > .section__inner > div[style*="Legend"] { flex-direction: column; gap: 8px; }
  section#coverage .section__inner > div:first-of-type { padding: 8px 12px; }
}

/* ── Accreditations ── */
@media (max-width: 900px) {
  .accred-grid, [style*="accred"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .accred-grid, [style*="accred"] { grid-template-columns: 1fr !important; }
}

/* ── CTA band ── */
@media (max-width: 700px) {
  .cta-band__inner { flex-direction: column; text-align: center; align-items: center; gap: 20px; }
  .cta-band__actions { flex-direction: column; width: 100%; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-band__title { font-size: clamp(20px, 5vw, 28px); }
}

/* ── Footer ── */
@media (max-width: 860px) {
  .foot__top { grid-template-columns: 1fr 1fr !important; gap: 28px; }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot__top { grid-template-columns: 1fr !important; gap: 24px; }
  .foot__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .foot__legal { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .foot__certs { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .foot__social { justify-content: center; }
}

/* ── About — Values grid ── */
@media (max-width: 1100px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 800px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="repeat(3,1fr)"], [style*="repeat(3, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"],
  [style*="repeat(3,1fr)"], [style*="repeat(3, 1fr)"],
  [style*="repeat(2,1fr)"], [style*="repeat(2, 1fr)"] { grid-template-columns: 1fr !important; }
}

/* ── About — Journey timeline ── */
@media (max-width: 860px) {
  .journey-item { grid-template-columns: 1fr !important; }
  .journey-item > div:nth-child(2) { display: none !important; }
  .journey-item > div { padding: 0 !important; text-align: left !important; }
}

/* ── About — Reach section ── */
@media (max-width: 860px) {
  #reach .section__inner > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  #reach .section__inner > div > div:first-child { order: 1; }
  #reach .section__inner > div > div:last-child  { order: 2; }
}
@media (max-width: 480px) {
  .reach-done-grid, [class*="reach"] [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ── Services ── */
@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr !important; }
  .service-block--reverse .service-block__media { order: -1 !important; }
  .service-block__media { min-height: 240px; border-radius: 12px; overflow: hidden; }
}

/* ── Industries ── */
@media (max-width: 900px) {
  .industries-grid, [style*="industries"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .industries-grid, [style*="industries"] { grid-template-columns: 1fr !important; }
}

/* ── Compliance callout ── */
@media (max-width: 700px) {
  .compliance-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}
@media (max-width: 480px) {
  .compliance-grid { grid-template-columns: 1fr !important; }
}

/* ── Careers ── */
@media (max-width: 860px) {
  .careers-grid, .team-grid { grid-template-columns: 1fr !important; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .job-card__meta { flex-wrap: wrap; gap: 8px; }
  .job-card__apply { width: 100%; justify-content: center; }
}

/* ── Contact wizard ── */
@media (max-width: 900px) {
  .wizard-layout { grid-template-columns: 1fr !important; }
  .wizard-sidebar { display: none !important; }
}
@media (max-width: 700px) {
  .wizard-card { padding: 24px 18px !important; border-radius: 14px !important; }
  .build-types { grid-template-columns: 1fr !important; gap: 10px !important; }
  .wizard-map-regions { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .scale-options { flex-direction: column !important; gap: 8px !important; }
  .scale-option { width: 100% !important; }
  .wizard-nav { flex-direction: column !important; gap: 10px !important; align-items: stretch !important; }
  .wizard-nav .btn { width: 100% !important; justify-content: center !important; }
  .wizard-progress { gap: 8px !important; }
  .wizard-progress-step span { display: none; }
}
@media (max-width: 480px) {
  .wizard-map-regions { grid-template-columns: 1fr !important; }
  .wizard-progress { display: none !important; }
  .wizard-card { padding: 20px 14px !important; }
}

/* ── Legal pages (privacy, terms, gdpr) ── */
@media (max-width: 860px) {
  .rg-doc, [style*="rg-doc"] { grid-template-columns: 1fr !important; }
  .legal-toc, .doc-toc { display: none !important; }
  .legal-content { max-width: 100% !important; }
}

/* ── General grid helpers ── */
@media (max-width: 900px) {
  .rg-2col { grid-template-columns: 1fr !important; }
  .rg-2s   { grid-template-columns: 1fr !important; }
  .rg-3col-stat { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .rg-3col-stat { grid-template-columns: 1fr !important; }
}

/* ── Typography scaling ── */
@media (max-width: 700px) {
  h1 { font-size: clamp(24px, 6vw, 36px); }
  h2 { font-size: clamp(20px, 5vw, 28px); }
  h3 { font-size: clamp(17px, 4vw, 22px); }
  p  { font-size: 14.5px; }
}
@media (max-width: 480px) {
  h1 { font-size: clamp(22px, 6vw, 30px); }
  h2 { font-size: clamp(18px, 5vw, 24px); }
  .btn { font-size: 13.5px; padding: 11px 20px; }
}

/* ── Tables ── */
@media (max-width: 700px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
}

/* ── Utility ── */
@media (max-width: 700px) {
  .hide-mobile  { display: none !important; }
  .show-mobile  { display: block !important; }
}
@media (min-width: 701px) {
  .show-mobile { display: none !important; }
}

/* ── Smooth font rendering on mobile ── */
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


/* ══════════════════════════════════════════════════════════════
   VIDEO HERO — replaces slideshow
   ══════════════════════════════════════════════════════════════ */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(0.75) brightness(0.85);
}
/* Hide old slideshow images when video present */
.hero__visual-slide { display: none !important; }

@media (max-width: 700px) {
  .hero__video { object-position: 65% center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { filter: saturate(0.6) brightness(0.7); }
}

/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE — Dark theme preserved
   Breakpoints: 1100 / 960 / 860 / 700 / 480 / 380px
   ══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }
-webkit-text-size-adjust: 100%;

/* Touch targets */
@media (hover: none) {
  .btn, button, a, [onclick], .mrow, .nav__links a { min-height: 44px; }
  a, button, [onclick] { -webkit-tap-highlight-color: transparent; }
}

/* Section padding */
@media (max-width: 960px) {
  .section__inner { padding-left: 20px !important; padding-right: 20px !important; }
  .section__head { flex-direction: column !important; gap: 14px !important; }
  .section__head-left, .section__head-right { width: 100% !important; max-width: 100% !important; }
}
@media (max-width: 480px) {
  .section__inner { padding-left: 16px !important; padding-right: 16px !important; }
  .section__title { font-size: clamp(21px, 5.5vw, 28px) !important; }
}

/* Topbar */
@media (max-width: 700px) {
  .topbar__left .topbar__item:not(:first-child) { display: none; }
}
@media (max-width: 480px) { .topbar { display: none; } }

/* Navigation */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta-group .btn--ghost { display: none; }
  .nav__inner { grid-template-columns: auto auto; justify-content: space-between; padding: 0 20px; height: 60px; }
}
@media (max-width: 700px) {
  .nav__inner { padding: 0 16px; height: 56px; }
  .nav.is-open .nav__links { padding: 12px 16px 20px; }
  .nav.is-open .nav__links a { font-size: 16px; padding: 14px 0; }
}

/* Hero */
@media (max-width: 960px) {
  .hero { min-height: 85svh; }
  .hero__inner { padding: 100px 20px 60px; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(28px, 6vw, 52px); }
}
@media (max-width: 700px) {
  .hero { min-height: 90svh; }
  .hero__inner { padding: 88px 16px 48px; text-align: center; }
  .hero__badges { justify-content: center; flex-wrap: wrap; }
  .hero__title { font-size: clamp(26px, 7vw, 40px); }
  .hero__desc { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .eyebrow_title { text-align: center; display: block; }
}
@media (max-width: 480px) {
  .hero__inner { padding: 80px 16px 40px; }
  .hero__title { font-size: clamp(23px, 6.5vw, 34px); }
  .hero__badge { font-size: 9.5px; padding: 6px 10px; }
}

/* Stats band */
@media (max-width: 700px) {
  .stats-band__inner { grid-template-columns: repeat(2,1fr) !important; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 22px 16px; }
  .stat-cell__value { font-size: clamp(28px,6vw,40px) !important; }
}
@media (max-width: 380px) {
  .stats-band__inner { grid-template-columns: 1fr !important; }
}

/* Project type cards */
@media (max-width: 960px) {
  .project-types { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
}
@media (max-width: 600px) {
  .project-types { grid-template-columns: 1fr !important; }
}

/* Feature blocks */
@media (max-width: 860px) {
  .feature-block { grid-template-columns: 1fr !important; gap: 28px !important; }
  .feature-block--reverse .feature-block__media { order: -1 !important; }
  .feature-block__media { min-height: 250px !important; border-radius: 12px; overflow: hidden; }
  .feature-block__body { padding: 0 !important; }
}

/* MAP */
@media (max-width: 960px) {
  .rg-map { grid-template-columns: 1fr !important; gap: 20px !important; }
  #mapWrap { min-height: 420px !important; border-radius: 14px !important; }
  #dnmap   { min-height: 420px !important; }
}
@media (max-width: 700px) {
  #mapWrap { min-height: 340px !important; border-radius: 12px !important; }
  #dnmap   { min-height: 340px !important; }
  #mlist   { max-height: 220px !important; }
  #zm-in, #zm-rst, #zm-out { width: 32px !important; height: 32px !important; font-size: 15px !important; }
  #zbadge  { display: none !important; }
}
@media (max-width: 480px) {
  #mapWrap { min-height: 280px !important; }
  #dnmap   { min-height: 280px !important; }
  #mlist   { max-height: 180px !important; }
}

/* Accreditations */
@media (max-width: 900px) {
  .accred-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  .accred-grid { grid-template-columns: 1fr !important; }
}

/* CTA band */
@media (max-width: 700px) {
  .cta-band__inner { flex-direction: column !important; text-align: center; align-items: center; gap: 24px; }
  .cta-band__actions { flex-direction: column; width: 100%; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-band__title { font-size: clamp(22px,5vw,32px); }
}

/* Footer */
@media (max-width: 860px) {
  .foot__top { grid-template-columns: 1fr 1fr !important; gap: 28px; }
  .foot__brand { grid-column: 1/-1; }
}
@media (max-width: 560px) {
  .foot__top { grid-template-columns: 1fr !important; }
  .foot__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .foot__legal { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .foot__certs { justify-content: center; flex-wrap: wrap; }
  .foot__social { justify-content: center; }
}

/* About: Values */
@media (max-width: 1100px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 800px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"],
  [style*="repeat(3,1fr)"], [style*="repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
}

/* About: Journey */
@media (max-width: 860px) {
  .journey-item { grid-template-columns: 1fr !important; }
  .journey-item > div:nth-child(2) { display: none !important; }
  .journey-item > div { padding: 0 !important; }
}

/* About: Reach */
@media (max-width: 860px) {
  #reach > .section__inner > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  #reach [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* Services */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .service-block { grid-template-columns: 1fr !important; gap: 28px !important; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr !important; }
}

/* Industries */
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 700px) {
  .compliance-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  .compliance-grid { grid-template-columns: 1fr !important; }
}

/* Careers */
@media (max-width: 860px) {
  .careers-grid, .team-grid { grid-template-columns: 1fr !important; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Contact wizard */
@media (max-width: 900px) {
  .wizard-layout { grid-template-columns: 1fr !important; }
  .wizard-sidebar { display: none !important; }
}
@media (max-width: 700px) {
  .wizard-card { padding: 24px 18px !important; }
  .build-types { grid-template-columns: 1fr !important; gap: 10px !important; }
  .wizard-map-regions { grid-template-columns: repeat(2,1fr) !important; }
  .wizard-nav { flex-direction: column !important; gap: 10px !important; }
  .wizard-nav .btn { width: 100% !important; justify-content: center !important; }
}
@media (max-width: 480px) {
  .wizard-map-regions { grid-template-columns: 1fr !important; }
  .wizard-progress { display: none !important; }
}

/* Legal */
@media (max-width: 860px) {
  .rg-doc { grid-template-columns: 1fr !important; }
  .legal-toc { display: none !important; }
}

/* General grids */
@media (max-width: 900px) {
  .rg-2col, .rg-2s { grid-template-columns: 1fr !important; }
  .rg-3col-stat { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 560px) {
  .rg-3col-stat, .rg-4col { grid-template-columns: 1fr !important; }
}

/* Buttons mobile */
@media (max-width: 480px) {
  .btn { font-size: 13.5px; padding: 11px 20px; }
  .btn--lg { font-size: 14px; padding: 13px 24px; }
}

/* Tables */
@media (max-width: 700px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* Utility */
@media (max-width: 700px) { .hide-mobile { display: none !important; } }


/* ════════════════════════════════════════════════════════════════
   WIZARD HELP TUTORIALS — .wiz-help component
   ════════════════════════════════════════════════════════════════ */
.wiz-help {
  margin: 0 0 28px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s;
}
.wiz-help:focus-within,
.wiz-help:has([aria-expanded="true"]) {
  border-color: rgba(16,52,166,0.25);
  box-shadow: 0 0 0 3px rgba(16,52,166,0.06);
}

/* Toggle button */
.wiz-help__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
  text-align: left;
  transition: background 0.18s, color 0.18s;
  border-radius: 8px;
}
.wiz-help__toggle:hover {
  background: rgba(16,52,166,0.06);
  color: var(--cyan);
}
.wiz-help__toggle svg:first-child {
  color: var(--cyan);
  flex-shrink: 0;
}
.wiz-help__toggle span { flex: 1; }

/* Chevron rotates on expand */
.wiz-help__chevron {
  flex-shrink: 0;
  color: var(--gray);
  transition: transform 0.25s var(--ease);
}
.wiz-help__toggle[aria-expanded="true"] .wiz-help__chevron {
  transform: rotate(180deg);
}
.wiz-help__toggle[aria-expanded="true"] {
  background: rgba(16,52,166,0.05);
  color: var(--cyan);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Body (hidden by default) */
.wiz-help__body {
  padding: 20px 20px 16px;
  border-top: 1px solid var(--rule);
  background: #fafbff;
  animation: wiz-help-open 0.2s var(--ease) both;
}
.wiz-help__body[hidden] { display: none; }
@keyframes wiz-help-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Grid of help items */
.wiz-help__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .wiz-help__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Individual help item */
.wiz-help__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wiz-help__item:hover {
  border-color: rgba(16,52,166,0.2);
  box-shadow: 0 2px 12px rgba(16,52,166,0.07);
}

/* Icon in each item */
.wiz-help__item-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Item title */
.wiz-help__item-title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 5px;
}

/* Item description */
.wiz-help__item-desc {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.wiz-help__item-desc strong {
  color: var(--navy-800);
  font-weight: 600;
}

/* Tip bar at bottom of help panel */
.wiz-help__tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(16,52,166,0.05);
  border: 1px solid rgba(16,52,166,0.12);
  border-radius: 7px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.wiz-help__tip svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}
.wiz-help__tip strong {
  color: var(--navy-800);
}

/* ════════════════════════════════════════════════════════════════
   WIZARD — comprehensive mobile responsive
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .wizard-wrap { max-width: 100%; }
  .wizard-card { padding: clamp(22px, 4vw, 40px); border-radius: 12px; }
}

@media (max-width: 700px) {
  .wizard-section { padding: 48px 0; }
  .wizard-card { padding: 22px 18px; }
  .wizard-card__title { font-size: 20px; }
  .wizard-card__sub { font-size: 14.5px; margin-bottom: 24px; }

  /* Progress bar */
  .wizard-steps-bar { margin-bottom: 32px; }
  .wizard-steps-bar::before { display: none; }
  .wizard-step-indicator__label { font-size: 9px; }
  .wizard-step-indicator__num { width: 34px; height: 34px; font-size: 13px; }

  /* Build types */
  .build-types { grid-template-columns: 1fr; gap: 12px; }
  .build-type-btn { padding: 16px 14px; }
  .build-type-btn__title { font-size: 15px; }
  .build-type-btn__desc { font-size: 12px; }

  /* Map regions */
  .wizard-map-regions { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .wizard-region-btn { padding: 12px 8px; font-size: 13px; }
  .wizard-region-btn__flag { font-size: 20px; }

  /* Map iframe */
  .wizard-map-container iframe { height: 280px; }

  /* Form grid */
  .wizard-form-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Nav */
  .wizard-nav { flex-direction: column; gap: 10px; padding-top: 20px; }
  .wizard-nav .btn { width: 100%; justify-content: center; }

  /* Help panel */
  .wiz-help__toggle { font-size: 13px; padding: 12px 14px; }
  .wiz-help__body { padding: 16px 14px; }
  .wiz-help__item { padding: 12px; gap: 10px; }
  .wiz-help__item-icon { width: 32px; height: 32px; }
  .wiz-help__tip { font-size: 12px; padding: 10px 12px; }
}

@media (max-width: 480px) {
  .wizard-steps-bar { gap: 0; }
  .wizard-step-indicator { gap: 6px; }
  .wizard-step-indicator__label { display: none; }
  .wizard-map-regions { grid-template-columns: repeat(2, 1fr); }
  .wizard-region-btn__sub { display: none; }
  .wiz-help__toggle span { font-size: 12.5px; }
}

/* ════════════════════════════════════════════════════════════════
   ACCREDITATIONS — mobile (supplement to inline <style>)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .accred-card__hero { height: 180px; padding: 24px 16px 20px; }
  .accred-card__icon-wrap { width: 56px; height: 56px; }
  .accred-card__body { padding: 16px 16px 18px; }
  .accred-card__title { font-size: 13.5px; }
  .accred-card__desc { font-size: 11.5px; }
}
@media (max-width: 480px) {
  .accred-card__hero { height: auto; min-height: 160px; padding: 24px 20px; }
  .accred-card { border-radius: 14px; }
}


/* ════════════════════════════════════════════════════════════════
   WIZARD TOOLTIP BUTTON & TABLE
   ════════════════════════════════════════════════════════════════ */
.wiz-tooltip-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--rule-2);
  background: #fff;
  color: var(--gray);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  padding: 0;
}
.wiz-tooltip-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}

.wiz-tooltip-body {
  margin-top: 10px;
  margin-bottom: 16px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  animation: wiz-help-open 0.2s var(--ease) both;
}
.wiz-tooltip-body[hidden] { display: none; }

.wiz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.wiz-table th {
  background: var(--bg-alt);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray);
  border-bottom: 1px solid var(--rule);
}
.wiz-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2);
  line-height: 1.4;
}
.wiz-table tr:last-child td { border-bottom: none; }
.wiz-table tr:hover td { background: var(--bg-alt); }
.wiz-table td:first-child { font-weight: 600; color: var(--navy-800); }

@media (max-width: 600px) {
  .wiz-table th, .wiz-table td { padding: 8px 10px; font-size: 11.5px; }
}

/* ── Details help tooltip (Step 3) ── */
.wiz-details-help {
  margin-top: 8px;
  padding: 14px 16px;
  background: rgba(16,52,166,0.04);
  border: 1px solid rgba(16,52,166,0.12);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.65;
  animation: wiz-help-open 0.2s var(--ease) both;
}
.wiz-details-help[hidden] { display: none; }
.wiz-details-help ul {
  margin: 8px 0 0;
  padding-left: 18px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wiz-details-help li { color: var(--ink-2); }

.white-border {
   text-shadow:
    0 0 3px #fff ,
    0 0 6px #fff,
    -2px 0 2px #fff,
     2px 0 2px #fff,
     0 -2px 2px #fff,
     0  2px 2px #fff !important;
}



/* ════════════════════════════════════════════════════════════════
   JOB CARDS — expandable position listing
   ════════════════════════════════════════════════════════════════ */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: padding-left 0.25s var(--ease), background 0.2s;
  border-radius: 0;
}
.job-card:first-child { border-top: 1px solid var(--rule); }
.job-card:hover { padding-left: 10px; }
.job-card:hover .job-card__title { color: var(--cyan); }
.job-card:hover .job-expand-btn {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}

.job-card__main { flex: 1; min-width: 0; }

.job-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* Job badges */
.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.job-badge--dark  { background: var(--navy-900); color: #fff; }
.job-badge--light { background: rgba(255,255,255,0.9); color: var(--ink-2); border: 1px solid var(--rule); }
.job-badge--blue  { background: rgba(16,52,166,0.08); color: var(--cyan); }
.job-badge--green { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.job-badge--purple{ background: rgba(139,92,246,0.1); color: #7c3aed; border: 1px solid rgba(139,92,246,0.2); }
.job-badge--teal  { background: rgba(20,184,166,0.1); color: #0f766e; border: 1px solid rgba(20,184,166,0.2); }

.job-card__title {
  font-family: var(--display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.job-card__summary {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 68ch;
}

.job-card__skills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.job-skill {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 11.5px;
  padding: 4px 10px;
  color: var(--ink-2);
  font-family: var(--mono);
  letter-spacing: 0.03em;
}

.job-card__actions {
  flex-shrink: 0;
}

.job-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1.5px solid var(--rule-2);
  border-radius: 8px;
  background: #fff;
  color: var(--navy-800);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
}
.job-expand-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16,52,166,0.2);
}

/* ── Role Detail Modal ── */
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.role-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.role-list li {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  padding-left: 4px;
}
.role-list li::marker { color: var(--cyan); }

/* ── Job card mobile ── */
@media (max-width: 700px) {
  .job-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px 0; }
  .job-card:hover { padding-left: 0; }
  .job-card__actions { width: 100%; }
  .job-expand-btn { width: 100%; justify-content: center; }
  .job-card__title { font-size: 18px; }
  .job-card__summary { font-size: 13.5px; }
}
@media (max-width: 480px) {
  #modalBox { border-radius: 16px; margin: 20px auto; }
  #modalHeader { padding: 28px 24px 22px; }
  #modalBox > div:last-child { padding: 24px 24px 28px; }
  #modalBox #modalBody h4 { font-size: 15px; }
  .role-list li { font-size: 13.5px; }
}

/* ════════════════════════════════════════════════════════════════
   ENGINEERING INSIGHTS — article component
   ════════════════════════════════════════════════════════════════ */
.insight-featured {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10,27,61,0.07);
}

.insight-article {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 500px;
}

.insight-article__image {
  position: relative;
  overflow: hidden;
}
.insight-article__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.insight-featured:hover .insight-article__image img { transform: scale(1.03); }
.insight-article__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,20,50,0.5) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.insight-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 5px;
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.insight-article__content {
  padding: 36px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Byline */
.insight-article__byline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.insight-byline__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.insight-byline__info { flex: 1; min-width: 120px; }
.insight-byline__name {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}
.insight-byline__role {
  display: block;
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 1px;
}
.insight-byline__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray);
  flex-shrink: 0;
}
.insight-byline__dot { opacity: 0.4; }

/* Article text */
.insight-article__title {
  font-family: var(--display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.insight-article__lead {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
}

/* Expandable body */
.insight-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: insight-open 0.3s var(--ease) both;
}
.insight-body[hidden] { display: none; }
@keyframes insight-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.insight-section h4 {
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.insight-section p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.78;
  margin: 0;
}

/* Fiber vs Copper comparison table */
.insight-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
.insight-compare__col {
  border-radius: 10px;
  padding: 16px 18px;
  border: 1.5px solid var(--rule);
}
.insight-compare__col--copper { border-top: 3px solid #b45309; background: #fffbf5; }
.insight-compare__col--fiber  { border-top: 3px solid var(--cyan); background: #f5f8ff; }
.insight-compare__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.insight-compare__col--copper .insight-compare__label { color: #b45309; }
.insight-compare__col--fiber  .insight-compare__label { color: var(--cyan); }
.insight-compare__col ul {
  margin: 0; padding-left: 16px;
  display: flex; flex-direction: column; gap: 5px;
}
.insight-compare__col li { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }

/* Usage section */
.insight-usage { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.insight-usage__item { display: flex; gap: 14px; align-items: flex-start; }
.insight-usage__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.insight-usage__icon--fiber  { background: rgba(16,52,166,0.08); color: var(--cyan); }
.insight-usage__icon--copper { background: rgba(180,83,9,0.08); color: #b45309; }
.insight-usage__item strong { display: block; font-size: 13px; color: var(--navy-900); margin-bottom: 4px; }
.insight-usage__item ul { margin: 0; padding-left: 16px; }
.insight-usage__item li { font-size: 12.5px; color: var(--ink-2); line-height: 1.55; }

/* Conclusion + quote */
.insight-section--conclusion {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px 22px;
}
.insight-section--conclusion h4 { margin-bottom: 8px; }
.insight-quote {
  margin: 16px 0 0;
  padding: 16px 20px;
  background: #fff;
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
}
.insight-quote p {
  font-size: 14.5px;
  font-style: italic;
  color: var(--navy-800);
  font-weight: 500;
  margin: 0 0 8px;
}
.insight-quote cite { font-size: 12px; color: var(--gray); font-style: normal; font-family: var(--mono); }

/* Footer: toggle + tags */
.insight-article__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}

.insight-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--navy-900);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.insight-toggle-btn:hover { background: var(--cyan); transform: translateY(-1px); }
.insight-toggle-btn svg { transition: transform 0.3s var(--ease); }

.insight-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.insight-tag {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11.5px;
  color: var(--gray);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.insight-tag:hover { border-color: var(--cyan); color: var(--cyan); cursor: default; }

/* ── Article responsive ── */
@media (max-width: 1000px) {
  .insight-article { grid-template-columns: 1fr; }
  .insight-article__image { aspect-ratio: 16/7; }
  .insight-article__content { padding: 28px 32px 28px; }
}
@media (max-width: 700px) {
  .insight-article__content { padding: 22px 20px 22px; gap: 16px; }
  .insight-article__title { font-size: 20px; }
  .insight-article__lead { font-size: 14px; }
  .insight-compare { grid-template-columns: 1fr; gap: 12px; }
  .insight-article__footer { flex-direction: column; align-items: flex-start; }
  .insight-toggle-btn { width: 100%; justify-content: center; }
  .insight-article__image { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .insight-featured { border-radius: 14px; }
  .insight-article__content { padding: 18px 16px; }
  .insight-byline__date { display: none; }
}


/* ════════════════════════════════════════════════════════════════════
   DIGINEXT — FULL MOBILE OPTIMISATION (all pages)
   Authored as a single, organised block appended to base styles.
   Breakpoints: 1280 / 1100 / 960 / 860 / 700 / 600 / 480 / 380px
   ════════════════════════════════════════════════════════════════════

   SECTION MAP
   ├── 0. Base resets & touch improvements
   ├── 1. Topbar
   ├── 2. Navigation / hamburger
   ├── 3. Hero (video + actions)
   ├── 4. Stats band
   ├── 5. Section inner / heading
   ├── 6. Project-type cards (index)
   ├── 7. Services grid & feature blocks
   ├── 8. Europe map + sidebar
   ├── 9. Accreditations grid (5-col)
   ├── 10. ESG section & modal
   ├── 11. CTA band
   ├── 12. Footer
   ├── 13. About page
   ├── 14. Services page
   ├── 15. Industries page
   ├── 16. Careers page  (job-cards + article)
   ├── 17. Contact wizard
   ├── 18. Legal pages (privacy, terms, gdpr)
   └── 19. Global utilities
   ═══════════════════════════════════════════════════════════════════ */

/* ── 0. Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
img, video, svg, canvas { max-width: 100%; height: auto; display: block; }
body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; }

@media (hover: none) {
  .btn, button, a, [onclick], label,
  .mrow, .nav__links a, .job-card,
  .career-item, .accred-card,
  .industry-card, .service-card { min-height: 44px; }
  a, button, [onclick] { -webkit-tap-highlight-color: transparent; }
}

/* ── 1. Topbar ───────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .topbar__left .topbar__item:not(:first-child) { display: none; }
  .topbar__inner { padding: 0 16px; }
  .topbar { font-size: 11px; padding: 6px 0; }
}
@media (max-width: 480px) { .topbar { display: none; } }

/* ── 2. Navigation ───────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .nav__links   { display: none; }
  .nav__toggle  { display: inline-flex; }
  .nav__cta-group .btn--ghost { display: none; }
  .nav__inner   { grid-template-columns: auto auto;
                  justify-content: space-between;
                  padding: 0 20px; height: 60px; }
}
@media (max-width: 700px) {
  .nav__inner { padding: 0 16px; height: 56px; }
  .nav.is-open .nav__links {
    padding: 12px 16px 20px;
    display: flex; flex-direction: column; gap: 0;
  }
  .nav.is-open .nav__links a {
    font-size: 16px; padding: 13px 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav__cta-group .btn { padding: 9px 16px; font-size: 13px; }
}

/* ── 3. Hero ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { min-height: 88svh; }
  .hero__inner { padding: 100px 20px 64px; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(28px, 6vw, 52px); }
  .hero__badge-row, .hero__badges { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 700px) {
  .hero { min-height: 92svh; }
  .hero__inner { padding: 88px 16px 48px; text-align: center; }
  .hero__badges { justify-content: center; }
  .hero__badge-row { justify-content: center; }
  .hero__title { font-size: clamp(26px, 7vw, 40px); }
  .hero__desc  { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .eyebrow_title { text-align: center; display: block; }
}
@media (max-width: 480px) {
  .hero { min-height: auto; }
  .hero__inner { padding: 80px 16px 40px; }
  .hero__title { font-size: clamp(23px, 6.5vw, 34px); }
  .hero__desc  { font-size: 14.5px; }
  .hero__badge { font-size: 9.5px; padding: 5px 10px; }
}
@media (max-width: 700px) { .hero__video { object-position: 65% center; } }

/* ── 4. Stats band ───────────────────────────────────────────────── */
@media (max-width: 700px) {
  .stats-band__inner, .stats-band > .section__inner > div {
    grid-template-columns: repeat(2,1fr) !important;
  }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 22px 14px;
  }
  .stat-cell__value { font-size: clamp(28px,6vw,40px) !important; }
  .stat-cell__label { font-size: 10px; }
}
@media (max-width: 380px) {
  .stats-band__inner, .stats-band > .section__inner > div {
    grid-template-columns: 1fr !important;
  }
  .stat-cell { border-right: none !important; }
}

/* ── 5. Section inner / heading ──────────────────────────────────── */
@media (max-width: 960px) {
  .section__inner { padding-left: 20px !important; padding-right: 20px !important; }
  .section__head  { flex-direction: column !important; gap: 14px !important; }
  .section__head-left,
  .section__head-right { width: 100% !important; max-width: 100% !important; }
  .section__desc  { font-size: 15px; }
}
@media (max-width: 480px) {
  .section__inner { padding-left: 16px !important; padding-right: 16px !important; }
  .section__title { font-size: clamp(20px, 5.5vw, 28px) !important; }
  .eyebrow        { font-size: 10px; }
}

/* ── 6. Project-type cards (index) ───────────────────────────────── */
@media (max-width: 960px) {
  .project-types { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
}
@media (max-width: 600px) {
  .project-types { grid-template-columns: 1fr !important; }
  .project-type-card { min-height: 200px !important; }
}

/* ── 7. Services grid & feature blocks (index) ───────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .feature-block { grid-template-columns: 1fr !important; gap: 28px !important; }
  .feature-block--reverse .feature-block__media { order: -1 !important; }
  .feature-block__media { min-height: 260px !important; border-radius: 12px; overflow: hidden; }
  .feature-block__body  { padding: 0 !important; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card  { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .feature-block__media { min-height: 200px !important; }
  .feature-block__step-list { gap: 16px !important; }
}

/* ── 8. Europe map ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .rg-map      { grid-template-columns: 1fr !important; gap: 20px !important; }
  #mapWrap     { min-height: 420px !important; border-radius: 14px !important; }
  #dnmap       { min-height: 420px !important; }
}
@media (max-width: 700px) {
  #mapWrap     { min-height: 320px !important; border-radius: 12px !important; }
  #dnmap       { min-height: 320px !important; }
  #mlist       { max-height: 200px !important; }
  #zm-in, #zm-rst, #zm-out {
    width: 30px !important; height: 30px !important; font-size: 14px !important;
  }
  #zbadge      { display: none !important; }
  /* Map legend bar */
  section#coverage .section__inner > div[style*="Legend"],
  section#coverage .section__inner > div:first-of-type {
    flex-direction: column !important; gap: 8px !important;
  }
}
@media (max-width: 480px) {
  #mapWrap { min-height: 260px !important; }
  #dnmap   { min-height: 260px !important; }
  #mlist   { max-height: 160px !important; }
  .mtab    { font-size: 10px !important; padding: 7px 2px !important; }
  /* Map sidebar stats grid */
  #map-detail + div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── 9. Accreditations ───────────────────────────────────────────── */
@media (max-width: 1280px) {
  .accred-grid, [id="accred-grid"] { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 860px) {
  .accred-grid, [id="accred-grid"] { grid-template-columns: repeat(2,1fr) !important; gap: 16px !important; }
  .accred-card__hero   { height: 180px !important; padding: 22px 16px 18px !important; }
  .accred-card__body   { padding: 16px !important; }
  .accred-card__title  { font-size: 13px !important; }
  .accred-card__desc   { font-size: 11.5px !important; }
}
@media (max-width: 480px) {
  .accred-grid, [id="accred-grid"] { grid-template-columns: 1fr !important; gap: 14px !important; }
  .accred-card__hero   { height: auto !important; min-height: 160px !important; }
  .accred-card         { border-radius: 14px !important; }
}

/* ── 10. ESG section & report modal ─────────────────────────────── */
@media (max-width: 960px) {
  .esg-hero-img   { min-height: 280px !important; }
  .esg-pillars    { grid-template-columns: 1fr !important; gap: 20px !important; }
}
@media (max-width: 600px) {
  .esg-hero-img          { min-height: 200px !important; }
  .esg-hero-img__title   { font-size: 20px !important; }
  .esg-hero-img__caption { padding: 20px !important; }
  .esg-pillar            { padding: 28px 20px !important; }
  .esg-pillar__stats     { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .esg-pillar__stats { grid-template-columns: 1fr !important; }
}
/* ESG modal */
@media (max-width: 700px) {
  #esgReportOverlay { padding: 12px 10px 32px !important; }
  .esg-modal        { border-radius: 16px !important; }
  .esg-modal__header { padding: 28px 20px 24px !important; }
  .esg-modal__head-grid { grid-template-columns: 1fr !important; }
  .esg-progress-ring    { display: none !important; }
  .esg-modal__body      { padding: 22px 20px 28px !important; gap: 28px !important; }
  .esg-modal__title     { font-size: 22px !important; }
  .esg-iso-card         { padding: 18px !important; }
  .esg-commit-grid      { grid-template-columns: 1fr !important; }
  .esg-metric-grid      { grid-template-columns: 1fr !important; padding: 14px 16px !important; }
  .esg-metric-grid__item + .esg-metric-grid__item {
    border-top: 1px solid var(--rule); padding-top: 12px; margin-top: 4px;
  }
}
@media (max-width: 480px) {
  .esg-modal__header  { padding: 24px 16px 20px !important; }
  .esg-modal__body    { padding: 18px 16px 22px !important; }
  .esg-section-title  { font-size: 15px !important; }
  .esg-section-num    { width: 26px !important; height: 26px !important; font-size: 9px !important; }
}
/* Executive summary KPI row inside ESG modal */
@media (max-width: 600px) {
  .esg-modal__body section:first-child > div[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  .esg-iso-card > div[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── 11. CTA band ────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .cta-band__inner   { flex-direction: column !important; text-align: center; align-items: center; gap: 24px; }
  .cta-band__actions { flex-direction: column; width: 100%; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-band__title   { font-size: clamp(22px,5vw,32px); }
  .cta-band__sub     { font-size: 14.5px; }
}

/* ── 12. Footer ──────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .foot__top   { grid-template-columns: 1fr 1fr !important; gap: 28px; }
  .foot__brand, .foot__brand-block { grid-column: 1/-1; max-width: 100%; }
}
@media (max-width: 560px) {
  .foot__top    { grid-template-columns: 1fr !important; gap: 20px; }
  .foot__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .foot__legal  { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .foot__certs  { justify-content: center; flex-wrap: wrap; gap: 6px; }
  .foot__social { justify-content: center; }
  .foot__cert-badge { font-size: 9px; padding: 3px 6px; }
}

/* ══════════════════════════════════════════════════════════════════
   13. ABOUT PAGE
   ══════════════════════════════════════════════════════════════════ */
/* Mission / vision split */
@media (max-width: 860px) {
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
/* Values grid: 4-col → 3 → 2 → 1 */
@media (max-width: 1100px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(3,1fr) !important;
  }
}
@media (max-width: 800px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width: 480px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"],
  [style*="repeat(3,1fr)"], [style*="repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
/* Journey timeline: hide centre dot column on small screens */
@media (max-width: 860px) {
  .journey-item                     { grid-template-columns: 1fr !important; }
  .journey-item > div:nth-child(2)  { display: none !important; }
  .journey-item > div               { padding: 0 !important; text-align: left !important; }
  [style*="grid-template-columns:1fr 60px 1fr"] { grid-template-columns: 1fr !important; }
}
/* Reach section grid */
@media (max-width: 860px) {
  #reach > .section__inner > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  #reach [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  #reach [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
/* About hero feature block (photo + text) */
@media (max-width: 860px) {
  .feature-block { grid-template-columns: 1fr !important; }
  .feature-block--reverse .feature-block__media { order: -1 !important; }
  .feature-block__media { min-height: 260px !important; border-radius: 12px; overflow: hidden; }
  .feature-block__body  { padding: 0 !important; }
}
/* Team grid */
@media (max-width: 700px) {
  .team-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════════════
   14. SERVICES PAGE
   ══════════════════════════════════════════════════════════════════ */
/* Service hero / feature blocks */
@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr !important; gap: 28px !important; }
  .service-block--reverse .feature-block__media,
  .service-block .feature-block__media { order: -1 !important; }
}
/* Process / step grid: 4-col → 2 → 1 */
@media (max-width: 900px) {
  [style*="repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 560px) {
  [style*="repeat(4,1fr)"] { grid-template-columns: 1fr !important; }
}
/* Services detail: repeat(3,1fr) → 2 → 1 */
@media (max-width: 860px) {
  [style*="repeat(3,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 560px) {
  [style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
}
/* Inline 2-col grids */
@media (max-width: 700px) {
  [style*="repeat(2,1fr)"],
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
/* Service card padding */
@media (max-width: 480px) {
  .service-card { padding: 22px 18px !important; }
  .service-card__icon { width: 44px !important; height: 44px !important; }
}

/* ══════════════════════════════════════════════════════════════════
   15. INDUSTRIES PAGE
   ══════════════════════════════════════════════════════════════════ */
/* 6-col partner/icon strip → 3 → 2 → 1 */
@media (max-width: 960px) {
  [style*="repeat(6,1fr)"] { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 560px) {
  [style*="repeat(6,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 380px) {
  [style*="repeat(6,1fr)"] { grid-template-columns: 1fr !important; }
}
/* Industries grid */
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: 1fr !important; }
}
/* Compliance / standards grid */
@media (max-width: 700px) {
  .compliance-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  .compliance-grid  { grid-template-columns: 1fr !important; }
  .industry-card    { padding: 24px 18px !important; }
}
/* Industry section inline 2-col */
@media (max-width: 700px) {
  section[id] [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   16. CAREERS PAGE
   ══════════════════════════════════════════════════════════════════ */
/* Job list cards */
@media (max-width: 700px) {
  .job-list .job-card {
    flex-direction: column; align-items: flex-start;
    gap: 16px; padding: 22px 0;
  }
  .job-card:hover     { padding-left: 0; }
  .job-card__actions  { width: 100%; }
  .job-expand-btn     { width: 100%; justify-content: center; }
  .job-card__title    { font-size: 18px; }
  .job-card__summary  { font-size: 13.5px; }
}
/* Job role modal */
@media (max-width: 600px) {
  #roleModal > div { margin: 16px auto; border-radius: 16px !important; }
  #modalHeader { padding: 26px 20px 20px !important; }
  #modalHeader > div:last-child { padding: 22px 20px 26px !important; }
  #modalMeta   { gap: 6px !important; }
  #modalSkills { gap: 5px !important; }
}
@media (max-width: 480px) {
  #modalRoleTitle { font-size: 20px !important; }
  .role-list li   { font-size: 13px !important; }
  #modalApply     { width: 100%; justify-content: center; }
  /* modal apply + salary row */
  #modalApply + div,
  div[style*="justify-content:space-between"][style*="flex-wrap:wrap"] {
    flex-direction: column !important; gap: 14px !important;
  }
}
/* Article grid (from-the-field) */
@media (max-width: 860px) {
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  /* Featured article */
  article[style*="grid-column:1 / -1"] { grid-column: 1/-1 !important; grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  article[style*="grid-column:1 / -1"] { grid-template-columns: 1fr !important; }
}
/* Insight / engineering article */
@media (max-width: 1000px) {
  .insight-article { grid-template-columns: 1fr !important; }
  .insight-article__image { aspect-ratio: 16/7; }
  .insight-article__content { padding: 28px 28px 28px !important; }
}
@media (max-width: 700px) {
  .insight-article__content { padding: 20px 18px 20px !important; gap: 16px !important; }
  .insight-article__title   { font-size: 19px !important; }
  .insight-article__lead    { font-size: 14px !important; }
  .insight-compare          { grid-template-columns: 1fr !important; }
  .insight-article__footer  { flex-direction: column; align-items: flex-start; }
  .insight-toggle-btn       { width: 100%; justify-content: center; }
  .insight-article__image   { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .insight-featured           { border-radius: 14px !important; }
  .insight-article__content   { padding: 16px 14px !important; }
  .insight-byline__date       { display: none; }
}
/* Career item (older list style) */
@media (max-width: 700px) {
  .career-item {
    flex-direction: column; align-items: flex-start; gap: 10px;
  }
  .career-item__arrow { align-self: flex-end; }
  .career-item__meta  { flex-wrap: wrap; gap: 6px; }
}

/* ══════════════════════════════════════════════════════════════════
   17. CONTACT PAGE (wizard)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .wizard-wrap    { max-width: 100% !important; }
  .wizard-sidebar { display: none !important; }
  .wizard-layout  { grid-template-columns: 1fr !important; }
}
@media (max-width: 700px) {
  .wizard-card     { padding: 24px 18px !important; border-radius: 14px !important; }
  .wizard-card__title { font-size: 20px !important; }
  .wizard-steps-bar::before { display: none; }
  .wizard-step-indicator__label { font-size: 9px; }
  .build-types     { grid-template-columns: 1fr !important; gap: 10px !important; }
  .build-type-btn  { padding: 16px 14px !important; }
  .wizard-map-regions { grid-template-columns: repeat(2,1fr) !important; gap: 8px !important; }
  .wizard-nav      { flex-direction: column !important; gap: 10px !important; align-items: stretch !important; }
  .wizard-nav .btn { width: 100% !important; justify-content: center !important; }
  /* Wizard help panels */
  .wiz-help__grid  { grid-template-columns: 1fr !important; gap: 10px !important; }
  .wiz-help__toggle { font-size: 13px; padding: 12px 14px; }
  .wiz-help__body  { padding: 14px !important; }
  .wiz-table th, .wiz-table td { padding: 8px 10px; font-size: 11.5px; }
}
@media (max-width: 480px) {
  .wizard-card     { padding: 18px 14px !important; }
  .wizard-map-regions { grid-template-columns: 1fr !important; }
  .wizard-progress { display: none !important; }
  .wizard-step-indicator__label { display: none; }
  .wiz-tooltip-body { margin: 8px 0 12px; }
}

/* ══════════════════════════════════════════════════════════════════
   18. LEGAL PAGES (privacy / terms / gdpr)
   ══════════════════════════════════════════════════════════════════ */
/* Sidebar TOC + content */
@media (max-width: 860px) {
  .rg-doc,
  [style*="grid-template-columns:1fr 320px"],
  [style*="grid-template-columns:180px 1fr"],
  [style*="grid-template-columns:120px 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .legal-toc,
  [style*="position:sticky"][style*="top:100px"] { display: none !important; }
  .legal-content  { max-width: 100% !important; }
  .legal-content h2 { font-size: clamp(18px,4vw,24px); }
}
@media (max-width: 480px) {
  .legal-content h3 { font-size: 16px; }
  .legal-content p,
  .legal-content li { font-size: 14px; line-height: 1.7; }
  /* Definition list / term grids */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
/* Tables in legal */
@media (max-width: 700px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
  th, td { min-width: 120px; font-size: 13px; padding: 10px 12px; }
}

/* ══════════════════════════════════════════════════════════════════
   19. GLOBAL UTILITIES
   ══════════════════════════════════════════════════════════════════ */
/* Buttons */
@media (max-width: 480px) {
  .btn    { font-size: 13.5px; padding: 11px 20px; min-height: 44px; }
  .btn--lg { font-size: 14px; padding: 13px 24px; }
  .btn--sm { font-size: 12px; padding: 8px 14px; }
}
/* General grids */
@media (max-width: 900px) {
  .rg-2col      { grid-template-columns: 1fr !important; }
  .rg-2s        { grid-template-columns: 1fr !important; }
  .rg-3col-stat { grid-template-columns: repeat(2,1fr) !important; }
  .rg-4col      { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 560px) {
  .rg-3col-stat { grid-template-columns: 1fr !important; }
  .rg-4col      { grid-template-columns: 1fr !important; }
}
/* Utility show/hide */
@media (max-width: 700px)  { .hide-mobile  { display: none !important; } }
@media (min-width: 701px)  { .show-mobile  { display: none !important; } }
/* Images */
img { max-width: 100%; height: auto; }
/* Prevent horizontal scroll */
.section__inner, .section, section { overflow-x: clip; }
/* Print */
@media print {
  .topbar, .nav, .foot, .cta-band { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
}


/* ════════════════════════════════════════════════════════════════
   ONGOING PROJECTS GRID — .proj-grid / .proj-card
   Location-specific photo backgrounds, full-bleed city imagery
   ════════════════════════════════════════════════════════════════ */

/* ── Grid container ── */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

/* ── Card ── */
.proj-card {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  cursor: default;
}
.proj-card:hover .proj-card__bg img {
  transform: scale(1.06);
  opacity: 0.38;
}

/* ── Background image layer ── */
.proj-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.proj-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
  display: block;
}

/* ── Dark gradient overlay — bottom fade to navy ── */
.proj-card__overlay {
  position: absolute;
  inset: 0;
  /* Strong bottom fade so text is always readable */
  background:
    linear-gradient(to top,
      var(--navy-900) 0%,
      rgba(14,23,29,0.82) 45%,
      rgba(14,23,29,0.35) 75%,
      transparent 100%
    );
}

/* ── Content layer ── */
.proj-card__content {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  gap: 14px;
  margin-top: auto;
}

/* ── Status + year row ── */
.proj-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

/* ── Status badge ── */
.proj-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}
.proj-badge--active {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #4ade80;
}
.proj-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: proj-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes proj-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

/* ── Year label ── */
.proj-card__year {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
}

/* ── Body: flag + title + desc ── */
.proj-card__body { display: flex; flex-direction: column; gap: 0; }

.proj-card__country {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.proj-card__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.proj-card__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}

/* ── Tag pills ── */
.proj-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.proj-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 11px;
  padding: 3px 10px;
  color: rgba(255,255,255,0.7);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.proj-card:hover .proj-tag {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* ── CTA button ── */
.proj-card__cta {
  align-self: flex-start;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .proj-grid { grid-template-columns: 1fr; gap: 2px; }
  .proj-card  { min-height: 320px; }
  .proj-card__title { font-size: 20px; }
}
@media (max-width: 600px) {
  .proj-card  { min-height: 280px; }
  .proj-card__content { padding: 22px 18px; gap: 12px; }
  .proj-card__title { font-size: 18px; }
  .proj-card__desc  { font-size: 13px; }
}
@media (max-width: 480px) {
  .proj-grid  { border-radius: 12px; }
  .proj-card  { min-height: 260px; }
  .proj-card__content { padding: 18px 16px; }
  .proj-card__title   { font-size: 17px; }
  .proj-card__year    { display: none; }
}

