:root {
  --navy-950: #04101f;
  --navy-900: #071326;
  --navy-850: #0a1930;
  --navy-800: #0b1f3a;
  --navy-700: #12345a;
  --blue-600: #155eef;
  --blue-500: #2d7cff;
  --blue-300: #76a9ff;
  --pearl: #f7f4ec;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #102039;
  --slate: #56667b;
  --line: #dce4ef;
  --line-dark: rgba(220, 230, 242, 0.18);
  --gold: #c9a45d;
  --gold-bright: #f3c96d;
  --success: #16826c;
  --shadow-sm: 0 12px 30px rgba(6, 19, 38, 0.08);
  --shadow-md: 0 24px 70px rgba(6, 19, 38, 0.14);
  --shadow-blue: 0 18px 50px rgba(21, 94, 239, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --max-width: 1240px;
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 4.85rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h3 {
  font-size: clamp(1.22rem, 3vw, 1.55rem);
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--gold-bright);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--pearl);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section-tight {
  padding: 58px 0;
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(21, 94, 239, 0.18), transparent 34%),
    var(--navy-900);
  color: var(--pearl);
}

.section-blue {
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 124, 255, 0.16), transparent 28%),
    #eef4ff;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .section-kicker,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-bright);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.05rem;
}

.section-dark .section-heading p {
  color: #bdcadb;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-weight: 800;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(5px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.btn-primary {
  border-color: #4a91ff;
  background: linear-gradient(135deg, var(--blue-600), #104cc2);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 21px 58px rgba(21, 94, 239, 0.36);
}

.btn-gold {
  border-color: var(--gold);
  background: rgba(7, 19, 38, 0.52);
  color: var(--gold-bright);
}

.btn-gold:hover {
  background: rgba(201, 164, 93, 0.12);
}

.btn-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.btn-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.9rem;
}

.icon-arrow {
  font-size: 1.2rem;
  line-height: 1;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 12px 0;
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.scrolled {
  padding: 7px 0;
  background: rgba(4, 16, 31, 0.9);
  box-shadow: 0 10px 40px rgba(1, 8, 18, 0.24);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px 9px 15px;
  border: 1px solid rgba(220, 230, 242, 0.2);
  border-radius: 19px;
  background: rgba(7, 19, 38, 0.55);
  box-shadow: 0 18px 55px rgba(2, 10, 24, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 1 auto;
  line-height: 0;
}

.brand img {
  width: clamp(176px, 42vw, 224px);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 230, 242, 0.22);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 3px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  position: absolute;
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 110px 24px 32px;
  background: rgba(4, 16, 31, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-link {
  position: relative;
  display: block;
  padding: 12px 16px;
  color: #dce6f2;
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 16px;
  bottom: 8px;
  left: 16px;
  height: 2px;
  background: var(--blue-300);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.desktop-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 52px;
  background:
    radial-gradient(circle at 18% 18%, rgba(21, 94, 239, 0.34), transparent 32%),
    linear-gradient(120deg, var(--navy-950), var(--navy-900) 55%, #0b2550);
  color: var(--pearl);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(4, 16, 31, 0.92) 0%, rgba(4, 16, 31, 0.56) 48%, rgba(4, 16, 31, 0.08) 100%),
    url("hero-connected-horizons.webp");
  background-position: center, 64% center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 600ms var(--ease);
}

.hero-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.06) 60%, rgba(7, 19, 38, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(220, 230, 242, 0.025) 80px);
  content: "";
}

.hero-orbit {
  position: absolute;
  top: 21%;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(118, 169, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(45, 124, 255, 0.08);
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(201, 164, 93, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-orbit::after {
  inset: 25%;
  border-color: rgba(118, 169, 255, 0.18);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  gap: 30px;
}

.hero-copy {
  max-width: 710px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--pearl);
  font-weight: 800;
  text-wrap: balance;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: #c6d2e0;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.62;
}

.hero-proof {
  position: relative;
  z-index: 3;
  margin-top: 42px;
  padding: 10px;
  border: 1px solid rgba(220, 230, 242, 0.25);
  border-radius: 20px;
  background: rgba(6, 21, 42, 0.66);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.proof-item {
  min-width: 0;
  padding: 15px 12px;
  text-align: center;
}

.proof-value {
  display: block;
  color: var(--pearl);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 7px;
  color: #b9c7d8;
  font-size: 0.76rem;
  line-height: 1.35;
}

.network-panel {
  position: relative;
  min-height: 300px;
  display: none;
}

.network-node {
  position: absolute;
  z-index: 4;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 2px solid var(--pearl);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow:
    0 0 0 7px rgba(243, 201, 109, 0.13),
    0 0 28px rgba(243, 201, 109, 0.76);
  transition: transform 180ms var(--ease), box-shadow 180ms ease;
}

.network-node::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(243, 201, 109, 0.55);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  animation: node-pulse 2.6s ease-out infinite;
}

.network-node:hover,
.network-node:focus-visible,
.network-node.active {
  z-index: 5;
  transform: scale(1.35);
  box-shadow:
    0 0 0 9px rgba(45, 124, 255, 0.18),
    0 0 32px rgba(118, 169, 255, 0.9);
}

.node-abu-dhabi {
  top: 63%;
  right: 13%;
}

.node-riyadh {
  top: 57%;
  right: 27%;
}

.node-doha {
  top: 51%;
  right: 11%;
}

.node-amman {
  top: 26%;
  right: 39%;
}

.node-cairo {
  top: 40%;
  right: 58%;
}

.market-readout {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 260px;
  padding: 13px 16px;
  border: 1px solid rgba(220, 230, 242, 0.22);
  border-radius: 13px;
  background: rgba(4, 16, 31, 0.78);
  color: #c8d4e2;
  font-size: 0.86rem;
  backdrop-filter: blur(12px);
}

.market-readout strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-bright);
}

@keyframes node-pulse {
  0% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.45);
  }
  75%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.intro-grid {
  display: grid;
  gap: 34px;
}

.intro-copy h2 {
  margin-bottom: 18px;
}

.intro-copy p {
  color: var(--slate);
  font-size: 1.05rem;
}

.signal-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.signal-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 0 0 100%;
  background: linear-gradient(135deg, rgba(21, 94, 239, 0.08), rgba(201, 164, 93, 0.18));
  content: "";
}

.signal-card h3 {
  margin-bottom: 14px;
}

.signal-list,
.check-list,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li,
.check-list li,
.feature-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
}

.signal-list li:last-child,
.check-list li:last-child,
.feature-list li:last-child {
  border-bottom: 0;
}

.signal-list li::before,
.check-list li::before,
.feature-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(21, 94, 239, 0.11);
  color: var(--blue-600);
  content: "\2713";
  font-size: 0.68rem;
  font-weight: 900;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.card:hover {
  border-color: rgba(21, 94, 239, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-600);
  font-family: Manrope, Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(21, 94, 239, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, #eff5ff, #ffffff);
  color: var(--blue-600);
  font-size: 1.3rem;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 20px;
  color: var(--slate);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .text-link {
  margin-top: auto;
}

.navigator {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 20%, rgba(45, 124, 255, 0.23), transparent 30%),
    var(--navy-850);
  box-shadow: 0 30px 90px rgba(2, 10, 24, 0.27);
}

.navigator-grid {
  display: grid;
}

.navigator-options {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.navigator-option {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: #b9c8d9;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.navigator-option strong {
  display: block;
  margin-bottom: 3px;
  color: var(--pearl);
}

.navigator-option.active,
.navigator-option:hover {
  border-color: rgba(118, 169, 255, 0.26);
  background: rgba(45, 124, 255, 0.13);
  color: #dce6f2;
}

.navigator-option.active strong {
  color: var(--gold-bright);
}

.navigator-content {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 24px;
}

.navigator-content h3 {
  margin-bottom: 13px;
  color: var(--pearl);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.navigator-content p {
  max-width: 610px;
  color: #bdcadb;
}

.navigator-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 8px 0 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 5px 10px;
  border: 1px solid rgba(220, 230, 242, 0.16);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  color: #cfdae8;
  font-size: 0.78rem;
  font-weight: 700;
}

.split-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

.reason-grid {
  display: grid;
  gap: 13px;
}

.reason {
  padding: 20px;
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.reason h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.reason p {
  color: var(--slate);
  font-size: 0.93rem;
}

.process-grid {
  display: grid;
  gap: 16px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 26px 24px 25px 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  counter-increment: steps;
}

.process-step::before {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-bright);
  content: "0" counter(steps);
  font-family: Manrope, Inter, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  color: var(--slate);
  font-size: 0.92rem;
}

.region-grid {
  display: grid;
  gap: 14px;
}

.region-card {
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.region-card .region-code {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.region-card h3 {
  margin-bottom: 10px;
  color: var(--pearl);
}

.region-card p {
  color: #bdcadb;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--navy-900);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-600);
  content: "+";
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 48px 24px 0;
  color: var(--slate);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 36px 26px;
  border: 1px solid rgba(220, 230, 242, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 83% 0%, rgba(45, 124, 255, 0.32), transparent 31%),
    linear-gradient(135deg, var(--navy-900), #0d2b55);
  box-shadow: 0 30px 90px rgba(2, 10, 24, 0.28);
  color: var(--pearl);
}

.cta-panel::after {
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(201, 164, 93, 0.22);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 14px;
}

.cta-panel p {
  max-width: 690px;
  margin-bottom: 25px;
  color: #c6d2e0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 78px;
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.96), rgba(4, 16, 31, 0.64)),
    url("hero-connected-horizons.webp") center 45% / cover no-repeat;
  color: var(--pearl);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 62%, var(--navy-900)),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(220, 230, 242, 0.025) 90px);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #c6d2e0;
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: #adbed1;
  font-size: 0.8rem;
}

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

.breadcrumbs span[aria-hidden="true"] {
  color: var(--gold);
}

.about-lead {
  color: var(--navy-800);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.55;
}

.fact-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  box-shadow: var(--shadow-md);
}

.fact {
  padding: 22px;
  background: var(--white);
}

.fact strong {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-600);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.05rem;
}

.fact span {
  color: var(--slate);
  font-size: 0.9rem;
}

.approach-list {
  display: grid;
  gap: 15px;
}

.approach-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.approach-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.approach-index {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
}

.approach-title h3 {
  margin-bottom: 0;
}

.approach-item > p {
  color: var(--slate);
}

.service-jump {
  position: relative;
  z-index: 5;
  margin-top: -28px;
}

.service-jump-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  scrollbar-width: thin;
}

.service-jump a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-radius: 9px;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-jump a:hover,
.service-jump a:focus-visible {
  background: #edf4ff;
  color: var(--blue-600);
}

.service-detail-grid {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  scroll-margin-top: 120px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-detail-head {
  padding: 28px 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(45, 124, 255, 0.2), transparent 31%),
    var(--navy-900);
  color: var(--pearl);
}

.service-detail-head .service-id {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-detail-head h2 {
  margin-bottom: 13px;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
}

.service-detail-head p {
  max-width: 750px;
  color: #c1cfdf;
}

.service-detail-body {
  display: grid;
  gap: 24px;
  padding: 26px 24px;
}

.service-detail-body h3 {
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 8px 11px;
  border: 1px solid #cdddf8;
  border-radius: 100px;
  background: #f2f6ff;
  color: #174a9b;
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 13px;
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.contact-card p,
.contact-card address {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
  font-style: normal;
}

.contact-card a {
  color: var(--blue-600);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
}

.form-intro {
  margin-bottom: 25px;
  color: var(--slate);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  border: 1px solid #cfd9e7;
  border-radius: 10px;
  background: #fbfcff;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.11);
}

.form-note {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 0.78rem;
}

.form-status {
  min-height: 25px;
  margin-top: 13px;
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 800;
}

.location-panel {
  display: grid;
  gap: 25px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(4, 16, 31, 0.95), rgba(10, 38, 78, 0.9)),
    url("hero-connected-horizons.webp") 68% center / cover;
  box-shadow: 0 30px 90px rgba(2, 10, 24, 0.26);
  color: var(--pearl);
}

.location-panel h2 {
  margin-bottom: 12px;
}

.location-panel p {
  color: #c5d2e1;
}

.map-pin {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(220, 230, 242, 0.24);
  border-radius: 50%;
  background: rgba(21, 94, 239, 0.15);
  box-shadow: 0 0 0 20px rgba(21, 94, 239, 0.07);
  color: var(--gold-bright);
  font-size: 2rem;
  font-weight: 900;
}

.site-footer {
  overflow: hidden;
  padding: 62px 0 22px;
  background: var(--navy-950);
  color: #bdcadb;
}

.footer-grid {
  display: grid;
  gap: 34px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 430px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badge {
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  color: #d4dfeb;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-column h2 {
  margin-bottom: 17px;
  color: var(--pearl);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  font-style: normal;
}

.footer-contact a {
  color: var(--gold-bright);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #8596ab;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 230, 242, 0.24);
  border-radius: 50%;
  background: rgba(7, 19, 38, 0.9);
  box-shadow: 0 12px 35px rgba(2, 10, 24, 0.25);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.94), rgba(4, 16, 31, 0.66)),
    url("hero-connected-horizons.webp") center / cover;
  color: var(--pearl);
  text-align: center;
}

.not-found-inner {
  max-width: 650px;
}

.error-code {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(4rem, 20vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
}

@media (min-width: 600px) {
  .container {
    width: min(calc(100% - 56px), var(--max-width));
  }

  .section {
    padding: 96px 0;
  }

  .section-tight {
    padding: 72px 0;
  }

  .card-grid,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-body {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .form-grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .location-panel {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 820px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    padding: 18px 0;
  }

  .nav-shell {
    min-height: 70px;
    padding: 8px 10px 8px 22px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    z-index: auto;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    padding: 10px 13px;
    font-size: 0.9rem;
  }

  .nav-link::after {
    right: 13px;
    bottom: 6px;
    left: 13px;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .hero {
    min-height: 840px;
    padding: 155px 0 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    align-items: center;
    gap: 12px;
  }

  .network-panel {
    display: block;
  }

  .hero-proof {
    margin-top: 52px;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-item + .proof-item {
    border-left: 1px solid rgba(220, 230, 242, 0.18);
  }

  .intro-grid,
  .split-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 64px;
    align-items: center;
  }

  .card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.services {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .card-grid.services .service-card {
    grid-column: span 2;
  }

  .card-grid.services .service-card:nth-child(4),
  .card-grid.services .service-card:nth-child(5) {
    grid-column: span 3;
  }

  .navigator-grid {
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  }

  .navigator-options {
    padding: 24px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .navigator-content {
    min-height: 420px;
    padding: 48px;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: minmax(300px, 1.5fr) 0.7fr 0.9fr;
  }
}

@media (min-width: 1080px) {
  .nav-link {
    padding-inline: 18px;
  }

  .nav-link::after {
    right: 18px;
    left: 18px;
  }

  .hero-art {
    background-position: center, 72% center;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 6vw, 5.35rem);
  }

  .hero-proof {
    padding: 12px 18px;
  }

  .proof-item {
    padding: 16px 20px;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-detail-head {
    padding: 38px 40px;
  }

  .service-detail-body {
    padding: 36px 40px 40px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 158px;
  }

  .hero .button-row .btn {
    width: 100%;
  }

  .proof-item {
    padding-inline: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .back-to-top,
  .hero-orbit,
  .network-panel,
  .button-row {
    display: none !important;
  }

  .hero,
  .page-hero,
  .section-dark,
  .cta-panel {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .hero *,
  .page-hero *,
  .section-dark *,
  .cta-panel * {
    color: #000000 !important;
  }

  .section {
    padding: 32px 0;
  }
}
