:root {
  --brand: #1397d5;
  --brand-dark: #0873ad;
  --brand-deep: #06496f;
  --navy: #061c2e;
  --navy-2: #0a2a42;
  --ink: #122334;
  --text: #526171;
  --muted: #7c8a96;
  --line: #dbe3e8;
  --soft: #f3f6f8;
  --white: #ffffff;
  --success: #147a50;
  --danger: #b72d36;
  --container: 1240px;
  --container-wide: 1440px;
  --header-height: 88px;
  --radius-sm: 4px;
  --radius: 10px;
  --shadow: 0 20px 60px rgba(4, 30, 48, 0.12);
  --font-display: 'Manrope', Arial, sans-serif;
  --font-body: 'Noto Sans', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.13; letter-spacing: -0.035em; }
p { color: var(--text); }
::selection { color: var(--white); background: var(--brand-dark); }

:focus-visible {
  outline: 3px solid #f1b940;
  outline-offset: 3px;
}

[hidden] { display: none !important; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 56px), var(--container-wide)); margin-inline: auto; }
.section { position: relative; padding: clamp(84px, 8vw, 138px) 0; overflow: clip; }
.section--soft { background: var(--soft); }
.section--dark { color: var(--white); background: var(--navy); }
.light-copy, .section--dark p { color: rgba(255,255,255,.73); }
.media-cover { display: block; width: 100%; height: 100%; overflow: hidden; }
.media-cover img { width: 100%; height: 100%; object-fit: cover; }
.strong-copy { font-weight: 700; color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background-color .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 28, 46, .97);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 32px rgba(3,21,34,.18);
  backdrop-filter: blur(12px);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; color: var(--white); }
.brand__mark { width: 86px; height: 38px; object-fit: contain; }
.brand__copy { display: flex; flex-direction: column; line-height: 1; }
.brand__copy strong { font: 800 19px/1 var(--font-display); letter-spacing: .03em; }
.brand__copy small { margin-top: 5px; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .76; }
.desktop-nav { align-self: stretch; }
.desktop-nav__list { display: flex; align-items: stretch; height: 100%; gap: 2px; margin: 0; padding: 0; list-style: none; }
.desktop-nav__item { position: relative; display: flex; align-items: center; }
.desktop-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 100%;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
}
.desktop-nav__link::after {
  content: '';
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav__link:hover::after,
.desktop-nav__link[aria-current='page']::after,
.desktop-nav__item:focus-within > .desktop-nav__link::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav__link i { font-size: 9px; }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: var(--white);
  background: var(--brand-dark);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover { background: var(--brand); transform: translateY(-1px); }
.language-switcher { position: relative; }
.language-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 8px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.language-switcher__button i:last-child { font-size: 8px; }
.language-switcher__menu {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: 180px;
  padding: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.language-switcher__menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.language-switcher__menu button[aria-current='true'] { color: var(--brand-dark); background: var(--soft); font-weight: 800; }
.language-switcher__menu button:disabled { color: #9aa5ad; cursor: not-allowed; }
.language-switcher__menu small { font-size: 9px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; }

.mega-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(250px, .7fr) 2fr;
  gap: 60px;
  width: min(calc(100% - 56px), var(--container-wide));
  margin-inline: auto;
  padding: 38px 44px 44px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu__intro { padding-right: 32px; border-right: 1px solid var(--line); }
.mega-menu__kicker { color: var(--brand-dark); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mega-menu__intro strong { display: block; margin: 13px 0 10px; font: 800 30px/1.1 var(--font-display); }
.mega-menu__intro p { margin: 0; font-size: 13px; }
.mega-menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mega-menu__link { position: relative; min-height: 116px; padding: 18px 38px 18px 18px; border: 1px solid var(--line); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.mega-menu__link:hover { background: var(--soft); border-color: #b6d7e8; transform: translateY(-2px); }
.mega-menu__link span { display: block; margin-bottom: 8px; font: 800 15px/1.25 var(--font-display); }
.mega-menu__link small { display: block; color: var(--text); font-size: 11px; line-height: 1.5; }
.mega-menu__link i { position: absolute; right: 16px; bottom: 18px; color: var(--brand-dark); }

.mobile-navigation { position: fixed; z-index: 1300; inset: 0; pointer-events: none; visibility: hidden; }
.mobile-navigation.is-open { pointer-events: auto; visibility: visible; }
.mobile-navigation__backdrop { position: absolute; inset: 0; background: rgba(0, 12, 22, .7); opacity: 0; transition: opacity .35s ease; }
.mobile-navigation__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px clamp(24px, 6vw, 60px) 34px;
  color: var(--white);
  background: var(--navy);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .5s cubic-bezier(.7,0,.2,1);
  overflow-y: auto;
}
.mobile-navigation.is-open .mobile-navigation__backdrop { opacity: 1; }
.mobile-navigation.is-open .mobile-navigation__panel { clip-path: inset(0); }
.mobile-navigation__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.14); }
.mobile-navigation__close { width: 46px; height: 46px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.25); cursor: pointer; }
.mobile-navigation__nav { flex: 1; padding: 32px 0; }
.mobile-navigation__nav ul { margin: 0; padding: 0; list-style: none; }
.mobile-navigation__nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.12); opacity: 0; transform: translateY(18px); transition: opacity .4s ease calc(var(--index) * 50ms + 180ms), transform .4s ease calc(var(--index) * 50ms + 180ms); }
.mobile-navigation.is-open .mobile-navigation__nav > ul > li { opacity: 1; transform: translateY(0); }
.mobile-navigation__nav > ul > li > a,
.mobile-nav-parent { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 17px 0; color: var(--white); background: transparent; border: 0; font: 700 clamp(23px, 5vw, 34px)/1.2 var(--font-display); text-align: left; cursor: pointer; }
.mobile-nav-parent i { font-size: 16px; }
.mobile-submenu { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; overflow: hidden; }
.mobile-submenu.is-open { grid-template-rows: 1fr; padding-bottom: 16px; }
.mobile-submenu a { padding: 7px 0 7px 16px; color: rgba(255,255,255,.7); font-size: 14px; }
.mobile-navigation__footer { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }
.mobile-navigation__footer a { color: var(--brand); font-weight: 800; }
.mobile-navigation__footer p { max-width: 420px; margin: 8px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }

/* Buttons and shared headings */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .015em;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--brand-dark); }
.button--primary:hover { background: var(--brand); }
.button--light { color: var(--navy); background: var(--white); }
.button--light:hover { color: var(--white); background: var(--brand); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.text-link i { color: var(--brand-dark); transition: transform .2s ease; }
.text-link:hover i { transform: translateX(5px); }
.text-link--light { color: var(--white); }
.text-link--light i { color: var(--brand); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading__eyebrow { margin-bottom: 12px; color: var(--brand-dark); font: 800 11px/1.4 var(--font-display); letter-spacing: .17em; text-transform: uppercase; }
.section-heading__title { max-width: 830px; margin-bottom: 18px; font-size: clamp(34px, 4.2vw, 59px); }
.section-heading__text { max-width: 720px; margin-bottom: 0; font-size: clamp(15px, 1.5vw, 18px); }
.section-heading--light .section-heading__eyebrow { color: #53b9e8; }
.section-heading--light .section-heading__title { color: var(--white); }
.section-heading--light .section-heading__text { color: rgba(255,255,255,.72); }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 38px; margin-bottom: 48px; }
.section-heading-row .section-heading { margin-bottom: 0; }

/* Hero */
.hero-slider { height: 100svh; min-height: 680px; color: var(--white); background: var(--navy); }
.hero-slide { position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-slide__media { position: absolute; inset: 0; }
.hero-slide__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,20,34,.88) 0%, rgba(1,20,34,.62) 44%, rgba(1,20,34,.15) 75%, rgba(1,20,34,.36) 100%); }
.hero-slide__geometry { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-slide__geometry span { position: absolute; right: -10%; width: 52%; height: 135%; border-left: 1px solid rgba(80,190,239,.35); background: rgba(16,149,211,.07); transform: rotate(15deg); }
.hero-slide__geometry span:nth-child(1) { top: -45%; }
.hero-slide__geometry span:nth-child(2) { top: -10%; right: -26%; background: rgba(255,255,255,.04); }
.hero-slide__geometry span:nth-child(3) { top: 36%; right: 6%; width: 35%; height: 70%; background: transparent; border: 1px solid rgba(255,255,255,.13); }
.hero-slide__content { position: relative; z-index: 2; padding-top: var(--header-height); }
.hero-slide__eyebrow { margin-bottom: 20px; color: #7bd2f6; font: 800 12px/1.4 var(--font-display); letter-spacing: .19em; text-transform: uppercase; }
.hero-slide h1 { max-width: 920px; margin-bottom: 26px; color: var(--white); font-size: clamp(48px, 6.4vw, 92px); line-height: 1.02; }
.hero-slide__description { max-width: 690px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.5vw, 20px); }
.hero-slider__controls { position: absolute; z-index: 5; right: 0; bottom: 42px; left: 0; display: flex; align-items: center; justify-content: flex-end; gap: 28px; pointer-events: none; }
.hero-slider__progress, .hero-slider__nav { display: flex; align-items: center; pointer-events: auto; }
.hero-slider__progress { gap: 10px; font: 800 11px/1 var(--font-display); letter-spacing: .1em; }
.hero-slider__bar { width: 120px; height: 1px; background: rgba(255,255,255,.3); overflow: hidden; }
.hero-slider__bar span { display: block; width: 100%; height: 100%; background: var(--brand); transform-origin: left; }
.hero-slider__nav { gap: 7px; }
.hero-slider__nav button, .history-nav button { width: 48px; height: 48px; color: var(--white); background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.3); cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.hero-slider__nav button:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.scroll-indicator { position: absolute; z-index: 5; bottom: 38px; left: max(28px, calc((100vw - min(calc(100% - 48px), var(--container))) / 2)); display: flex; align-items: center; gap: 13px; font: 800 10px/1 var(--font-display); letter-spacing: .16em; text-transform: uppercase; }
.scroll-indicator i { color: var(--brand); animation: scroll-nudge 1.8s ease-in-out infinite; }
@keyframes scroll-nudge { 50% { transform: translateY(7px); } }

/* Intro and stats */
.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1.02fr .86fr; align-items: center; gap: clamp(56px, 8vw, 116px); }
.intro-grid__copy > p { max-width: 720px; }
.intro-grid__visual { position: relative; min-height: 610px; }
.intro-grid__visual::before { content: ''; position: absolute; z-index: 1; top: -25px; right: -25px; width: 48%; height: 55%; border: 1px solid rgba(19,151,213,.42); }
.intro-grid__visual .media-cover { position: absolute; inset: 0; clip-path: polygon(0 0, 100% 0, 100% 84%, 82% 100%, 0 100%); }
.intro-grid__badge { position: absolute; z-index: 2; right: -26px; bottom: 38px; display: flex; width: 210px; min-height: 115px; flex-direction: column; justify-content: center; padding: 24px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.intro-grid__badge strong { color: var(--brand); font: 800 35px/1 var(--font-display); }
.intro-grid__badge span { margin-top: 9px; font-size: 11px; line-height: 1.4; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat-card { min-height: 155px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-card strong { display: block; margin-bottom: 12px; color: var(--brand-dark); font: 800 clamp(30px, 3.7vw, 51px)/1 var(--font-display); letter-spacing: -.055em; }
.stat-card > span { color: var(--text); font-size: 12px; line-height: 1.5; }
.stats-grid--dark { margin-top: 0; border-color: rgba(255,255,255,.15); }
.stats-grid--dark .stat-card { border-color: rgba(255,255,255,.15); }
.stats-grid--dark .stat-card > span { color: rgba(255,255,255,.65); }

/* Product showcase */
.product-showcase { padding-bottom: 0; background: var(--soft); }
.product-showcase__stage { position: relative; margin-top: 8px; }
.product-showcase__media { position: relative; min-height: 690px; color: var(--white); clip-path: inset(0); }
.product-showcase__media > picture { position: absolute; inset: 0; }
.product-showcase__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,27,44,.92), rgba(3,27,44,.58) 48%, rgba(3,27,44,.12)); }
.product-showcase__content { position: relative; z-index: 2; display: flex; min-height: 690px; flex-direction: column; justify-content: center; align-items: flex-start; }
.product-showcase__number { margin-bottom: 20px; color: var(--brand); font: 800 16px/1 var(--font-display); letter-spacing: .13em; }
.product-showcase__content h3 { max-width: 650px; margin-bottom: 22px; color: var(--white); font-size: clamp(42px, 5.2vw, 74px); }
.product-showcase__content > p:not(.product-showcase__number) { max-width: 580px; margin-bottom: 28px; color: rgba(255,255,255,.75); font-size: 17px; }
.product-tabs { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(6, 1fr); margin-top: -80px; background: var(--white); box-shadow: 0 18px 45px rgba(6,28,46,.16); }
.product-tabs button { position: relative; min-height: 160px; padding: 26px 20px; background: var(--white); border: 0; border-right: 1px solid var(--line); text-align: left; cursor: pointer; transition: color .2s ease, background .2s ease; }
.product-tabs button:last-child { border-right: 0; }
.product-tabs button::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.product-tabs button:hover, .product-tabs button[aria-selected='true'] { color: var(--white); background: var(--navy); }
.product-tabs button[aria-selected='true']::before { transform: scaleX(1); }
.product-tabs button span { display: block; margin-bottom: 15px; color: var(--brand-dark); font: 800 11px/1 var(--font-display); }
.product-tabs button[aria-selected='true'] span, .product-tabs button:hover span { color: var(--brand); }
.product-tabs button strong { display: block; font: 800 12px/1.5 var(--font-display); }

/* Industry */
.industries-section { background: var(--white); }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.industry-card { position: relative; min-height: 280px; padding: 32px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, background .25s ease; }
.industry-card::after { content: ''; position: absolute; right: -60px; bottom: -70px; width: 160px; height: 160px; border: 1px solid rgba(19,151,213,.26); transform: rotate(38deg); transition: transform .35s ease; }
.industry-card:hover { color: var(--white); background: var(--navy); transform: translateY(-5px); }
.industry-card:hover::after { transform: rotate(50deg) scale(1.25); }
.industry-card__icon { display: grid; width: 56px; height: 56px; place-items: center; margin-bottom: 48px; color: var(--brand-dark); border: 1px solid #b9dceb; font-size: 22px; }
.industry-card:hover .industry-card__icon { color: var(--brand); border-color: rgba(255,255,255,.26); }
.industry-card h3 { position: relative; z-index: 1; margin-bottom: 12px; font-size: 20px; }
.industry-card p { position: relative; z-index: 1; margin: 0; font-size: 13px; }
.industry-card:hover p { color: rgba(255,255,255,.68); }

/* Network */
.network-section { color: var(--white); background: var(--navy); }
.network-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(46px, 6vw, 90px); align-items: center; }
.network-grid .section-heading__title { color: var(--white); }
.network-grid .section-heading__text { color: rgba(255,255,255,.68); }
.network-grid .section-heading__eyebrow { color: var(--brand); }
.network-filters, .filter-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 30px; }
.network-filters button, .filter-tabs button { padding: 9px 14px; color: rgba(255,255,255,.65); background: transparent; border: 1px solid rgba(255,255,255,.18); cursor: pointer; font: 800 10px/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.network-filters button.is-active, .network-filters button:hover { color: var(--white); background: var(--brand-dark); border-color: var(--brand-dark); }
.network-list { margin-bottom: 30px; border-top: 1px solid rgba(255,255,255,.15); }
.network-location { display: grid; width: 100%; grid-template-columns: 38px 1fr 24px; align-items: center; gap: 12px; padding: 17px 0; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.15); text-align: left; cursor: pointer; opacity: .62; transition: opacity .2s ease, padding .2s ease; }
.network-location:hover, .network-location.is-active { opacity: 1; padding-left: 8px; }
.network-location > span:first-child { color: var(--brand); font: 800 10px/1 var(--font-display); }
.network-location > span:nth-child(2) { display: flex; flex-direction: column; }
.network-location strong { font: 800 14px/1.35 var(--font-display); }
.network-location small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 10px; }
.network-location i { color: var(--brand); font-size: 11px; }
.network-grid .text-link { color: var(--white); }
.network-map { position: relative; min-height: 600px; background: #082238; border: 1px solid rgba(255,255,255,.11); overflow: hidden; }
.network-map__grid, .contact-map-section__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 48px 48px; }
.network-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-land { fill: rgba(19,151,213,.13); stroke: rgba(74,181,230,.38); stroke-width: 2; }
.map-land--asia { fill: rgba(255,255,255,.035); stroke: rgba(255,255,255,.17); }
.map-route { fill: none; stroke: var(--brand); stroke-width: 2; stroke-dasharray: 8 10; animation: route-flow 15s linear infinite; }
.map-route--secondary { stroke: rgba(255,255,255,.32); }
@keyframes route-flow { to { stroke-dashoffset: -180; } }
.map-pin { position: absolute; z-index: 3; top: var(--y); left: var(--x); width: 30px; height: 30px; padding: 0; background: transparent; border: 0; transform: translate(-50%,-50%); cursor: pointer; }
.map-pin span { position: absolute; inset: 8px; display: block; background: var(--brand); border: 4px solid #082238; border-radius: 50%; box-shadow: 0 0 0 1px var(--brand); }
.map-pin span::after { content: ''; position: absolute; inset: -12px; border: 1px solid var(--brand); border-radius: 50%; opacity: 0; transform: scale(.4); }
.map-pin.is-active span::after { animation: pin-pulse 1.8s ease-out infinite; }
@keyframes pin-pulse { 50%,100% { opacity: 0; transform: scale(1.3); } 10% { opacity: .8; } }
.map-pin small { position: absolute; top: 30px; left: 50%; width: max-content; max-width: 120px; color: rgba(255,255,255,.72); font-size: 9px; transform: translateX(-50%); }
.network-map__card { position: absolute; z-index: 4; right: 24px; bottom: 24px; width: min(310px, calc(100% - 48px)); padding: 24px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.network-map__card > span { color: var(--brand-dark); font: 800 9px/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.network-map__card h3 { margin: 10px 0 5px; font-size: 25px; }
.network-map__card strong { font-size: 11px; }
.network-map__card p { margin: 10px 0 0; font-size: 12px; line-height: 1.55; }
.network-map--page { min-height: 720px; margin-top: 50px; color: var(--white); }

/* News */
.news-feature-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 38px; }
.featured-news { border: 1px solid var(--line); }
.featured-news__media { display: block; height: 430px; overflow: hidden; }
.featured-news__media img, .news-card__media img { transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.featured-news:hover .featured-news__media img, .news-card:hover .news-card__media img { transform: scale(1.04); }
.featured-news__body { padding: 30px; }
.news-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; color: var(--brand-dark); font: 800 9px/1.4 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.news-meta span + span { position: relative; padding-left: 17px; color: var(--muted); }
.news-meta span + span::before { content: ''; position: absolute; top: 50%; left: 0; width: 5px; height: 5px; background: var(--brand); border-radius: 50%; transform: translateY(-50%); }
.featured-news h3 { max-width: 720px; margin-bottom: 15px; font-size: clamp(26px, 3vw, 40px); }
.featured-news__body > p:not(.news-meta) { max-width: 720px; }
.news-mini-list { border-top: 1px solid var(--line); }
.news-mini { min-height: 190px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.news-mini h3 { margin-bottom: 19px; font-size: 20px; }
.news-mini .text-link { font-size: 11px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { border: 1px solid var(--line); background: var(--white); }
.news-card__media { display: block; height: 255px; overflow: hidden; }
.news-card__body { padding: 25px; }
.news-card h2 { margin-bottom: 14px; font-size: 22px; }
.news-card__body > p:not(.news-meta) { font-size: 13px; }
.filter-tabs { justify-content: flex-end; margin-bottom: 0; }
.filter-tabs button { color: var(--text); border-color: var(--line); }
.filter-tabs button[aria-selected='true'], .filter-tabs button:hover { color: var(--white); background: var(--navy); border-color: var(--navy); }
.empty-state { padding: 40px; text-align: center; background: var(--soft); }

/* History */
.history-section { color: var(--white); background: var(--navy); }
.history-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.history-section .section-heading__title { color: var(--white); }
.history-section .section-heading__text { color: rgba(255,255,255,.65); }
.history-section .section-heading__eyebrow { color: var(--brand); }
.history-nav { display: flex; gap: 7px; margin-bottom: 44px; }
.history-nav button:hover { background: var(--brand-dark); }
.history-swiper { padding: 10px 0 10px max(28px, calc((100vw - min(calc(100% - 48px), var(--container))) / 2)); }
.history-card { min-height: 390px; padding: 32px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.025); }
.history-card::before { content: ''; position: absolute; top: 97px; right: 32px; left: 32px; height: 1px; background: rgba(255,255,255,.14); }
.history-card__index { display: block; margin-bottom: 52px; color: rgba(255,255,255,.4); font: 800 10px/1 var(--font-display); }
.history-card > strong { display: block; margin-bottom: 26px; color: var(--brand); font: 800 clamp(38px, 4vw, 58px)/1 var(--font-display); }
.history-card h3 { margin-bottom: 14px; color: var(--white); font-size: 24px; }
.history-card p { color: rgba(255,255,255,.63); font-size: 13px; }

/* Final CTA and footer */
.final-cta { position: relative; padding: 72px 0; color: var(--white); background: var(--brand-deep); overflow: hidden; }
.final-cta__geometry { position: absolute; top: -140px; right: -50px; width: 520px; height: 440px; border: 1px solid rgba(255,255,255,.15); background: rgba(19,151,213,.14); transform: rotate(24deg); }
.final-cta__geometry::before { content: ''; position: absolute; inset: 80px -90px -80px 120px; border: 1px solid rgba(255,255,255,.12); }
.final-cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.final-cta h2 { max-width: 780px; margin-bottom: 12px; color: var(--white); font-size: clamp(34px, 4.3vw, 59px); }
.final-cta p:not(.section-heading__eyebrow) { max-width: 720px; margin: 0; color: rgba(255,255,255,.7); }
.final-cta .section-heading__eyebrow { color: #67c7ee; }
.site-footer { color: var(--white); background: #03131f; }
.site-footer__top { display: grid; grid-template-columns: 1.35fr .7fr .9fr 1.1fr; gap: 55px; padding-top: 76px; padding-bottom: 70px; }
.site-footer__brand img { width: 260px; max-height: 120px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .95; }
.site-footer__brand > p { max-width: 330px; margin: 20px 0; color: rgba(255,255,255,.58); font-size: 13px; }
.social-links { display: flex; gap: 8px; }
.social-links a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.17); transition: background .2s ease, border-color .2s ease; }
.social-links a:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.site-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.site-footer__column h2 { margin-bottom: 15px; color: var(--white); font-size: 14px; letter-spacing: .05em; }
.site-footer__column > a { color: rgba(255,255,255,.57); font-size: 12px; transition: color .2s ease; }
.site-footer__column > a:hover { color: var(--brand); }
.site-footer__contact p { display: grid; grid-template-columns: 18px 1fr; gap: 10px; margin: 0 0 9px; color: rgba(255,255,255,.57); font-size: 12px; }
.site-footer__contact i { margin-top: 5px; color: var(--brand); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom-inner { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 20px; }
.site-footer__bottom p { margin: 0; color: rgba(255,255,255,.42); font-size: 10px; }
.site-footer__bottom div { display: flex; gap: 24px; color: rgba(255,255,255,.5); font-size: 10px; }
.back-to-top { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 46px; height: 46px; color: var(--white); background: var(--brand-dark); border: 0; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Breadcrumb */
.breadcrumb-banner { position: relative; display: flex; min-height: 540px; align-items: flex-end; padding: calc(var(--header-height) + 95px) 0 78px; color: var(--white); background: var(--navy); overflow: hidden; }
.breadcrumb-banner__media { position: absolute; inset: 0; }
.breadcrumb-banner__media img { width: 100%; height: 110%; object-fit: cover; }
.breadcrumb-banner__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,22,37,.94), rgba(2,22,37,.62) 56%, rgba(2,22,37,.28)); }
.breadcrumb-banner__geometry { position: absolute; right: -100px; bottom: -150px; width: 520px; height: 520px; border: 1px solid rgba(79,194,240,.32); background: rgba(19,151,213,.08); transform: rotate(28deg); }
.breadcrumb-banner__content { position: relative; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs i { font-size: 7px; }
.breadcrumbs span { color: var(--brand); }
.breadcrumb-banner__eyebrow { margin-bottom: 12px; color: var(--brand); font: 800 11px/1.4 var(--font-display); letter-spacing: .18em; text-transform: uppercase; }
.breadcrumb-banner h1 { max-width: 950px; margin-bottom: 18px; color: var(--white); font-size: clamp(44px, 6vw, 78px); }
.breadcrumb-banner__content > p:last-child { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); font-size: 17px; }

/* Shared internal layouts */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 7vw, 100px); }
.split-layout--wide { grid-template-columns: 1.05fr .85fr; }
.internal-intro .split-layout > div:first-child > p { max-width: 720px; }
.stacked-media { position: relative; min-height: 650px; }
.stacked-media .media-cover { position: absolute; inset: 0; clip-path: polygon(0 0, 100% 0, 100% 82%, 80% 100%, 0 100%); }
.stacked-media__caption { position: absolute; right: -28px; bottom: 30px; display: flex; width: 230px; min-height: 130px; flex-direction: column; justify-content: center; padding: 26px; color: var(--white); background: var(--navy); }
.stacked-media__caption strong { color: var(--brand); font: 800 35px/1 var(--font-display); }
.stacked-media__caption span { margin-top: 9px; font-size: 11px; }

/* Leadership and about */
.leadership-section { background: var(--soft); }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader-card { background: var(--white); border: 1px solid var(--line); }
.leader-card__portrait { position: relative; display: grid; height: 260px; place-items: center; background: linear-gradient(135deg, var(--navy), #0b466a); overflow: hidden; }
.leader-card__portrait::before, .leader-card__portrait::after { content: ''; position: absolute; width: 220px; height: 270px; border: 1px solid rgba(93,204,248,.28); transform: rotate(30deg); }
.leader-card__portrait::after { transform: translate(70px,60px) rotate(30deg); }
.leader-card__portrait span { position: relative; z-index: 1; display: grid; width: 94px; height: 94px; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font: 800 26px/1 var(--font-display); }
.leader-card__body { padding: 27px; }
.leader-card__body > p:first-child { margin-bottom: 6px; color: var(--brand-dark); font: 800 10px/1.4 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.leader-card h3 { margin-bottom: 17px; font-size: 24px; }
.leader-card__rule { width: 42px; height: 2px; margin-bottom: 18px; background: var(--brand); }
.leader-card__body > p:last-child { margin: 0; font-size: 13px; }
.vision-quote { position: relative; margin: 65px 0 0; padding: 50px 70px; color: var(--white); background: var(--navy); }
.vision-quote i { position: absolute; top: 40px; left: 34px; color: rgba(19,151,213,.4); font-size: 35px; }
.vision-quote p { margin-bottom: 18px; color: rgba(255,255,255,.86); font: 600 clamp(18px, 2vw, 25px)/1.65 var(--font-display); }
.vision-quote footer { color: var(--brand); font: 800 10px/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.why-section { background: var(--white); }
.numbered-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.numbered-grid article { min-height: 245px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.numbered-grid article > span { display: block; margin-bottom: 42px; color: var(--brand-dark); font: 800 11px/1 var(--font-display); }
.numbered-grid h3 { margin-bottom: 13px; font-size: 21px; }
.numbered-grid p { margin: 0; font-size: 13px; }
.commitment-section__visual { height: 620px; }
.icon-list { display: grid; gap: 13px; margin: 28px 0 30px; padding: 0; list-style: none; }
.icon-list li { display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: 9px; color: var(--ink); font-size: 14px; }
.icon-list i { display: grid; width: 23px; height: 23px; place-items: center; margin-top: 2px; color: var(--white); background: var(--brand-dark); font-size: 9px; }
.icon-list--two-column { grid-template-columns: 1fr 1fr; gap: 16px 25px; }

/* Vision */
.vision-page { background: var(--white); }
.vision-statement { max-width: 1050px; padding-left: 60px; border-left: 4px solid var(--brand); }
.vision-statement > span { color: var(--brand-dark); font: 800 11px/1 var(--font-display); letter-spacing: .15em; text-transform: uppercase; }
.vision-statement h2 { margin: 19px 0 24px; font-size: clamp(37px, 4.7vw, 62px); }
.vision-statement p { max-width: 760px; font-size: 17px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 75px; }
.value-card { min-height: 285px; padding: 30px; background: var(--soft); border-bottom: 3px solid transparent; transition: transform .25s ease, border-color .25s ease; }
.value-card:hover { transform: translateY(-5px); border-color: var(--brand); }
.value-card > span { display: grid; width: 55px; height: 55px; place-items: center; margin-bottom: 50px; color: var(--brand-dark); background: var(--white); font-size: 21px; }
.value-card h3 { margin-bottom: 12px; font-size: 22px; }
.value-card p { margin: 0; font-size: 13px; }
.quality-section { background: var(--soft); }
.quality-process { padding: 10px 34px; background: var(--navy); }
.quality-process__step { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 18px; min-height: 86px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12); }
.quality-process__step:last-child { border-bottom: 0; }
.quality-process__step span { color: var(--brand); font: 800 10px/1 var(--font-display); }
.quality-process__step strong { font: 800 14px/1.4 var(--font-display); }
.principle-panel { padding: 55px; border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.035); }
.principle-panel h3 { margin-bottom: 18px; color: var(--white); font-size: clamp(32px, 4vw, 52px); }
.principle-panel p { margin-bottom: 25px; }

/* R&D */
.partnership-panel { position: relative; display: flex; min-height: 510px; flex-direction: column; justify-content: center; align-items: center; padding: 50px; color: var(--white); background: var(--navy); overflow: hidden; }
.partnership-panel::before, .partnership-panel::after { content: ''; position: absolute; width: 310px; height: 400px; border: 1px solid rgba(19,151,213,.27); transform: rotate(34deg); }
.partnership-panel::after { transform: translate(100px,80px) rotate(34deg); }
.partnership-panel__country { position: relative; z-index: 1; font: 800 18px/1 var(--font-display); }
.partnership-panel__line { position: relative; z-index: 1; width: 70%; height: 1px; margin: 30px 0; background: rgba(255,255,255,.25); }
.partnership-panel__line span { position: absolute; top: -4px; left: 0; width: 9px; height: 9px; background: var(--brand); border-radius: 50%; animation: partnership-flow 3s ease-in-out infinite; }
@keyframes partnership-flow { 50% { left: calc(100% - 9px); } }
.partnership-panel strong { position: relative; z-index: 1; margin-top: 35px; color: #74cef2; font: 800 28px/1.4 var(--font-display); text-align: center; }
.rnd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rnd-card { position: relative; min-height: 300px; padding: 31px; background: var(--white); border: 1px solid var(--line); }
.rnd-card > i { margin-bottom: 50px; color: var(--brand-dark); font-size: 27px; }
.rnd-card > span { position: absolute; top: 31px; right: 31px; color: #9ba8b2; font: 800 10px/1 var(--font-display); }
.rnd-card h3 { margin-bottom: 13px; font-size: 22px; }
.rnd-card p { margin: 0; font-size: 13px; }
.innovation-flow { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.innovation-flow__item { position: relative; min-height: 190px; padding: 25px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.innovation-flow__item:not(:last-child)::after { content: '\f061'; position: absolute; top: 50%; right: -10px; z-index: 2; display: grid; width: 20px; height: 20px; place-items: center; color: var(--white); background: var(--brand-dark); border-radius: 50%; font-family: 'Font Awesome 6 Free'; font-size: 8px; font-weight: 900; transform: translateY(-50%); }
.innovation-flow__item span { display: block; margin-bottom: 65px; color: var(--brand-dark); font: 800 10px/1 var(--font-display); }
.innovation-flow__item strong { font: 800 14px/1.5 var(--font-display); }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.products-grid--three { grid-template-columns: repeat(3, 1fr); }
.product-card { border: 1px solid var(--line); background: var(--white); transition: box-shadow .25s ease, transform .25s ease; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.product-card__media { position: relative; display: block; height: 360px; overflow: hidden; }
.product-card__media img { transition: transform .6s ease; }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__number { position: absolute; right: 0; bottom: 0; display: grid; width: 74px; height: 58px; place-items: center; color: var(--white); background: var(--navy); font: 800 11px/1 var(--font-display); }
.product-card__body { padding: 28px; }
.product-card h2 { margin-bottom: 13px; font-size: 28px; }
.product-card p { font-size: 13px; }
.capacity-section { padding: 85px 0; color: var(--white); background: var(--navy); }
.capacity-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.capacity-grid > div:first-child { padding-right: 70px; border-right: 1px solid rgba(255,255,255,.16); }
.capacity-grid h2 { margin: 8px 0; color: var(--brand); font-size: clamp(55px, 8vw, 105px); }
.capacity-grid h2 sup { font-size: .35em; }
.capacity-grid strong { color: var(--white); font: 800 14px/1 var(--font-display); }
.capacity-grid p { color: rgba(255,255,255,.68); }
.product-detail-intro__number { color: var(--brand-dark); font: 800 14px/1 var(--font-display); letter-spacing: .12em; }
.product-detail-intro__media { height: 620px; }
.product-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.application-list { border-top: 1px solid var(--line); }
.application-list > div { display: grid; grid-template-columns: 50px 1fr; align-items: center; min-height: 76px; border-bottom: 1px solid var(--line); }
.application-list span { color: var(--brand-dark); font: 800 10px/1 var(--font-display); }
.application-list strong { font: 800 14px/1.4 var(--font-display); }
.related-products { background: var(--white); }

/* Network page */
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.market-grid article { min-height: 350px; padding: 40px; background: var(--white); border: 1px solid var(--line); }
.market-grid article > span { display: grid; width: 65px; height: 65px; place-items: center; margin-bottom: 65px; color: var(--brand-dark); background: var(--soft); font-size: 25px; }
.market-grid h2 { font-size: 34px; }
.partner-strip { padding: 78px 0; color: var(--white); background: var(--brand-deep); }
.partner-strip__inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.partner-strip h2 { margin: 0; color: var(--white); font-size: 46px; }
.partner-strip p { margin: 0; color: rgba(255,255,255,.7); }

/* Article */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 68px; align-items: start; }
.article-main__media { height: 560px; margin: 22px 0 45px; }
.article-content { max-width: 820px; }
.article-content h2 { margin: 38px 0 20px; font-size: clamp(30px, 3.5vw, 45px); }
.article-content p { font-size: 16px; }
.article-content blockquote { margin: 45px 0 0; padding: 30px; color: var(--white); background: var(--navy); font: 800 25px/1.4 var(--font-display); }
.article-sidebar { position: sticky; top: calc(var(--header-height) + 24px); display: grid; gap: 20px; }
.article-sidebar__box { padding: 25px; background: var(--soft); border: 1px solid var(--line); }
.article-sidebar__box h2 { margin-bottom: 15px; font-size: 19px; }
.article-sidebar__box p, .article-sidebar__box a { font-size: 12px; }
.article-sidebar__box > a:not(.text-link) { color: var(--brand-dark); font-weight: 800; overflow-wrap: anywhere; }
.related-news { background: var(--soft); }

/* Careers */
.careers-visual { height: 650px; }
.career-area-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.career-area-grid article { min-height: 180px; padding: 27px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.career-area-grid span { display: block; margin-bottom: 58px; color: var(--brand-dark); font: 800 10px/1 var(--font-display); }
.career-area-grid h3 { margin: 0; font-size: 20px; }
.culture-section { color: var(--white); background: var(--navy); }
.culture-section .section-heading__title { color: var(--white); }
.culture-section .section-heading__text { color: rgba(255,255,255,.68); }
.culture-section .section-heading__eyebrow { color: var(--brand); }
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.culture-grid article { min-height: 270px; padding: 28px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.culture-grid i { margin-bottom: 65px; color: var(--brand); font-size: 26px; }
.culture-grid h3 { color: var(--white); font-size: 21px; }
.culture-grid p { color: rgba(255,255,255,.6); font-size: 13px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-detail-list { display: grid; gap: 1px; margin-top: 40px; background: var(--line); }
.contact-detail-list article { display: grid; grid-template-columns: 50px 1fr; gap: 17px; padding: 23px; background: var(--white); }
.contact-detail-list i { display: grid; width: 44px; height: 44px; place-items: center; color: var(--brand-dark); background: var(--soft); }
.contact-detail-list article > div { display: flex; flex-direction: column; }
.contact-detail-list span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-detail-list strong, .contact-detail-list a { margin-top: 6px; font-size: 13px; line-height: 1.5; }
.contact-principle { margin-top: 30px; padding: 24px; color: var(--white); background: var(--navy); }
.contact-principle span { display: block; color: rgba(255,255,255,.55); font-size: 10px; }
.contact-principle strong { display: block; margin-top: 7px; color: var(--brand); font: 800 21px/1.3 var(--font-display); }
.contact-form-card { padding: 44px; background: var(--soft); border: 1px solid var(--line); }
.contact-form-card h2 { margin-bottom: 28px; font-size: 36px; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-size: 11px; font-weight: 800; }
.contact-form input:not([type='checkbox']), .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid #cdd8df; border-radius: 0; font-size: 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--brand-dark); box-shadow: 0 0 0 3px rgba(19,151,213,.14); }
.form-consent { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; color: var(--text) !important; font-weight: 500 !important; }
.form-consent input { margin-top: 5px; accent-color: var(--brand-dark); }
.contact-form .button { justify-self: start; border: 0; cursor: pointer; }
.form-status { min-height: 24px; margin: 0; color: var(--success); font-size: 12px; }
.form-status.is-error { color: var(--danger); }
.contact-map-section { position: relative; min-height: 460px; background: #09243a; overflow: hidden; }
.contact-map-section__grid { background-size: 42px 42px; }
.contact-map-section::before { content: ''; position: absolute; top: 20%; left: 15%; width: 60%; height: 60%; border: 1px solid rgba(19,151,213,.3); border-radius: 48% 52% 42% 58%; transform: rotate(-12deg); }
.contact-map-section__pin { position: absolute; top: 46%; left: 49%; display: grid; width: 62px; height: 62px; place-items: center; color: var(--white); background: var(--brand-dark); border-radius: 50%; box-shadow: 0 0 0 15px rgba(19,151,213,.17); font-size: 22px; }
.contact-map-section__card { position: absolute; right: max(24px, calc((100vw - min(calc(100% - 48px), var(--container))) / 2)); bottom: 45px; width: min(390px, calc(100% - 48px)); padding: 27px; background: var(--white); box-shadow: var(--shadow); }
.contact-map-section__card span { color: var(--brand-dark); font: 800 10px/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.contact-map-section__card strong { display: block; margin: 10px 0 15px; font: 800 20px/1.4 var(--font-display); }
.contact-map-section__card a { color: var(--brand-dark); font-size: 12px; font-weight: 800; }
.contact-map-section__card i { margin-left: 8px; }

/* Initial animation state */
html:not(.is-ready) [data-reveal] { opacity: 0; }

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .site-header__actions { margin-left: auto; }
  .product-tabs { grid-template-columns: repeat(3, 1fr); margin-top: -45px; }
  .product-tabs button { min-height: 120px; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .network-grid { grid-template-columns: 1fr; }
  .network-map { min-height: 650px; }
  .innovation-flow { grid-template-columns: repeat(3, 1fr); }
  .innovation-flow__item:nth-child(3)::after { display: none; }
  .site-footer__top { grid-template-columns: 1.2fr 1fr 1fr; }
  .site-footer__contact { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .container-wide { width: min(calc(100% - 36px), var(--container-wide)); }
  .section { padding: 82px 0; }
  .brand__mark { width: 72px; height: 32px; }
  .brand__copy strong { font-size: 17px; }
  .brand__copy small { font-size: 8px; }
  .language-switcher { display: none; }
  .hero-slider { min-height: 660px; }
  .hero-slide__shade { background: linear-gradient(90deg, rgba(1,20,34,.9), rgba(1,20,34,.6)); }
  .hero-slide h1 { font-size: clamp(43px, 9vw, 70px); }
  .hero-slide__geometry span { width: 78%; }
  .hero-slider__controls { bottom: 24px; }
  .scroll-indicator { display: none; }
  .intro-grid, .split-layout, .split-layout--wide, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid__visual, .stacked-media { min-height: 560px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-showcase__media, .product-showcase__content { min-height: 620px; }
  .product-tabs { overflow-x: auto; display: flex; margin-top: -30px; scroll-snap-type: x mandatory; }
  .product-tabs button { flex: 0 0 210px; min-height: 115px; scroll-snap-align: start; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .news-feature-grid { grid-template-columns: 1fr; }
  .history-section__head { align-items: flex-start; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__contact { grid-column: 1 / -1; }
  .leadership-grid, .values-grid, .rnd-grid, .news-grid, .products-grid--three { grid-template-columns: repeat(2, 1fr); }
  .numbered-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-intro__media, .commitment-section__visual, .careers-visual { height: 560px; }
  .product-spec-grid, .capacity-grid, .partner-strip__inner { grid-template-columns: 1fr; gap: 45px; }
  .capacity-grid > div:first-child { padding: 0 0 40px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .products-grid { gap: 24px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .career-area-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 55px; }
}

@media (max-width: 680px) {
  .container, .container-wide { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .site-header__bar { gap: 10px; }
  .brand__mark { width: 62px; height: 28px; }
  .brand__copy strong { font-size: 14px; }
  .brand__copy small { font-size: 7px; }
  .mobile-navigation__panel { padding-inline: 20px; }
  .brand--mobile .brand__copy strong { font-size: 15px; }
  .hero-slider { min-height: 620px; }
  .hero-slide__content { padding-top: 56px; }
  .hero-slide h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero-slide__description { font-size: 14px; }
  .hero-slider__controls { justify-content: space-between; }
  .hero-slider__bar { width: 75px; }
  .hero-slide__geometry { opacity: .6; }
  .section-heading { margin-bottom: 33px; }
  .section-heading__title { font-size: clamp(31px, 9vw, 43px); }
  .section-heading__text { font-size: 14px; }
  .intro-grid { gap: 45px; }
  .intro-grid__visual, .stacked-media { min-height: 430px; }
  .intro-grid__badge, .stacked-media__caption { right: 12px; bottom: 12px; width: 180px; min-height: 100px; }
  .stats-grid { grid-template-columns: 1fr 1fr; margin-top: 45px; }
  .stat-card { min-height: 125px; padding: 20px 16px; }
  .stat-card strong { font-size: 31px; }
  .product-showcase__media, .product-showcase__content { min-height: 570px; }
  .product-showcase__content h3 { font-size: 40px; }
  .product-showcase__content > p:not(.product-showcase__number) { font-size: 14px; }
  .product-tabs { width: calc(100% - 28px); }
  .product-tabs button { flex-basis: 185px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 230px; }
  .industry-card__icon { margin-bottom: 35px; }
  .network-map { min-height: 530px; }
  .map-pin small { display: none; }
  .network-map__card { right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .section-heading-row, .history-section__head { align-items: flex-start; flex-direction: column; }
  .history-nav { margin-bottom: 25px; }
  .featured-news__media { height: 300px; }
  .history-card { min-height: 340px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 38px; }
  .site-footer__brand, .site-footer__contact { grid-column: auto; }
  .site-footer__bottom-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
  .breadcrumb-banner { min-height: 480px; padding-bottom: 55px; }
  .breadcrumb-banner h1 { font-size: clamp(38px, 12vw, 55px); }
  .breadcrumb-banner__content > p:last-child { font-size: 14px; }
  .vision-statement { padding-left: 25px; }
  .leadership-grid, .values-grid, .rnd-grid, .products-grid, .products-grid--three, .news-grid { grid-template-columns: 1fr; }
  .vision-quote { padding: 38px 28px; }
  .vision-quote i { position: static; margin-bottom: 15px; }
  .numbered-grid { grid-template-columns: 1fr; }
  .icon-list--two-column { grid-template-columns: 1fr; }
  .principle-panel { padding: 35px 25px; }
  .partnership-panel { min-height: 430px; padding: 30px; }
  .innovation-flow { grid-template-columns: 1fr 1fr; }
  .innovation-flow__item:nth-child(3)::after { display: grid; }
  .innovation-flow__item:nth-child(even)::after { display: none; }
  .product-card__media { height: 280px; }
  .product-detail-intro__media, .commitment-section__visual, .careers-visual { height: 430px; }
  .market-grid { grid-template-columns: 1fr; }
  .article-main__media { height: 330px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .career-area-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .contact-map-section__card { right: 14px; bottom: 22px; width: calc(100% - 28px); }
  .contact-map-section__pin { top: 27%; left: 50%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html:not(.is-ready) [data-reveal] { opacity: 1; }
}
