
:root {
  --bg: #eef3f9;
  --bg-strong: #dfeaf5;
  --surface: rgba(255,255,255,0.62);
  --surface-strong: rgba(255,255,255,0.78);
  --surface-dark: rgba(7,24,44,0.72);
  --text: #10243a;
  --muted: #506477;
  --line: rgba(16,36,58,0.12);
  --brand: #00a8d8;
  --brand-strong: #007dc4;
  --accent: #f59e0b;
  --shadow: 0 18px 48px rgba(10, 29, 52, 0.12);
  --radius: 24px;
}

body[data-theme="dark"] {
  --bg: #071421;
  --bg-strong: #0c1c2c;
  --surface: rgba(12,27,43,0.7);
  --surface-strong: rgba(15,33,52,0.82);
  --surface-dark: rgba(10,20,33,0.82);
  --text: #f2f7fb;
  --muted: #b2c3d4;
  --line: rgba(255,255,255,0.11);
  --shadow: 0 24px 64px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "SF Pro Display", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0,168,216,0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(245,158,11,0.1), transparent 22%),
    linear-gradient(180deg, var(--bg), var(--bg-strong));
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  opacity: .35;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; width: 100%; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.frame { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow, .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-strong);
  font-weight: 700;
}
.label { letter-spacing: .08em; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); filter: brightness(1.04); }
.button-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
}
.button-soft { background: linear-gradient(135deg, rgba(4,183,237,.14), rgba(245,158,11,.14)); }
.button-small { min-height: 40px; padding: 0 14px; font-size: .95rem; }
.button-full { width: 100%; }
.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  font-size: .92rem;
}
.utility-links a {
  color: var(--brand-strong);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(4,183,237,.35);
  text-underline-offset: 4px;
}
.quick-summary {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(4,183,237,.08), rgba(245,158,11,.1));
  border: 1px solid var(--line);
}
.quick-summary strong { display: block; margin-bottom: 10px; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-strong); }
.quick-summary ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; color: var(--muted); }
.selector-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.selector-cell {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.3);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.selector-cell strong { font-size: 1rem; }
.selector-cell span { color: var(--muted); line-height: 1.45; }
.selector-cell.active,
.selector-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(0,168,216,.38);
  background: linear-gradient(135deg, rgba(0,168,216,.14), rgba(245,158,11,.1));
}
.form-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.form-chip {
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.3);
  color: var(--text);
  display: grid;
  gap: 6px;
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.form-chip strong { font-size: 1rem; }
.form-chip span { color: var(--muted); line-height: 1.45; font-size: .94rem; }
.content-box {
  padding: 8px 0 2px;
}
.content-box strong {
  font-size: 1rem;
}
.form-chip.active,
.form-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0,168,216,.4);
  background: linear-gradient(135deg, rgba(0,168,216,.16), rgba(245,158,11,.12));
}
.compact-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.textarea { min-height: 110px; align-items: flex-start; padding-top: 16px; }
.form-panel { display: none; }
.form-panel.active { display: block; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  backdrop-filter: blur(24px);
}
.header-shell, .mobile-nav-inner, .cta-panel, .card, .icon-card, .stat-card, .project-card, .badge-card, .governance-panel, .map-glass, .map-copy, .table-card, .content-panel, .form-panel, .office-copy, .map-frame, .featured-article, .profile-card, .video-card, .ring-shell, .credential-mini-card, .sustainability-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img { width: 132px; height: auto; }
.brand span { display: none; }
.desktop-nav { display: flex; align-items: center; gap: 8px; }
.nav-link, .nav-trigger {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.nav-link.active, .nav-trigger:hover, .nav-group.active .nav-trigger { color: var(--text); background: rgba(0,125,196,0.1); }
.nav-group { position: relative; }
.mega-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.mega-panel-industries {
  min-width: 720px;
  max-width: min(720px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
}
.mega-panel-products {
  min-width: 760px;
  max-width: min(760px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
}
.nav-group.open .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-group {
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.mega-group:first-child,
.mega-panel-products .mega-group:nth-child(-n + 2),
.mega-panel-industries .mega-group:nth-child(-n + 2) {
  padding-top: 0;
  border-top: 0;
}
.mega-panel .mega-heading {
  margin-top: 0;
  padding: 6px 12px 6px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mega-panel .mega-heading:first-child { padding-top: 2px; }
.mega-panel a { padding: 10px 12px; border-radius: 16px; color: var(--muted); }
.mega-panel-products a { white-space: normal; line-height: 1.35; }
.mega-panel a:hover { background: rgba(0,125,196,0.1); color: var(--text); }
.mega-panel .mega-divider {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.mega-panel .mega-highlight {
  background: linear-gradient(135deg, rgba(0,168,216,.14), rgba(245,158,11,.1));
  color: var(--text);
  font-weight: 700;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .mobile-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font: inherit;
  cursor: pointer;
}
.filter-results {
  margin-left: auto;
  color: var(--muted);
  font-size: .92rem;
  white-space: nowrap;
}
.theme-toggle { width: 40px; padding: 0; font-size: 1rem; }
.phone-toggle { display: inline-flex; align-items: center; justify-content: center; }
.phone-toggle svg { width: 18px; height: 18px; stroke-width: 1.9; }
.mobile-toggle { display: none; }
.mobile-nav { display: none; padding-top: 10px; }
.mobile-nav-inner {
  padding: 14px;
  border-radius: 24px;
  display: grid;
  gap: 8px;
}
.mobile-nav-inner a { padding: 10px 12px; border-radius: 14px; }
.page-hero { padding: 34px 0 42px; position: relative; }
.dark-hero { padding-top: 26px; }
.hero-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,33,0.18), transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.hero-copy {
  padding: 38px;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1,
.solution-copy h1,
.industry-panel h1,
.editorial-story h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: .94;
  letter-spacing: -.04em;
  max-width: 12ch;
  min-height: 2.05em;
  background: linear-gradient(135deg, #173954 0%, #0074b6 42%, #00a8d8 68%, #c98208 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-intro { margin: 0; font-size: 1.08rem; font-weight: 600; color: var(--text); max-width: 58ch; }
.hero-body { margin-top: 12px; color: var(--muted); max-width: 58ch; }
.hero-media { display: grid; gap: 16px; min-height: 100%; }
.hero-media > * { min-height: 100%; }
.hero-image, .video-card video, .card-media img, .featured-media img, .profile-media img, .map-frame iframe { border-radius: 26px; }
.hero-image { min-height: 100%; height: 100%; object-fit: cover; }
.about-hero-image { min-height: 520px; }
.solution-hero-image { min-height: 520px; object-fit: cover; }
.solution-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.solution-copy, .solution-media-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
  border-radius: 32px;
}
.solution-copy { position: relative; overflow: hidden; }
.solution-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0,168,216,.14), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 52%);
  pointer-events: none;
}
.solution-copy > * { position: relative; z-index: 1; }
.solution-media-panel { padding: 14px; overflow: hidden; }
.solution-media-panel img,
.solution-media-panel video { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.industry-hero-shell {
  position: relative;
  min-height: 680px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.industry-hero-shell-right {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
.industry-hero-shell > img,
.industry-hero-shell > video,
.industry-hero-shell .video-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.industry-hero-shell .video-shell video,
.industry-hero-shell > img { width: 100%; height: 100%; object-fit: cover; }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,24,44,.76), rgba(7,24,44,.18));
}
.industry-panel {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin: 42px;
  padding: 28px 30px;
  border-radius: 30px;
  background: rgba(7,24,44,.4);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 60px rgba(0,18,36,.24);
  backdrop-filter: blur(28px);
}
.industry-panel-right {
  margin-left: auto;
  margin-right: 42px;
}
.hero-industry-right .industry-hero-shell {
  min-height: 420px;
}
.hero-industry-right .industry-panel {
  width: min(680px, calc(100% - 48px));
  padding: 22px 24px;
}
.industry-panel h1,
.industry-panel .hero-intro,
.industry-panel .hero-body { color: #f4fbff; }
.industry-panel h1 {
  max-width: 16ch;
  min-height: 0;
}
.industry-panel .hero-body { color: rgba(244,251,255,.82); }
.hero-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.hero-trustbar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #f4fbff;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.editorial-hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 28px;
  align-items: stretch;
}
.editorial-story, .editorial-rail {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
  border-radius: 32px;
}
.editorial-story {
  padding: 38px;
  display: grid;
  align-content: center;
}
.editorial-rail {
  padding: 14px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}
.editorial-image { min-height: 100%; }
.editorial-image img,
.editorial-image video { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.editorial-note {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.32);
  border: 1px solid var(--line);
}
.editorial-note p { margin: 8px 0 0; color: var(--muted); }
.video-stack { display: grid; gap: 16px; }
.video-card { padding: 12px; border-radius: 30px; overflow: hidden; min-height: 100%; }
.video-card.wide video { aspect-ratio: 16 / 8; object-fit: cover; }
.video-card.vertical video { aspect-ratio: 4 / 5.6; object-fit: cover; min-height: 700px; }
.video-shell { position: relative; }
.video-play {
  position: absolute;
  inset: auto auto 20px 20px;
  z-index: 2;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(2, 19, 35, .66);
  color: white;
  backdrop-filter: blur(14px);
  cursor: pointer;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.stat-card {
  padding: 16px;
  border-radius: 22px;
  display: grid;
  gap: 8px;
  min-width: 0;
}
.stat-link { display: grid; gap: 8px; min-width: 0; }
.stat-card span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.stat-card strong { font-size: clamp(1.35rem, 2.8vw, 2rem); color: var(--text); line-height: 1; word-break: break-word; }
.hero-stats .stat-card strong { white-space: nowrap; }
.stat-card small { color: var(--muted); font-size: .84rem; line-height: 1.35; }
.section { padding: 64px 0 104px; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(0,125,196,0.04), transparent); }
.section-head { display: grid; gap: 12px; margin-bottom: 30px; }
.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.12;
  max-width: none;
}
.section-head p { margin: 0; max-width: 70ch; color: var(--muted); }
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.float-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(7,24,44,.88);
  color: #f7fbff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(3,18,34,.24);
  backdrop-filter: blur(18px);
  font-weight: 700;
}
.float-pill-whatsapp {
  background: linear-gradient(135deg, #00a884, #128c7e);
  color: white;
}
body[data-theme="dark"] .float-pill {
  background: rgba(231,240,249,.92);
  color: #10243a;
  border-color: rgba(16,36,58,.1);
}
.split-grid, .office-grid, .map-panel, .dark-band, .sector-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.card-grid { display: grid; gap: 22px; }
.cols-1 { grid-template-columns: 1fr; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .icon-card, .project-card, .cta-panel, .governance-panel, .table-card, .content-panel, .featured-article, .profile-card {
  border-radius: 26px;
  overflow: hidden;
}
.card-link { display: grid; grid-template-rows: auto 1fr auto; min-height: 100%; }
.card-media { padding: 12px 12px 0; }
.card-media img { aspect-ratio: 4 / 3; object-fit: cover; }
.sector-block .card-media img,
[data-industry-grid] .card-media img { aspect-ratio: 4 / 2.2; }
.card-media.small img { aspect-ratio: 4 / 2.7; }
.card-copy { padding: 18px; display: grid; gap: 10px; }
.card-copy h3, .icon-card h3, .project-card h3, .profile-copy h3 { margin: 0; font-size: 1.12rem; }
.card-copy p, .icon-card p, .project-card p, .profile-copy p, .office-copy p, .map-copy p, .featured-copy p, .cta-panel p { margin: 0; color: var(--muted); }
.card-arrow, .text-link { color: var(--brand-strong); font-weight: 700; padding: 0 18px 18px; }
.map-copy .text-link, .cta-inline .text-link { padding: 0; }
.card:hover, .icon-card:hover, .project-card:hover, .profile-card:hover, .featured-article:hover { transform: translateY(-4px); }
.card, .icon-card, .project-card, .profile-card, .featured-article { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover, .icon-card:hover, .project-card:hover, .profile-card:hover, .featured-article:hover { border-color: rgba(0,168,216,.45); box-shadow: 0 26px 58px rgba(0,125,196,.18); }
.solution-group-card .card-copy { gap: 14px; }
.solution-link-grid {
  display: grid;
  gap: 14px;
}
.solution-link-card {
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.solution-link-card .card-media {
  padding: 0;
}
.solution-link-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 2px;
  font-weight: 700;
}
.solution-link-card:hover .solution-link-copy,
.solution-link-card:focus-visible .solution-link-copy {
  color: var(--brand-strong);
}
.solution-value-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 22px;
  align-items: start;
}
.industry-overview-shell {
  display: grid;
  gap: 22px;
}
.industry-description-box {
  padding: 26px;
  background: linear-gradient(180deg, rgba(0,168,216,.12), rgba(0,125,196,.2));
  border: 1px solid rgba(0,125,196,.22);
}
.industry-description-box h3,
.overview-subsection h3 {
  margin: 0 0 12px;
}
.industry-description-box p {
  margin: 0;
  color: var(--text);
}
.overview-subsection {
  display: grid;
  gap: 14px;
}
.solution-advantages {
  display: grid;
  gap: 18px;
}
.section-note {
  margin-top: 14px;
  font-weight: 600;
  color: var(--text);
}
.section-head-inline {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}
.section-head-inline h2 {
  margin: 0;
}
.section-head-inline p {
  margin: 0;
  max-width: 68ch;
}
.about-overview-shell {
  display: grid;
  gap: 18px;
}
.about-summary-box {
  background: linear-gradient(180deg, rgba(0,168,216,.1), rgba(0,125,196,.16));
  border: 1px solid rgba(0,125,196,.18);
}
.about-summary-box p {
  margin: 0;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.55;
}
.about-overview-stats {
  align-items: stretch;
}
.overview-stat-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18,140,126,.14), rgba(34,197,94,.12));
  border: 1px solid rgba(34,197,94,.2);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}
.overview-stat-card strong {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1;
  color: #116149;
}
.overview-stat-card span {
  font-weight: 700;
  color: #116149;
}
.overview-stat-card small {
  color: #43685d;
  line-height: 1.5;
}
.delivery-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.delivery-model-split {
  align-items: center;
}
.delivery-diagram-wrap {
  display: grid;
  align-content: center;
  padding: 8px 0;
}
.delivery-model-panel {
  padding: 24px;
}
.delivery-model-panel .label,
.outcome-panel-accent .label,
.industry-mini-card .label,
.portfolio-mini-card .label,
.support-mini-card .label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
}
.number-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.number-card-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,168,216,.12);
  color: var(--brand-strong);
  font-weight: 800;
}
.number-card h3,
.engagement-panel h3 {
  margin: 0;
}
.number-card p {
  margin: 0;
  color: var(--muted);
}
.outcome-list li {
  font-size: 1.02rem;
}
.outcome-panel-accent {
  padding: 28px;
  background: linear-gradient(180deg, rgba(0,168,216,.12), rgba(0,125,196,.22));
  border: 1px solid rgba(0,168,216,.24);
}
.engagement-panel {
  padding: 28px;
}
.delivery-steps-inline {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.outcome-panel {
  margin-top: 22px;
}
.industry-link-list a {
  font-weight: 700;
}
.industry-name {
  font-weight: 700;
  color: var(--text);
}
.mini-card-grid {
  display: grid;
  gap: 16px;
}
.support-section-grid {
  align-items: start;
  gap: 22px;
}
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.industries-grid,
.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-overview-grid {
  gap: 24px;
  align-items: start;
}
.mini-card-media {
  margin: -2px -2px 2px;
}
.mini-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 2.3;
  object-fit: cover;
  border-radius: 16px;
}
.product-applications {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}
.product-applications h3 {
  margin: 0;
}
.industry-mini-card,
.portfolio-mini-card,
.support-mini-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  text-decoration: none;
  color: var(--text);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.industry-mini-card {
  background: linear-gradient(180deg, rgba(18,140,126,.08), rgba(18,140,126,.16));
  border: 1px solid rgba(18,140,126,.22);
}
.portfolio-mini-card {
  background: linear-gradient(180deg, rgba(245,158,11,.08), rgba(245,158,11,.16));
  border: 1px solid rgba(245,158,11,.24);
}
.support-mini-card {
  background: linear-gradient(180deg, rgba(0,125,196,.08), rgba(0,125,196,.18));
  border: 1px solid rgba(0,125,196,.22);
}
.credential-mini-card {
  padding: 16px;
  align-content: start;
}
.credential-badge-small {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: .72rem;
  margin-bottom: 6px;
}
.solution-mini-card {
  padding: 16px;
  gap: 6px;
  background: linear-gradient(180deg, rgba(125,88,0,.08), rgba(125,88,0,.16));
  border-color: rgba(125,88,0,.24);
}
.solution-mini-card p {
  font-size: .9rem;
}
.support-mini-card-accent {
  background: linear-gradient(180deg, rgba(0,168,216,.08), rgba(245,158,11,.16));
  border-color: rgba(245,158,11,.24);
}
.product-support-card {
  background: linear-gradient(180deg, rgba(11,94,119,.08), rgba(11,94,119,.18));
  border-color: rgba(11,94,119,.22);
}
.industry-mini-card:hover,
.industry-mini-card.linked:focus-visible,
.portfolio-mini-card:hover,
.portfolio-mini-card:focus-visible,
.support-mini-card:hover,
.support-mini-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(16,36,58,.1);
}
.industry-mini-card h3,
.portfolio-mini-card h3,
.support-mini-card h3 {
  margin: 0;
  font-size: 1rem;
}
.industry-mini-card p,
.portfolio-mini-card p,
.support-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}
.specialization-list {
  margin-top: 2px;
  padding-left: 18px;
}
.specialization-list li {
  color: var(--muted);
}
.mini-button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,168,216,.18), rgba(245,158,11,.18));
  border: 1px solid rgba(0,168,216,.24);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  transition: transform .22s ease, border-color .22s ease;
}
.mini-button:hover { transform: translateY(-2px); border-color: rgba(245,158,11,.45); }
.line-link-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}
.line-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,168,216,.18);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 600;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.line-link:hover {
  transform: translateX(4px);
  border-color: rgba(245,158,11,.42);
  background: linear-gradient(135deg, rgba(0,168,216,.16), rgba(245,158,11,.14));
  color: var(--text);
}
.icon-card { padding: 22px; display: grid; gap: 14px; }
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0,168,216,.22), rgba(245,158,11,.2));
  color: var(--brand-strong);
}
.challenge-card {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,241,242,.98));
  border-color: rgba(185,28,28,.18);
  box-shadow: 0 22px 44px rgba(127,29,29,.1);
}
.challenge-card .icon-box {
  background: linear-gradient(135deg, rgba(220,38,38,.18), rgba(248,113,113,.16));
  color: #b91c1c;
}
.challenge-card h3 {
  color: #991b1b;
}
.challenge-card p {
  color: #7f1d1d;
}
.pill-row, .filter-bar, .footer-links { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-shell .filter-bar { margin-bottom: 20px; }
.pill, .filter-chip, .badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.32);
  color: var(--text);
  font-size: .92rem;
}
.filter-chip {
  cursor: pointer;
  font: inherit;
  backdrop-filter: blur(16px);
}
.filter-chip.active, .pill {
  background: linear-gradient(135deg, rgba(0,168,216,.18), rgba(245,158,11,.18));
  border-color: rgba(0,168,216,.3);
}
.metric-strip, .badge-grid, .project-list, .field-grid, .filter-grid, .timeline, .step-flow, .flow-strip, .map-markers, .icon-row {
  display: grid;
  gap: 16px;
}
.metric-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 18px; }
.metric-card { padding: 18px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; gap: 8px; }
.metric-card strong { font-size: 1.4rem; color: var(--brand-strong); }
.safety-home-section .frame {
  display: grid;
}
.safety-home-shell {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(239,246,250,.94));
  border: 1px solid rgba(0,125,196,.16);
  box-shadow: var(--shadow);
  color: var(--text);
}
.safety-home-shell .section-head-inline p,
.safety-home-shell .text-link,
.safety-home-shell .safety-positioning-band p {
  color: var(--muted);
}
.safety-overview-stack {
  display: grid;
  gap: 18px;
}
.safety-system-section {
  padding-bottom: 52px;
}
.safety-accent-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,130,8,.16), rgba(245,158,11,.12));
  border: 1px solid rgba(201,130,8,.2);
  color: #9a6402;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.safety-kpi-shell {
  display: grid;
  gap: 12px;
}
.safety-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(14,53,81,.96), rgba(9,36,62,.9));
  border: 1px solid rgba(0,168,216,.16);
}
.safety-kpi-card {
  padding: 18px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  display: grid;
  gap: 4px;
  text-align: center;
}
.safety-kpi-card strong {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #f4fbff;
  letter-spacing: -.02em;
  line-height: .98;
}
.safety-kpi-card span {
  font-weight: 700;
  color: rgba(234,244,249,.86);
  font-size: .96rem;
}
.safety-principles-grid .icon-card,
.safety-practice-card,
.safety-lifecycle-panel,
.safety-positioning-band {
  border-radius: 20px;
}
.safety-principle-card {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,248,251,.98));
  border: 1px solid rgba(0,125,196,.12);
  box-shadow: none;
}
.safety-principle-card .icon-box {
  background: linear-gradient(135deg, rgba(0,168,216,.14), rgba(201,130,8,.12));
  color: var(--brand-strong);
}
.safety-principle-card h3 {
  color: var(--text);
}
.safety-principle-card p {
  color: var(--muted);
}
.safety-lifecycle-panel {
  padding: 6px 0 0;
  display: grid;
  gap: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.safety-lifecycle-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.safety-phase {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,125,196,.12);
  background: rgba(255,255,255,.92);
}
.safety-phase strong {
  font-size: .94rem;
}
.safety-phase-arrow {
  color: var(--brand-strong);
  font-weight: 800;
}
.safety-badge-stack {
  display: grid;
  gap: 14px;
}
.safety-badge-note {
  margin: 0;
  color: var(--muted);
}
.safety-standard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.safety-standard-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,125,196,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,248,251,.98));
}
.safety-standard-badge strong,
.safety-standard-badge span {
  display: block;
}
.safety-standard-badge strong {
  font-size: .98rem;
}
.safety-standard-badge span {
  color: var(--muted);
  font-size: .86rem;
}
.safety-practice-grid .card-copy {
  gap: 8px;
  min-height: 0;
}
.safety-practice-card {
  border: 1px solid rgba(0,125,196,.14);
  border-left: 4px solid rgba(201,130,8,.62);
  box-shadow: none;
}
.safety-practice-card strong {
  font-size: 1rem;
  line-height: 1.5;
}
.safety-positioning-band {
  padding: 18px 20px;
  border: 1px solid rgba(201,130,8,.18);
  background: linear-gradient(135deg, rgba(201,130,8,.08), rgba(255,255,255,.94));
}
.safety-positioning-band p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #173954;
  max-width: 60ch;
}
.safety-home-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .9fr);
  gap: 18px;
  align-items: start;
}
.safety-home-bottom .safety-standard-grid {
  margin: 0;
}
.safety-home-bottom .button-row {
  grid-column: 1 / -1;
  padding-top: 2px;
}
.positioning-section .section-head {
  display: none;
}
.compact-section-head {
  margin-bottom: 16px;
}
.compact-section-head h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
body[data-theme="dark"] .safety-kpi-strip {
  background: linear-gradient(135deg, rgba(13,30,47,.98), rgba(8,20,32,.94));
  border-color: rgba(255,255,255,.08);
}
body[data-theme="dark"] .safety-home-shell {
  background: linear-gradient(180deg, rgba(16,32,48,.86), rgba(11,24,38,.94));
  border-color: rgba(0,168,216,.18);
  box-shadow: 0 24px 52px rgba(0,0,0,.28);
}
body[data-theme="dark"] .safety-kpi-card,
body[data-theme="dark"] .safety-principle-card,
body[data-theme="dark"] .safety-standard-badge {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-color: rgba(255,255,255,.08);
}
body[data-theme="dark"] .safety-kpi-card strong,
body[data-theme="dark"] .safety-principle-card h3,
body[data-theme="dark"] .safety-standard-badge strong,
body[data-theme="dark"] .safety-positioning-band p {
  color: var(--text);
}
body[data-theme="dark"] .safety-kpi-card span,
body[data-theme="dark"] .safety-principle-card p,
body[data-theme="dark"] .safety-standard-badge span,
body[data-theme="dark"] .safety-badge-note,
body[data-theme="dark"] .safety-home-shell .section-head-inline p,
body[data-theme="dark"] .safety-home-shell .text-link,
body[data-theme="dark"] .safety-home-shell .safety-positioning-band p {
  color: var(--muted);
}
body[data-theme="dark"] .safety-lifecycle-panel {
  background: transparent;
  border-color: transparent;
}
body[data-theme="dark"] .safety-phase {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
body[data-theme="dark"] .safety-positioning-band {
  background: linear-gradient(135deg, rgba(201,130,8,.14), rgba(255,255,255,.04));
  border-color: rgba(201,130,8,.24);
}
body[data-theme="dark"] .safety-accent-label {
  background: linear-gradient(135deg, rgba(201,130,8,.2), rgba(245,158,11,.12));
  border-color: rgba(245,158,11,.24);
  color: #ffd27b;
}
body[data-theme="dark"] .about-summary-box {
  background: linear-gradient(180deg, rgba(0,168,216,.1), rgba(0,125,196,.12));
  border-color: rgba(0,168,216,.18);
}
body[data-theme="dark"] .about-summary-box p {
  color: var(--text);
}
body[data-theme="dark"] .overview-stat-card {
  background: linear-gradient(180deg, rgba(18,140,126,.18), rgba(34,197,94,.12));
  border-color: rgba(74,222,128,.24);
  box-shadow: none;
}
body[data-theme="dark"] .overview-stat-card strong,
body[data-theme="dark"] .overview-stat-card span {
  color: #b7f7d1;
}
body[data-theme="dark"] .overview-stat-card small {
  color: #b2cbbf;
}
.timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.timeline > div, .step-flow > div, .flow-strip > div, .badge-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step-flow, .flow-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-flow .label {
  display: inline-flex;
  margin-bottom: 14px;
}
.step-flow .pill-row {
  margin-top: 16px;
}
.flow-strip { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.flow-strip > div, .step-flow > div { text-align: center; font-weight: 600; }
.dark-band { padding: 20px; border-radius: 30px; background: linear-gradient(135deg, rgba(7,24,44,.92), rgba(9,36,62,.88)); color: #eff7ff; }
.dark-band .project-card, .dark-band .governance-panel { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); box-shadow: none; }
.dark-band p, .dark-band li, .dark-band small { color: rgba(239,247,255,.78); }
.governance-panel, .content-panel, .table-card, .office-copy, .map-frame { padding: 26px; }
.form-panel { padding: 18px 20px; }
.cta-inline, .timeline-link { padding-top: 8px; }
.governance-panel h3, .map-copy h3, .office-copy h3, .featured-copy h2 { margin-top: 0; }
.lifecycle-ring { display: grid; place-items: center; }
.ring-shell {
  aspect-ratio: 1;
  width: min(420px, 100%);
  border-radius: 50%;
  position: relative;
  padding: 56px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255,255,255,.06) 0 44%, transparent 45%),
    conic-gradient(from -90deg, rgba(0,168,216,.8), rgba(0,125,196,.6), rgba(245,158,11,.7), rgba(0,168,216,.8));
}
.ring-shell span { position: absolute; font-size: .86rem; font-weight: 700; color: var(--text); }
.ring-shell span:nth-child(1) { top: 12%; left: 50%; transform: translateX(-50%); }
.ring-shell span:nth-child(2) { top: 28%; right: 8%; }
.ring-shell span:nth-child(3) { bottom: 28%; right: 8%; }
.ring-shell span:nth-child(4) { bottom: 12%; left: 50%; transform: translateX(-50%); }
.ring-shell span:nth-child(5) { bottom: 28%; left: 8%; }
.ring-shell span:nth-child(6) { top: 28%; left: 8%; }
.map-panel, .office-grid { align-items: stretch; }
.map-glass, .map-copy, .office-copy, .map-frame { border-radius: 28px; }
.map-copy { display: grid; align-content: start; gap: 14px; min-width: 0; padding: 26px; }
.map-glass { padding: 28px; display: grid; place-items: center; min-height: 320px; }
.map-glass svg { width: 64px; height: 64px; color: var(--brand-strong); margin-bottom: 22px; }
.map-markers { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
.map-markers span { padding: 12px 14px; border-radius: 16px; background: rgba(0,125,196,.08); font-weight: 600; min-width: 0; overflow-wrap: anywhere; }
.map-country-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 4px 0 2px; }
.plain-page { padding: 72px 0 96px; }
.plain-page-shell {
  max-width: 860px;
  background: transparent;
}
.plain-page-shell h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}
.plain-page-shell h2 {
  margin: 34px 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
}
.plain-page-shell p,
.plain-page-shell li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}
.plain-page-shell ul {
  margin: 0;
  padding-left: 20px;
}
.map-frame { padding: 0; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: inherit; }
.map-world { position: relative; overflow: hidden; }
.map-world .card-media { padding: 10px; }
.map-world .card-media img { aspect-ratio: 16 / 8.8; min-height: 360px; border-radius: 22px; }
.map-dots { position: absolute; inset: 0; pointer-events: none; }
.map-dots span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 8px rgba(0,168,216,.12);
  color: transparent;
}
.map-dots span:nth-child(1) { top: 58%; left: 78%; }
.map-dots span:nth-child(2) { top: 49%; left: 79%; }
.map-dots span:nth-child(3) { top: 56%; left: 75%; }
.map-dots span:nth-child(4) { top: 44%; left: 72%; }
.map-dots span:nth-child(5) { top: 49%; left: 50%; }
.map-dots span:nth-child(6) { top: 60%; left: 77%; }
.map-dots span:nth-child(7) { top: 41%; left: 83%; }
.map-dots span:nth-child(8) { top: 58%; left: 76%; }
.map-dots span:nth-child(9) { top: 63%; left: 82%; }
.map-dots span:nth-child(10) { top: 53%; left: 63%; }
.featured-article {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
}
.featured-media { padding: 12px; }
.featured-media img { height: 100%; min-height: 280px; object-fit: cover; }
.featured-copy { padding: 24px; display: grid; align-content: center; gap: 14px; }
.featured-copy h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.delivery-diagram { display: grid; gap: 18px; align-items: center; justify-items: center; }
.motion-diagram { width: 100%; }
.delivery-lane {
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,168,216,.18);
  background: linear-gradient(135deg, rgba(0,168,216,.12), rgba(245,158,11,.08));
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.delivery-lane:hover {
  transform: translateY(-2px);
  border-color: rgba(245,158,11,.32);
  box-shadow: 0 24px 52px rgba(8, 24, 40, 0.16);
}
.delivery-lane span { font-weight: 700; }
.delivery-lane small { color: var(--muted); font-size: .95rem; line-height: 1.5; }
.diagram-notes { display: grid; gap: 12px; width: 100%; }
.diagram-notes div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.24);
  border: 1px solid var(--line);
}
.diagram-notes strong { display: block; margin-bottom: 4px; }
.journey-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}
.journey-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}
.journey-card strong { font-size: 1.2rem; }
.journey-arrow { font-size: 1.5rem; color: var(--brand-strong); font-weight: 800; }
.journey-stage-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}
.journey-orb {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: min(100%, 360px);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.journey-orb-media,
.journey-orb-media img {
  width: 100%;
  height: 100%;
}
.journey-orb-media img {
  object-fit: cover;
}
.journey-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,44,.24), rgba(7,24,44,.62));
}
.journey-orb-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 34px;
  color: #f4fbff;
}
.journey-orb-copy strong {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}
.journey-orb-copy span {
  font-size: 1rem;
  line-height: 1.55;
}
.timeline-link { margin-top: 14px; }
.company-collage {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}
.company-collage .collage-large,
.company-collage .collage-small {
  border-radius: 26px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px;
}
.company-collage .collage-large { grid-row: span 2; }
.company-collage img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 20px;
}
.mini-credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.credential-mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.credential-mini-card::before,
.sustainability-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,168,216,.08), rgba(245,158,11,.06));
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
.credential-mini-card:hover,
.sustainability-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(0,168,216,.26);
  box-shadow: 0 26px 60px rgba(8, 24, 40, 0.14);
}
.credential-mini-card:hover::before,
.sustainability-panel:hover::before {
  opacity: 1;
}
.credential-logo-image {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.credential-mark { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.credential-badge {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--text);
  background: linear-gradient(135deg, rgba(0,168,216,.18), rgba(245,158,11,.18));
}
.credential-badge[data-credential-badge="award"] {
  background: linear-gradient(135deg, rgba(245,158,11,.28), rgba(254,240,138,.32));
}
.credential-badge[data-credential-badge="certification"] {
  background: linear-gradient(135deg, rgba(0,168,216,.24), rgba(59,130,246,.22));
}
.credential-badge[data-credential-badge="membership"] {
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(20,184,166,.18));
}
.credential-mini-card strong { display: block; margin-bottom: 4px; }
.credential-mini-card span { display: block; color: var(--muted); font-size: .92rem; }
.credential-ticker .industry-ticker-track { gap: 16px; }
.credential-ticker-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  border: 1px solid var(--line);
}
.credential-ticker-text strong,
.credential-ticker-text small { display: block; }
.credential-ticker-text small { color: var(--muted); font-size: .82rem; margin-top: 2px; }
.credential-feature-media,
.credential-card-media {
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.18));
}
.assurance-standards-section .card-media {
  padding: 10px 10px 0;
}
.assurance-standards-section .card-media img {
  aspect-ratio: 4 / 2.2;
  max-height: 150px;
  object-fit: cover;
}
.credential-library-card { display: block; }
.credential-library-card .card-link {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: stretch;
  min-height: 100%;
}
.assurance-card-grid .credential-library-card .card-link {
  grid-template-columns: 116px 1fr;
}
.credential-feature-mark { max-width: 120px; max-height: 120px; object-fit: contain; }
.credential-card-media .credential-mark { max-width: 96px; max-height: 96px; object-fit: contain; border-radius: 18px; }
.credential-badge-large {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  font-size: 1.25rem;
}
.accordion-stack { display: grid; gap: 12px; }
.accordion-stack details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.36);
  padding: 16px 18px;
}
.accordion-stack summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.accordion-stack summary::-webkit-details-marker { display: none; }
.accordion-stack details[open] { background: linear-gradient(135deg, rgba(0,168,216,.08), rgba(245,158,11,.08)); }
.accordion-stack p { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }
.accordion-stack .pill-row { margin-top: 14px; }
.visual-panel .card-media { height: 100%; padding: 0; }
.visual-panel .card-media img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; border-radius: 22px; }
.delivery-circle-shell {
  display: grid;
  place-items: center;
  padding: 12px;
}
.sustainability-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.sustainability-shell { display: grid; gap: 18px; }
.sustainability-panel {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.sustainability-panel .card-media { padding: 12px 12px 0; }
.sustainability-panel .card-media img { aspect-ratio: 4 / 2.5; }
.sustainability-panel .text-link { margin-top: 10px; display: inline-flex; }
.filter-grid-inline {
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, .7fr);
  align-items: end;
}
.filter-grid-inline label:first-child .filter-bar { min-height: 48px; align-items: center; }
.industry-discovery-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.product-discovery-bar {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
}
.product-search-inline {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--muted);
  min-width: 0;
}
.industry-discovery-bar .filter-bar {
  min-height: 48px;
  align-items: center;
  margin-bottom: 0;
}
.search-inline {
  display: grid;
  grid-template-columns: minmax(260px, 1.8fr) minmax(180px, 1fr) minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 24px;
}
.filter-shell .search-inline .filter-bar {
  min-height: 48px;
  align-items: center;
  margin-bottom: 0;
}
.search-inline .filter-results {
  justify-self: end;
}
.search-inline input {
  width: 100%;
}
.product-group-block {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.product-family-card .card-link {
  height: 100%;
}
.product-family-card .card-copy {
  padding-bottom: 22px;
}
.product-family-card .card-link {
  display: block;
}
.product-snapshot-grid {
  gap: 30px;
  margin-bottom: 24px;
}
.product-importance-panel {
  background: linear-gradient(180deg, rgba(245,158,11,.12), rgba(201,130,8,.18));
  border: 1px solid rgba(201,130,8,.22);
}
.product-spec-panel {
  background: linear-gradient(180deg, rgba(11,94,119,.06), rgba(11,94,119,.12));
  border: 1px solid rgba(11,94,119,.18);
  padding: 24px;
}
.product-spec-panel p {
  margin: 0;
}
.product-snapshot-grid-secondary {
  margin-top: 10px;
}
.countries-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 10px;
}
.country-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}
.country-flag {
  width: 34px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(0,168,216,.14);
  border: 1px solid var(--line);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.highlight-industry .feature-link {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.highlight-industry .feature-media { padding: 12px; }
.highlight-industry .feature-media img { min-height: 320px; object-fit: cover; border-radius: 24px; }
.highlight-industry .feature-copy { padding: 24px; display: grid; align-content: center; gap: 14px; }
.preview-card .card-copy { min-height: 170px; }
.profile-card { display: grid; grid-template-columns: 280px 1fr; }
.industry-ticker {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  padding: 14px 0;
  margin-top: 18px;
}
.industry-ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: scrollTicker 64s linear infinite;
}
.industry-ticker-track a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  border: 1px solid var(--line);
  white-space: nowrap;
  font-weight: 600;
}
.industry-ticker-track a:nth-child(3n) { border-color: rgba(0,168,216,.28); }
.industry-ticker-track a:nth-child(3n+1) { border-color: rgba(245,158,11,.28); }
.portfolio-shell { display: grid; gap: 18px; }
.compact-project .card-copy { gap: 8px; }
.compact-project .card-media img { aspect-ratio: 4 / 2.7; }
.delivery-circle {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 999px;
  padding: 48px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: radial-gradient(circle at top, rgba(0,168,216,.18), rgba(0,125,196,.1) 52%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(0,168,216,.24);
  box-shadow: 0 28px 60px rgba(8,24,40,.12);
}
.delivery-circle h3,
.timeline-milestone h3 {
  margin: 0;
}
.delivery-circle p,
.timeline-milestone p {
  margin: 0;
  color: var(--muted);
}
.timeline-milestone-grid {
  display: grid;
  gap: 18px;
}
.timeline-milestone {
  padding: 22px;
  display: grid;
  gap: 10px;
}
@keyframes scrollTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.profile-media { padding: 12px; }
.profile-media img { aspect-ratio: 1 / 1.05; object-fit: cover; }
.profile-copy { padding: 24px; display: grid; gap: 12px; }
.field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 18px 0; }
.field, select, input[type="search"] {
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.34);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  display: flex;
  align-items: center;
}
.form-field { display: grid; gap: 8px; color: var(--muted); }
.form-field span, .check-field span { font-size: .92rem; }
.form-field input,
.form-field select,
.form-field textarea,
.form-field input[type="file"] {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.34);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
}
.form-field textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}
.form-field input[type="file"] {
  padding: 12px 16px;
}
.check-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--muted);
}
.check-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-strong);
}
.field-wide { grid-column: 1 / -1; min-height: 56px; }
.filter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 16px; }
.filter-grid label { display: grid; gap: 8px; color: var(--muted); }
.toggle-field { display: flex !important; align-items: center; gap: 10px; min-height: 48px; }
.mini-list, .detail-list { margin: 0; padding-left: 18px; display: grid; gap: 10px; color: var(--muted); }
.table-wrap { overflow-x: auto; }
.summary-table { width: 100%; border-collapse: collapse; }
.summary-table th, .summary-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.cta-section { padding-top: 18px; padding-bottom: 82px; }
.cta-panel {
  position: relative;
  padding: 40px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(0,168,216,.2), transparent 42%),
    linear-gradient(135deg, rgba(0,35,69,.92), rgba(3,24,43,.86));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 64px rgba(0,18,36,.28);
  color: #eff7ff;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,168,216,.4), rgba(245,158,11,.28), rgba(255,255,255,.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .8;
}
.cta-panel::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.08) 44%, rgba(255,255,255,.34) 50%, rgba(255,255,255,.08) 56%, transparent 70%);
  transform: translateX(-120%) rotate(8deg);
  animation: ctaShimmer 6s ease-in-out infinite;
  pointer-events: none;
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: #f7fbff; margin: 0; }
.cta-panel p { color: rgba(239,247,255,.82); }
.cta-panel .button-row { margin-top: 18px; }
.cta-panel .button { box-shadow: 0 16px 34px rgba(0,0,0,.16); }
.cta-panel .button:hover { transform: translateY(-3px); }
body[data-theme="dark"] .cta-panel {
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(0,168,216,.12), transparent 42%),
    linear-gradient(135deg, rgba(231,240,249,.92), rgba(209,224,239,.84));
  color: #10243a;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 24px 56px rgba(0,0,0,.22);
}
body[data-theme="dark"] .cta-panel h2 { color: #10243a; }
body[data-theme="dark"] .cta-panel p { color: #415467; }
body[data-theme="dark"] .cta-panel .button-ghost {
  background: rgba(255,255,255,.56);
  color: #10243a;
  border-color: rgba(16,36,58,.12);
}
@keyframes ctaShimmer {
  0%, 20% { transform: translateX(-120%) rotate(8deg); opacity: 0; }
  28% { opacity: .9; }
  45% { transform: translateX(120%) rotate(8deg); opacity: .2; }
  100% { transform: translateX(120%) rotate(8deg); opacity: 0; }
}
.site-footer { padding: 0 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}
.footer-logo { width: 160px; margin-bottom: 14px; }
.footer-links { font-size: .8rem; line-height: 1.35; }
.footer-bottom { padding-top: 16px; color: var(--muted); font-size: .85rem; }
.footer-bottom a { color: var(--brand-strong); }

@media (max-width: 1100px) {
  .hero-grid, .solution-hero-shell, .editorial-hero-grid, .split-grid, .office-grid, .map-panel, .dark-band, .sector-block, .featured-article, .profile-card, .highlight-industry .feature-link, .solution-value-grid, .delivery-model-grid { grid-template-columns: 1fr; }
  .form-switcher { grid-template-columns: 1fr; }
  .hero-stats, .cols-4, .timeline, .step-flow, .filter-grid, .mini-credentials-grid, .sustainability-showcase, .form-switcher, .company-collage, .industries-grid, .portfolio-grid, .support-grid, .service-platform-grid, .safety-kpi-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega-panel-products { min-width: min(760px, calc(100vw - 32px)); max-width: min(760px, calc(100vw - 32px)); grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-flow, .journey-stage-grid { grid-template-columns: 1fr; }
  .journey-arrow { display: none; }
  .company-collage .collage-large { grid-row: auto; }
  .industry-discovery-bar { grid-template-columns: 1fr; }
  .industry-panel { margin: 20px; width: auto; max-width: min(760px, calc(100% - 40px)); }
  .industry-panel-right { margin-right: 20px; }
  .safety-home-bottom { grid-template-columns: 1fr; }
  .safety-kpi-card strong { font-size: 1.9rem; }
}

@media (max-width: 860px) {
  .desktop-nav, .header-actions .button-ghost { display: none; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav.open { display: block; }
  .hero-copy { padding: 26px; }
  .hero-copy h1,
  .solution-copy h1,
  .industry-panel h1,
  .editorial-story h1 { font-size: clamp(2.35rem, 9vw, 3.8rem); max-width: none; }
  .hero-image { min-height: 260px; }
  .video-card.vertical video { min-height: 420px; aspect-ratio: 4 / 5; }
  .hero-stats, .cols-3, .cols-2, .cols-4, .metric-strip, .field-grid, .timeline, .map-markers, .step-flow, .mini-credentials-grid, .sustainability-showcase, .countries-table, .form-switcher, .compact-fields, .company-collage, .journey-stage-grid, .industries-grid, .portfolio-grid, .support-grid, .service-platform-grid, .safety-kpi-strip { grid-template-columns: 1fr; }
  .frame { width: min(100% - 24px, 1180px); }
  .header-shell { border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-contact { right: 14px; bottom: 14px; }
  .selector-table { grid-template-columns: 1fr; }
  .search-inline { grid-template-columns: 1fr; }
  .safety-home-shell { padding: 22px; }
  .safety-lifecycle-flow { gap: 10px; }
  .safety-phase-arrow { display: none; }
  .safety-standard-grid { display: grid; grid-template-columns: 1fr; }
}
