:root {
  --ink: #06101f;
  --ink-2: #0a1730;
  --ink-3: #102249;
  --paper: #ffffff;
  --paper-soft: #f3f6fb;
  --paper-blue: #eaf0ff;
  --text: #0a1630;
  --text-soft: #526079;
  --text-light: #f7f9ff;
  --text-light-soft: rgba(239, 244, 255, 0.72);
  --blue: #164cff;
  --blue-bright: #3474ff;
  --blue-soft: #dce6ff;
  --cyan: #58c8ff;
  --line: rgba(7, 23, 50, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 12px 34px rgba(10, 30, 70, 0.1);
  --shadow-md: 0 24px 70px rgba(7, 27, 67, 0.16);
  --shadow-lg: 0 40px 120px rgba(0, 10, 40, 0.35);
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --header-height: 80px;
  --container: 1480px;
  --gutter: clamp(18px, 3vw, 48px);
  --section-space: clamp(88px, 10vw, 156px);
  --parallax-y: 0px;
  --surface-light: linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 249, 255, 0.98) 52%, rgba(235, 242, 255, 0.96) 100%);
  --surface-soft: linear-gradient(145deg, #eef4ff 0%, #f8fbff 48%, #e8f0ff 100%);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 4%, rgba(92, 145, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #f9fbff 0%, #eef4ff 52%, #f8fbff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
  touch-action: none;
}

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

img,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

button:not(:disabled),
summary,
a {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid rgba(22, 76, 255, 0.42);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.site-shell,
.site-main {
  min-height: 100vh;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-light {
  background:
    radial-gradient(circle at 7% 8%, rgba(67, 124, 255, 0.10), transparent 31%),
    radial-gradient(circle at 94% 82%, rgba(88, 200, 255, 0.10), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7faff 50%, #edf3ff 100%);
  color: var(--text);
}

.section-soft {
  background:
    radial-gradient(circle at 88% 10%, rgba(61, 119, 255, 0.13), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(88, 200, 255, 0.10), transparent 27%),
    linear-gradient(145deg, #edf3ff 0%, #f8fbff 47%, #e8f0ff 100%);
  color: var(--text);
}

.section-ink,
.section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(44, 96, 255, 0.22), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(57, 162, 255, 0.13), transparent 26%),
    var(--ink);
  color: var(--text-light);
}

/* Shared controls */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button > span {
  font-size: 1.05em;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover > span {
  transform: translate(2px, -2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 14px 32px rgba(22, 76, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(22, 76, 255, 0.38);
}

.button-secondary {
  background: var(--ink);
  color: #fff;
}

.button-secondary:hover {
  background: var(--ink-3);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  backdrop-filter: blur(18px);
}

.button-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow-light {
  color: #8eb6ff;
}

.lead {
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
  color: var(--text-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(22, 76, 255, 0.3);
  color: var(--blue);
  font-weight: 750;
  transition: gap 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  gap: 16px;
  border-color: var(--blue);
}

.text-link-light {
  color: #a9c5ff;
  border-color: rgba(169, 197, 255, 0.35);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.58fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.section-heading h2 {
  max-width: 900px;
  font-size: clamp(40px, 5vw, 76px);
}

.section-heading-aside {
  max-width: 560px;
  justify-self: end;
}

.section-heading-aside p {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.section-heading-light h2,
.section-heading-light {
  color: #fff;
}

.section-heading-light .section-heading-aside p {
  color: var(--text-light-soft);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(5, 22, 55, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(160%) blur(20px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(7, 25, 58, 0.11);
}

.header-container {
  width: min(1760px, calc(100% - clamp(24px, 3vw, 56px)));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: clamp(142px, 11.5vw, 194px);
}

.brand img {
  width: 100%;
}

.desktop-nav {
  flex: 1 1 auto;
  height: 100%;
}

.desktop-nav-list {
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.45vw, 8px);
}

.desktop-nav-list > li {
  height: 100%;
  display: flex;
  align-items: center;
}

.desktop-nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #26344e;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.desktop-nav-link svg,
.language-menu summary svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.desktop-nav-link:hover,
.desktop-nav-link.is-active,
.desktop-nav-item.is-open .desktop-nav-link {
  background: var(--paper-blue);
  color: var(--blue);
}

.desktop-nav-item.is-open .desktop-nav-link svg {
  transform: rotate(180deg);
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-menu {
  position: relative;
}

.language-menu summary {
  min-width: 64px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  list-style: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.language-menu summary::-webkit-details-marker,
.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.language-menu[open] summary svg {
  transform: rotate(180deg);
}

.language-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.language-popover a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-soft);
}

.language-popover a span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.language-popover a strong {
  font-size: 14px;
  font-weight: 650;
}

.language-popover a:hover,
.language-popover a.is-active {
  background: var(--paper-blue);
  color: var(--text);
}

.header-contact-button,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.header-contact-button {
  border: 1px solid var(--line);
  background: #fff;
}

.header-contact-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-contact-button:hover {
  border-color: rgba(22, 76, 255, 0.28);
  color: var(--blue);
}

.header-cta {
  padding-inline: 18px;
  background: var(--ink);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--blue);
}

.mobile-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  position: relative;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.mobile-menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition: transform 180ms ease, top 180ms ease;
}

.mobile-menu-toggle > span:nth-last-child(2) { top: 18px; }
.mobile-menu-toggle > span:last-child { top: 26px; }

/* Desktop mega menu */
.mega-menu {
  position: absolute;
  z-index: 110;
  top: calc(100% + 1px);
  left: 50%;
  width: min(1580px, calc(100vw - 28px));
  max-height: calc(100vh - var(--header-height) - 24px);
  overflow: auto;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.desktop-nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-menu-inner {
  overflow: hidden;
  border: 1px solid rgba(14, 36, 78, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 32px 90px rgba(5, 22, 55, 0.22);
}

.mega-solutions-layout {
  min-height: 560px;
  display: grid;
  grid-template-columns: 270px 285px minmax(420px, 1fr);
}

.mega-intro {
  padding: 38px 32px;
  background:
    radial-gradient(circle at 0 100%, rgba(40, 104, 255, 0.3), transparent 42%),
    linear-gradient(145deg, var(--ink-2), var(--ink));
  color: #fff;
}

.mega-intro.compact {
  min-height: 100%;
}

.menu-kicker {
  display: block;
  margin-bottom: 22px;
  color: #8fb8ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(27px, 2.3vw, 40px);
  line-height: 1.08;
}

.mega-intro .text-link {
  color: #b7d0ff;
  border-color: rgba(183, 208, 255, 0.28);
}

.mega-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 42px;
}

.mega-metrics span {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.mega-metrics strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.mega-tabs {
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #f7f9fd;
}

.mega-tab {
  width: 100%;
  min-height: 59px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--text-soft);
  text-align: left;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.mega-tab span {
  color: #8694aa;
  font-size: 11px;
  font-weight: 800;
}

.mega-tab strong {
  font-size: 14px;
  line-height: 1.25;
}

.mega-tab:hover,
.mega-tab.is-active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 25px rgba(12, 38, 85, 0.08);
  transform: translateX(2px);
}

.mega-tab-panels {
  min-width: 0;
  padding: 32px 34px 34px;
}

.mega-tab-panel[hidden] {
  display: none;
}

.mega-panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.mega-panel-head h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.mega-panel-head p {
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.mega-panel-head > a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-blue);
  color: var(--blue);
  font-size: 18px;
}

.mega-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 22px;
  padding-top: 20px;
}

.mega-link-grid a {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: start;
  padding: 9px 8px;
  border-radius: 10px;
  color: #2b3851;
  font-size: 14px;
  line-height: 1.35;
  transition: background 140ms ease, color 140ms ease;
}

.mega-link-grid a > span {
  width: 5px;
  height: 5px;
  margin-top: 6px;
  border-radius: 50%;
  background: #a5b0c3;
}

.mega-link-grid a:hover {
  background: var(--paper-blue);
  color: var(--blue);
}

.mega-link-grid a:hover > span {
  background: var(--blue);
}

.mega-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.mega-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 24px;
}

.mega-service-grid a {
  min-height: 76px;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  color: #29364d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.32;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.mega-service-grid a svg,
.mobile-link-list a svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-service-grid a:hover {
  background: var(--paper-blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.mega-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 24px;
}

.mega-industry-grid a {
  min-height: 108px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: #f7f9fd;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.mega-industry-grid a:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mega-industry-grid svg {
  width: 34px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-industry-grid strong,
.mega-industry-grid small {
  display: block;
}

.mega-industry-grid strong {
  margin-bottom: 7px;
  font-size: 14px;
}

.mega-industry-grid small {
  overflow: hidden;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 450;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mega-about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
}

.mega-about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
}

.mega-about-grid a {
  min-height: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.mega-about-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 76, 255, 0.22);
  box-shadow: var(--shadow-sm);
}

.about-number {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.mega-about-grid strong {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.18;
}

.mega-about-grid small {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.about-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--blue);
}

/* Mobile navigation */
.mobile-menu {
  position: fixed;
  z-index: 300;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 10, 25, 0.58);
  backdrop-filter: blur(8px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 100%);
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px clamp(18px, 5vw, 42px) 38px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(.22, .72, .2, 1);
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: none;
}

.mobile-menu-head {
  position: sticky;
  z-index: 2;
  top: -18px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -18px calc(clamp(18px, 5vw, 42px) * -1) 12px;
  padding: 18px clamp(18px, 5vw, 42px) 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.mobile-menu-head img {
  width: 150px;
}

.mobile-menu-head button,
.contact-panel-close {
  width: 44px;
  height: 44px;
  position: relative;
  border: 0;
  border-radius: 50%;
  background: var(--paper-soft);
}

.mobile-menu-head button span,
.contact-panel-close span {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.mobile-menu-head button span:first-child,
.contact-panel-close span:first-child { transform: rotate(45deg); }
.mobile-menu-head button span:last-child,
.contact-panel-close span:last-child { transform: rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
}

.mobile-nav-direct,
.mobile-nav-group > summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: clamp(21px, 5vw, 29px);
  font-weight: 680;
  letter-spacing: -0.035em;
  list-style: none;
}

.mobile-nav-direct > span {
  color: var(--blue);
  font-size: 16px;
}

.mobile-nav-group > summary > span,
.mobile-solution-group > summary > span {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.mobile-nav-group > summary > span::before,
.mobile-nav-group > summary > span::after,
.mobile-solution-group > summary > span::before,
.mobile-solution-group > summary > span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.mobile-nav-group > summary > span::after,
.mobile-solution-group > summary > span::after {
  transform: rotate(90deg);
}

.mobile-nav-group[open] > summary > span::after,
.mobile-solution-group[open] > summary > span::after {
  transform: rotate(0);
}

.mobile-nav-content {
  padding: 8px 0 22px;
}

.mobile-view-all,
.mobile-group-lead {
  display: flex !important;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0;
  padding: 15px 16px !important;
  border-radius: 14px;
  background: var(--paper-blue);
  color: var(--blue) !important;
  font-weight: 750 !important;
}

.mobile-solution-group {
  border-bottom: 1px solid var(--line);
}

.mobile-solution-group > summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  color: #29364c;
  font-size: 16px;
  font-weight: 700;
}

.mobile-solution-group > div {
  padding: 0 0 16px 12px;
}

.mobile-solution-group a,
.mobile-link-list a {
  display: block;
  padding: 9px 4px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.mobile-link-list a:not(.mobile-view-all) {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 8px;
  border-bottom: 1px solid rgba(7, 23, 50, 0.06);
}

.mobile-language-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 28px 0 16px;
}

.mobile-language-grid a {
  min-height: 54px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
}

.mobile-language-grid a span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.mobile-language-grid a.is-active {
  border-color: rgba(22, 76, 255, 0.25);
  background: var(--paper-blue);
  color: var(--text);
}

/* Progressive video: image is the guaranteed fallback */
.progressive-video {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.progressive-video > img,
.progressive-video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.progressive-video > img {
  z-index: 1;
  opacity: 1;
  transition: opacity 500ms ease;
}

.progressive-video > video {
  z-index: 0;
  opacity: 0;
}

.progressive-video.is-video-ready > video {
  z-index: 2;
  opacity: 1;
}

.progressive-video.is-video-ready > img {
  opacity: 0;
}

/* Home hero */
.home-hero {
  min-height: max(720px, calc(100svh - var(--header-height)));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media > img,
.hero-media > video {
  object-position: center 48%;
  transform: scale(1.02);
}

.hero-media-shade {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 24, 0.96) 0%, rgba(2, 9, 27, 0.78) 36%, rgba(2, 8, 24, 0.25) 72%, rgba(2, 8, 24, 0.46) 100%),
    linear-gradient(0deg, rgba(2, 8, 24, 0.82) 0%, transparent 44%);
}

.home-hero-content {
  min-height: max(720px, calc(100svh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.52fr);
  grid-template-rows: 1fr auto;
  gap: 54px clamp(40px, 7vw, 120px);
  align-items: center;
  padding-top: clamp(78px, 9vh, 120px);
  padding-bottom: 38px;
}

.home-hero-copy {
  max-width: 970px;
}

.home-hero-copy h1 {
  max-width: 940px;
  font-size: clamp(56px, 6.6vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-shadow: 0 18px 55px rgba(0, 8, 35, 0.34);
}

.hero-lead {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(243, 247, 255, 0.82);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.55;
}

.hero-proof-panel {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(8, 19, 45, 0.48);
  box-shadow: 0 26px 90px rgba(0, 8, 35, 0.24);
  backdrop-filter: blur(22px) saturate(130%);
}

.hero-proof-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof-head img {
  width: 130px;
}

.video-sound {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 10px;
  font-weight: 750;
}

.video-sound svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-sound .sound-off-icon,
.video-sound[aria-pressed="true"] .sound-on-icon {
  display: none;
}

.video-sound[aria-pressed="true"] .sound-off-icon {
  display: block;
}

.hero-proof-panel > p {
  margin: 20px 0;
  color: var(--text-light-soft);
  font-size: 14px;
  line-height: 1.6;
}

.hero-capabilities {
  display: grid;
  gap: 7px;
}

.hero-capabilities article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-capabilities article > span {
  color: #7aa7ff;
  font-size: 10px;
  font-weight: 850;
}

.hero-capabilities strong,
.hero-capabilities p {
  display: block;
}

.hero-capabilities strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.hero-capabilities p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.45;
}

.hero-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 84px);
}

.hero-stats article {
  display: grid;
  gap: 5px;
}

.hero-stats strong {
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 650;
}

.scroll-cue i {
  width: 34px;
  height: 52px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 99px;
  background: #fff;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 18px); opacity: 1; }
}

/* Home solution routes */
.solution-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-route-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: transform 230ms ease, box-shadow 230ms ease, border-color 230ms ease;
}

.solution-route-card:hover {
  transform: translateY(-7px);
  border-color: rgba(22, 76, 255, 0.22);
  box-shadow: var(--shadow-md);
}

.solution-route-image {
  height: 220px;
  overflow: hidden;
  background: var(--paper-blue);
}

.solution-route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.solution-route-card:hover img {
  transform: scale(1.045);
}

.solution-route-copy {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.card-index {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.solution-route-copy h3 {
  margin-bottom: 13px;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.08;
}

.solution-route-copy > p {
  margin-bottom: 26px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.58;
}

.route-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #78869c;
  font-size: 11px;
}

.route-meta i {
  color: var(--blue);
  font-size: 18px;
  font-style: normal;
}

/* Parallax sections */
.parallax-section {
  min-height: 900px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.parallax-layer {
  position: absolute;
  z-index: -3;
  inset: -12%;
  background-image: var(--parallax-image);
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.08);
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 25, 0.93) 0%, rgba(3, 12, 32, 0.72) 48%, rgba(3, 10, 28, 0.55) 100%),
    linear-gradient(0deg, rgba(1, 8, 23, 0.8), transparent 52%);
}

.parallax-overlay-deep {
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.96), rgba(3, 12, 33, 0.76) 54%, rgba(1, 8, 23, 0.73)),
    linear-gradient(0deg, rgba(1, 8, 23, 0.88), transparent 55%);
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.glass-service-card {
  min-height: 230px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(7, 20, 48, 0.44);
  backdrop-filter: blur(18px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.glass-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(126, 171, 255, 0.55);
  background: rgba(20, 58, 140, 0.42);
}

.glass-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 14px;
  background: rgba(102, 153, 255, 0.18);
  color: #a5c4ff;
}

.glass-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glass-service-card strong {
  display: block;
  margin: 28px 0 8px;
  font-size: 18px;
  line-height: 1.16;
}

.glass-service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.glass-service-card > i {
  position: absolute;
  top: 23px;
  right: 23px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  font-style: normal;
}

/* Ecosystem */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ecosystem-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(85, 139, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.ecosystem-visual {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background: #dce8ff;
}

.ecosystem-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.ecosystem-card:hover .ecosystem-visual img {
  transform: scale(1.045);
}

.ecosystem-visual > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.ecosystem-copy {
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.ecosystem-copy .eyebrow {
  margin-bottom: 14px;
  color: #8eb6ff;
}

.ecosystem-copy h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(28px, 2.4vw, 42px);
}

.ecosystem-copy > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--text-light-soft);
  font-size: 14px;
}

.ecosystem-copy ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.ecosystem-copy li {
  padding: 9px 0 9px 18px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.ecosystem-copy li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6899ff;
}

.ecosystem-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9c5ff;
  font-size: 12px;
  font-weight: 750;
}

.ecosystem-link i {
  font-size: 17px;
  font-style: normal;
}

/* Industries home */
.industry-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.industry-home-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(4, 16, 42, 0.48);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.industry-home-card:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 162, 255, 0.5);
  background: rgba(20, 58, 137, 0.4);
}

.industry-icon {
  width: 40px;
  fill: none;
  stroke: #93b8ff;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-home-card strong,
.industry-home-card small {
  display: block;
}

.industry-home-card strong {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.18;
}

.industry-home-card small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.industry-home-card > i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  font-style: normal;
}

/* Team */
.team-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.team-member-card {
  min-width: 0;
}

.team-media {
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  background: #dfe6f2;
  box-shadow: 0 16px 50px rgba(8, 30, 72, 0.1);
}

.team-media > img,
.team-media > video {
  object-position: center top;
  transition: transform 550ms ease, opacity 500ms ease;
}

.team-member-card:hover .team-media > img,
.team-member-card:hover .team-media > video {
  transform: scale(1.035);
}

.team-media > span {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.team-member-copy {
  padding: 18px 4px 0;
}

.team-member-copy > p {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-member-copy h3 {
  margin-bottom: 9px;
  font-size: clamp(21px, 1.65vw, 29px);
}

.team-member-copy > div {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.team-card-grid-dark .team-member-copy h3 {
  color: #fff;
}

.team-card-grid-dark .team-member-copy > div {
  color: var(--text-light-soft);
}

/* Process */
.process-layout,
.detail-process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(480px, 1fr);
  gap: clamp(70px, 10vw, 180px);
  align-items: start;
}

.process-intro,
.detail-process-intro {
  position: sticky;
  top: calc(var(--header-height) + 46px);
}

.process-intro h2,
.detail-process-intro h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(48px, 5.3vw, 82px);
}

.process-intro > p:not(.eyebrow),
.detail-process-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--text-light-soft);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.65;
}

.process-step-list,
.detail-process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step-card,
.detail-process-step {
  min-height: 175px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 25px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step-card > span,
.detail-process-step > span {
  color: #7facff;
  font-size: 11px;
  font-weight: 850;
}

.process-step-card h3,
.detail-process-step h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 36px);
}

.process-step-card p,
.detail-process-step p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.process-step-card > i {
  width: 18px;
  height: 18px;
  position: relative;
}

.process-step-card > i::before,
.process-step-card > i::after {
  content: "";
  position: absolute;
  background: #7facff;
}

.process-step-card > i::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 1px;
}

.process-step-card > i::after {
  top: 0;
  left: 8px;
  width: 1px;
  height: 18px;
}

/* Home CTA */
.home-cta {
  min-height: 760px;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.cta-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.cta-shade {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 26, 0.93) 0%, rgba(2, 10, 30, 0.7) 50%, rgba(2, 8, 24, 0.35)),
    linear-gradient(0deg, rgba(1, 7, 20, 0.72), transparent 55%);
}

.home-cta-content {
  max-width: 1000px;
  padding-block: 120px;
}

.home-cta h2 {
  max-width: 920px;
  margin-bottom: 25px;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.95;
}

.home-cta-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.6;
}

/* Inner section hero */
.inner-hero,
.detail-hero,
.contact-hero {
  min-height: 660px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.inner-hero-media,
.detail-hero-media,
.contact-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.inner-hero-media img,
.detail-hero-media img,
.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inner-hero-media > div,
.detail-hero-media > div,
.contact-hero-media > div {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.97) 0%, rgba(3, 12, 31, 0.78) 46%, rgba(2, 9, 25, 0.46) 100%),
    linear-gradient(0deg, rgba(2, 8, 22, 0.83) 0%, transparent 58%);
}

.inner-hero-content,
.detail-hero-content,
.contact-hero-content {
  min-height: 660px;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 58px;
}

.breadcrumbs {
  margin-bottom: auto;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a:hover {
  color: #fff;
}

.inner-hero-grid,
.detail-hero-grid,
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.42fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.inner-hero-copy,
.detail-hero-copy,
.contact-hero-copy {
  max-width: 1000px;
}

.inner-hero-copy h1,
.detail-hero-copy h1,
.contact-hero-copy h1 {
  max-width: 1000px;
  margin-bottom: 25px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.94;
}

.inner-hero-copy > p:not(.eyebrow),
.detail-hero-copy > p:not(.eyebrow),
.contact-hero-copy > p:not(.eyebrow) {
  max-width: 800px;
  margin-bottom: 0;
  color: rgba(244, 247, 255, 0.76);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.58;
}

.inner-hero-card,
.detail-hero-card,
.contact-hero-note {
  min-height: 250px;
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(8, 20, 47, 0.44);
  backdrop-filter: blur(18px);
}

.inner-hero-card > div > strong,
.inner-hero-card > div > p {
  display: block;
}

.inner-hero-card > div > strong {
  margin-bottom: 4px;
  font-size: 19px;
}

.inner-hero-card > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.inner-hero-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.inner-hero-card dl > div {
  display: grid;
  gap: 3px;
}

.inner-hero-card dt {
  font-size: 20px;
  font-weight: 700;
}

.inner-hero-card dd {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

/* Section catalog pages */
.solution-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.solution-catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.solution-catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.solution-catalog-image {
  height: 330px;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-blue);
}

.solution-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.solution-catalog-card:hover .solution-catalog-image img {
  transform: scale(1.045);
}

.solution-catalog-image > span {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.solution-catalog-copy {
  padding: 28px;
}

.solution-catalog-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 14px;
}

.solution-catalog-title h3 {
  font-size: clamp(27px, 2.7vw, 43px);
}

.solution-catalog-title > a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-blue);
  color: var(--blue);
}

.solution-catalog-copy > p {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: 14px;
}

.solution-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.solution-mini-links a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4f5c73;
  font-size: 10px;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.solution-mini-links a:hover {
  border-color: rgba(22, 76, 255, 0.22);
  background: var(--paper-blue);
  color: var(--blue);
}

.solution-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: #7a879a;
  font-size: 11px;
}

.item-catalog-grid,
.service-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.item-catalog-card,
.service-catalog-card {
  min-height: 330px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.item-catalog-card:hover,
.service-catalog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 76, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.item-catalog-index,
.service-catalog-number {
  display: block;
  margin-bottom: auto;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.item-catalog-card h3,
.service-catalog-card h3 {
  margin: 44px 0 13px;
  font-size: clamp(22px, 1.7vw, 30px);
}

.item-catalog-card p,
.service-catalog-card p {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.item-catalog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
}

.item-catalog-link i {
  font-size: 17px;
  font-style: normal;
}

.service-catalog-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 15px;
  background: var(--paper-blue);
  color: var(--blue);
}

.service-catalog-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.industry-catalog-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.industry-catalog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 76, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.industry-catalog-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: auto;
}

.industry-catalog-icon {
  width: 52px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-catalog-top > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.industry-catalog-card h3 {
  margin: 52px 0 13px;
  font-size: clamp(26px, 2.4vw, 40px);
}

.industry-catalog-card > p {
  margin-bottom: 25px;
  color: var(--text-soft);
  font-size: 13px;
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-pillar-card {
  min-height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.about-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-pillar-card > span {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.about-pillar-card h3 {
  margin: 55px 0 16px;
  font-size: clamp(29px, 2.6vw, 43px);
}

.about-pillar-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.about-pillar-card i {
  position: absolute;
  top: 27px;
  right: 27px;
  color: var(--blue);
  font-size: 19px;
  font-style: normal;
}

.about-process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1fr);
  gap: clamp(70px, 10vw, 160px);
}

.about-process-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.about-process-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(44px, 5vw, 74px);
}

.about-process-intro > p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: 18px;
}

.about-process-list {
  border-top: 1px solid var(--line);
}

.about-process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.about-process-step > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.about-process-step h3 {
  margin-bottom: 9px;
  font-size: 28px;
}

.about-process-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

/* Detail page */
.detail-hero-card {
  display: flex;
  flex-direction: column;
}

.detail-hero-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 17px;
  background: rgba(84, 138, 255, 0.16);
  color: #a9c7ff;
}

.detail-hero-card-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-hero-card > div:last-child span,
.detail-hero-card > div:last-child strong {
  display: block;
}

.detail-hero-card > div:last-child span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.detail-hero-card > div:last-child strong {
  font-size: 18px;
  line-height: 1.2;
}

.detail-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  gap: clamp(70px, 11vw, 180px);
}

.detail-overview-intro h2 {
  margin-bottom: 25px;
  font-size: clamp(48px, 5.6vw, 84px);
}

.detail-overview-intro > .lead {
  max-width: 780px;
}

.why-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  margin-top: 46px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper-soft);
}

.why-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--paper-blue);
  color: var(--blue);
}

.why-card svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.why-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.detail-benefit-list {
  border-top: 1px solid var(--line);
}

.detail-column-label {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-benefit {
  min-height: 118px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.detail-benefit > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.detail-benefit p {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.42;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-card {
  min-height: 310px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.deliverable-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.deliverable-card > div {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--paper-blue);
  color: var(--blue);
}

.deliverable-card svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deliverable-card > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.deliverable-card p {
  margin: auto 0 0;
  padding-top: 60px;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.35;
}

.detail-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(520px, 1fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.detail-faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.detail-faq-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(44px, 5vw, 74px);
}

.detail-faq-intro > p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: 16px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  list-style: none;
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 650;
  line-height: 1.25;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  background: var(--blue);
  transition: transform 180ms ease;
}

.faq-item summary i::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 1.5px;
}

.faq-item summary i::after {
  top: 0;
  left: 9px;
  width: 1.5px;
  height: 20px;
}

.faq-item[open] summary i::after {
  transform: rotate(90deg);
}

.faq-item > div {
  overflow: hidden;
}

.faq-item > div p {
  max-width: 760px;
  margin: 0;
  padding: 0 48px 28px 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  min-height: 315px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.related-card > span {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.related-card h3 {
  margin: 50px 0 13px;
  font-size: clamp(22px, 1.8vw, 31px);
}

.related-card p {
  overflow: hidden;
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.related-card > i {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--blue);
  font-size: 18px;
  font-style: normal;
}

.section-bottom-cta {
  padding-top: 0;
}

.compact-cta {
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding: clamp(35px, 5vw, 70px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(58, 115, 255, 0.45), transparent 38%),
    linear-gradient(140deg, var(--ink-2), var(--ink));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.compact-cta h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 76px);
}

.compact-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--text-light-soft);
  font-size: 16px;
}

/* Contact page */
.contact-hero-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-hero-note > span {
  margin-bottom: auto;
  color: #8db5ff;
  font-size: 11px;
  font-weight: 750;
}

.contact-hero-note strong {
  margin-bottom: 8px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.2;
}

.contact-hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(560px, 1fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: start;
}

.contact-direct {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.contact-direct h2 {
  margin-bottom: 17px;
  font-size: clamp(42px, 4.5vw, 66px);
}

.contact-direct > p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: 16px;
}

.contact-direct-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.contact-direct-list a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color 150ms ease, padding-left 150ms ease;
}

.contact-direct-list a:hover {
  padding-left: 5px;
  color: var(--blue);
}

.contact-direct-list > a > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
}

.contact-direct-list small,
.contact-direct-list strong {
  display: block;
}

.contact-direct-list small {
  margin-bottom: 4px;
  color: #8390a4;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct-list strong {
  font-size: 16px;
  line-height: 1.2;
}

.contact-direct-list i {
  color: var(--blue);
  font-style: normal;
}

.project-request-form {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper-soft);
}

.form-head {
  margin-bottom: 38px;
}

.form-head h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(38px, 4vw, 60px);
}

.form-head > p:not(.eyebrow) {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.form-grid label {
  display: grid;
  gap: 9px;
}

.form-grid label > span {
  color: #59667d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bfc8d8;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid input {
  min-height: 50px;
  padding: 10px 0;
}

.form-grid textarea {
  min-height: 150px;
  padding: 12px 0;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue);
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-submit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
}

.form-submit-row small {
  max-width: 470px;
  color: #7a879b;
  font-size: 10px;
  line-height: 1.45;
}

.contact-map-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding: clamp(34px, 5vw, 68px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 20%, rgba(65, 124, 255, 0.23), transparent 34%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.contact-map-card h2 {
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 72px);
}

.contact-map-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
}

/* 404 */
.not-found-page {
  min-height: calc(100svh - var(--header-height));
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.not-found-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.not-found-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.not-found-media > div {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 23, 0.98), rgba(2, 10, 28, 0.76), rgba(2, 8, 24, 0.4));
}

.not-found-content {
  position: relative;
  padding-block: 100px;
}

.not-found-code {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(220px, 35vw, 620px);
  font-weight: 850;
  line-height: 0.7;
  letter-spacing: -0.1em;
  transform: translateY(-50%);
}

.not-found-content h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(62px, 9vw, 140px);
}

.not-found-content > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--text-light-soft);
  font-size: 20px;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(80px, 9vw, 135px);
  background: #030913;
  color: #fff;
}

.footer-glow {
  position: absolute;
  top: -280px;
  left: 5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(28, 87, 255, 0.22);
  filter: blur(120px);
  pointer-events: none;
}

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(4, minmax(145px, 0.66fr));
  gap: clamp(34px, 5vw, 78px);
  padding-bottom: 70px;
}

.footer-brand img {
  width: min(240px, 100%);
}

.footer-brand > p {
  max-width: 430px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.footer-project-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #a9c5ff;
  font-weight: 750;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: #8baeff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.42;
  transition: color 150ms ease;
}

.footer-column a:hover,
.footer-all-link {
  color: #fff !important;
}

.footer-contacts a {
  word-break: break-word;
}

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  font-weight: 750;
}

.footer-bottom a.is-active,
.footer-bottom a:hover {
  color: #fff;
}

/* Contact panel and floating action */
.floating-contact {
  position: fixed;
  z-index: 190;
  right: clamp(16px, 2.4vw, 32px);
  bottom: clamp(16px, 2.4vw, 32px);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 18px 45px rgba(22, 76, 255, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-contact:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 55px rgba(22, 76, 255, 0.44);
}

.floating-contact svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-panel {
  position: fixed;
  z-index: 400;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.contact-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-panel-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 8, 22, 0.66);
  backdrop-filter: blur(9px);
}

.contact-panel-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(530px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: clamp(34px, 6vw, 68px) clamp(25px, 5vw, 50px);
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 107, 255, 0.35), transparent 37%),
    var(--ink);
  color: #fff;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(.22, .72, .2, 1);
}

.contact-panel.is-open .contact-panel-card {
  transform: none;
}

.contact-panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-panel-close span {
  background: #fff;
}

.contact-panel-logo {
  width: 175px;
  margin-bottom: clamp(70px, 12vh, 120px);
}

.contact-panel-card h2 {
  margin-bottom: 16px;
  font-size: clamp(40px, 6vw, 62px);
}

.contact-panel-card > p:not(.eyebrow) {
  color: var(--text-light-soft);
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 35px 0 18px;
}

.contact-channel-grid a {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 160ms ease, background 160ms ease;
}

.contact-channel-grid a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-channel-grid a > span {
  margin-bottom: auto;
  color: #8eb5ff;
  font-size: 11px;
  font-weight: 850;
}

.contact-channel-grid strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-channel-grid small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  width: min(610px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 11px;
}

.cookie-actions {
  display: flex;
  gap: 7px;
}

.cookie-actions .button {
  min-height: 43px;
  padding: 10px 14px;
  font-size: 11px;
}

/* Reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms cubic-bezier(.2, .72, .2, 1), transform 680ms cubic-bezier(.2, .72, .2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-now {
  animation: reveal-now 720ms 80ms both cubic-bezier(.2, .72, .2, 1);
}

@keyframes reveal-now {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Wide screens */
@media (min-width: 1800px) {
  :root { --container: 1600px; }
  .solution-route-image { height: 250px; }
  .glass-service-card { min-height: 250px; }
  .team-card-grid { gap: 18px; }
}

@media (max-width: 1500px) {
  .header-contact-button span { display: none; }
  .header-contact-button { width: 44px; padding: 0; }
  .mega-solutions-layout { grid-template-columns: 245px 250px minmax(380px, 1fr); }
  .mega-service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(130px, .65fr)); gap: 35px; }
}

@media (max-width: 1320px) {
  :root { --container: 1180px; }
  .header-cta { display: none; }
  .solution-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-route-image { height: 260px; }
  .service-showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .team-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 14px; }
  .item-catalog-grid,
  .service-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-pillar-grid,
  .deliverable-grid,
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .footer-brand { grid-row: span 2; }
  .footer-contacts { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; }
  .footer-contacts h2 { grid-column: 1 / -1; }
}

@media (max-width: 1140px) {
  :root { --header-height: 72px; --section-space: clamp(78px, 10vw, 125px); }
  .desktop-nav,
  .header-contact-button,
  .header-cta { display: none; }
  .header-container { justify-content: space-between; }
  .header-actions { margin-left: auto; }
  .mobile-menu-toggle { display: block; }
  .home-hero,
  .home-hero-content { min-height: max(760px, calc(100svh - var(--header-height))); }
  .home-hero-content { grid-template-columns: minmax(0, 1fr) minmax(280px, .46fr); gap: 45px; }
  .home-hero-copy h1 { font-size: clamp(54px, 8.2vw, 88px); }
  .ecosystem-card { grid-template-columns: 1fr; }
  .ecosystem-visual { min-height: 290px; }
  .ecosystem-copy { min-height: 370px; }
  .industry-home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-layout,
  .detail-process-layout,
  .about-process-layout,
  .detail-overview-grid,
  .detail-faq-layout,
  .contact-main-grid { gap: 60px; }
  .inner-hero-grid,
  .detail-hero-grid,
  .contact-hero-grid { grid-template-columns: minmax(0, 1fr) 260px; gap: 45px; }
  .industry-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading-aside { max-width: 720px; justify-self: start; }
  .home-hero-content { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto auto; align-content: center; }
  .home-hero-copy { padding-top: 30px; }
  .hero-proof-panel { max-width: 700px; }
  .hero-bottom { grid-column: auto; }
  .solution-route-image { height: 230px; }
  .service-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-card { grid-template-columns: .75fr 1fr; }
  .ecosystem-visual { min-height: 100%; }
  .ecosystem-copy { min-height: 390px; }
  .process-layout,
  .detail-process-layout,
  .about-process-layout,
  .detail-overview-grid,
  .detail-faq-layout,
  .contact-main-grid { grid-template-columns: 1fr; }
  .process-intro,
  .detail-process-intro,
  .about-process-intro,
  .detail-faq-intro,
  .contact-direct { position: static; }
  .inner-hero,
  .detail-hero,
  .contact-hero,
  .inner-hero-content,
  .detail-hero-content,
  .contact-hero-content { min-height: 720px; }
  .inner-hero-grid,
  .detail-hero-grid,
  .contact-hero-grid { grid-template-columns: 1fr; }
  .inner-hero-card,
  .detail-hero-card,
  .contact-hero-note { min-height: 170px; max-width: 600px; }
  .detail-hero-card { display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: end; }
  .detail-hero-card-icon { margin: 0; }
  .solution-catalog-image { height: 270px; }
  .item-catalog-grid,
  .service-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compact-cta,
  .contact-map-card { grid-template-columns: 1fr; align-items: start; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-contacts { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root {
    --gutter: 18px;
    --section-space: 78px;
    --radius-lg: 26px;
  }
  .brand { width: 146px; }
  .language-menu summary { min-width: 56px; }
  .home-hero,
  .home-hero-content { min-height: max(780px, calc(100svh - var(--header-height))); }
  .home-hero-content { gap: 34px; padding-top: 60px; padding-bottom: 24px; }
  /* .home-hero-copy h1 { font-size: clamp(47px, 14vw, 70px); } */
  .hero-lead { margin-top: 22px; font-size: 17px; }
  .hero-proof-panel { display: none; }
  .hero-bottom { align-items: start; padding-top: 20px; }
  .hero-stats { gap: 24px; }
  .scroll-cue { display: none; }
  .hero-media-shade { background: linear-gradient(90deg, rgba(2, 8, 24, .94), rgba(2, 9, 27, .58)), linear-gradient(0deg, rgba(2, 8, 24, .86), transparent 58%); }
  .hero-actions { margin-top: 26px; }
  .button { min-height: 50px; padding: 13px 18px; font-size: 13px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2 { font-size: 39px; }
  .solution-route-grid,
  .service-showcase-grid,
  .industry-home-grid,
  .team-card-grid,
  .solution-catalog-grid,
  .item-catalog-grid,
  .service-catalog-grid,
  .industry-catalog-grid,
  .about-pillar-grid,
  .deliverable-grid,
  .related-grid { grid-template-columns: 1fr; }
  .solution-route-image { height: 235px; }
  .solution-route-copy { min-height: 260px; }
  .parallax-section { min-height: 0; }
  .parallax-layer { inset: 0; transform: none; background-attachment: scroll; }
  .glass-service-card { min-height: 205px; }
  .ecosystem-card { grid-template-columns: 1fr; }
  .ecosystem-visual { min-height: 260px; }
  .ecosystem-copy { min-height: 355px; padding: 27px; }
  .team-card-grid { gap: 32px; }
  .team-media { aspect-ratio: 4 / 5; }
  .process-step-card,
  .detail-process-step { grid-template-columns: 34px 1fr; min-height: 150px; padding: 28px 0; }
  .process-step-card > i { display: none; }
  .home-cta { min-height: 650px; }
  .home-cta-content { padding-block: 90px; }
  .home-cta h2 { font-size: 52px; }
  .inner-hero,
  .detail-hero,
  .contact-hero,
  .inner-hero-content,
  .detail-hero-content,
  .contact-hero-content { min-height: 700px; }
  .inner-hero-content,
  .detail-hero-content,
  .contact-hero-content { padding-bottom: 38px; }
  .breadcrumbs { margin-bottom: 60px; }
  .inner-hero-copy h1,
  .detail-hero-copy h1,
  .contact-hero-copy h1 { font-size: 50px; }
  .inner-hero-copy > p:not(.eyebrow),
  .detail-hero-copy > p:not(.eyebrow),
  .contact-hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .inner-hero-card { display: none; }
  .detail-overview-intro h2 { font-size: 43px; }
  .why-card { grid-template-columns: 1fr; }
  .detail-benefit { grid-template-columns: 32px 1fr; }
  .detail-benefit p { font-size: 17px; }
  .deliverable-card { min-height: 250px; }
  .faq-item summary { font-size: 18px; }
  .faq-item > div p { padding-right: 0; }
  .compact-cta { min-height: 450px; padding: 28px; }
  .compact-cta h2 { font-size: 40px; }
  .solution-catalog-image { height: 230px; }
  .solution-catalog-copy { padding: 22px; }
  .item-catalog-card,
  .service-catalog-card,
  .industry-catalog-card,
  .about-pillar-card { min-height: 300px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-submit-row { grid-template-columns: 1fr; }
  .form-submit-row .button { width: 100%; }
  .project-request-form { padding: 25px 20px; }
  .contact-map-card { min-height: 360px; padding: 28px; }
  .not-found-code { top: 24%; right: -8%; }
  .not-found-content h1 { font-size: 58px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contacts { display: flex; grid-column: 1 / -1; }
  .footer-bottom { min-height: 110px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .contact-channel-grid { grid-template-columns: 1fr; }
  .contact-channel-grid a { min-height: 112px; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); grid-template-columns: 1fr; }
  .cookie-actions { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 430px) {
  .header-container { width: calc(100% - 24px); }
  .language-menu { display: none; }
  .home-hero-copy h1 { font-size: clamp(38px, 12.5vw, 44px); }
  .home-hero-copy,
  .hero-bottom,
  .hero-stats,
  .section-heading > *,
  .section-heading-aside { min-width: 0; }
  .home-hero-copy h1,
  .section-heading h2,
  .inner-hero-copy h1,
  .detail-hero-copy h1,
  .contact-hero-copy h1 { overflow-wrap: anywhere; hyphens: auto; }
  .hero-stats article:nth-child(n+3) { display: none; }
  .section-heading h2 { font-size: clamp(31px, 10vw, 35px); }
  .inner-hero-copy h1,
  .detail-hero-copy h1,
  .contact-hero-copy h1 { font-size: 43px; }
  .home-cta h2 { font-size: 45px; }
  .mobile-language-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-contacts { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .parallax-layer { transform: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}


/* Refinements: brighter surfaces, fixed project imagery and clearer hero content */
:root {
  --ink: #102743;
  --ink-2: #17375f;
  --ink-3: #225080;
  --text-light-soft: rgba(245, 249, 255, 0.82);
  --shadow-lg: 0 40px 120px rgba(8, 32, 70, 0.28);
}

.section-ink,
.section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(80, 137, 255, 0.28), transparent 31%),
    radial-gradient(circle at 92% 92%, rgba(83, 190, 255, 0.19), transparent 29%),
    linear-gradient(145deg, #17385f, #102743 72%);
}

.mega-intro {
  min-width: 0;
  background:
    radial-gradient(circle at 0 100%, rgba(93, 159, 255, 0.36), transparent 45%),
    linear-gradient(145deg, #204a79, #17375f);
}

.mega-intro h2 {
  max-width: 100%;
  font-size: clamp(20px, 1.25vw, 25px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  hyphens: auto;
}

.about-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 17px;
  background: linear-gradient(145deg, #edf4ff, #dce8ff);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(22, 76, 255, 0.08);
}

.about-menu-icon {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-about-grid .about-number {
  position: absolute;
  top: 22px;
  right: 22px;
  margin: 0;
}

.mega-about-grid .about-arrow {
  top: auto;
  right: 20px;
  bottom: 18px;
}

.mega-about-grid small {
  padding-right: 24px;
}

/* Home video keeps reliable muted autoplay; sound is enabled by the visible control. */
.hero-media-shade {
  background:
    linear-gradient(90deg, rgba(8, 24, 50, 0.78) 0%, rgba(8, 25, 54, 0.55) 38%, rgba(8, 25, 54, 0.12) 74%, rgba(8, 23, 48, 0.23) 100%),
    linear-gradient(0deg, rgba(8, 22, 47, 0.58) 0%, transparent 48%);
}

.hero-proof-panel {
  background: rgba(25, 58, 100, 0.58);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-proof-head {
  justify-content: flex-start;
}

.hero-video-sound {
  position: absolute;
  z-index: 8;
  top: 22px;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.video-sound {
  min-height: 44px;
  padding: 10px 15px;
  border-color: rgba(17, 54, 101, 0.14);
  background: rgba(250, 253, 255, 0.92);
  color: #15355e;
  font-size: 11px;
  box-shadow: 0 12px 34px rgba(5, 24, 55, 0.16);
  backdrop-filter: blur(16px) saturate(140%);
  transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.video-sound:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 42px rgba(5, 24, 55, 0.22);
}

.video-sound[hidden] {
  display: none;
}

.team-media.is-sequence-active {
  outline: 3px solid rgba(52, 116, 255, 0.36);
  outline-offset: 4px;
  box-shadow: 0 22px 58px rgba(22, 76, 255, 0.2);
}

.team-media:focus-visible {
  outline: 3px solid rgba(22, 76, 255, 0.44);
  outline-offset: 5px;
}

/* The image itself is fixed; section content scrolls above it until the next block covers it. */
.parallax-section {
  background: #dce7f4;
  color: var(--text);
}

.parallax-layer {
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transform: none;
  filter: saturate(0.94) brightness(1.04);
  will-change: auto;
}

.parallax-overlay,
.parallax-overlay-deep {
  background:
    linear-gradient(90deg, rgba(218, 232, 248, 0.35), rgba(235, 244, 253, 0.12) 52%, rgba(215, 231, 248, 0.24)),
    linear-gradient(0deg, rgba(18, 52, 91, 0.18), transparent 55%);
}

.parallax-content > .section-heading,
.process-intro {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background: rgba(249, 252, 255, 0.86);
  box-shadow: 0 22px 64px rgba(12, 39, 75, 0.14);
  backdrop-filter: blur(20px) saturate(125%);
}

.parallax-content .section-heading-light,
.parallax-content .section-heading-light h2,
.process-intro h2 {
  color: var(--text);
}

.parallax-content .section-heading-light .section-heading-aside p,
.process-intro > p:not(.eyebrow) {
  color: var(--text-soft);
}

.parallax-content .eyebrow-light {
  color: var(--blue);
}

.parallax-content .eyebrow-light > span {
  background: var(--blue);
}

.parallax-content .text-link-light {
  color: var(--blue);
  border-color: rgba(22, 76, 255, 0.24);
}

.glass-service-card,
.industry-home-card,
.process-step-card {
  border-color: rgba(17, 49, 91, 0.12);
  background: rgba(250, 253, 255, 0.86);
  color: var(--text);
  box-shadow: 0 16px 48px rgba(12, 39, 75, 0.12);
  backdrop-filter: blur(18px) saturate(125%);
}

.glass-service-card:hover,
.industry-home-card:hover {
  border-color: rgba(22, 76, 255, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(12, 39, 75, 0.18);
}

.glass-icon {
  background: rgba(22, 76, 255, 0.1);
  color: var(--blue);
}

.glass-service-card p,
.industry-home-card small,
.process-step-card p {
  color: var(--text-soft);
}

.glass-service-card > i,
.industry-home-card > i {
  color: var(--blue);
}

.industry-icon {
  stroke: var(--blue);
}

.process-intro {
  top: calc(var(--header-height) + 28px);
}

.process-step-list {
  border-top: 0;
}

.process-step-card {
  min-height: 160px;
  margin-bottom: 12px;
  padding: 30px;
  border: 1px solid rgba(17, 49, 91, 0.12);
  border-radius: 22px;
}

.process-step-card h3 {
  color: var(--text);
}

/* Internal hero images remain fully visible and fixed behind brighter content cards. */
.inner-hero,
.detail-hero,
.contact-hero,
.inner-hero-content,
.detail-hero-content,
.contact-hero-content {
  min-height: 720px;
}

.inner-hero,
.detail-hero,
.contact-hero {
  color: var(--text);
  background: #dce7f4;
}

.inner-hero-media,
.detail-hero-media,
.contact-hero-media {
  overflow: hidden;
  background: #dce7f4;
}

.inner-hero-media::before,
.detail-hero-media::before,
.contact-hero-media::before,
.inner-hero-media::after,
.detail-hero-media::after,
.contact-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  pointer-events: none;
}

.inner-hero-media::before,
.detail-hero-media::before,
.contact-hero-media::before {
  z-index: 0;
  inset: -4%;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(18px) saturate(0.86) brightness(1.06);
  opacity: 0.38;
  transform: scale(1.08);
}

.inner-hero-media::after,
.detail-hero-media::after,
.contact-hero-media::after {
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  filter: saturate(1.02) brightness(1.04);
}

.inner-hero-media img,
.detail-hero-media img,
.contact-hero-media img {
  z-index: -1;
  opacity: 0;
  object-fit: contain;
}

.inner-hero-media > div,
.detail-hero-media > div,
.contact-hero-media > div {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(233, 242, 252, 0.05), rgba(255, 255, 255, 0.01) 55%, rgba(225, 238, 251, 0.05)),
    linear-gradient(0deg, rgba(16, 47, 84, 0.04), transparent 52%);
}

.inner-hero-content,
.detail-hero-content,
.contact-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 26px;
  padding-bottom: 48px;
}

.breadcrumbs {
  width: fit-content;
  max-width: 100%;
  margin-bottom: auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(250, 253, 255, 0.88);
  box-shadow: 0 12px 34px rgba(11, 37, 72, 0.12);
  backdrop-filter: blur(16px) saturate(125%);
}

.breadcrumbs ol {
  color: #53657c;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.inner-hero-grid,
.detail-hero-grid,
.contact-hero-grid {
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(24px, 3.2vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.69), rgba(237, 245, 255, 0.57));
  box-shadow: 0 28px 80px rgba(9, 35, 70, 0.17);
  backdrop-filter: blur(16px) saturate(126%);
}

.inner-hero-copy,
.detail-hero-copy,
.contact-hero-copy {
  min-width: 0;
}

.inner-hero-copy h1,
.detail-hero-copy h1,
.contact-hero-copy h1 {
  max-width: 940px;
  font-size: clamp(44px, 5.45vw, 82px);
  line-height: 0.98;
  color: var(--text);
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.7);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.inner-hero-copy > p:not(.eyebrow),
.detail-hero-copy > p:not(.eyebrow),
.contact-hero-copy > p:not(.eyebrow) {
  color: #42556f;
  font-size: clamp(16px, 1.3vw, 20px);
}

.inner-hero .eyebrow-light,
.detail-hero .eyebrow-light,
.contact-hero .eyebrow-light {
  color: var(--blue);
}

.inner-hero .eyebrow-light > span,
.detail-hero .eyebrow-light > span,
.contact-hero .eyebrow-light > span {
  background: var(--blue);
}

.inner-hero .button-glass,
.detail-hero .button-glass,
.contact-hero .button-glass {
  border-color: rgba(22, 76, 255, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: #17375f;
  box-shadow: 0 10px 28px rgba(12, 39, 75, 0.09);
}

.inner-hero-card,
.detail-hero-card,
.contact-hero-note {
  min-height: 230px;
  border-color: rgba(22, 76, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.67), rgba(230, 240, 255, 0.55));
  color: var(--text);
  box-shadow: 0 18px 48px rgba(11, 37, 72, 0.12);
}

.inner-hero-card > div > p,
.inner-hero-card dd,
.detail-hero-card > div:last-child span,
.contact-hero-note p {
  color: var(--text-soft);
}

.inner-hero-card dl {
  border-top-color: rgba(17, 49, 91, 0.12);
}

.detail-hero-card {
  justify-content: space-between;
}

.detail-hero-card-icon {
  margin-bottom: 28px;
  background: rgba(22, 76, 255, 0.1);
  color: var(--blue);
}

.contact-hero-note > span {
  color: var(--blue);
}

.contact-hero-note strong {
  color: var(--text);
}

.contact-address {
  margin-bottom: 10px !important;
  color: var(--blue) !important;
  font-weight: 700;
}

/* Remaining dark areas stay premium navy, but no longer near-black. */
.ecosystem-card {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.cta-shade {
  background:
    linear-gradient(90deg, rgba(14, 39, 72, 0.78) 0%, rgba(15, 43, 80, 0.52) 52%, rgba(14, 37, 69, 0.18)),
    linear-gradient(0deg, rgba(13, 35, 66, 0.48), transparent 58%);
}

.site-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(62, 124, 255, 0.26), transparent 31%),
    radial-gradient(circle at 92% 100%, rgba(65, 183, 255, 0.14), transparent 29%),
    linear-gradient(145deg, #17365b 0%, #0d2039 58%, #102b4d 100%);
}

.contact-panel-card {
  background: linear-gradient(145deg, #183b67, #102743);
}

@media (max-width: 1140px) {
  .hero-video-sound {
    right: var(--gutter);
  }

  .inner-hero-grid,
  .detail-hero-grid,
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) 250px;
  }
}

@media (max-width: 900px) {
  .parallax-layer,
  .inner-hero-media::before,
  .detail-hero-media::before,
  .contact-hero-media::before,
  .inner-hero-media::after,
  .detail-hero-media::after,
  .contact-hero-media::after {
    background-attachment: scroll;
  }

  .inner-hero-media::after,
  .detail-hero-media::after,
  .contact-hero-media::after {
    background-position: center;
    background-size: contain;
  }

  .inner-hero-grid,
  .detail-hero-grid,
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .hero-video-sound {
    top: 14px;
    right: 14px;
  }

  .video-sound {
    min-height: 40px;
    padding: 9px 12px;
  }

  .hero-media-shade {
    background:
      linear-gradient(90deg, rgba(8, 24, 50, 0.82), rgba(8, 25, 54, 0.4)),
      linear-gradient(0deg, rgba(8, 22, 47, 0.62), transparent 60%);
  }

  .parallax-content > .section-heading,
  .process-intro {
    padding: 22px;
    border-radius: 22px;
  }

  .process-step-card {
    padding: 24px 20px;
  }

  .inner-hero,
  .detail-hero,
  .contact-hero,
  .inner-hero-content,
  .detail-hero-content,
  .contact-hero-content {
    min-height: 690px;
  }

  .inner-hero-content,
  .detail-hero-content,
  .contact-hero-content {
    padding-top: 18px;
    padding-bottom: 26px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
    padding: 8px 11px;
    border-radius: 18px;
  }

  .inner-hero-grid,
  .detail-hero-grid,
  .contact-hero-grid {
    gap: 22px;
    padding: 22px;
    border-radius: 24px;
  }

  .inner-hero-copy h1,
  .detail-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(38px, 11.5vw, 46px);
  }

  .inner-hero-card,
  .detail-hero-card,
  .contact-hero-note {
    min-height: 150px;
    max-width: none;
  }

  .inner-hero-card {
    display: none;
  }
}

@media (max-width: 430px) {
  .video-sound span {
    display: none;
  }

  .video-sound {
    width: 42px;
    padding-inline: 0;
    justify-content: center;
  }

  .inner-hero-copy h1,
  .detail-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(34px, 10.5vw, 40px);
  }

  .detail-hero-card,
  .contact-hero-note {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-layer,
  .inner-hero-media::before,
  .detail-hero-media::before,
  .contact-hero-media::before,
  .inner-hero-media::after,
  .detail-hero-media::after,
  .contact-hero-media::after {
    background-attachment: scroll;
  }
}

/* Final visual polish: full-bleed internal heroes and layered non-image surfaces. */
.inner-hero,
.detail-hero,
.contact-hero {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.inner-hero-media,
.detail-hero-media,
.contact-hero-media {
  width: 100%;
  max-width: none;
}

.solution-route-card,
.solution-catalog-card,
.item-catalog-card,
.service-catalog-card,
.industry-catalog-card,
.about-pillar-card,
.deliverable-card,
.related-card,
.mega-about-grid a,
.cookie-banner {
  background: var(--surface-light);
}

.mega-tabs,
.mega-industry-grid a,
.mobile-menu-panel,
.mega-menu-inner,
.language-popover {
  background:
    radial-gradient(circle at 92% 8%, rgba(72, 132, 255, 0.10), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f5f8ff 54%, #ebf2ff 100%);
}

.why-card,
.project-request-form {
  background:
    radial-gradient(circle at 92% 8%, rgba(72, 132, 255, 0.10), transparent 31%),
    linear-gradient(145deg, #edf3ff 0%, #f8fbff 48%, #e6efff 100%);
}

.contact-map-card {
  background:
    radial-gradient(circle at 90% 20%, rgba(65, 124, 255, 0.23), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f5f9ff 53%, #eaf2ff 100%);
}

@media (max-width: 900px) {
  .inner-hero-media::after,
  .detail-hero-media::after,
  .contact-hero-media::after {
    background-position: center;
    background-size: cover;
  }
}


/* Rich About detail pages and restored catalogue copy. */
.detail-overview-copy {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.72;
}

.about-detail-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(420px, 1.22fr);
  gap: clamp(54px, 8vw, 135px);
  align-items: start;
}

.about-detail-intro-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.about-detail-intro-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 4.9vw, 76px);
  line-height: .98;
  letter-spacing: -.052em;
}

.about-detail-prose {
  padding-top: 8px;
}

.about-detail-prose p {
  max-width: 840px;
  margin: 0 0 24px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.72;
}

.about-detail-prose .about-detail-source-copy {
  margin-bottom: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(36, 91, 214, .14);
  border-left: 4px solid var(--blue);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(71, 130, 255, .12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(235, 243, 255, .92));
  color: #20324f;
  font-weight: 720;
  box-shadow: 0 18px 45px rgba(24, 64, 126, .08);
}

.about-detail-subheading {
  margin: clamp(62px, 8vw, 110px) 0 28px;
}

.about-detail-subheading h3 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 16px;
}

.about-highlight-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(26, 77, 169, .12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(72, 137, 255, .15), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(235,243,255,.96));
  box-shadow: 0 20px 55px rgba(14, 47, 105, .08);
}

.about-highlight-card > span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
}

.about-highlight-card > div {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 15px;
  background: rgba(47, 103, 229, .09);
  color: var(--blue);
}

.about-highlight-card svg {
  width: 25px;
  height: 25px;
}

.about-highlight-card h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 1.85vw, 30px);
  line-height: 1.08;
}

.about-highlight-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.62;
}

.about-team-detail-section,
.about-process-detail-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(68, 129, 255, .24), transparent 31%),
    radial-gradient(circle at 94% 100%, rgba(65, 183, 255, .12), transparent 30%),
    linear-gradient(145deg, #17375e 0%, #0c203a 60%, #112d4f 100%);
}

.working-language-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.working-language-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid rgba(30, 82, 176, .13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(80, 143, 255, .17), transparent 39%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(234,243,255,.95));
  box-shadow: 0 20px 54px rgba(15, 50, 106, .08);
}

.working-language-card > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 55px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

.working-language-card h3 {
  margin: 0 0 13px;
  font-size: clamp(26px, 2.2vw, 36px);
}

.working-language-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.62;
}

.markets-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, .9fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(32px, 5vw, 70px);
  border: 1px solid rgba(25, 76, 167, .13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(65, 126, 255, .19), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(228,239,255,.95));
  box-shadow: 0 26px 74px rgba(16, 50, 107, .1);
}

.markets-panel h3 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.markets-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.68;
}

.market-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.market-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid rgba(36, 92, 200, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #253b5c;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 10px 25px rgba(18, 54, 111, .06);
}

.about-statement-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, .85fr);
  gap: clamp(50px, 8vw, 135px);
  align-items: end;
  padding: clamp(38px, 6vw, 82px);
  border: 1px solid rgba(27, 78, 172, .13);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(67, 130, 255, .18), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #edf4ff 56%, #e4efff 100%);
  box-shadow: 0 28px 80px rgba(16, 50, 107, .1);
}

.about-statement-panel h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .99;
  letter-spacing: -.05em;
}

.about-statement-panel > p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.66;
}

.about-closing-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(25, 77, 169, .13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 94% 10%, rgba(74, 137, 255, .16), transparent 33%),
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(232,241,255,.96));
  box-shadow: 0 24px 70px rgba(16, 50, 107, .09);
}

.about-closing-card > span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--blue);
  color: #fff;
}

.about-closing-card svg {
  width: 34px;
  height: 34px;
}

.about-closing-card h2 {
  max-width: 980px;
  margin: 0 0 15px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.about-closing-card p {
  max-width: 980px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .working-language-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .about-detail-intro-grid,
  .markets-panel,
  .about-statement-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-detail-intro-heading { position: static; }
  .about-highlight-card { min-height: 280px; }
}

@media (max-width: 620px) {
  .about-highlight-grid,
  .working-language-grid { grid-template-columns: 1fr; }
  .about-highlight-card,
  .working-language-card { min-height: 0; }
  .working-language-card > span { margin-bottom: 38px; }
  .markets-panel,
  .about-statement-panel,
  .about-closing-card { padding: 27px; border-radius: 24px; }
  .about-closing-card { grid-template-columns: 1fr; }
  .about-closing-card > span { width: 58px; height: 58px; }
}

@media print {
  .site-header,
  .mobile-menu,
  .floating-contact,
  .contact-panel,
  .cookie-banner,
  .video-sound,
  .site-footer { display: none !important; }
  body { color: #000; background: #fff; }
  .section,
  .inner-hero,
  .detail-hero,
  .contact-hero { padding: 30px 0; min-height: 0; color: #000; background: #fff; }
  .inner-hero-media,
  .detail-hero-media,
  .contact-hero-media { display: none; }
}

/* ==========================================================
   LEGAL PAGES AND PRIVACY CONTROLS
   ========================================================== */

.legal-main {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 3%, rgba(67, 128, 255, .15), transparent 31%),
    radial-gradient(circle at 94% 18%, rgba(88, 200, 255, .10), transparent 28%),
    linear-gradient(150deg, #f9fbff 0%, #edf4ff 48%, #f7faff 100%);
}

.legal-main::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 76, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 76, 255, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.legal-hero-grid {
  align-items: end;
}

.legal-version-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(26px, 3.2vw, 44px);
  border: 1px solid rgba(255, 255, 255, .38);
  background:
    radial-gradient(circle at 100% 0%, rgba(95, 161, 255, .34), transparent 42%),
    linear-gradient(145deg, rgba(5, 16, 36, .60), rgba(10, 35, 72, .44));
  box-shadow: 0 28px 75px rgba(1, 10, 30, .25);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.legal-version-card > span {
  margin-bottom: auto;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-version-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(25px, 2.25vw, 36px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.legal-version-card p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 27px;
  border: 1px solid rgba(25, 76, 167, .12);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0%, rgba(75, 137, 255, .14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(235, 243, 255, .94));
  box-shadow: 0 22px 60px rgba(14, 48, 105, .09);
  backdrop-filter: blur(16px);
}

.legal-toc .eyebrow {
  margin-bottom: 20px;
}

.legal-toc nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.legal-toc nav a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 11px 10px;
  border-radius: 12px;
  color: #344863;
  font-size: 13px;
  font-weight: 660;
  line-height: 1.38;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.legal-toc nav a span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.legal-toc nav a:hover,
.legal-toc nav a:focus-visible {
  background: rgba(255, 255, 255, .74);
  color: var(--blue);
  transform: translateX(3px);
}

.legal-contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid rgba(17, 57, 124, .11);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  word-break: break-word;
}

.legal-contact-link span {
  flex: 0 0 auto;
}

.legal-article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal-identity-card,
.legal-section-card {
  scroll-margin-top: calc(var(--header-height) + 28px);
  border: 1px solid rgba(26, 78, 169, .12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(81, 143, 255, .14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(239, 246, 255, .96));
  box-shadow: 0 24px 70px rgba(15, 48, 103, .085);
}

.legal-identity-card {
  padding: clamp(28px, 4.2vw, 56px);
}

.legal-card-heading {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 36px;
}

.legal-card-heading > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: linear-gradient(145deg, var(--blue-bright), #123fcf);
  color: #fff;
  box-shadow: 0 17px 38px rgba(22, 76, 255, .25);
}

.legal-card-heading svg {
  width: 29px;
  height: 29px;
}

.legal-card-heading h2 {
  margin: 0 0 11px;
  font-size: clamp(30px, 3.2vw, 47px);
}

.legal-card-heading > div > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.legal-identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(25, 75, 166, .11);
  border-radius: 20px;
  background: rgba(25, 75, 166, .11);
}

.legal-identity-grid > div {
  min-width: 0;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .83);
}

.legal-identity-grid dt {
  margin-bottom: 7px;
  color: #70809a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.legal-identity-grid dd {
  margin: 0;
  color: #172945;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.legal-identity-grid a {
  color: var(--blue);
}

.legal-section-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(22px, 3.5vw, 48px);
  padding: clamp(30px, 4.7vw, 64px);
}

.legal-section-index {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 76, 255, .16);
  border-radius: 18px;
  background: rgba(226, 237, 255, .72);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.legal-section-copy {
  min-width: 0;
}

.legal-section-copy h2 {
  max-width: 920px;
  margin: 4px 0 24px;
  font-size: clamp(29px, 3.25vw, 48px);
  line-height: 1.03;
}

.legal-section-copy p {
  max-width: 930px;
  margin: 0 0 17px;
  color: #4d5d75;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.72;
}

.legal-section-copy p:last-child {
  margin-bottom: 0;
}

.legal-section-copy ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section-copy li {
  position: relative;
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  color: #40516c;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.63;
}

.legal-section-copy li > span {
  width: 9px;
  height: 9px;
  margin-top: .5em;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(22, 76, 255, .09);
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 29px;
  border: 1px solid rgba(23, 73, 161, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
}

.legal-cookie-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  text-align: left;
}

.legal-cookie-table th,
.legal-cookie-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(23, 73, 161, .10);
  vertical-align: top;
}

.legal-cookie-table th {
  background: rgba(224, 235, 255, .62);
  color: #52627b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-cookie-table td {
  color: #43536d;
  font-size: 13px;
  line-height: 1.48;
}

.legal-cookie-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-cookie-table code {
  padding: 4px 7px;
  border-radius: 7px;
  background: #e9f0ff;
  color: #1945bf;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.cookie-status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 820;
  white-space: nowrap;
}

.cookie-status.is-required {
  background: rgba(28, 151, 93, .11);
  color: #11663f;
}

.cookie-status.is-optional {
  background: rgba(22, 76, 255, .10);
  color: #1948c7;
}

.cookie-status.is-disabled {
  background: rgba(77, 94, 120, .10);
  color: #5e6c80;
}

.legal-external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.legal-external-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(22, 76, 255, .14);
  border-radius: 12px;
  background: rgba(229, 238, 255, .65);
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  transition: background 160ms ease, transform 160ms ease;
}

.legal-external-links a:hover {
  background: rgba(216, 230, 255, .9);
  transform: translateY(-2px);
}

/* Footer legal navigation */
.footer-legal-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-legal-row > strong {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-legal-row nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 9px 22px;
}

.footer-legal-row a,
.footer-legal-row button {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 640;
  line-height: 1.45;
  text-align: left;
  transition: color 150ms ease;
}

.footer-legal-row a:hover,
.footer-legal-row button:hover,
.footer-legal-row a:focus-visible,
.footer-legal-row button:focus-visible {
  color: #fff;
}

/* Consent first layer */
.cookie-banner {
  position: fixed;
  z-index: 610;
  right: auto;
  left: 50%;
  bottom: 20px;
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 25px;
  background:
    radial-gradient(circle at 6% 0%, rgba(72, 135, 255, .16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(238, 245, 255, .97));
  box-shadow: 0 26px 90px rgba(3, 18, 49, .25);
  transform: translateX(-50%);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.cookie-banner[hidden],
.cookie-preferences[hidden] {
  display: none !important;
}

.cookie-banner-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
}

.cookie-banner-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--blue-bright), #163fce);
  color: #fff;
  box-shadow: 0 14px 32px rgba(22, 76, 255, .22);
}

.cookie-banner-icon svg {
  width: 24px;
  height: 24px;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
  color: #0d1d38;
  font-size: 17px;
  line-height: 1.2;
}

.cookie-banner p {
  max-width: 720px;
  margin: 0;
  color: #53637d;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-banner p a {
  color: var(--blue);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(22, 76, 255, .28);
  text-underline-offset: 3px;
}

.cookie-actions,
.cookie-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cookie-actions {
  justify-content: flex-end;
}

.cookie-actions .button,
.cookie-preferences-actions .button {
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 790;
  white-space: nowrap;
}

.cookie-action-primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.cookie-action-primary:hover {
  background: #0d3fd9;
}

.cookie-action-reject {
  border-color: #173867;
  background: #173867;
  color: #fff;
}

.cookie-action-reject:hover {
  background: #0e2a51;
}

.cookie-action-configure {
  border: 1px solid rgba(24, 62, 119, .15);
  background: rgba(255, 255, 255, .75);
  color: #1a3154;
}

.cookie-action-configure:hover {
  background: #fff;
}

/* Consent preferences dialog */
.cookie-preferences {
  position: fixed;
  z-index: 700;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-preferences-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 9, 24, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-preferences-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(860px, calc(100dvh - 40px));
  overflow-y: auto;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 29px;
  background:
    radial-gradient(circle at 100% 0%, rgba(76, 139, 255, .17), transparent 37%),
    linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow: 0 40px 130px rgba(0, 8, 30, .45);
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 76, 255, .32) transparent;
}

.cookie-preferences-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-right: 54px;
}

.cookie-preferences-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 50px);
}

.cookie-preferences-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 57, 117, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
  transition: background 150ms ease, transform 150ms ease;
}

.cookie-preferences-close:hover {
  background: #fff;
  transform: rotate(3deg);
}

.cookie-preferences-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #19345d;
}

.cookie-preferences-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cookie-preferences-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cookie-preferences-intro {
  max-width: 650px;
  margin: 22px 0 28px;
  color: #52617a;
  font-size: 15px;
  line-height: 1.65;
}

.cookie-category-list {
  display: grid;
  gap: 12px;
}

.cookie-category-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(25, 74, 161, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
}

.cookie-category-card.is-unavailable {
  opacity: .68;
}

.cookie-category-card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  letter-spacing: -.025em;
}

.cookie-category-card p {
  margin: 0;
  color: #5b6a81;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-required-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(24, 151, 91, .1);
  color: #10653e;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  flex: 0 0 auto;
  width: 56px;
  height: 32px;
}

.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-switch > span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #c9d3e4;
  box-shadow: inset 0 0 0 1px rgba(22, 55, 103, .08);
  transition: background 170ms ease;
}

.cookie-switch > span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(4, 21, 52, .22);
  transition: transform 170ms ease;
}

.cookie-switch input:checked + span {
  background: var(--blue);
}

.cookie-switch input:checked + span::after {
  transform: translateX(24px);
}

.cookie-switch input:focus-visible + span {
  outline: 3px solid rgba(22, 76, 255, .34);
  outline-offset: 4px;
}

.cookie-switch input:disabled + span {
  cursor: not-allowed;
  opacity: .65;
}

.cookie-preferences-actions {
  margin-top: 27px;
}

.cookie-preferences-foot {
  min-height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 21px;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 66, 137, .11);
  color: #60708a;
  font-size: 12px;
}

.cookie-preferences-foot a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 780;
}

.cookie-preferences-foot [role="status"] {
  min-height: 1.3em;
  text-align: right;
}

@media (max-width: 1080px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal-row {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .legal-version-card {
    min-height: 175px;
  }

  .legal-toc {
    padding: 22px;
    border-radius: 21px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-identity-card,
  .legal-section-card {
    border-radius: 23px;
  }

  .legal-card-heading {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 17px;
    margin-bottom: 27px;
  }

  .legal-card-heading > span {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .legal-identity-grid {
    grid-template-columns: 1fr;
  }

  .legal-section-card {
    grid-template-columns: 1fr;
  }

  .legal-section-index {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .legal-cookie-table {
    min-width: 0;
  }

  .legal-cookie-table thead {
    display: none;
  }

  .legal-cookie-table,
  .legal-cookie-table tbody,
  .legal-cookie-table tr,
  .legal-cookie-table td {
    display: block;
    width: 100%;
  }

  .legal-cookie-table tr {
    padding: 12px 0;
    border-bottom: 1px solid rgba(23, 73, 161, .12);
  }

  .legal-cookie-table tr:last-child {
    border-bottom: 0;
  }

  .legal-cookie-table td {
    display: grid;
    grid-template-columns: minmax(105px, .72fr) minmax(0, 1fr);
    gap: 12px;
    padding: 9px 15px;
    border: 0;
  }

  .legal-cookie-table td::before {
    content: attr(data-label);
    color: #718099;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .footer-legal-row {
    flex-direction: column;
  }

  .footer-legal-row nav {
    justify-content: flex-start;
  }

  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-banner-copy {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .cookie-banner-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .cookie-actions,
  .cookie-preferences-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cookie-actions .button,
  .cookie-preferences-actions .button {
    width: 100%;
    white-space: normal;
  }

  .cookie-preferences {
    align-items: end;
    padding: 10px;
  }

  .cookie-preferences-card {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 24px 19px 21px;
    border-radius: 24px;
  }

  .cookie-preferences-head {
    padding-right: 45px;
  }

  .cookie-preferences-close {
    top: 17px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .cookie-category-card {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cookie-category-card .cookie-switch,
  .cookie-required-badge {
    justify-self: start;
  }

  .cookie-preferences-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-preferences-foot [role="status"] {
    text-align: left;
  }
}

@media print {
  .cookie-preferences,
  .footer-legal-row { display: none !important; }
  .legal-layout { display: block; }
  .legal-toc { display: none; }
  .legal-identity-card,
  .legal-section-card { box-shadow: none; break-inside: avoid; }
}

.project-request-form .form-submit-row small a {
  color: var(--blue);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(22, 76, 255, .28);
  text-underline-offset: 3px;
}
