/* Twemoji flag sizing */
img.emoji { height: 16px !important; width: 16px !important; display: inline-block !important; vertical-align: -3px !important; margin: 0 !important; max-width: none !important; }

/* ============================================
   TRYLON v2 — Bold, Modern, Visual-First
   Colors: Navy #1E385D, Blue #0074FF, Orange #FF5D09,
           Pastel #DEECFF, Astro #58A3DB, White #FFF
   Fonts: Plus Jakarta Sans 800 (headlines), Inter (body)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  color: #1E385D;
  background: #DEECFF;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Utility ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-orange { color: #FF5D09; }
.text-blue { color: #0074FF; }
.text-white { color: #fff; }
.text-white-muted { color: rgba(255,255,255,.7); }
.overline {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0074FF;
  margin-bottom: 12px;
}
.big-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-header { margin-bottom: 48px; }
.section-sub { font-size: 1.1rem; color: rgba(30,56,93,.6); max-width: 500px; margin-top: 12px; }

/* ---------- Page Routing ---------- */
.page { display: none; }
.page.active { display: block; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms cubic-bezier(.16,1,.3,1);
}
.nav.scrolled {
  background: rgba(30,56,93,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-svg { height: 32px; width: auto; display: block; }
.logo-symbol { height: 32px; width: auto; display: block; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-wrap .footer-logo { margin-bottom: 0; }
.footer-logo-symbol { height: 40px; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  letter-spacing: .5px;
  transition: color 180ms cubic-bezier(.16,1,.3,1);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: #FF5D09;
  border-radius: 1px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(.16,1,.3,1), opacity 300ms;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(30,56,93,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(.16,1,.3,1), padding 400ms;
}
.mobile-menu.open {
  max-height: 300px;
  padding: 24px 0;
}
.mobile-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  transition: background 180ms;
}
.mobile-link:hover { background: rgba(255,255,255,.06); }

/* ---------- Hero — Cinematic Fly-Through ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a1628;
}

/* Layer 1: Fly-through video */
.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-fly-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Blue filter overlay on video — light enough to see details */
.blue-filter {
  position: absolute;
  inset: 0;
  background: rgba(14, 36, 72, 0.2);
  mix-blend-mode: multiply;
}

/* Layer 2: Final still (satellite station) */
.hero-still-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
}
.hero-still-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}
.hero-still-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, transparent 0%, rgba(10,22,40,.5) 70%),
    linear-gradient(180deg, rgba(10,22,40,.15) 0%, rgba(10,22,40,.5) 55%, rgba(10,22,40,.95) 100%);
}

/* Particle canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}

/* Floating circles — oversized translucent from brand book */
.float-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,116,255,.15);
  background: radial-gradient(circle at 30% 30%, rgba(0,116,255,.08), transparent 70%);
  z-index: 2;
  pointer-events: none;
}
.fc-1 { width: 400px; height: 400px; top: -80px; right: -100px; }
.fc-2 { width: 250px; height: 250px; bottom: 10%; left: -60px; }
.fc-3 { width: 180px; height: 180px; top: 30%; left: 15%; }
.fc-4 { width: 320px; height: 320px; bottom: -80px; right: 20%; }
.fc-5 { width: 140px; height: 140px; top: 15%; right: 25%; }

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}
.hero-tag-wrap { margin-bottom: 24px; }
.hero-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 8px 24px;
}
/* --- Premium TRYLON Wordmark --- */
.hero-wordmark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}
.hero-wm-svg {
  width: clamp(260px, 42vw, 620px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.08)) drop-shadow(0 0 80px rgba(0,116,255,0.06));
}
/* TRYLON Wordmark — Premium cinematic treatment */
.wm-letter {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  display: inline-block;
  position: relative;
  text-shadow:
    0 0 40px rgba(255,255,255,.08),
    0 0 80px rgba(0,116,255,.06);
  transition: transform 300ms cubic-bezier(.16,1,.3,1), text-shadow 300ms;
}
.wm-letter:hover {
  transform: translateY(-3px);
  text-shadow:
    0 0 40px rgba(255,255,255,.15),
    0 0 80px rgba(0,116,255,.1);
}
/* Orange dot on the O — matching the logo */
.wm-o { position: relative; }
.wm-o::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(8px, 1.8vw, 18px);
  height: clamp(8px, 1.8vw, 18px);
  background: #FF5D09;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255,93,9,.45);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(.16,1,.3,1), box-shadow 180ms cubic-bezier(.16,1,.3,1), background 180ms;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-glow {
  background: #FF5D09;
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,93,9,.35);
}
.btn-glow:hover { box-shadow: 0 8px 36px rgba(255,93,9,.5); background: #e85400; }
.btn-glass {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.18); }
.btn-full { width: 100%; justify-content: center; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; }
  50% { opacity: .7; }
}

/* ---------- Marquee ---------- */
.marquee-strip {
  background: linear-gradient(90deg, #1E385D 0%, #1a3254 50%, #1E385D 100%);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,116,255,0.15);
  border-bottom: 1px solid rgba(0,116,255,0.15);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 24px;
  white-space: nowrap;
  transition: color 0.3s;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Industries ---------- */
.industries-section {
  padding: 100px 0 60px;
  background: #DEECFF;
}
.ind-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.ind-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  cursor: default;
  transition: transform 400ms cubic-bezier(.16,1,.3,1);
}
.ind-card:hover { transform: scale(1.015); }
.ind-card-img {
  position: absolute;
  inset: 0;
}
.ind-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
}
.ind-card:hover .ind-card-img img { transform: scale(1.06); }
.ind-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  background: linear-gradient(to top, rgba(30,56,93,.92) 0%, rgba(30,56,93,.6) 60%, transparent 100%);
  width: 100%;
}
.ind-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #FF5D09;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}
.ind-card-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}
.ind-card-content p {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  max-width: 380px;
}
.ind-card-content h3 .text-orange { color: #FF5D09; }
.text-orange { color: #FF5D09; }
.ind-arrow {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  opacity: .85;
  transition: transform 240ms cubic-bezier(.16,1,.3,1), opacity 240ms ease;
}
.ind-card:hover .ind-arrow { transform: translateX(4px); opacity: 1; }

/* ---------- Spotlight card (Construction) ---------- */
.ind-card-spotlight {
  grid-column: 1 / -1;
  min-height: 520px;
  background: #1E385D;
  box-shadow: 0 0 0 1px rgba(255,93,9,.35), 0 30px 60px -20px rgba(255,93,9,.22);
}
.ind-card-spotlight .ind-card-img img {
  object-position: 70% 40%;
}
.ind-card-spotlight .ind-card-content {
  padding: 40px 48px 44px;
  background:
    linear-gradient(to top,
      rgba(30,56,93,.96) 0%,
      rgba(30,56,93,.92) 50%,
      rgba(30,56,93,.70) 80%,
      rgba(30,56,93,.20) 100%),
    linear-gradient(115deg,
      rgba(255,93,9,.22) 0%,
      rgba(255,93,9,0) 50%);
}
.spot-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.spot-eyebrow .ind-num {
  display: inline-block;
  margin: 0;
}
.spot-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  background: #FF5D09;
  border: 1px solid #FF5D09;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.ind-card-spotlight h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 760px;
}
.spot-lead {
  font-size: 1rem !important;
  color: rgba(255,255,255,.85) !important;
  max-width: 720px !important;
  line-height: 1.55 !important;
}
.spot-pillars {
  display: flex;
  align-items: stretch;
  gap: 28px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.spot-pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,.18);
  min-width: 0;
}
.spot-pillar:last-child {
  border-right: none;
  padding-right: 0;
}
.spot-pillar-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #FF5D09;
  letter-spacing: .2px;
  white-space: nowrap;
}
.spot-pillar-label {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .3px;
}
.ind-card-spotlight .spot-arrow {
  margin-top: 24px;
  font-size: .9rem;
  color: #FF5D09;
  opacity: 1;
  transform: translateX(0);
  letter-spacing: 1.2px;
}
.ind-card-spotlight:hover .spot-arrow { transform: translateX(6px); opacity: 1; }

/* ---------- Stats ---------- */
.stats-strip {
  background: #1E385D;
  padding: 64px 0;
}
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FF5D09;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-plus {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FF5D09;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}

/* ---------- Globe / Markets ---------- */
.globe-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #DEECFF 0%, #d0e4f9 50%, #0c1e38 100%);
}
.globe-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.globe-section .section-sub {
  max-width: 400px;
  margin: 12px auto 0;
  color: rgba(30,56,93,0.55);
  font-size: 1rem;
  line-height: 1.6;
}

/* Premium World Map */
.world-map-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.world-map-premium {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 32px rgba(0,20,60,0.25),
    0 0 80px rgba(0,116,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  border: 1px solid rgba(0,116,255,0.12);
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: #DEECFF;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1E385D;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-band p {
  color: rgba(30,56,93,.65);
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Page Heroes (Services, About, Contact) ---------- */
.page-hero-v2 {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-v2.ph-short { min-height: 40vh; }
.ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,56,93,.4) 0%, rgba(30,56,93,.85) 100%);
}
.ph-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 60px;
}

/* ---------- Services — Card Grid ---------- */
.svc-cards-section {
  padding: 80px 0;
  background: #DEECFF;
}
.svc-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.svc-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(30,56,93,.12); }
.svc-card-dark { background: #1E385D; color: #fff; }
.svc-card-dark h3 { color: #fff; }
.svc-card-dark .svc-card-body p { color: rgba(255,255,255,.7); }
.svc-card-dark .ind-arrow { color: #FF5D09; }
.svc-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
}
.svc-card-wide .svc-card-img {
  width: 40%;
  min-height: 280px;
}
.svc-card-wide .svc-card-body {
  flex: 1;
}
.svc-card-img {
  height: 200px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-card-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
}
.svc-card-body p {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(30,56,93,.65);
  flex: 1;
}
.svc-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.svc-badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0074FF;
  background: rgba(0,116,255,.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.badge-orange {
  color: #FF5D09;
  background: rgba(255,93,9,.15);
}
.svc-info h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.svc-info p {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(30,56,93,.75);
}
.svc-navy .svc-info p { color: rgba(255,255,255,.65); }
.svc-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.meta-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.meta-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(30,56,93,.45);
  margin-right: 4px;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,116,255,.08);
  color: #0074FF;
}
.chip-orange {
  background: rgba(255,93,9,.08);
  color: #FF5D09;
}
.chip-dark {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
}
.chip-dark-orange {
  background: rgba(255,93,9,.2);
  color: #FF5D09;
}
.cert-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cert {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(30,56,93,.4);
  border: 1px solid rgba(30,56,93,.12);
  padding: 4px 12px;
  border-radius: 8px;
}

/* PM Band */
.pm-band {
  background: linear-gradient(135deg, #FF5D09 0%, #FF5D09 50%, #e85400 100%);
  padding: 64px 0;
}
.pm-inner { text-align: center; }
.pm-inner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}
.pm-inner p {
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin: 0 auto 24px;
}
.pm-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pm-chips span {
  font-weight: 700;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* ---------- About — Story Timeline (Horizontal Scroll) ---------- */
/* ---------- Flip Calendar Story ---------- */
.story-section {
  padding: 100px 0 80px;
  background: #DEECFF;
  overflow: hidden;
  position: relative;
}
.story-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
  min-height: 560px;
}
.story-left {
  position: relative;
  z-index: 2;
}
.story-left .big-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
.story-left .section-sub {
  font-size: 1rem;
  color: rgba(30,56,93,.6);
  margin-bottom: 28px;
  max-width: 340px;
}
.flip-progress {
  width: 100%;
  height: 3px;
  background: rgba(0,116,255,.12);
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
}
.flip-progress-bar {
  height: 100%;
  width: 12.5%;
  background: #0074FF;
  border-radius: 2px;
  transition: width 600ms cubic-bezier(.16,1,.3,1);
}
.flip-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.flip-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(30,56,93,.15);
  background: #fff;
  color: #1E385D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
}
.flip-btn:hover {
  background: #0074FF;
  border-color: #0074FF;
  color: #fff;
}
.flip-btn:disabled {
  opacity: .3;
  pointer-events: none;
}
.flip-counter {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: rgba(30,56,93,.5);
  letter-spacing: 1px;
  min-width: 48px;
  text-align: center;
}

/* Flip calendar container */
.story-right {
  position: relative;
  perspective: 1800px;
}
.flip-calendar {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  border-radius: 20px;
  overflow: visible;
}

/* Each page */
.flip-page {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  transform-origin: bottom center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 800ms cubic-bezier(.4, .0, .2, 1),
              opacity 400ms ease,
              box-shadow 800ms ease;
  box-shadow: 0 8px 40px rgba(30,56,93,.12);
  will-change: transform, opacity;
}
.flip-page.is-active {
  z-index: 10;
  transform: rotateX(0deg) scale(1);
  opacity: 1;
}
.flip-page.is-flipped {
  z-index: 20;
  transform: rotateX(-95deg) scale(.92);
  opacity: 0;
  pointer-events: none;
}
.flip-page.is-stacked {
  z-index: 5;
  transform: rotateX(0deg) scale(1);
  opacity: 1;
  pointer-events: none;
}
.flip-page.is-hidden {
  z-index: 1;
  transform: rotateX(8deg) scale(.94);
  opacity: 0;
  pointer-events: none;
}

.flip-page-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.flip-front {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text */
.flip-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 32px 32px;
  background: linear-gradient(to top, rgba(10,20,40,.88) 0%, rgba(10,20,40,.5) 50%, transparent 100%);
  color: #fff;
}
.flip-year {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -1px;
  color: #FF5D09;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.flip-overlay h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
}
.flip-overlay p {
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(255,255,255,.8);
  max-width: 480px;
}

/* Shadow stack effect — pages peeking behind */
.flip-page.is-active::after,
.flip-page.is-stacked::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 8px;
  right: 8px;
  height: 10px;
  background: rgba(30,56,93,.06);
  border-radius: 0 0 16px 16px;
  z-index: -1;
}

/* Decorative circle pattern behind calendar */
.story-right::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0,116,255,.06);
  z-index: -1;
  pointer-events: none;
}
.story-right::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,93,9,.05);
  z-index: -1;
  pointer-events: none;
}

/* ---------- Evolution ---------- */
.evo-section {
  background: #1E385D;
  padding: 100px 0;
  overflow: hidden;
}
.evo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.evo-text { max-width: 540px; }
.evo-callout {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0074FF;
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid #0074FF;
  background: rgba(0,116,255,.08);
  border-radius: 0 12px 12px 0;
}
.evo-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.6);
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid #FF5D09;
}
.evo-visual {
  position: relative;
  height: 500px;
}
.evo-img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  object-fit: cover;
}
.evo-i1 { width: 280px; height: 200px; top: 0; left: 0; z-index: 1; }
.evo-i2 { width: 260px; height: 220px; top: 120px; left: 140px; z-index: 2; }
.evo-i3 { width: 240px; height: 180px; top: 280px; left: 40px; z-index: 1; }

/* ---------- Contact ---------- */
.contact-section {
  padding: 80px 0;
  background: #DEECFF;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.c-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 28px 32px 4px;
  border-bottom: none;
}
.c-form-logo { height: 42px; width: 42px; flex-shrink: 0; }
.c-form-header-title {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #1E385D;
  letter-spacing: -0.01em;
}
.c-form-header-sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(30,56,93,.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.c-form { display: flex; flex-direction: column; gap: 16px; padding: 32px; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.c-field { display: flex; flex-direction: column; gap: 6px; }
.c-field label {
  font-weight: 600;
  font-size: 13px;
  color: rgba(30,56,93,.65);
  letter-spacing: 0;
}
.c-field input,
.c-field select,
.c-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid rgba(30,56,93,.12);
  border-radius: 12px;
  background: #f8fbff;
  color: #1E385D;
  transition: border-color 180ms cubic-bezier(.16,1,.3,1), box-shadow 180ms;
  outline: none;
}
.c-field input:focus,
.c-field select:focus,
.c-field textarea:focus {
  border-color: #0074FF;
  box-shadow: 0 0 0 3px rgba(0,116,255,.12);
}
.c-field textarea { resize: vertical; }
.c-field select { cursor: pointer; }

.form-ok {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 32px;
  text-align: center;
}
.form-ok.show { display: flex; }
.form-ok svg { width: 56px; height: 56px; }
.form-ok p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1E385D;
}
.contact-side h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #1E385D;
}
.hq-loc {
  font-size: 1rem;
  color: rgba(30,56,93,.6);
  margin-bottom: 16px;
}
.hq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1E385D;
  font-weight: 600;
  font-size: 14px;
}
.hq-badge svg { width: 20px; height: 20px; }

.office-list {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.office-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.office-flag { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.contact-side h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #1E385D;
  margin: 40px 0 4px;
}
.contact-side h3 + .office-list { margin-top: 0; }
.office-country {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1E385D;
  margin-bottom: 4px;
}
.office-item address {
  font-style: normal;
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}
.office-item .hq-badge { margin-top: 8px; }

/* ---------- Team ---------- */
.team-section { padding: 80px 0; }
.team-section-navy { background: #1E385D; }
.team-section-pastel { background: #DEECFF; }
.team-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.team-row-center {
  grid-template-columns: repeat(4, 240px);
  justify-content: center;
}
.t-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 180ms cubic-bezier(.16,1,.3,1), box-shadow 180ms;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-section-pastel .t-card {
  background: #fff;
  border: 1px solid rgba(30,56,93,.06);
}
.t-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.t-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,116,255,.15);
  color: #0074FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.t-avatar .avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.t-av-orange {
  background: rgba(255,93,9,.15);
  color: #FF5D09;
}
.t-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 4px;
}
.team-section-navy .t-card h3 { color: #fff; }
.t-role {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.team-section-pastel .t-role { color: rgba(30,56,93,.5); }
.t-region {
  font-size: .75rem;
  color: rgba(30,56,93,.4);
  margin-top: 2px;
}
.team-section-navy .t-region { color: rgba(255,255,255,.35); }
.t-li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,116,255,.1);
  color: #0074FF;
  transition: background 180ms, transform 180ms;
}
.t-li:hover { background: #0074FF; color: #fff; transform: scale(1.1); }
.t-li svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.footer {
  background: #1E385D;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { height: 40px; width: auto; }
.footer-brand p {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  margin-top: 12px;
}
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  margin-bottom: 8px;
  transition: color 180ms;
}
.footer-col a:hover { color: #FF5D09; }
.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 40px 0 20px;
}
.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ---------- Industry Card Arrow ---------- */
.ind-arrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #FF5D09;
  letter-spacing: 0.5px;
  margin-top: 12px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 300ms cubic-bezier(.16,1,.3,1), transform 300ms cubic-bezier(.16,1,.3,1);
}
.ind-card:hover .ind-arrow,
.svc-card:hover .ind-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Detail Pages ---------- */
.detail-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.detail-hero .ph-content {
  text-align: left;
  padding: 60px 24px 48px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  transition: color 180ms;
}
.detail-back:hover { color: #fff; }

.detail-body {
  padding: 64px 0 80px;
  background: #DEECFF;
}
.detail-intro {
  max-width: 800px;
  margin-bottom: 40px;
}
.detail-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(30,56,93,.8);
}
.detail-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 56px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30,56,93,.04);
}
.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-meta-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(30,56,93,.4);
  white-space: nowrap;
}
.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #1E385D;
  margin-bottom: 32px;
}
.detail-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.detail-svc-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(30,56,93,.04);
  transition: transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms;
}
.detail-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30,56,93,.08);
}
.detail-svc-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.detail-svc-icon svg {
  width: 100%;
  height: 100%;
}
.detail-svc-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #1E385D;
  margin-bottom: 10px;
}
.detail-svc-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(30,56,93,.65);
}

/* Customers */
.detail-customers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.customer-logo-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,116,255,.08);
  transition: transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms;
}
.customer-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,116,255,.08);
}
.customer-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #1E385D;
  display: block;
  margin-bottom: 8px;
}
.customer-desc {
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(30,56,93,.55);
}

/* Detail CTA */
.detail-cta-band {
  background: linear-gradient(135deg, #1E385D 0%, #0074FF 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.detail-cta-band h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #fff;
  margin-bottom: 20px;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .ind-cards { grid-template-columns: 1fr 1fr; }
  .ind-card-spotlight { grid-column: 1 / -1; min-height: 420px; }
  .ind-card-spotlight .ind-card-content { padding: 36px 36px; }
  .spot-pillars { gap: 20px; }
  .spot-pillar { padding-right: 20px; }
  .svc-cards-grid { grid-template-columns: 1fr 1fr; }
  .svc-card-wide { flex-direction: column; }
  .svc-card-wide .svc-card-img { width: 100%; min-height: 200px; }
  .evo-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 320px 1fr; gap: 40px; }
  .evo-visual { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .detail-meta-bar { gap: 20px; padding: 20px 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .wm-letter { font-size: clamp(3rem, 12vw, 5rem); }
  .ind-cards { grid-template-columns: 1fr; }
  .ind-card { min-height: 300px; }
  .ind-card-spotlight { min-height: 480px; }
  .ind-card-spotlight .ind-card-content { padding: 28px 24px; }
  .ind-card-spotlight h3 { font-size: 1.5rem; }
  .spot-pillars { flex-direction: column; gap: 12px; margin-top: 18px; }
  .spot-pillar { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 12px; }
  .spot-pillar:last-child { border-bottom: none; padding-bottom: 0; }
  .spot-tag { font-size: 10px; padding: 5px 10px; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 32px; }
  .stat-divider { display: none; }
  .story-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-left { text-align: center; }
  .story-left .section-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .flip-nav { justify-content: center; }
  .flip-calendar { max-height: 400px; }
  .flip-year { font-size: 2.2rem; }
  .flip-overlay h3 { font-size: 1.1rem; }
  .flip-overlay p { font-size: .82rem; }
  .flip-overlay { padding: 40px 24px 24px; }
  .team-row-center { grid-template-columns: 1fr 1fr; }
  .c-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .evo-visual { height: 300px; }
  .evo-i1 { width: 200px; height: 150px; }
  .evo-i2 { width: 190px; height: 160px; top: 80px; left: 100px; }
  .evo-i3 { width: 170px; height: 140px; top: 200px; left: 20px; }
  .detail-services-grid { grid-template-columns: 1fr; }
  .detail-customers { grid-template-columns: 1fr; }
  .detail-meta-bar { flex-direction: column; gap: 16px; }
  .detail-meta-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .detail-cta-band { padding: 32px 24px; }
  .ind-arrow { opacity: 1; transform: translateX(0); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 100px 16px 60px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .team-row-center { grid-template-columns: 1fr; }
  .market-pills { flex-direction: column; }
  .flip-calendar { max-height: 320px; }
  .flip-year { font-size: 1.8rem; }
  .story-left .big-title { font-size: 2rem; }
  .contact-form-box { padding: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}

/* ========================================================
   CUSTOMER BANNER (scrolling marquee)
   ======================================================== */

.customer-banner {
  width: 100%;
  background: #1E385D;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}

.customer-banner-track {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: banner-scroll 35s linear infinite;
  gap: 0;
}

.customer-banner-track span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 18px;
  flex-shrink: 0;
  white-space: nowrap;
}

@keyframes banner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================================
   MARKETS SECTION — World Map
   ======================================================== */

.markets-section {
  padding: 96px 0 72px;
  background: #f8fbff;
  border-top: 1px solid rgba(30,56,93,0.07);
}

.markets-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.markets-section .section-sub {
  max-width: 480px;
  margin: 12px auto 0;
  color: rgba(30,56,93,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.world-map-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(30,56,93,0.09);
  background: #EEF6FF;
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ========================================================
   MARKET DETAIL PAGES
   ======================================================== */

.detail-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* Market leader quote */
.market-quote {
  border-left: 4px solid #FF5D09;
  margin: 0 0 48px 0;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255,93,9,0.05) 0%, rgba(0,116,255,0.04) 100%);
  border-radius: 0 12px 12px 0;
}

.market-quote p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: #1E385D;
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.market-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FF5D09;
  font-style: normal;
  letter-spacing: 0.03em;
}

/* Market services section */
.market-services-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin: 0 0 48px 0;
}

.market-svc-category {
  background: #fff;
  border: 1px solid rgba(30,56,93,0.1);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(30,56,93,0.05);
}

.market-svc-label {
  margin-bottom: 16px;
}

.market-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.market-svc-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(30,56,93,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(30,56,93,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-svc-list li:last-child {
  border-bottom: none;
}

.market-svc-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF5D09;
  flex-shrink: 0;
}

/* Market highlight callout */
.market-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #fff8f4 0%, #fff3ec 100%);
  border: 2px solid #FF5D09;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.market-highlight-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #FF5D09;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.market-highlight-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.market-highlight-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF5D09;
  margin-bottom: 4px;
}

.market-highlight-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1E385D;
  margin-bottom: 4px;
}

.market-highlight-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(30,56,93,0.65);
  line-height: 1.5;
}

/* ========================================================
   MARKET CHIPS → LINKS
   ======================================================== */

a.chip.chip-orange {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}

a.chip.chip-orange:hover {
  background: #FF5D09;
  color: #fff;
  transform: translateY(-1px);
}

/* ========================================================
   MARKET PILLS on Home → Clickable
   ======================================================== */

a.market-pill {
  text-decoration: none;
  cursor: pointer;
}

a.market-pill:hover {
  background: #1E385D;
  color: #fff;
  border-color: #1E385D;
}

a.market-pill:hover .pill-note {
  color: rgba(255,255,255,0.7);
}

/* ========================================================
   RESPONSIVE — Map + Market pages
   ======================================================== */

@media (max-width: 768px) {
  .world-map-wrapper { padding: 0 12px; }
  .world-map-premium { border-radius: 12px; }
  .globe-section { padding: 64px 0 48px; }
  .market-services-section { grid-template-columns: 1fr; }
  .market-highlight { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .market-quote { padding: 20px 20px; }
  .customer-banner { height: 36px; }
  .customer-banner-track span { font-size: 0.65rem; padding: 0 12px; }
}

@media (max-width: 480px) {
  .market-highlight-value { font-size: 1.2rem; }
}

/* ============================================================
   PREMIUM DETAIL PAGE ENHANCEMENTS
   ============================================================ */

/* Extra feature image on detail pages */
.detail-feature-image {
  margin: 48px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,20,60,0.12);
  position: relative;
}
.detail-feature-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.detail-feature-image:hover img {
  transform: scale(1.03);
}

/* Statement / Quote section */
.detail-statement {
  margin: 48px 0;
  padding: 40px 48px;
  background: linear-gradient(135deg, #1E385D 0%, #0a1e3d 100%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.detail-statement::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(0,116,255,.15);
  line-height: 1;
}
.detail-statement::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,116,255,.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
}
.detail-statement blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.detail-statement-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.detail-statement-author .author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,116,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-statement-author .author-avatar svg {
  width: 22px;
  height: 22px;
}
.detail-statement-author .author-avatar .avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.detail-statement-author .author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #FF5D09;
}
.detail-statement-author .author-title {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.page.active .detail-statement {
  animation: detailFeatureIn 0.7s cubic-bezier(.16,1,.3,1) 0.45s both;
}
@media (max-width: 768px) {
  .detail-statement {
    padding: 28px 24px;
  }
  .detail-statement::before {
    font-size: 80px;
    left: 12px;
  }
  .detail-statement blockquote {
    font-size: 1rem;
  }
}

/* Contact section */
.detail-contact-section {
  margin: 48px 0 32px;
}
.detail-contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.detail-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0,116,255,.1);
  border-radius: 14px;
  padding: 20px 28px;
  min-width: 280px;
  flex: 1;
  transition: transform 0.25s cubic-bezier(.16,1,.3,1), box-shadow 0.25s;
}
.detail-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,116,255,.1);
}
.detail-contact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #DEECFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-contact-avatar svg {
  width: 24px;
  height: 24px;
}
.detail-contact-avatar .avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.detail-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.detail-contact-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1E385D;
}
.detail-contact-title {
  font-size: 13px;
  color: rgba(30,56,93,.55);
}
.detail-contact-email {
  font-size: 13px;
  color: #0074FF;
  text-decoration: none;
  transition: color 0.2s;
}
.detail-contact-email:hover {
  color: #FF5D09;
}

/* Premium detail hero upgrade */
.detail-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.detail-hero .ph-overlay {
  background: linear-gradient(0deg, rgba(10,25,41,0.85) 0%, rgba(10,25,41,0.3) 50%, transparent 100%);
}

/* Detail body upgrade — richer typography */
.detail-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(30,56,93,.75);
  max-width: 720px;
}

/* Service cards on detail pages — premium shadow */
.detail-svc-card {
  background: #fff;
  border: 1px solid rgba(0,116,255,.06);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,20,60,.06);
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s;
}
.detail-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,116,255,.1);
}

/* CTA band on detail pages — more premium */
.detail-cta-band {
  background: linear-gradient(135deg, #1E385D 0%, #0c2340 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0 0;
  position: relative;
  overflow: hidden;
}
.detail-cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0,116,255,0.08);
  pointer-events: none;
}

/* Market page services — premium card style */
.market-services-section .market-svc-card {
  background: #fff;
  border: 1px solid rgba(0,116,255,.06);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,20,60,.05);
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s;
}
.market-services-section .market-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,116,255,.08);
}

/* ============================================================
   DETAIL PAGE ENTRANCE ANIMATIONS
   ============================================================ */
.page.active .detail-hero .ph-content {
  animation: detailHeroIn 0.8s cubic-bezier(.16,1,.3,1) forwards;
}
.page.active .detail-hero .ph-img {
  animation: detailHeroImgIn 1.2s cubic-bezier(.16,1,.3,1) forwards;
}

/* Video hero variant */
.detail-hero--video .ph-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page.active .detail-hero--video .ph-video {
  animation: detailHeroImgIn 1.2s cubic-bezier(.16,1,.3,1) forwards;
}
.page.active .detail-body,
.page.active .detail-body-alt {
  animation: detailBodyIn 0.6s cubic-bezier(.16,1,.3,1) 0.3s both;
}
.page.active .customer-banner {
  animation: detailBannerIn 0.5s ease-out 0.2s both;
}
.page.active .detail-feature-image {
  animation: detailFeatureIn 0.7s cubic-bezier(.16,1,.3,1) 0.5s both;
}
.page.active .detail-contact-section {
  animation: detailFeatureIn 0.7s cubic-bezier(.16,1,.3,1) 0.6s both;
}

@keyframes detailHeroIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes detailHeroImgIn {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes detailBodyIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes detailBannerIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes detailFeatureIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Market page quote — premium styling */
.market-quote {
  background: #fff;
  border-left: 4px solid #FF5D09;
  border-radius: 0 16px 16px 0;
  padding: 32px 36px;
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(0,20,60,.06);
}

/* Market page highlight — premium */
.market-highlight {
  background: linear-gradient(135deg, rgba(255,93,9,.05) 0%, rgba(255,93,9,.02) 100%);
  border: 1px solid rgba(255,93,9,.15);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .detail-feature-image img { height: 220px; }
  .detail-contact-grid { flex-direction: column; }
  .detail-contact-card { min-width: auto; }
}

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */
.privacy-page {
  background: #f8fbff;
  min-height: 100vh;
  padding: 120px 0 80px;
}
.privacy-container {
  max-width: 820px;
}
.privacy-back a {
  color: #0074FF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.privacy-back a:hover { text-decoration: underline; }
.privacy-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #1E385D;
  margin: 16px 0 8px;
}
.privacy-updated {
  color: #6b7f99;
  font-size: 14px;
  margin-bottom: 40px;
}
.privacy-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1E385D;
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid #e2ecf5;
}
.privacy-body h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.privacy-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1E385D;
  margin: 24px 0 8px;
}
.privacy-body p,
.privacy-body li {
  font-size: 15px;
  line-height: 1.75;
  color: #3d5068;
}
.privacy-body ul {
  padding-left: 24px;
  margin: 8px 0 16px;
}
.privacy-body li {
  margin-bottom: 6px;
}
.privacy-body a {
  color: #0074FF;
  text-decoration: none;
}
.privacy-body a:hover { text-decoration: underline; }
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 14px;
}
.privacy-table th {
  background: #1E385D;
  color: #fff;
  text-align: left;
  padding: 10px 16px;
  font-weight: 600;
}
.privacy-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #e2ecf5;
  color: #3d5068;
}
.privacy-table tr:last-child td { border-bottom: none; }
.privacy-table tbody tr:nth-child(even) { background: rgba(0,116,255,.03); }

@media (max-width: 768px) {
  .privacy-title { font-size: 28px; }
  .privacy-body h2 { font-size: 19px; }
  .privacy-page { padding: 100px 0 60px; }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(30,56,93,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(222,236,255,.15);
  padding: 24px 32px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.cookie-banner-text {
  flex: 1;
  min-width: 0;
}
.cookie-banner-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin: 0 0 6px;
}
.cookie-banner-text p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(222,236,255,.8);
  margin: 0;
}
.cookie-link {
  color: #58A3DB;
  text-decoration: underline;
}
.cookie-banner-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-toggles {
  display: flex;
  gap: 20px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cookie-toggle-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(222,236,255,.9);
  white-space: nowrap;
}
.cookie-toggle input {
  display: none;
}
.cookie-slider {
  width: 36px;
  height: 20px;
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  position: relative;
  transition: background .25s;
}
.cookie-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: #0074FF;
}
.cookie-toggle input:checked + .cookie-slider::after {
  transform: translateX(16px);
}
.cookie-slider--locked {
  background: rgba(0,116,255,.5);
  cursor: not-allowed;
}
.cookie-slider--locked::after {
  transform: translateX(16px);
}
.cookie-buttons {
  display: flex;
  gap: 8px;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.cookie-btn--outline {
  background: transparent;
  border: 1px solid rgba(222,236,255,.3);
  color: rgba(222,236,255,.9);
}
.cookie-btn--outline:hover {
  border-color: rgba(222,236,255,.6);
  color: #fff;
}
.cookie-btn--solid {
  background: #0074FF;
  border: 1px solid #0074FF;
  color: #fff;
}
.cookie-btn--solid:hover {
  background: #005dd4;
  border-color: #005dd4;
}

/* Cookie Settings FAB */
.cookie-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30,56,93,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(222,236,255,.2);
  color: #DEECFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.cookie-fab:hover {
  background: #1E385D;
  border-color: rgba(222,236,255,.4);
  transform: scale(1.08);
}

/* Footer legal links */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: #58A3DB;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover {
  color: #DEECFF;
  text-decoration: underline;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 50%;
  right: 24px;
  transform: translateY(50%) scale(0.85);
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #FF5D09;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(50%) scale(1);
  pointer-events: auto;
}
.back-to-top:hover { background: #e04e00; }
.back-to-top::before {
  content: 'Back to top';
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #1E385D;
  color: #DEECFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.back-to-top:hover::before { opacity: 1; }
@media (max-width: 768px) {
  .back-to-top { right: 16px; width: 42px; height: 42px; }
}

@media (max-width: 768px) {
  .cookie-banner { padding: 20px 16px; }
  .cookie-banner-inner {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-toggles {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-buttons {
    flex-wrap: wrap;
  }
  .cookie-btn {
    flex: 1;
    min-width: 100px;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   GERMANY (GMBH) — Trylon GMBH engineering services section
   ========================================================= */

/* Intro */
.gmbh-intro {
  margin: 56px 0 32px;
  max-width: 920px;
}
.gmbh-intro-title {
  font-family: 'Plus Jakarta Sans', 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: #1E385D;
  margin: 12px 0 18px;
  letter-spacing: -0.02em;
}
.gmbh-intro-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  color: #2a3a52;
  margin: 0;
}

/* Hero showcase */
.gmbh-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  margin: 32px 0 48px;
}
.gmbh-showcase-large,
.gmbh-showcase-small {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0a1830;
  box-shadow: 0 18px 50px -22px rgba(30,56,93,0.45);
}
.gmbh-showcase-large {
  aspect-ratio: 4 / 3.4;
}
.gmbh-showcase-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.gmbh-showcase-small {
  aspect-ratio: 4 / 2.4;
}
.gmbh-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gmbh-showcase-large:hover img,
.gmbh-showcase-small:hover img {
  transform: scale(1.04);
}
.gmbh-showcase-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(30,56,93,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 999px;
}

/* Customers strip */
.gmbh-customers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 56px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #DEECFF 0%, #f3f7ff 100%);
  border-radius: 14px;
  border: 1px solid rgba(0,116,255,0.12);
}
.gmbh-customers-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0074FF;
}
.gmbh-customers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gmbh-customer-chip {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E385D;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(30,56,93,0.12);
}
.gmbh-customer-chip span {
  color: #58A3DB;
  font-weight: 500;
  margin-left: 4px;
}

/* Section intro paragraph */
.detail-section-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  color: #4a5d7a;
  margin: -8px 0 28px;
  max-width: 760px;
  line-height: 1.6;
}

/* Core services: alternating image/text rows */
.gmbh-svc-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 0 64px;
}
.gmbh-svc-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.gmbh-svc-row-flip {
  grid-template-columns: 1fr 1.05fr;
}
.gmbh-svc-row-flip .gmbh-svc-media { order: 2; }
.gmbh-svc-row-flip .gmbh-svc-body  { order: 1; }
.gmbh-svc-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 11;
  background: #0a1830;
  box-shadow: 0 22px 60px -25px rgba(30,56,93,0.45);
}
.gmbh-svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gmbh-svc-row:hover .gmbh-svc-media img {
  transform: scale(1.04);
}
.gmbh-svc-body {
  display: flex;
  flex-direction: column;
}
.gmbh-svc-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #FF5D09;
  margin-bottom: 8px;
}
.gmbh-svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: #1E385D;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.gmbh-svc-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gmbh-svc-points li {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2a3a52;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid rgba(30,56,93,0.08);
  position: relative;
}
.gmbh-svc-points li:last-child {
  border-bottom: none;
}
.gmbh-svc-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 14px;
  height: 2px;
  background: #0074FF;
}
.gmbh-svc-points li strong {
  color: #1E385D;
  font-weight: 700;
}

/* Capabilities */
.gmbh-caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 0 0 56px;
}
.gmbh-cap {
  background: #fff;
  border: 1px solid rgba(30,56,93,0.1);
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gmbh-cap:hover {
  transform: translateY(-3px);
  border-color: rgba(0,116,255,0.3);
  box-shadow: 0 20px 50px -22px rgba(0,116,255,0.35);
}
.gmbh-cap-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #DEECFF 0%, #c9defc 100%);
  color: #0074FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.gmbh-cap-icon svg {
  width: 20px;
  height: 20px;
}
.gmbh-cap h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1E385D;
  margin: 0 0 8px;
  line-height: 1.25;
}
.gmbh-cap p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5d7a;
  margin: 0;
}

/* Workflow */
.gmbh-workflow {
  list-style: none;
  margin: 0 0 56px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: #1E385D;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.gmbh-workflow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(0,116,255,0.25), transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(255,93,9,0.15), transparent 45%);
  pointer-events: none;
}
.gmbh-workflow li {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px 8px;
  color: #fff;
  border-right: 1px dashed rgba(255,255,255,0.18);
}
.gmbh-workflow li:last-child {
  border-right: none;
}
.gmbh-step-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #FF5D09;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.gmbh-step-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ---------- Romania 6-step workflow ---------- */
.ro-workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 56px;
  padding: 28px;
  background: #1E385D;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.ro-workflow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(0,116,255,0.25), transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(255,93,9,0.15), transparent 45%);
  pointer-events: none;
}
.ro-wf-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.ro-wf-step:hover { background: rgba(255,255,255,0.08); }
.ro-wf-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #FF5D09;
  letter-spacing: 0.04em;
  line-height: 1;
}
.ro-wf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0,116,255,0.15);
  border-radius: 50%;
  color: #7eb8ff;
}
.ro-wf-icon svg { width: 20px; height: 20px; }
.ro-wf-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
@media (max-width: 680px) {
  .ro-workflow { grid-template-columns: 1fr 1fr; padding: 16px; gap: 8px; }
}

/* ---------- Field gallery ---------- */
.gmbh-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 56px;
}
.gmbh-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  background: #0a1830;
}
.gmbh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gmbh-gallery-item:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 880px) {
  .gmbh-showcase {
    grid-template-columns: 1fr;
  }
  .gmbh-showcase-large {
    aspect-ratio: 16 / 11;
  }
  .gmbh-showcase-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gmbh-showcase-small {
    aspect-ratio: 4 / 3;
  }
  .gmbh-svc-row,
  .gmbh-svc-row-flip {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gmbh-svc-row-flip .gmbh-svc-media { order: 0; }
  .gmbh-svc-row-flip .gmbh-svc-body  { order: 1; }
  .gmbh-svc-media {
    aspect-ratio: 16 / 10;
  }
  .gmbh-workflow {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gmbh-workflow li {
    border-right: none;
    border-bottom: 1px dashed rgba(255,255,255,0.18);
  }
  .gmbh-workflow li:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .gmbh-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .gmbh-showcase-stack {
    grid-template-columns: 1fr;
  }
  .gmbh-customer-chip {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  .gmbh-workflow {
    grid-template-columns: 1fr;
  }
  .gmbh-workflow li {
    border-right: none;
    border-bottom: 1px dashed rgba(255,255,255,0.18);
  }
  .gmbh-workflow li:nth-last-child(-n+2) {
    border-bottom: 1px dashed rgba(255,255,255,0.18);
  }
  .gmbh-workflow li:last-child {
    border-bottom: none;
  }
}

/* =========================================================
   UNITED STATES — Trylon US Engineering Services section
   Extends the gmbh-* component system with US-specific
   stat strip and service-line headers.
   ========================================================= */

/* Stat strip — the four hero metrics from the brochure */
.us-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0 48px;
}
.us-stat {
  background: #fff;
  border: 1px solid rgba(30,56,93,0.10);
  border-top: 3px solid #FF5D09;
  border-radius: 12px;
  padding: 22px 20px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.us-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -28px rgba(30,56,93,0.40);
}
.us-stat-value {
  font-family: 'Plus Jakarta Sans', 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #1E385D;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.us-stat-value > span:not(.us-stat-unit) {
  color: #0074FF;
}
.us-stat-unit {
  font-weight: 600;
  font-size: 0.55em;
  color: #4a5d7a;
  letter-spacing: 0;
  margin-left: 2px;
}
/* ---------- Speed Quality Value ---------- */
.sqv-section { margin: 56px 0; }
.sqv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.sqv-card {
  background: #fff;
  border: 1px solid rgba(30,56,93,.08);
  border-top: 3px solid #FF5D09;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sqv-icon {
  color: #FF5D09;
  display: flex;
}
.sqv-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #1E385D;
  margin: 0;
}
.sqv-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4a5d7a;
  margin: 0;
}
@media (max-width: 768px) {
  .sqv-grid { grid-template-columns: 1fr; }
}

/* ---------- Fiber Platform Card ---------- */
.fiber-platform-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0074FF;
  margin-bottom: 4px;
}
.fiber-platform-count {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  color: #FF5D09;
  margin-bottom: 10px;
}
.fiber-platform-count span {
  color: #FF5D09;
  font-size: 0.75em;
}
.fiber-platform-list {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #1a2a44;
  font-weight: 500;
}
.us-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #4a5d7a;
  font-weight: 500;
}

/* Service-line header — divides Wireless vs OSP sections */
.us-line-header {
  margin: 56px 0 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(30,56,93,0.10);
  position: relative;
}
.us-line-header::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 64px;
  height: 3px;
  background: #FF5D09;
}
.us-line-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0074FF;
  margin-bottom: 10px;
}
.us-line-title {
  font-family: 'Plus Jakarta Sans', 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #1E385D;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.us-line-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2a3a52;
  max-width: 820px;
  margin: 0;
}

/* Responsive */
@media (max-width: 880px) {
  .us-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .us-stat-value {
    font-size: 1.9rem;
  }
}
@media (max-width: 480px) {
  .us-stat-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .us-stat {
    padding: 18px 16px;
  }
}

/* ============================================================
   MANUFACTURING BLOCK — shared across Mining & Electrical pages
   ============================================================ */

.mfg-block {
  margin: 96px 0 72px;
  padding: 64px;
  background: linear-gradient(135deg, #0E2643 0%, #1B3A66 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}
.mfg-block::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 138, 76, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.mfg-block::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 116, 255, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.mfg-block-eyebrow {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF8A4C;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.mfg-block-title {
  font-family: 'Funnel Display', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.mfg-block-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 40px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.mfg-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.mfg-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mfg-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 22px;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.mfg-stat:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 138, 76, 0.45);
}
.mfg-stat-value {
  font-family: 'Funnel Display', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.mfg-stat-value span {
  color: #FF8A4C;
  font-size: 0.78em;
  margin-left: 2px;
}
.mfg-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}
.mfg-video-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 11;
  position: relative;
  background: #000;
}
.mfg-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mfg-video-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(11, 31, 59, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.mfg-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
}
.mfg-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.mfg-cert::before {
  content: '✓';
  color: #FF8A4C;
  font-weight: 700;
}
.mfg-trace {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(255, 138, 76, 0.10);
  border: 1px solid rgba(255, 138, 76, 0.30);
  border-radius: 12px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mfg-trace-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #FF8A4C;
  display: grid;
  place-items: center;
}
.mfg-trace-icon svg { width: 20px; height: 20px; stroke: #FFFFFF; }
.mfg-trace-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.mfg-trace-text strong { color: #FFFFFF; font-weight: 700; }

@media (max-width: 980px) {
  .mfg-block { padding: 44px 28px; }
  .mfg-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .mfg-stats { grid-template-columns: 1fr; }
  .mfg-stat-value { font-size: 26px; }
  .mfg-block { padding: 36px 22px; margin: 64px 0 48px; }
}

/* ============================================================
   OUTPUT CAPABILITIES — for Electrical Distribution
   ============================================================ */
.output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0 32px;
}
.output-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 116, 255, 0.12);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.output-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 76, 0.4);
  box-shadow: 0 14px 30px -12px rgba(11, 31, 59, 0.18);
}
.output-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 116, 255, 0.10);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.output-card-icon svg { width: 22px; height: 22px; stroke: #0074FF; stroke-width: 2; fill: none; }
.output-card-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0B1F3B;
  margin: 0 0 6px;
}
.output-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(11, 31, 59, 0.7);
  margin: 0;
}
@media (max-width: 880px) {
  .output-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .output-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INDUSTRY STAT STRIP — same as US but for Mining/Electrical
   ============================================================ */
.ind-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 40px 0 48px;
}
.ind-stat {
  background: #fff;
  border: 1px solid rgba(30,56,93,0.10);
  border-top: 3px solid #FF5D09;
  border-radius: 12px;
  padding: 22px 20px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ind-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -28px rgba(30,56,93,0.40);
}
.ind-stat-value {
  font-family: 'Plus Jakarta Sans', 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #1E385D;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.ind-stat-value span {
  color: #0074FF;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 2px;
}
.ind-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #4a5d7a;
  font-weight: 500;
}
@media (max-width: 880px) {
  .ind-stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ind-stat-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   INDUSTRY LINE HEADER — eyebrow + title for service blocks
   ============================================================ */
.ind-line-header {
  margin: 96px 0 32px;
  position: relative;
  padding-top: 28px;
}
.ind-line-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: #FF8A4C;
  border-radius: 2px;
}
.ind-line-eyebrow {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0074FF;
  margin-bottom: 10px;
}
.ind-line-title {
  font-family: 'Funnel Display', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: #0B1F3B;
}
.ind-line-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(11, 31, 59, 0.75);
  margin: 0;
  max-width: 760px;
}


/* ============================================================
   UK MARKET PAGE
   ============================================================ */

/* Service-row note — used in UK + Germany corrections */
.gmbh-svc-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(255, 138, 76, 0.08);
  border-left: 3px solid #FF8A4C;
  border-radius: 8px;
  font-size: 0.875rem;
  color: rgba(11, 31, 59, 0.80);
  line-height: 1.55;
}

/* UK stat strip */
.uk-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0 56px;
}
.uk-stat {
  background: #ffffff;
  border: 1px solid rgba(0, 116, 255, 0.10);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(11, 31, 59, 0.04);
  border-top: 4px solid #FF8A4C;
}
.uk-stat-value {
  font-family: 'Funnel Display', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #0B1F3B;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.uk-stat-value span,
.uk-stat-unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF8A4C;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.uk-stat-label {
  margin-top: 10px;
  font-size: 0.875rem;
  color: rgba(11, 31, 59, 0.70);
  line-height: 1.45;
}

@media (max-width: 880px) {
  .uk-stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .uk-stat-strip { grid-template-columns: 1fr; }
}

/* UK certification grid */
.uk-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 24px 0 56px;
}
.uk-cert {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 116, 255, 0.10);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 1px 2px rgba(11, 31, 59, 0.04);
}
.uk-cert-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(255, 138, 76, 0.12);
  color: #FF8A4C;
  font-weight: 700;
  font-size: 1rem;
}
.uk-cert-body { min-width: 0; }
.uk-cert-title {
  font-family: 'Funnel Display', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0B1F3B;
  line-height: 1.25;
}
.uk-cert-sub {
  margin-top: 2px;
  font-size: 0.8rem;
  color: rgba(11, 31, 59, 0.65);
  line-height: 1.35;
}

/* UK software stack */
.uk-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0 56px;
}
.uk-stack-group {
  background: #ffffff;
  border: 1px solid rgba(0, 116, 255, 0.10);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 1px 2px rgba(11, 31, 59, 0.04);
}
.uk-stack-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #0074FF;
  margin-bottom: 12px;
}
.uk-stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.uk-stack-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(0, 116, 255, 0.06);
  color: #0B1F3B;
  border-radius: 999px;
  font-size: 0.825rem;
  font-weight: 600;
  border: 1px solid rgba(0, 116, 255, 0.12);
}

/* UK why-list */
.uk-why-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}
.uk-why-list li {
  position: relative;
  padding: 18px 20px 18px 52px;
  background: #ffffff;
  border: 1px solid rgba(0, 116, 255, 0.10);
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(11, 31, 59, 0.85);
  box-shadow: 0 1px 2px rgba(11, 31, 59, 0.04);
}
.uk-why-list li::before {
  content: "→";
  position: absolute;
  left: 20px;
  top: 18px;
  color: #FF8A4C;
  font-weight: 700;
  font-size: 1.1rem;
}
.uk-why-list li strong {
  color: #0B1F3B;
  font-weight: 700;
}

/* ============================================================
   CONSTRUCTION SERVICE PAGE
   ============================================================ */

/* Slightly taller hero for the dramatic Baffin Island shot */
.detail-hero-tall { min-height: 72vh; }
.detail-hero-tall .ph-img { object-position: center 40%; }

/* Catch-phrase block — sits right under hero, big, confident */
.cn-catch {
  margin: 56px 0 40px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--color-ink, #0E2340);
  border-left: 4px solid #FF6A1A;
  background: rgba(255, 255, 255, 0.55);
  padding: 28px 32px;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .cn-catch { font-size: 17px; padding: 22px 20px; }
}

/* Showcase trio: 1 large on the left + 2 stacked tall on the right */
.cn-showcase {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin: 48px 0 56px;
  min-height: 620px;
}
.cn-showcase figure {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #0E2340;
}
.cn-showcase-main {
  grid-row: 1 / span 2;
}
.cn-showcase figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cn-showcase figure:hover img { transform: scale(1.03); }
.cn-showcase figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
}
@media (max-width: 760px) {
  .cn-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .cn-showcase-main { grid-row: auto; }
  .cn-showcase figure { aspect-ratio: 4 / 3; }
  .cn-showcase-side { aspect-ratio: 4 / 3; }
}

/* Caps grid override — 3 columns, tighter on construction */
.cn-caps { grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
@media (max-width: 900px) { .cn-caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cn-caps { grid-template-columns: 1fr; } }

/* Construction service bullet list */
.cn-service-list { margin: 48px 0; }
.cn-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
}
.cn-bullets li {
  font-size: 1rem;
  color: var(--text-secondary, #4a5568);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.cn-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF5D09;
}
@media (max-width: 640px) {
  .cn-bullets { grid-template-columns: 1fr; }
}

/* Mosaic — 5 photos, organic site-gallery feel */
.cn-mosaic-title { margin-top: 64px; }
.cn-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin: 24px 0 56px;
}
.cn-mos-card {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #0E2340;
}
.cn-mos-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.cn-mos-card:hover img { transform: scale(1.04); }
.cn-mos-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 65%, transparent 100%);
}
.cn-mos-loc {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFB07A;
}
.cn-mos-note {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

/* Mosaic spans: 5 cards arranged as: tall(2) wide(4) | tall(2) wide(4) | tall(6) */
.cn-mosaic .cn-mos-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.cn-mosaic .cn-mos-card:nth-child(2) { grid-column: span 4; grid-row: span 2; }
.cn-mosaic .cn-mos-card:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.cn-mosaic .cn-mos-card:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.cn-mosaic .cn-mos-card:nth-child(5) { grid-column: span 6; grid-row: span 2; }

@media (max-width: 900px) {
  .cn-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .cn-mosaic .cn-mos-card:nth-child(1),
  .cn-mosaic .cn-mos-card:nth-child(2),
  .cn-mosaic .cn-mos-card:nth-child(3),
  .cn-mosaic .cn-mos-card:nth-child(4),
  .cn-mosaic .cn-mos-card:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .cn-mosaic .cn-mos-card:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 540px) {
  .cn-mosaic { grid-template-columns: 1fr; }
  .cn-mosaic .cn-mos-card:nth-child(5) { grid-column: span 1; }
}

/* cn-why-list: orange arrow already inherited from .uk-why-list */
.cn-why-list { margin: 18px 0 40px; }

/* ====== GLOBAL INDUSTRY PAGES: Wireless + Fiber ====== */

/* Country chip strip */
.ind-country-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 48px;
  align-items: center;
}
.ind-country-strip .strip-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF6A1A;
  margin-right: 12px;
}
.ind-country-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(0, 116, 255, 0.08);
  border: 1px solid rgba(0, 116, 255, 0.25);
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0d2547;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ind-country-chip:hover {
  background: rgba(0, 116, 255, 0.16);
  border-color: rgba(0, 116, 255, 0.45);
  transform: translateY(-1px);
}
.ind-country-chip .flag {
  font-size: 18px;
  line-height: 1;
}

/* ====== Service Matrix Table ====== */
.svc-matrix-wrap {
  margin: 48px 0 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(0, 116, 255, 0.18);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 30, 80, 0.04);
  position: relative;
}
.svc-matrix-hint {
  display: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #FF6A1A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 -32px;
  text-align: right;
  padding-right: 4px;
}
.svc-matrix {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.svc-matrix.svc-matrix-narrow {
  min-width: 0;
}
.svc-matrix thead th {
  background: linear-gradient(180deg, #0074FF 0%, #0058c4 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 14px;
  text-align: center;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
}
.svc-matrix thead th:first-child {
  text-align: left;
  background: linear-gradient(180deg, #003c8a 0%, #002a63 100%);
  padding-left: 22px;
}
.svc-matrix thead th .flag {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  line-height: 1;
}
.svc-matrix tbody td {
  padding: 16px 14px;
  text-align: center;
  font-size: 14px;
  color: #1a2a44;
  border-bottom: 1px solid rgba(0, 60, 138, 0.08);
}
.svc-matrix tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #0d2547;
  padding-left: 22px;
  background: #eef5ff;
  white-space: nowrap;
  box-shadow: 4px 0 8px -4px rgba(0, 30, 80, 0.12);
}
.svc-matrix thead th:first-child,
.svc-matrix tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}
.svc-matrix thead th:first-child { z-index: 4; }
.svc-matrix tbody tr:nth-child(even) td {
  background: rgba(222, 236, 255, 0.18);
}
.svc-matrix tbody tr:nth-child(even) td:first-child {
  background: #e4eeff;
}
.svc-matrix tbody tr:last-child td {
  border-bottom: none;
}
.svc-cell-yes {
  color: #0074FF;
  font-weight: 800;
  font-size: 18px;
}
.svc-cell-no {
  color: #b8c4d6;
  font-weight: 600;
  font-size: 16px;
}
.svc-cell-partial {
  color: #FF6A1A;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 106, 26, 0.12);
  border-radius: 999px;
}
.svc-matrix-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 22px;
  background: #DEECFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #1a2a44;
  border-top: 1px solid rgba(0, 116, 255, 0.18);
}
.svc-matrix-legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ====== Country Customer Card Grid ====== */
.country-customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin: 32px 0;
}
.country-customer-card {
  background: #fff;
  border: 1px solid rgba(0, 116, 255, 0.16);
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 6px 24px rgba(0, 30, 80, 0.04);
}
.country-customer-card .cc-flag {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}
.country-customer-card .cc-flag img.emoji { height: 48px; width: 48px; vertical-align: middle; }
.country-customer-card .cc-country {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0d2547;
  margin: 0 0 4px;
}
.country-customer-card .cc-scope {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FF6A1A;
  margin-bottom: 16px;
}
.country-customer-card .cc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.country-customer-card .cc-list li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a2a44;
  padding: 6px 12px;
  background: rgba(222, 236, 255, 0.7);
  border-radius: 999px;
}
.country-customer-card .cc-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 116, 255, 0.2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #FF6A1A;
  font-weight: 600;
}

@media (max-width: 720px) {
  .svc-matrix {
    min-width: 640px;
  }
  .svc-matrix.svc-matrix-narrow {
    min-width: 0;
  }
  .svc-matrix thead th {
    font-size: 10px;
    padding: 10px 6px;
  }
  .svc-matrix thead th:first-child,
  .svc-matrix tbody td:first-child {
    max-width: 180px;
    white-space: normal;
    line-height: 1.3;
  }
  .svc-matrix tbody td {
    font-size: 12px;
    padding: 10px 8px;
  }
  .svc-matrix tbody td:first-child {
    padding-left: 14px;
    font-size: 12.5px;
  }
  .svc-matrix-hint {
    display: block;
  }
  .svc-cell-partial {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* ── Fiber Professional Services Process List ───────────────────── */
.fiber-process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 64px;
}

.fiber-process-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #1a2f4a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}

.fiber-process-item:last-child {
  border-bottom: none;
}

.fiber-process-item:hover {
  background: #1f3a5c;
}

.fiber-process-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0,116,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fiber-process-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0074ff;
  fill: none;
}

.fiber-process-text h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.fiber-process-text p {
  margin: 0;
  font-size: 13px;
  color: #f97316;
  font-weight: 500;
}

@media (max-width: 600px) {
  .fiber-process-item {
    padding: 16px 18px;
    gap: 14px;
  }
  .fiber-process-icon {
    width: 36px;
    height: 36px;
  }
  .fiber-process-icon svg {
    width: 18px;
    height: 18px;
  }
  .fiber-process-text h4 {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MANUFACTURING DETAIL PAGE — NEW SECTION STYLES
   ═══════════════════════════════════════════════════════════ */

/* Override default detail-body padding so section backgrounds tile edge-to-edge */
.mfg-detail-body {
  padding: 0 !important;
  background: #f4f6f9 !important;
}

/* Intro + meta bar get their own padding inside the mfg-detail-body */
.mfg-detail-body > .container:first-child {
  padding-top: 64px;
  padding-bottom: 0;
}

/* Facility video strip — sits between meta-bar and anchor nav */
.mfg-facility-strip {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #0d1e33;
}

.mfg-facility-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.mfg-facility-caption {
  position: absolute;
  bottom: 20px;
  right: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.35);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

@media (max-width: 700px) {
  .mfg-facility-strip { height: 240px; }
}

/* Anchor nav — sticky below the site header */
.mfg-anchor-nav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: #1E385D;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.mfg-anchor-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.mfg-anchor-inner::-webkit-scrollbar { display: none; }

.mfg-anchor-link {
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.mfg-anchor-link:hover,
.mfg-anchor-link.is-active {
  color: #ffffff;
  border-bottom-color: #ff5d09;
}

/* Section wrapper */
.mfg-section {
  padding: 72px 0;
  background: #ffffff;
}

.mfg-section-alt {
  background: #f4f6f9;
}

/* Section heading — two-tone */
.mfg-section-heading {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #1E385D;
  margin: 0 0 16px;
  line-height: 1.15;
}

.mfg-accent {
  color: #ff5d09;
}

.mfg-section-lead {
  font-size: 16px;
  color: #4a5f78;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 0 40px;
}

/* ── Capabilities 2×2 grid ── */
.mfg-caps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mfg-cap-card {
  background: #f4f6f9;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e8ecf2;
  transition: box-shadow 0.2s;
}

.mfg-cap-card:hover {
  box-shadow: 0 6px 24px rgba(30,56,93,0.08);
}

.mfg-cap-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.mfg-cap-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0,116,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mfg-cap-icon svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  flex-shrink: 0;
  stroke: #0074ff;
}

.mfg-cap-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #1E385D;
}

/* ── Equipment grid (7 cards) ── */
.mfg-equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mfg-equip-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #e8ecf2;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.mfg-equip-card:hover {
  box-shadow: 0 4px 20px rgba(30,56,93,0.10);
  border-color: #c8d4e4;
}

.mfg-equip-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: rgba(0,116,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 18px;
}

.mfg-equip-icon svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  flex-shrink: 0;
  stroke: #0074ff;
}

.mfg-equip-card h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1E385D;
  line-height: 1.3;
}

.mfg-equip-card p {
  margin: 0;
  font-size: 13px;
  color: #6b8099;
  line-height: 1.6;
}

/* ── Product grid (2-col) ── */
.mfg-prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.mfg-prod-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mfg-prod-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e8ecf2;
  transition: box-shadow 0.2s;
}

.mfg-section-alt .mfg-prod-card {
  background: #ffffff;
}

.mfg-prod-card:hover {
  box-shadow: 0 6px 20px rgba(30,56,93,0.09);
}

.mfg-prod-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.mfg-prod-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: rgba(255,93,9,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mfg-prod-icon svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  flex-shrink: 0;
  stroke: #ff5d09;
}

.mfg-prod-card-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1E385D;
}

/* Bullet lists */
.mfg-bullets {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: disc;
}

.mfg-bullets li {
  font-size: 14px;
  color: #3a4a5c;
  line-height: 1.65;
  margin-bottom: 5px;
  padding-left: 2px;
}

.mfg-bullets li::marker {
  color: #ff5d09;
}

.mfg-bullets-check {
  list-style: none;
  padding-left: 0;
}

.mfg-bullets-check li {
  padding-left: 22px;
  position: relative;
}

.mfg-bullets-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0074ff;
  font-weight: 700;
}

/* "Also produced" bar */
.mfg-also-bar {
  background: #1E385D;
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mfg-also-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

.mfg-also-items {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
}

/* Badge row (substation) */
.mfg-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mfg-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1E385D;
  border-radius: 40px;
  padding: 10px 18px 10px 14px;
}

.mfg-badge svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #ff5d09;
  flex-shrink: 0;
}

.mfg-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

/* QA section — reuses prod-grid with 2 cols */
.mfg-qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

/* Certifications bar */
.mfg-cert-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 20px 24px;
  background: #f4f6f9;
  border-radius: 10px;
  border: 1px solid #e8ecf2;
}

.mfg-cert-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8CA0BC;
}

.mfg-cert-item {
  font-size: 13px;
  font-weight: 600;
  color: #1E385D;
}

.mfg-cert-divider {
  color: #c8d4e4;
  font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .mfg-equip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .mfg-caps-grid {
    grid-template-columns: 1fr;
  }
  .mfg-prod-grid,
  .mfg-prod-grid-3,
  .mfg-qa-grid {
    grid-template-columns: 1fr;
  }
  .mfg-also-bar {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .mfg-section {
    padding: 48px 0;
  }
  .mfg-equip-grid {
    grid-template-columns: 1fr;
  }
  .mfg-anchor-link {
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .mfg-badge-row {
    flex-direction: column;
  }
  .mfg-badge {
    border-radius: 10px;
  }
}
