:root {
  --navy-950: #071923;
  --navy-925: #0a202e;
  --navy-900: #0e2638;
  --navy-850: #123047;
  --navy-800: #173b55;
  --navy-700: #234f6d;
  --blue-700: #2766aa;
  --blue-600: #347ccb;
  --blue-500: #4b91dc;
  --blue-100: #eaf3fc;
  --blue-050: #f3f8fd;
  --ink-950: #12212d;
  --ink-900: #1a2a36;
  --ink-800: #283b49;
  --ink-700: #415665;
  --ink-600: #5d707d;
  --ink-500: #758692;
  --line: #dbe4ea;
  --line-strong: #c6d2da;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --surface-blue: #eef5fb;
  --success: #2f8a68;
  --shadow-sm: 0 8px 30px rgba(14, 38, 56, 0.08);
  --shadow-md: 0 18px 55px rgba(14, 38, 56, 0.12);
  --shadow-lg: 0 32px 90px rgba(3, 19, 30, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --container-wide: 1360px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink-900);
  font-family: "Segoe UI Variable", "Aptos", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
main * { min-width: 0; }
h1, h2, h3, h4, p, li { overflow-wrap: break-word; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(52,124,203,.24); color: var(--ink-950); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink-950);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
h1 { font-size: clamp(3rem, 6vw, 5.75rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); }
h3 { font-size: 1.35rem; }
p { margin-bottom: 1.15rem; }
.lead { font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.58; color: var(--ink-700); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 48px), var(--container-wide)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-soft { background: var(--surface-soft); }
.section-navy { background: var(--navy-900); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.narrow { max-width: 780px; }
.centered { margin-inline: auto; text-align: center; }
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(75,145,220,.65); outline-offset: 3px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 99px; background: currentColor; }
.eyebrow-light { color: #78b4ef; }
.icon-svg { width: 1.2em; height: 1.2em; flex: 0 0 auto; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button .icon-svg { width: 18px; height: 18px; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover .icon-svg { transform: translateX(3px); }
.button-primary { background: var(--blue-700); color: #fff; box-shadow: 0 12px 35px rgba(52,124,203,.25); }
.button-primary:hover { background: var(--blue-600); box-shadow: 0 16px 44px rgba(52,124,203,.32); }
.button-ghost { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); color: #fff; }
.button-ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.button-light { background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.button-light:hover { background: var(--blue-050); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-weight: 720;
}
.arrow-link .icon-svg { width: 18px; height: 18px; transition: transform .2s ease; }
.arrow-link:hover .icon-svg { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: var(--navy-900);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 178px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.82); }
.primary-nav > a, .nav-group-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: .94rem;
  font-weight: 650;
  transition: background-color .2s ease, color .2s ease;
}
.primary-nav > a:hover, .nav-group-toggle:hover, .primary-nav > a[aria-current="page"], .nav-group-toggle[aria-current="page"] { background: rgba(255,255,255,.08); color: #fff; }
.nav-group { position: relative; }
.nav-group-toggle svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s ease; }
.nav-group.open .nav-group-toggle svg { transform: rotate(180deg); }
.subnav {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  display: grid;
  visibility: hidden;
  width: min(690px, 90vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
  color: var(--ink-900);
  opacity: 0;
  transform: translate(-42%, 8px);
  transition: visibility .2s ease, opacity .2s ease, transform .2s ease;
}
.subnav::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-group:hover .subnav, .nav-group:focus-within .subnav, .nav-group.open .subnav { visibility: visible; opacity: 1; transform: translate(-42%, 0); }
.subnav-compact { width: 420px; grid-template-columns: 1fr; transform: translate(-35%, 8px); }
.nav-group:hover .subnav-compact, .nav-group:focus-within .subnav-compact, .nav-group.open .subnav-compact { transform: translate(-35%, 0); }
.subnav a { display: flex; flex-direction: column; gap: 1px; padding: 12px 13px; border-radius: 9px; transition: background-color .2s ease; }
.subnav a:hover, .subnav a[aria-current="page"] { background: var(--blue-050); }
.subnav strong { color: var(--ink-950); font-size: .94rem; letter-spacing: -.01em; }
.subnav span { color: var(--ink-600); font-size: .8rem; line-height: 1.4; }
.primary-nav .nav-cta { margin-left: 7px; padding-inline: 17px; background: var(--blue-700); color: #fff; }
.primary-nav .nav-cta:hover, .primary-nav .nav-cta[aria-current="page"] { background: var(--blue-600); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 0; border-radius: 7px; background: rgba(255,255,255,.07); cursor: pointer; }
.nav-toggle span { width: 21px; height: 2px; border-radius: 99px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Home hero */
.hero { position: relative; overflow: hidden; background: var(--navy-900); color: #fff; }
.hero-home { min-height: 780px; padding: 94px 0 102px; }
.hero-grid-overlay, .page-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(94,159,219,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(94,159,219,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom right, rgba(0,0,0,.7), transparent 72%);
}
.hero-home::before { content: ""; position: absolute; width: 720px; height: 720px; top: -300px; left: -260px; border-radius: 50%; background: rgba(52,124,203,.13); filter: blur(6px); }
.hero-home::after { content: ""; position: absolute; width: 480px; height: 480px; right: -180px; bottom: -260px; border-radius: 50%; background: rgba(52,124,203,.12); filter: blur(20px); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr); gap: 78px; align-items: center; }
.hero-copy h1 { max-width: 780px; margin-bottom: 28px; color: #fff; font-size: clamp(3.9rem, 6.3vw, 6.2rem); letter-spacing: -.055em; }
.hero-copy h1 span { color: #73b2ef; }
.hero-lead { max-width: 720px; margin-bottom: 34px; color: rgba(238,246,251,.76); font-size: clamp(1.12rem, 1.7vw, 1.32rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 32px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.72); font-size: .92rem; }
.hero-proof li { display: flex; align-items: center; gap: 7px; }
.hero-proof .icon-svg { width: 17px; height: 17px; color: #76b6f0; }

.hero-architecture { position: relative; display: flex; flex-direction: column; align-items: center; padding: 24px 10px; }
.architecture-glow { position: absolute; inset: 14% 12%; border-radius: 50%; background: rgba(52,124,203,.23); filter: blur(70px); }
.architecture-card { position: relative; z-index: 1; width: min(100%, 470px); padding: 22px 24px; border: 1px solid rgba(126,185,237,.25); border-radius: 15px; background: linear-gradient(145deg, rgba(26,67,94,.96), rgba(12,35,51,.96)); box-shadow: 0 22px 60px rgba(0,0,0,.25); }
.architecture-card-partner { transform: translateX(-32px); }
.architecture-card-platform { transform: translateX(22px); border-color: rgba(75,145,220,.58); background: linear-gradient(145deg, rgba(39,102,170,.33), rgba(14,38,56,.96)); }
.architecture-card-infra { transform: translateX(-8px); }
.architecture-tag { margin-bottom: 8px; color: #73b2ef; font-size: .72rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.architecture-card > strong { display: block; margin-bottom: 5px; color: #fff; font-size: 1.23rem; }
.architecture-card > span { display: block; color: rgba(255,255,255,.66); font-size: .88rem; }
.architecture-domain { display: flex; align-items: center; gap: 9px; margin-top: 17px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; background: rgba(0,0,0,.15); color: rgba(255,255,255,.78); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .8rem; }
.architecture-domain span { width: 7px; height: 7px; border-radius: 50%; background: #5ac89a; box-shadow: 0 0 0 4px rgba(90,200,154,.12); }
.architecture-connector { position: relative; z-index: 1; width: 2px; height: 32px; background: linear-gradient(#4b91dc, rgba(75,145,220,.2)); }
.architecture-connector span { position: absolute; bottom: -1px; left: 50%; width: 8px; height: 8px; border-right: 2px solid #4b91dc; border-bottom: 2px solid #4b91dc; transform: translateX(-50%) rotate(45deg); }
.architecture-services { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.architecture-services span { padding: 5px 8px; border: 1px solid rgba(117,180,237,.22); border-radius: 5px; background: rgba(52,124,203,.12); color: #c9e4fb; font-size: .72rem; font-weight: 650; }
.architecture-metrics { display: grid; grid-template-columns: 1fr; gap: 7px; margin-top: 14px; }
.architecture-metrics span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.7); font-size: .8rem; }
.architecture-metrics b { display: inline-grid; width: 26px; height: 22px; place-items: center; border-radius: 4px; background: rgba(52,124,203,.2); color: #9dcaf3; font-size: .62rem; }

.trust-bar { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; min-height: 118px; align-items: center; gap: 15px; padding: 24px 26px; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-number { color: var(--blue-600); font-size: 1.55rem; font-weight: 780; letter-spacing: -.04em; }
.trust-grid div span:last-child { color: var(--ink-600); font-size: .84rem; line-height: 1.4; }

/* Shared sections */
.split-intro { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 90px; align-items: start; }
.split-intro h2 { max-width: 640px; margin-bottom: 0; }
.intro-copy { padding-top: 8px; }
.intro-copy .arrow-link { margin-top: 10px; }
.section-heading { margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 0; }
.heading-row { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 70px; align-items: end; }
.heading-row > p { margin-bottom: 6px; color: var(--ink-600); font-size: 1.05rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { position: relative; display: flex; min-height: 365px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { border-color: #aec8df; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.service-card-featured { grid-column: span 2; padding: 36px; background: linear-gradient(135deg, #fff, #edf6fe); }
.service-card-dark { border-color: transparent; background: var(--navy-900); color: rgba(255,255,255,.7); }
.service-card-dark h3 { color: #fff; }
.service-card-dark .service-icon { background: rgba(255,255,255,.08); color: #80baf0; }
.service-card-dark .service-kicker, .service-card-dark .arrow-link { color: #7fb8ee; }
.service-icon { display: grid; width: 52px; height: 52px; margin-bottom: 28px; place-items: center; border-radius: 11px; background: var(--blue-100); color: var(--blue-700); }
.service-icon .icon-svg { width: 26px; height: 26px; }
.service-kicker { margin-bottom: 8px; color: var(--blue-700); font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 13px; font-size: 1.65rem; }
.service-card p { color: var(--ink-600); }
.service-card-dark p { color: rgba(255,255,255,.65); }
.service-card .arrow-link { margin-top: auto; padding-top: 18px; }
.mini-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 5px 0 0; padding: 0; list-style: none; }
.mini-list li { padding: 5px 9px; border: 1px solid #ccdeec; border-radius: 999px; background: rgba(255,255,255,.72); color: var(--ink-700); font-size: .76rem; }

.process-section { overflow: hidden; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 66px 0 0; padding: 0; list-style: none; counter-reset: process; }
.process-grid::before { content: ""; position: absolute; top: 64px; left: 16%; right: 16%; height: 1px; background: linear-gradient(90deg, transparent, #bad3e7 15%, #bad3e7 85%, transparent); }
.process-grid li { position: relative; z-index: 1; padding: 30px 28px 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.process-number { position: absolute; top: 16px; right: 18px; color: #b8c9d5; font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.process-icon { display: grid; width: 66px; height: 66px; margin-bottom: 28px; place-items: center; border: 8px solid #fff; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); box-shadow: 0 0 0 1px var(--line); }
.process-icon .icon-svg { width: 26px; height: 26px; }
.process-grid h3 { margin-bottom: 12px; }
.process-grid p { margin-bottom: 0; color: var(--ink-600); }

.white-label-section { position: relative; overflow: hidden; }
.white-label-section::after { content: ""; position: absolute; top: -260px; right: -220px; width: 660px; height: 660px; border: 1px solid rgba(77,150,217,.17); border-radius: 50%; box-shadow: 0 0 0 80px rgba(77,150,217,.03), 0 0 0 160px rgba(77,150,217,.025); }
.white-label-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: 90px; align-items: center; }
.white-label-layout .lead { color: rgba(255,255,255,.72); }
.check-list { display: grid; gap: 13px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-700); }
.check-list .icon-svg { width: 19px; height: 19px; margin-top: 3px; color: var(--blue-600); }
.check-list-light li { color: rgba(255,255,255,.76); }
.check-list-light .icon-svg { color: #78b4ef; }
.brand-preview { overflow: hidden; border: 1px solid rgba(139,195,240,.26); border-radius: 18px; background: #f8fbfd; box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }
.browser-bar { display: flex; height: 42px; align-items: center; gap: 6px; padding: 0 14px; background: #e6edf2; }
.browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #a7b8c4; }
.browser-bar div { margin-left: 10px; padding: 4px 12px; border-radius: 5px; background: #fff; color: #71838f; font-family: ui-monospace, Consolas, monospace; font-size: .64rem; }
.brand-preview-body { display: grid; min-height: 300px; grid-template-columns: 105px 1fr; }
.brand-preview-sidebar { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 22px 14px; background: #102c40; }
.partner-logo-placeholder { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 9px; color: #fff; font-size: .55rem; font-weight: 750; line-height: 1.1; text-align: center; }
.brand-preview-sidebar > span { width: 58px; height: 7px; border-radius: 99px; background: rgba(255,255,255,.13); }
.brand-preview-sidebar > span:nth-of-type(2) { background: rgba(83,157,221,.55); }
.brand-preview-content { padding: 26px; color: var(--ink-900); }
.preview-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; }
.preview-header b { font-size: 1rem; }
.preview-header small { color: var(--ink-500); }
.preview-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.preview-cards > div { display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; column-gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.preview-cards i { grid-row: 1 / span 2; width: 28px; height: 28px; border-radius: 7px; background: var(--blue-100); }
.preview-cards b { font-size: .72rem; }
.preview-cards span { color: var(--success); font-size: .6rem; }
.preview-chart { display: flex; height: 100px; align-items: flex-end; gap: 9px; margin-top: 18px; padding: 16px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.preview-chart span { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(#72aee7, #347ccb); }
.preview-chart span:nth-child(1) { height: 32%; }.preview-chart span:nth-child(2) { height: 55%; }.preview-chart span:nth-child(3) { height: 42%; }.preview-chart span:nth-child(4) { height: 76%; }.preview-chart span:nth-child(5) { height: 62%; }.preview-chart span:nth-child(6) { height: 88%; }
.brand-preview-note { padding: 12px 18px; border-top: 1px solid var(--line); background: #eef4f8; color: var(--ink-600); font-size: .68rem; text-align: center; }

.infrastructure-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); gap: 78px; align-items: center; }
.infra-copy .lead { color: var(--ink-700); }
.infra-links { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 30px; }
.location-network { position: relative; min-height: 520px; overflow: hidden; border: 1px solid #d8e5ef; border-radius: 28px; background: radial-gradient(circle at 50% 50%, #fbfdff 0%, #f5f9fc 45%, #edf4f9 100%); box-shadow: 0 18px 46px rgba(14,38,56,.08); }
.location-network::before { content: ""; position: absolute; inset: 44px 58px; border: 1px dashed #c8dbea; border-radius: 50%; opacity: .95; }
.location-network::after { content: ""; position: absolute; z-index: 0; inset: 118px 145px; border: 1px solid #e2edf5; border-radius: 50%; }
.network-center { position: absolute; z-index: 4; top: 50%; left: 50%; display: grid; width: 126px; height: 126px; place-items: center; border: 10px solid #eef5fa; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #173a54 0%, var(--navy-900) 72%); color: #fff; box-shadow: 0 20px 46px rgba(14,38,56,.26); transform: translate(-50%,-50%); }
.network-center .icon-svg { width: 34px; height: 34px; color: #69aef0; }
.network-center span { margin-top: -14px; font-size: .98rem; font-weight: 800; letter-spacing: -.02em; }
.location-node { position: absolute; z-index: 3; width: 172px; min-height: 106px; padding: 18px 18px 15px; border: 1px solid #bdd6e9; border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: 0 12px 28px rgba(14,38,56,.09); }
.location-node i { position: absolute; top: 17px; right: 16px; color: var(--blue-600); }
.location-node i .icon-svg { width: 21px; height: 21px; }
.location-node strong, .location-node span, .location-node small { display: block; }
.location-node strong { margin-right: 30px; color: var(--ink-950); font-size: 1rem; line-height: 1.2; }
.location-node span { margin-top: 8px; color: var(--ink-600); font-size: .78rem; }
.location-node small { margin-top: 10px; color: var(--blue-700); font-size: .64rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.node-primary { top: 36px; left: 50%; border-color: #93bfe3; transform: translateX(-50%); }
.node-2 { top: 186px; right: 30px; }
.node-3 { right: 96px; bottom: 36px; }
.node-4 { bottom: 48px; left: 40px; }
.node-5 { top: 34px; left: 28px; }
.network-lines span { position: absolute; z-index: 1; top: 50%; left: 50%; height: 2px; background: linear-gradient(90deg, #6ea8da, #a9cae5); transform-origin: left center; }
.network-lines span::after { content: ""; position: absolute; top: 50%; right: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-600); transform: translateY(-50%); box-shadow: 0 0 0 4px rgba(52,124,203,.08); }
.network-lines span:nth-child(1) { width: 148px; transform: rotate(-90deg); }
.network-lines span:nth-child(2) { width: 188px; transform: rotate(7deg); }
.network-lines span:nth-child(3) { width: 166px; transform: rotate(52deg); }
.network-lines span:nth-child(4) { width: 176px; transform: rotate(145deg); }
.network-lines span:nth-child(5) { width: 186px; transform: rotate(-145deg); }

.fit-layout { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; align-items: stretch; }
.fit-layout > div:first-child { padding-right: 30px; }
.fit-layout > div:first-child h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.fit-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.fit-card h3 { margin-bottom: 22px; }
.fit-card ul { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.fit-card li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-700); }
.fit-card .icon-svg { width: 19px; height: 19px; margin-top: 3px; color: var(--success); }
.fit-neutral { background: #eef3f6; }
.fit-neutral li span { color: var(--ink-500); font-weight: 800; }

.faq-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 88px; align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 38px); }
.faq-heading h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
.faq-heading > p { color: var(--ink-600); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 46px 22px 0; color: var(--ink-950); cursor: pointer; font-size: 1.12rem; font-weight: 680; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; right: 5px; width: 17px; height: 2px; border-radius: 99px; background: var(--blue-600); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details > div { padding: 0 52px 22px 0; color: var(--ink-600); }
.faq-list details > div p { margin: 0; }

.cta-section { padding: 40px 0 0; background: #fff; }
.cta-box { position: relative; display: grid; min-height: 290px; grid-template-columns: minmax(0, 1fr) auto; gap: 70px; align-items: center; overflow: hidden; padding: 58px 64px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: linear-gradient(130deg, #102d42, #0e2638 58%, #164a72); color: #fff; }
.cta-box::after { content: ""; position: absolute; right: -110px; top: -130px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.018); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { max-width: 760px; margin-bottom: 13px; color: #fff; font-size: clamp(2rem, 3.7vw, 3.45rem); }
.cta-box p { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.7); }
.cta-actions { display: flex; min-width: 260px; flex-direction: column; align-items: stretch; gap: 14px; }
.cta-phone { color: rgba(255,255,255,.76); font-size: .93rem; font-weight: 650; text-align: center; }
.cta-phone:hover { color: #fff; }

/* Page heroes */
.page-hero, .article-hero, .legal-hero { position: relative; overflow: hidden; padding: 55px 0 88px; background: var(--navy-900); color: #fff; }
.page-hero::after, .article-hero::after, .legal-hero::after { content: ""; position: absolute; width: 500px; height: 500px; top: -280px; right: -150px; border-radius: 50%; background: rgba(52,124,203,.14); }
.page-hero .container, .article-hero .container, .legal-hero .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 48px; font-size: .78rem; }
.breadcrumbs a { color: inherit; transition: color .2s ease; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255,255,255,.4); }
.breadcrumbs span[aria-current="page"] { color: rgba(255,255,255,.7); }
.standard-hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr); gap: 80px; align-items: end; }
.standard-hero-layout h1, .service-hero-layout h1 { max-width: 900px; margin-bottom: 22px; color: #fff; font-size: clamp(3.1rem, 5.6vw, 5.35rem); }
.page-hero-lead { max-width: 790px; margin-bottom: 32px; color: rgba(255,255,255,.72); font-size: clamp(1.15rem, 1.9vw, 1.38rem); line-height: 1.62; }
.hero-aside-card { padding: 26px; border: 1px solid rgba(133,190,239,.25); border-radius: 15px; background: rgba(23,59,85,.62); color: rgba(255,255,255,.72); box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.hero-aside-card strong { display: block; margin-bottom: 8px; color: #fff; font-size: 1.18rem; }
.hero-aside-card p:last-child { margin-bottom: 0; }
.service-hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr); gap: 76px; align-items: end; }
.service-facts { padding: 27px; border: 1px solid rgba(133,190,239,.25); border-radius: 16px; background: rgba(22,59,85,.68); box-shadow: 0 22px 60px rgba(0,0,0,.18); }
.service-fact-icon { display: grid; width: 48px; height: 48px; margin-bottom: 22px; place-items: center; border-radius: 10px; background: rgba(86,158,221,.16); color: #8dc2f1; }
.service-fact-icon .icon-svg { width: 24px; height: 24px; }
.service-fact-label { margin-bottom: 15px; color: #fff; font-size: .82rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.service-facts ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.service-facts li { display: flex; align-items: flex-start; gap: 9px; color: rgba(255,255,255,.7); font-size: .9rem; }
.service-facts li .icon-svg { width: 17px; height: 17px; margin-top: 3px; color: #7fb8ee; }

.feature-grid { display: grid; gap: 18px; }
.feature-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.feature-icon { display: grid; width: 48px; height: 48px; margin-bottom: 25px; place-items: center; border-radius: 10px; background: var(--blue-100); color: var(--blue-700); }
.feature-icon .icon-svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { margin-bottom: 0; color: var(--ink-600); }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .55fr); gap: 90px; align-items: center; }
.detail-main h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
.example-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-md); }
.example-card-top { display: flex; height: 38px; align-items: center; gap: 6px; padding: 0 13px; background: #e8eef2; }
.example-card-top span { width: 8px; height: 8px; border-radius: 50%; background: #a8bac6; }
.example-card-body { min-height: 220px; padding: 34px; background: linear-gradient(145deg, #fff, #f4f9fc); }
.example-card-body small { display: block; margin-bottom: 10px; color: var(--ink-500); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.example-card-body > strong { display: block; color: var(--navy-900); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: clamp(1rem, 2vw, 1.35rem); overflow-wrap: anywhere; }
.example-line { width: 90%; height: 9px; margin-top: 30px; border-radius: 99px; background: #dce7ee; }
.example-line.short { width: 63%; margin-top: 10px; }
.example-status { display: flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--success); font-size: .82rem; font-weight: 700; }
.example-status i { width: 9px; height: 9px; border-radius: 50%; background: #52b98d; box-shadow: 0 0 0 5px rgba(82,185,141,.14); }
.example-card-footer { padding: 13px 20px; border-top: 1px solid var(--line); background: #eef4f7; color: var(--ink-600); font-size: .68rem; text-align: center; }

.operations-layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 90px; align-items: start; }
.operations-layout > div:first-child { position: sticky; top: calc(var(--header-height) + 40px); }
.operations-layout .lead { color: rgba(255,255,255,.7); }
.operations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.operations-grid article { position: relative; min-height: 230px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.045); }
.operations-grid article > span { display: block; margin-bottom: 35px; color: #78b4ef; font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.operations-grid h3 { margin-bottom: 12px; color: #fff; }
.operations-grid p { margin-bottom: 0; color: rgba(255,255,255,.62); }
.note-section { padding-top: 80px; padding-bottom: 80px; }
.note-card { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: start; padding: 42px; border: 1px solid #bed6e7; border-radius: var(--radius-md); background: var(--blue-050); }
.note-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 12px; background: var(--blue-100); color: var(--blue-700); }
.note-icon .icon-svg { width: 28px; height: 28px; }
.note-card h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.note-card p:last-child { margin-bottom: 0; color: var(--ink-600); }
.related-section { padding: 72px 0; border-top: 1px solid var(--line); background: var(--surface-soft); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.related-grid a { position: relative; display: flex; min-height: 140px; flex-direction: column; justify-content: center; padding: 24px 58px 24px 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.related-grid a:hover { border-color: #a8c5dc; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.related-grid span { margin-bottom: 7px; color: var(--blue-700); font-size: .68rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.related-grid strong { color: var(--ink-950); font-size: 1.05rem; line-height: 1.35; }
.related-grid .icon-svg { position: absolute; right: 22px; bottom: 22px; width: 18px; height: 18px; color: var(--blue-600); }

/* Generic standard-page components */
.content-section { padding: 105px 0; }
.content-section-soft { background: var(--surface-soft); }
.content-section-navy { background: var(--navy-900); color: #fff; }
.content-section-navy h2, .content-section-navy h3 { color: #fff; }
.two-column { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 84px; align-items: start; }
.two-column.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.content-copy h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.content-copy p { color: var(--ink-600); }
.content-copy .lead { color: var(--ink-700); }
.content-section-navy .content-copy p, .content-section-navy .lead { color: rgba(255,255,255,.68); }
.stat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-card { padding: 27px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.stat-card strong { display: block; margin-bottom: 7px; color: var(--blue-600); font-size: 1.7rem; letter-spacing: -.04em; }
.stat-card span { color: var(--ink-600); font-size: .9rem; }
.info-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.info-panel h3 { margin-bottom: 18px; }
.info-panel p:last-child { margin-bottom: 0; }
.info-panel ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.info-panel li { display: flex; gap: 10px; color: var(--ink-700); }
.info-panel li .icon-svg { width: 18px; height: 18px; margin-top: 4px; color: var(--blue-600); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.card-grid .content-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.content-card .feature-icon { margin-bottom: 24px; }
.content-card h3 { margin-bottom: 12px; }
.content-card p { margin-bottom: 0; color: var(--ink-600); }
.responsibility-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.responsibility-row { display: grid; grid-template-columns: .72fr 1fr 1fr; border-top: 1px solid var(--line); }
.responsibility-row:first-child { border-top: 0; background: var(--navy-900); color: #fff; }
.responsibility-row > div { padding: 18px 22px; border-left: 1px solid var(--line); }
.responsibility-row:first-child > div { border-color: rgba(255,255,255,.12); font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.responsibility-row > div:first-child { border-left: 0; font-weight: 680; }
.responsibility-row:not(:first-child) > div:not(:first-child) { color: var(--ink-600); }
.timeline { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 24px; bottom: 24px; left: 25px; width: 1px; background: #a8c7df; }
.timeline li { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding-bottom: 30px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline span { position: relative; z-index: 1; display: grid; width: 52px; height: 52px; place-items: center; border: 6px solid #fff; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); font-size: .72rem; font-weight: 800; box-shadow: 0 0 0 1px var(--line); }
.timeline h3 { margin: 5px 0 7px; }
.timeline p { margin-bottom: 0; color: var(--ink-600); }
.location-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.location-card { padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.location-card.primary { border-color: #99c1e2; background: var(--blue-050); }
.location-card .location-flag { margin-bottom: 25px; color: var(--blue-600); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.location-card h3 { margin-bottom: 6px; }
.location-card p { margin-bottom: 0; color: var(--ink-600); font-size: .9rem; }
.tech-strip { display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.tech-strip > div { min-height: 150px; padding: 24px; border-left: 1px solid var(--line); }
.tech-strip > div:first-child { border-left: 0; }
.tech-strip strong { display: block; margin-bottom: 8px; color: var(--ink-950); }
.tech-strip span { color: var(--ink-600); font-size: .82rem; }
.sla-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sla-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.sla-card.featured { border-color: #86b5df; box-shadow: var(--shadow-md); }
.sla-card .sla-label { margin-bottom: 12px; color: var(--blue-700); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sla-card h3 { font-size: 1.7rem; }
.sla-card > p { color: var(--ink-600); }
.sla-card ul { display: grid; gap: 11px; margin: 24px 0 0; padding: 0; list-style: none; }
.sla-card li { display: flex; gap: 9px; color: var(--ink-700); font-size: .9rem; }
.sla-card li .icon-svg { width: 17px; height: 17px; margin-top: 3px; color: var(--blue-600); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card { display: flex; min-height: 230px; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.contact-card .feature-icon { margin-bottom: 24px; }
.contact-card h3 { margin-bottom: 9px; }
.contact-card p { color: var(--ink-600); }
.contact-card > a { margin-top: auto; color: var(--blue-700); font-size: 1.05rem; font-weight: 750; }
.article-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.article-card { display: flex; min-height: 315px; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.article-card:hover { border-color: #a5c4dc; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.article-card .article-category { margin-bottom: 18px; color: var(--blue-700); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2, .article-card h3 { margin-bottom: 15px; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.article-card p { color: var(--ink-600); }
.article-card .arrow-link { margin-top: auto; }

/* Articles */
.article-hero { padding-bottom: 95px; }
.article-hero-inner { max-width: 980px; }
.article-hero h1 { max-width: 930px; margin-bottom: 26px; color: #fff; font-size: clamp(3rem, 5.5vw, 5.1rem); }
.article-deck { max-width: 830px; color: rgba(255,255,255,.72); font-size: clamp(1.16rem, 2vw, 1.42rem); line-height: 1.6; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: rgba(255,255,255,.55); font-size: .78rem; }
.article-meta span + span::before { content: "·"; margin-right: 22px; color: rgba(255,255,255,.3); }
.article-section { padding: 86px 0 110px; }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 790px); gap: 80px; justify-content: center; align-items: start; }
.article-toc { position: sticky; top: calc(var(--header-height) + 34px); padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.article-toc > strong { display: block; margin-bottom: 13px; color: var(--ink-950); font-size: .85rem; }
.article-toc nav { display: grid; gap: 9px; }
.article-toc nav a { color: var(--ink-600); font-size: .78rem; line-height: 1.4; }
.article-toc nav a:hover { color: var(--blue-700); }
.toc-cta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.toc-cta span { display: block; margin-bottom: 5px; color: var(--ink-500); font-size: .7rem; }
.toc-cta a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-700); font-size: .76rem; font-weight: 700; }
.toc-cta .icon-svg { width: 15px; height: 15px; }
.article-content { color: var(--ink-800); font-size: 1.05rem; }
.article-content > p:first-child { color: var(--ink-700); font-size: 1.26rem; line-height: 1.65; }
.article-content h2 { margin: 64px 0 22px; font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
.article-content h3 { margin: 38px 0 14px; font-size: 1.45rem; }
.article-content p { margin-bottom: 1.35rem; }
.article-content ul, .article-content ol { display: grid; gap: 9px; margin: 0 0 1.5rem; padding-left: 1.4rem; }
.article-content a { color: var(--blue-700); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content blockquote { margin: 36px 0; padding: 26px 30px; border-left: 4px solid var(--blue-600); border-radius: 0 10px 10px 0; background: var(--blue-050); color: var(--ink-800); font-size: 1.15rem; }
.article-content .article-callout { margin: 36px 0; padding: 28px; border: 1px solid #b9d4e8; border-radius: 12px; background: var(--blue-050); }
.article-content .article-callout strong { display: block; margin-bottom: 8px; color: var(--ink-950); }
.article-content .article-callout p:last-child { margin-bottom: 0; }
.article-content .comparison-table { width: 100%; margin: 32px 0; border-collapse: collapse; border: 1px solid var(--line); font-size: .92rem; }
.article-content .comparison-table th, .article-content .comparison-table td { padding: 13px 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-content .comparison-table th { background: var(--navy-900); color: #fff; font-size: .76rem; letter-spacing: .04em; }
.article-content .comparison-table td { color: var(--ink-700); }
.article-author { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: center; margin-top: 72px; padding-top: 30px; border-top: 1px solid var(--line); }
.article-author img { width: 64px; height: 64px; }
.article-author strong { color: var(--ink-950); font-size: 1.1rem; }
.article-author p { margin: 4px 0 0; color: var(--ink-600); font-size: .87rem; }

/* Legal */
.legal-hero { padding-bottom: 72px; }
.legal-hero h1 { margin-bottom: 16px; color: #fff; font-size: clamp(3rem, 5vw, 4.9rem); }
.legal-hero p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.7); font-size: 1.18rem; }
.legal-section { padding: 80px 0 110px; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 800px); gap: 78px; justify-content: center; align-items: start; }
.legal-layout > aside { position: sticky; top: calc(var(--header-height) + 34px); padding: 21px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.legal-layout > aside > strong { display: block; margin-bottom: 14px; color: var(--ink-950); }
.legal-layout > aside nav { display: grid; gap: 8px; }
.legal-layout > aside a { color: var(--ink-600); font-size: .78rem; }
.legal-layout > aside a:hover { color: var(--blue-700); }
.legal-content h2 { margin: 48px 0 14px; font-size: 1.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 30px 0 12px; font-size: 1.25rem; }
.legal-content p, .legal-content li { color: var(--ink-700); }
.legal-content a { color: var(--blue-700); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { display: grid; gap: 7px; padding-left: 1.25rem; }
.legal-note { padding: 22px 24px; border: 1px solid #bdd6e8; border-radius: 10px; background: var(--blue-050); }
.legal-date { margin-top: 54px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink-500) !important; font-size: .82rem; }

.notfound { display: grid; min-height: calc(100vh - var(--header-height)); place-items: center; padding: 100px 0; background: var(--navy-900); color: #fff; text-align: center; }
.notfound .container { max-width: 760px; }
.notfound img { margin: 0 auto 26px; }
.notfound h1 { margin-bottom: 18px; color: #fff; }
.notfound p { color: rgba(255,255,255,.68); font-size: 1.18rem; }
.notfound .hero-actions { justify-content: center; margin-top: 30px; }

.content-card .arrow-link { margin-top: 18px; }
.info-panel li > span { color: var(--blue-600); font-weight: 800; }

/* Footer */
.site-footer { padding-top: 90px; background: var(--navy-950); color: rgba(255,255,255,.63); }
.footer-top { display: grid; grid-template-columns: 1.45fr .85fr .85fr 1fr; gap: 56px; padding-bottom: 65px; }
.footer-brand img { width: 175px; }
.footer-brand p { max-width: 330px; margin: 22px 0 16px; font-size: .92rem; }
.footer-mail { color: #84bbed; font-weight: 700; }
.footer-top h2 { margin-bottom: 20px; color: #fff; font-size: .76rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.footer-top ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-top a { transition: color .2s ease; }
.footer-top a:hover { color: #fff; }
.footer-top address { margin-top: 22px; color: rgba(255,255,255,.43); font-size: .78rem; font-style: normal; line-height: 1.65; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 75px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.4); font-size: .74rem; }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1120px) {
  :root { --header-height: 70px; }
  .container, .container-wide { width: min(calc(100% - 36px), var(--container)); }
  .nav-toggle { display: flex; }
  .primary-nav { position: fixed; inset: var(--header-height) 0 0 0; display: block; visibility: hidden; max-height: none; overflow-y: auto; padding: 20px; border-top: 1px solid rgba(255,255,255,.08); background: var(--navy-900); opacity: 0; transform: translateY(-10px); transition: visibility .2s ease, opacity .2s ease, transform .2s ease; }
  .primary-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav > a, .nav-group-toggle { width: 100%; min-height: 50px; justify-content: space-between; padding-inline: 14px; }
  .primary-nav .nav-cta { margin: 14px 0 0; justify-content: center; }
  .nav-group { width: 100%; }
  .subnav, .subnav-compact { position: static; display: none; visibility: visible; width: 100%; grid-template-columns: 1fr; margin: 0 0 10px; padding: 7px; border-color: rgba(255,255,255,.1); background: rgba(0,0,0,.13); box-shadow: none; color: #fff; opacity: 1; transform: none !important; }
  .nav-group.open .subnav { display: grid; }
  .subnav a:hover, .subnav a[aria-current="page"] { background: rgba(255,255,255,.07); }
  .subnav strong { color: #fff; }
  .subnav span { color: rgba(255,255,255,.55); }
  .hero-layout { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 820px; }
  .hero-architecture { width: min(100%, 650px); margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-card-featured { grid-column: span 2; }
  .white-label-layout, .infrastructure-layout { grid-template-columns: 1fr; }
  .brand-preview { width: min(100%, 700px); margin-inline: auto; transform: none; }
  .location-network { width: min(100%, 680px); margin-inline: auto; }
  .fit-layout { grid-template-columns: 1fr 1fr; }
  .fit-layout > div:first-child { grid-column: span 2; padding-right: 0; }
  .service-hero-layout, .standard-hero-layout { grid-template-columns: 1fr; gap: 46px; }
  .service-facts, .hero-aside-card { max-width: 620px; }
  .feature-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .operations-layout { grid-template-columns: 1fr; gap: 50px; }
  .operations-layout > div:first-child { position: static; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top > div:last-child { grid-column: 2 / span 2; }
  .tech-strip { grid-template-columns: repeat(3,1fr); }
  .tech-strip > div:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .tech-strip > div:nth-child(5) { border-top: 1px solid var(--line); }
  .location-cards { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .section { padding: 84px 0; }
  .hero-home { min-height: auto; padding: 76px 0 84px; }
  .hero-copy h1 { font-size: clamp(3.25rem, 13vw, 5rem); }
  .hero-architecture { padding-inline: 0; }
  .architecture-card-partner, .architecture-card-platform, .architecture-card-infra { transform: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 92px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-grid > div:first-child { border-top: 0; }
  .split-intro, .heading-row, .two-column, .two-column.reverse, .detail-layout, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .faq-heading { position: static; }
  .service-grid, .process-grid, .feature-grid-3, .card-grid, .sla-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: auto; }
  .process-grid::before { display: none; }
  .fit-layout { grid-template-columns: 1fr; }
  .fit-layout > div:first-child { grid-column: auto; }
  .brand-preview-body { grid-template-columns: 78px 1fr; }
  .preview-cards { grid-template-columns: 1fr; }
  .location-network { min-height: 560px; }
  .location-network::after { inset: 132px 120px; }
  .node-primary { top: 28px; }
  .node-2 { top: 188px; right: 18px; }
  .node-3 { bottom: 40px; right: 36px; }
  .node-4 { bottom: 54px; left: 24px; }
  .node-5 { top: 56px; left: 18px; }
  .cta-box { grid-template-columns: 1fr; gap: 36px; padding: 48px 36px; }
  .cta-actions { min-width: 0; width: min(100%, 360px); }
  .operations-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .responsibility-row { grid-template-columns: 1fr; }
  .responsibility-row > div { border-left: 0; border-top: 1px solid var(--line); }
  .responsibility-row > div:first-child { border-top: 0; background: var(--surface-soft); }
  .responsibility-row:first-child { display: none; }
  .article-layout, .legal-layout { grid-template-columns: 1fr; gap: 42px; }
  .article-toc, .legal-layout > aside { position: static; }
  .article-card-grid, .contact-grid { grid-template-columns: 1fr; }
  .article-meta span + span::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-top > div:last-child { grid-column: auto; }
  .tech-strip { grid-template-columns: repeat(2,1fr); }
  .tech-strip > div:nth-child(3), .tech-strip > div:nth-child(5) { border-left: 0; border-top: 1px solid var(--line); }
  .tech-strip > div:nth-child(4) { border-left: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .container, .container-wide { width: min(calc(100% - 28px), var(--container)); }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .brand img { width: 154px; }
  .hero-home { padding-top: 62px; }
  h1, h2, h3 { hyphens: auto; overflow-wrap: anywhere; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .architecture-card { padding: 19px; }
  .service-card, .service-card-featured { min-height: 0; padding: 25px; }
  .white-label-layout { gap: 54px; }
  .brand-preview { border-radius: 12px; }
  .brand-preview-content { padding: 18px; }
  .brand-preview-sidebar { padding-inline: 9px; }
  .preview-chart { gap: 5px; }
  .location-network { min-height: 660px; }
  .location-network::before, .location-network::after, .network-lines { display: none; }
  .network-center { top: 50%; width: 108px; height: 108px; }
  .location-node { width: 148px; min-width: 0; min-height: 92px; padding: 14px 14px 12px; }
  .location-node strong { font-size: .9rem; }
  .node-primary { top: 22px; }
  .node-2 { top: 160px; right: 12px; }
  .node-3 { bottom: 32px; right: 12px; }
  .node-4 { bottom: 122px; left: 12px; }
  .node-5 { top: 210px; left: 12px; }
  .page-hero, .article-hero, .legal-hero { padding: 40px 0 68px; }
  .breadcrumbs { margin-bottom: 34px; }
  .standard-hero-layout h1, .service-hero-layout h1, .article-hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .service-facts, .hero-aside-card { padding: 23px; }
  .note-card { grid-template-columns: 1fr; padding: 30px; }
  .example-card-body { padding: 27px; }
  .faq-list summary { min-height: 68px; padding: 18px 42px 18px 0; font-size: 1rem; }
  .faq-list details > div { padding-right: 36px; }
  .cta-box { padding: 40px 24px; border-radius: 20px 20px 0 0; }
  .article-section, .legal-section { padding: 65px 0 84px; }
  .article-content { font-size: 1rem; }
  .article-content .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }
  .article-author { grid-template-columns: 1fr; }
  .location-cards, .stat-cards, .sla-grid, .footer-top, .tech-strip { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-top > div:last-child { grid-column: auto; }
  .tech-strip > div { border-left: 0 !important; border-top: 1px solid var(--line); }
  .tech-strip > div:first-child { border-top: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .site-footer, .cta-section, .article-toc { display: none !important; }
  body { color: #000; }
  .section, .article-section, .legal-section { padding: 20px 0; }
  .article-layout, .legal-layout { display: block; }
}


/* Bilingual language switch */
.language-switch { display:flex; align-items:center; gap:2px; margin:0 1px 0 3px; padding:0 2px; color:rgba(255,255,255,.34); font-size:.70rem; font-weight:700; letter-spacing:.045em; }
.language-switch a { display:inline-flex; align-items:center; justify-content:center; min-width:22px; height:29px; padding:0 2px; border-radius:6px; color:rgba(255,255,255,.62); transition:background-color .2s ease,color .2s ease; }
.language-switch a:hover { background:rgba(255,255,255,.08); color:#fff; }
.language-switch a[aria-current="page"] { color:#fff; background:rgba(255,255,255,.09); }
@media (max-width:1120px) { .language-switch { justify-content:flex-start; margin:12px 0 2px; padding:0 14px; height:42px; } .language-switch a { min-width:38px; height:36px; } }
