:root {
  --navy-950: #03101c;
  --navy-900: #071827;
  --navy-800: #0b2236;
  --navy-700: #12324d;
  --cyan: #19c3e6;
  --cyan-dark: #0796b7;
  --gold: #e7b94b;
  --white: #f7fbff;
  --text: #d9e8f3;
  --muted: #92a9b9;
  --line: rgba(174, 217, 241, .14);
  --surface: rgba(11, 34, 54, .74);
  --shadow: 0 24px 80px rgba(0, 0, 0, .28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: var(--navy-950);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  position: relative;
  isolation: isolate;
  font-family: Tahoma, Arial, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(25, 195, 230, .11), transparent 25rem),
    radial-gradient(circle at 95% 25%, rgba(231, 185, 75, .07), transparent 22rem),
    var(--navy-950);
  line-height: 1.75;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
}
body::before {
  z-index: -2;
  inset: -14%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='480' height='480' viewBox='0 0 480 480'%3E%3Cg fill='none' stroke='%2319c3e6' stroke-opacity='.48' stroke-width='1.15'%3E%3Cpath d='M0 62h92v46h88v72h104v-58h196M48 0v74h46M0 286h74v-54h92v82h126v-48h116v-70h72M214 480v-74h-62v-58H54v48H0M480 392h-72v44h-86v44M326 0v46h72v72h82'/%3E%3Cpath stroke-dasharray='5 10' d='M0 168h54v48h76M480 330h-92v-42h-54M250 0v86h-34v40M116 480v-54h-52'/%3E%3C/g%3E%3Cg fill='%2319c3e6' fill-opacity='.82'%3E%3Ccircle cx='92' cy='62' r='3'/%3E%3Ccircle cx='180' cy='108' r='3'/%3E%3Ccircle cx='284' cy='180' r='3'/%3E%3Ccircle cx='166' cy='286' r='3'/%3E%3Ccircle cx='292' cy='314' r='3'/%3E%3Ccircle cx='408' cy='392' r='3'/%3E%3Ccircle cx='326' cy='46' r='3'/%3E%3C/g%3E%3Cg fill='none' stroke='%23e7b94b' stroke-opacity='.54' stroke-width='1.2'%3E%3Ccircle cx='94' cy='108' r='7'/%3E%3Ccircle cx='408' cy='196' r='6'/%3E%3Ccircle cx='152' cy='406' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 480px 480px;
  opacity: .42;
  filter:
    drop-shadow(0 0 4px rgba(25,195,230,.34))
    drop-shadow(0 0 12px rgba(25,195,230,.12));
  box-shadow: inset 0 0 140px rgba(25,195,230,.07);
  will-change: transform, opacity;
  animation: circuitDrift 34s linear infinite alternate;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.42));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.42));
}
body::after {
  z-index: -1;
  inset: -4%;
  background:
    radial-gradient(circle at 14% 22%, rgba(103,231,255,.72) 0 1.5px, rgba(25,195,230,.2) 2px, transparent 5px),
    radial-gradient(circle at 82% 34%, rgba(255,214,111,.58) 0 1.5px, rgba(231,185,75,.16) 2px, transparent 5px),
    radial-gradient(circle at 62% 76%, rgba(103,231,255,.62) 0 1.5px, rgba(25,195,230,.18) 2px, transparent 5px),
    linear-gradient(105deg, transparent 43%, rgba(25,195,230,.065) 50%, transparent 57%);
  background-size: 170px 170px, 235px 235px, 290px 290px, 100% 100%;
  opacity: .82;
  filter: drop-shadow(0 0 8px rgba(25,195,230,.22));
  will-change: transform, opacity;
  animation: circuitPulse 7s ease-in-out infinite;
}

html[lang="en"] body { font-family: 'Segoe UI', Arial, sans-serif; }
[data-lang="en"] { display: none !important; }
html[lang="en"] [data-lang="en"] { display: inline !important; }
html[lang="en"] [data-lang="ar"] { display: none !important; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

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

.skip-link {
  position: fixed;
  top: 8px;
  inset-inline-start: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--cyan);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.utility-bar {
  position: relative;
  z-index: 110;
  min-height: 34px;
  display: flex;
  align-items: center;
  color: #bdd0dc;
  background: #020b13;
  border-bottom: 1px solid var(--line);
  font-size: .76rem;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility-links { display: flex; align-items: center; gap: 18px; }
.utility-links a { text-decoration: none; }
.utility-links a:hover { color: var(--cyan); }
.live-status { display: inline-flex; align-items: center; gap: 7px; }
.live-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35df8b;
  box-shadow: 0 0 12px #35df8b;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(3, 16, 28, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(140%);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand img {
  width: 156px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(25, 195, 230, .2));
  animation: logoBreath 5s ease-in-out infinite;
}
.brand-copy { display: none; line-height: 1.2; }
.brand-name { color: var(--white); font-weight: 800; font-size: .98rem; }
.brand-tag { color: var(--gold); font-size: .62rem; letter-spacing: .12em; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.desktop-nav a {
  padding: 8px 9px;
  color: #abc0cf;
  border-radius: 9px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--white); background: rgba(25, 195, 230, .1); }
.desktop-nav a.active { box-shadow: inset 0 -2px var(--cyan); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button,
.lang-button,
.menu-button,
.install-button {
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
}
.lang-button { min-width: 44px; color: var(--cyan); font-weight: 800; }
.install-button {
  display: none;
  padding-inline: 14px;
  color: var(--navy-950);
  background: var(--gold);
  font-size: .78rem;
  font-weight: 800;
}
.menu-button {
  display: none;
  width: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.mobile-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  width: min(88vw, 380px);
  padding: 22px;
  background: #071827;
  border-inline-start: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform .28s ease;
  overflow-y: auto;
}
html[dir="rtl"] .mobile-drawer { transform: translateX(-110%); }
.mobile-drawer.open { transform: translateX(0) !important; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.drawer-nav { display: grid; gap: 7px; }
.drawer-nav a {
  padding: 12px 14px;
  color: #c2d4df;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
.drawer-nav a.active { color: var(--white); border-color: var(--line); background: rgba(25, 195, 230, .09); }
.drawer-contact { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.drawer-contact a { text-decoration: none; color: var(--muted); }
.page-overlay {
  position: fixed;
  z-index: 190;
  inset: 0;
  background: rgba(0, 7, 13, .72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}
.page-overlay.show { opacity: 1; visibility: visible; }

.mobile-bottom-nav { display: none; }

.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: grid;
  align-items: center;
  padding: clamp(64px, 8vw, 110px) 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 30% 40%, rgba(25,195,230,.13), transparent 24%),
    radial-gradient(circle at 72% 58%, rgba(231,185,75,.08), transparent 22%);
  animation: auroraMove 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  inset-inline-start: -260px;
  bottom: -230px;
  border: 1px solid rgba(25, 195, 230, .2);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(25, 195, 230, .08);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--cyan); }
.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 5.3vw, 5rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-brand-logo {
  position: relative;
  width: min(310px, 72vw);
  margin-bottom: 24px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid rgba(25,195,230,.18);
  border-radius: 18px;
  background: rgba(3,16,28,.44);
  box-shadow: 0 18px 55px rgba(0,0,0,.22), 0 0 40px rgba(25,195,230,.06);
  animation: logoFloat 5.5s ease-in-out infinite;
}
.hero-brand-logo img { width: 100%; height: auto; filter: drop-shadow(0 0 18px rgba(25,195,230,.25)); }
.hero-brand-logo::before {
  content: "";
  position: absolute;
  inset: -80% auto -80% -35%;
  width: 22%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  animation: logoShine 4.8s ease-in-out infinite;
}
.hero-brand-logo::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 9px;
  inset-inline-end: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
  animation: signalPulse 2.2s ease-in-out infinite;
}
.hero h1 strong { color: var(--cyan); font-weight: inherit; }
.hero-lead {
  max-width: 650px;
  margin: 24px 0 30px;
  color: #a9becd;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.9;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s, border-color .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #00131c; background: linear-gradient(135deg, #3ad4ef, var(--cyan)); box-shadow: 0 13px 35px rgba(25, 195, 230, .2); }
.button-secondary { color: var(--white); border-color: var(--line); background: rgba(255, 255, 255, .035); }
.button-gold { color: #1c1402; background: var(--gold); }

.hero-media {
  position: relative;
  min-width: 0;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -12px 18px 18px -12px;
  border: 1px solid rgba(25, 195, 230, .22);
  border-radius: var(--radius-lg);
}
.floating-metric {
  position: absolute;
  inset-inline-start: -28px;
  bottom: 28px;
  max-width: 210px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(3, 16, 28, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.metric-value { color: var(--white); font-size: 1.45rem; font-weight: 800; line-height: 1.2; }
.metric-label { color: var(--muted); font-size: .75rem; }

.trust-strip { padding: 22px 0; background: rgba(255, 255, 255, .025); border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 10px 24px; border-inline-end: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-value { display: block; color: var(--white); font-size: 1.45rem; font-weight: 800; }
.trust-label { color: var(--muted); font-size: .78rem; }

.section {
  padding: clamp(70px, 9vw, 120px) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}
.section-soft { background: rgba(255, 255, 255, .022); border-block: 1px solid rgba(255, 255, 255, .04); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  line-height: 1.2;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.section-intro { margin: 0; color: var(--muted); font-size: 1rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(14, 43, 67, .72), rgba(6, 25, 40, .72));
  transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(25, 195, 230, .38); }
.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(25, 195, 230, .09);
  border: 1px solid rgba(25, 195, 230, .17);
  font-size: 1.35rem;
}
.card-visual {
  width: calc(100% + 56px);
  max-width: none;
  height: 190px;
  margin: -28px -28px 22px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform .55s ease, filter .55s ease;
}
html[dir="ltr"] .card-visual { margin-right: -28px; margin-left: -28px; }
.card { overflow: hidden; }
.card:hover .card-visual { transform: scale(1.035); filter: saturate(1.1) contrast(1.03); }
.card h3 { margin: 0 0 10px; color: var(--white); font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); font-size: .88rem; }
.card-link { display: inline-flex; margin-top: 18px; color: var(--cyan); text-decoration: none; font-size: .82rem; font-weight: 800; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(34px, 7vw, 80px); align-items: center; }
.media-frame { position: relative; min-width: 0; }
.media-frame img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-frame::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1; border: 1px solid rgba(231, 185, 75, .24); border-radius: var(--radius-lg); }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-inline-start: 30px; color: #c0d2de; }
.check-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--cyan); font-weight: 900; }

.page-hero {
  position: relative;
  padding: clamp(72px, 10vw, 130px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,16,28,.98), rgba(3,16,28,.64)), var(--page-image) center / cover;
  opacity: .88;
}
html[dir="rtl"] .page-hero::before { background: linear-gradient(270deg, rgba(3,16,28,.98), rgba(3,16,28,.64)), var(--page-image) center / cover; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { max-width: 720px; margin: 20px 0 0; color: #b2c6d3; font-size: 1.05rem; }
.breadcrumbs { margin-bottom: 18px; color: var(--cyan); font-size: .78rem; font-weight: 800; }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.bento .card { grid-column: span 4; }
.bento .wide { grid-column: span 8; }
.bento .half { grid-column: span 6; }

.process { counter-reset: process; display: grid; gap: 14px; }
.process-step { counter-increment: process; display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.025); }
.process-step::before { content: counter(process, decimal-leading-zero); width: 54px; height: 54px; display: grid; place-items: center; color: var(--navy-950); background: var(--cyan); border-radius: 14px; font-weight: 900; }
.process-step h3 { margin: 2px 0 5px; color: var(--white); }
.process-step p { margin: 0; color: var(--muted); }

.sector-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.sector-card { min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(160deg, rgba(25,195,230,.08), rgba(11,34,54,.62)); }
.sector-card { overflow: hidden; }
.sector-card > span:first-child { font-size: 1.7rem; }
.sector-image {
  width: calc(100% + 48px);
  max-width: none;
  height: 205px;
  margin: -24px -24px 18px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform .55s ease;
}
.sector-card:hover .sector-image { transform: scale(1.04); }
.sector-card h3 { margin: 12px 0 4px; color: var(--white); }
.sector-card p { margin: 0; color: var(--muted); font-size: .82rem; }

.clients-home { overflow: hidden; }
.clients-home-action { justify-content: center; margin-top: 30px; }
.client-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  padding: 10px 0 16px;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
}
.client-marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-950), transparent); }
.client-marquee::after { right: 0; background: linear-gradient(-90deg, var(--navy-950), transparent); }
.section-soft .client-marquee::before { background: linear-gradient(90deg, #04121f, transparent); }
.section-soft .client-marquee::after { background: linear-gradient(-90deg, #04121f, transparent); }
.client-marquee-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: clientFlow 42s linear infinite;
}
.client-marquee:hover .client-marquee-track { animation-play-state: paused; }
.client-marquee-group { display: flex; gap: 14px; padding-inline-end: 14px; }
.client-logo-tile {
  position: relative;
  width: 190px;
  height: 116px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5px 8px;
  border: 1px solid rgba(207,225,235,.75);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #edf3f6);
  box-shadow: 0 14px 35px rgba(0,0,0,.2);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}
.client-logo-tile::after {
  content: "";
  position: absolute;
  inset: -70% auto -70% -42%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  transform: skewX(-18deg);
  animation: clientShine 7s ease-in-out infinite;
}
.client-logo-tile:hover { transform: translateY(-5px) scale(1.025); box-shadow: 0 20px 45px rgba(25,195,230,.17); filter: saturate(1.08); }
.client-logo-tile img { width: 116%; max-width: none; height: 116%; object-fit: contain; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.client-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: block;
  padding: 10px;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(15,43,65,.9), rgba(5,21,34,.94));
  box-shadow: 0 18px 55px rgba(0,0,0,.2);
  text-decoration: none;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.client-card::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
  background-size: 220% 100%;
  animation: clientSignal 5s linear infinite;
}
.client-card:hover { transform: translateY(-8px); border-color: rgba(25,195,230,.42); box-shadow: 0 28px 70px rgba(0,0,0,.32), 0 0 34px rgba(25,195,230,.08); }
.client-card-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  inset: -45px -45px auto auto;
  border-radius: 50%;
  background: rgba(25,195,230,.13);
  filter: blur(35px);
  animation: circuitPulse 7s ease-in-out infinite;
}
.client-card-logo {
  position: relative;
  height: 180px;
  display: grid;
  place-items: center;
  padding: 7px;
  overflow: hidden;
  border-radius: 15px;
  background:
    radial-gradient(circle at 20% 15%, rgba(25,195,230,.08), transparent 28%),
    linear-gradient(145deg, #fff, #edf3f6);
}
.client-card-logo img { width: 114%; max-width: none; height: 114%; object-fit: contain; transition: transform .45s ease; }
.client-card:hover .client-card-logo img { transform: scale(1.04); }
.client-card-copy { position: relative; padding: 18px 12px 13px; }
.client-card-copy h3 { margin: 4px 0 2px; color: var(--white); font-size: 1.03rem; }
.client-card-copy p { margin: 0; color: var(--muted); font-size: .78rem; }
.client-index { color: var(--cyan); font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.client-visit { position: absolute; inset-inline-end: 22px; bottom: 24px; color: var(--gold); font-size: 1.1rem; }
.client-invitation {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(32px, 6vw, 68px);
  border: 1px solid rgba(25,195,230,.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(12,42,65,.94), rgba(4,19,31,.96));
  box-shadow: var(--shadow);
}
.client-invitation h2 { max-width: 780px; }
.client-invitation p { max-width: 720px; margin: 0; color: var(--muted); }
.invitation-orbit {
  position: absolute;
  width: 330px;
  height: 330px;
  inset-inline-end: -165px;
  top: -165px;
  border: 1px solid rgba(25,195,230,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(25,195,230,.025), 0 0 0 78px rgba(231,185,75,.018);
  animation: clientOrbit 14s linear infinite;
}

.products-home { overflow: hidden; background: linear-gradient(180deg, rgba(25,195,230,.025), rgba(255,255,255,.012)); }
.product-value-strip { border-block: 1px solid var(--line); background: rgba(4,19,31,.78); }
.product-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.product-value-grid > div { display: grid; gap: 4px; padding: 24px 28px; border-inline-end: 1px solid var(--line); }
.product-value-grid > div:last-child { border-inline-end: 0; }
.product-value-grid strong { color: var(--white); }
.product-value-grid span span { color: var(--muted); font-size: .78rem; }
.product-filters { display: flex; gap: 8px; overflow-x: auto; margin: 0 0 28px; padding: 2px 0 8px; scrollbar-width: thin; }
.product-filters button {
  min-width: max-content;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255,255,255,.025);
  cursor: pointer;
}
.product-filters button:hover,
.product-filters button.active { color: #03111b; border-color: var(--cyan); background: var(--cyan); }
.products-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(13,42,64,.94), rgba(5,20,33,.96));
  box-shadow: 0 18px 60px rgba(0,0,0,.2);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.product-card[hidden] { display: none; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(25,195,230,.4); box-shadow: 0 28px 75px rgba(0,0,0,.32), 0 0 40px rgba(25,195,230,.07); }
.product-card-media { position: relative; overflow: hidden; }
.product-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(3,16,28,.72)); pointer-events: none; }
.product-card-media img { width: 100%; height: 220px; object-fit: cover; transition: transform .7s ease; }
.product-card:hover .product-card-media img { transform: scale(1.055); }
.product-category,
.product-featured {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.product-category { inset-inline-start: 14px; color: #dff8ff; border: 1px solid rgba(25,195,230,.3); background: rgba(3,16,28,.72); }
.product-featured { inset-inline-end: 14px; color: #211703; background: var(--gold); }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 21px; }
.product-card-body h3 { margin: 0 0 7px; color: var(--white); font-size: 1.2rem; }
.product-tagline { min-height: 54px; margin: 0; color: #b3c9d5; font-size: .85rem; line-height: 1.65; }
.product-features { list-style: none; display: grid; gap: 7px; margin: 18px 0 22px; padding: 0; color: var(--muted); font-size: .76rem; }
.product-features li { position: relative; padding-inline-start: 18px; }
.product-features li::before { content: ""; position: absolute; inset-inline-start: 0; top: .67em; width: 7px; height: 7px; border: 1px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 8px rgba(25,195,230,.4); }
.product-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product-card-actions button,
.product-card-actions a { padding: 9px 12px; border-radius: 10px; font-size: .72rem; font-weight: 800; text-decoration: none; }
.product-card-actions button { border: 0; color: #03111b; background: var(--cyan); cursor: pointer; }
.product-card-actions a { color: var(--gold); border: 1px solid rgba(231,185,75,.22); }
.delivery-models { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.delivery-model { position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(8,30,47,.82); }
.delivery-model > span { color: var(--cyan); font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.delivery-model h3 { margin: 14px 0 7px; color: var(--white); }
.delivery-model p { margin: 0; color: var(--muted); font-size: .84rem; }
.delivery-model::after { content: ""; position: absolute; width: 90px; height: 90px; inset: auto -40px -40px auto; border: 1px solid rgba(25,195,230,.2); border-radius: 50%; }
.product-load-error { grid-column: 1/-1; padding: 30px; border: 1px solid var(--line); border-radius: 18px; color: var(--muted); text-align: center; }
.product-demo-modal {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,7,12,.88);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}
.product-demo-modal.open { opacity: 1; visibility: visible; }
.product-demo-dialog { width: min(1180px, 100%); height: min(760px, calc(100svh - 44px)); overflow: hidden; border: 1px solid rgba(25,195,230,.28); border-radius: 22px; background: #04101b; box-shadow: 0 35px 110px rgba(0,0,0,.6); transform: translateY(18px) scale(.98); transition: transform .25s ease; }
.product-demo-modal.open .product-demo-dialog { transform: none; }
.product-demo-head { height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 0 18px; border-bottom: 1px solid var(--line); background: #061522; }
.product-demo-head div { display: grid; line-height: 1.25; }
.product-demo-head span { color: var(--cyan); font-size: .58rem; font-weight: 900; letter-spacing: .16em; }
.product-demo-head strong { color: var(--white); }
.product-demo-head button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; color: var(--white); background: transparent; cursor: pointer; }
.product-demo-dialog iframe { display: block; width: 100%; height: calc(100% - 62px); border: 0; background: #04101b; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; }
.contact-panel, .contact-form { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.contact-lines { display: grid; gap: 18px; margin-top: 25px; }
.contact-lines a { display: flex; gap: 12px; align-items: center; text-decoration: none; color: #c8dae5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #bfd0da; font-size: .82rem; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(3, 16, 28, .72);
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(25,195,230,.1); }
.field textarea { min-height: 130px; resize: vertical; }

.cta-band { padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(25,195,230,.22); border-radius: var(--radius-lg); background: linear-gradient(120deg, rgba(25,195,230,.13), rgba(231,185,75,.07)); }
.cta-band h2 { margin: 0 0 8px; font-size: clamp(1.5rem, 3vw, 2.4rem); }
.cta-band p { margin: 0; color: var(--muted); }

.site-footer { padding: 58px 0 28px; border-top: 1px solid var(--line); background: #020b13; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 48px; }
.footer-summary { max-width: 380px; color: var(--muted); font-size: .86rem; }
.footer-title { margin: 0 0 14px; color: var(--white); font-size: .9rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.footer-links a, .footer-contact a { color: var(--muted); text-decoration: none; font-size: .82rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--cyan); }
.footer-contact { display: grid; gap: 9px; }
.footer-bottom { margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #6f8797; font-size: .76rem; }

.chat-launcher {
  position: fixed;
  z-index: 170;
  inset-inline-end: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(25,195,230,.35);
  border-radius: 20px;
  background: var(--navy-900);
  box-shadow: 0 18px 45px rgba(0,0,0,.38), 0 0 0 7px rgba(25,195,230,.06);
  cursor: pointer;
  animation: chatPulse 3.2s ease-in-out infinite;
}
.chat-launcher[hidden],
.chat-panel[hidden] { display: none !important; }
.chat-launcher img { width: 100%; height: 100%; object-fit: cover; }
.chat-panel {
  position: fixed;
  z-index: 180;
  inset-inline-end: 22px;
  bottom: 98px;
  width: min(390px, calc(100vw - 28px));
  height: min(610px, calc(100svh - 125px));
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6,24,39,.98);
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  backdrop-filter: blur(20px);
  transform: translateY(18px) scale(.97);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom;
  transition: .25s ease;
}
.chat-panel.open { transform: none; opacity: 1; visibility: visible; }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 17px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.025); }
.chat-brand { display: flex; align-items: center; gap: 10px; }
.chat-brand img { width: 92px; height: 38px; object-fit: contain; }
.chat-brand div { display: grid; line-height: 1.25; }
.chat-brand strong { color: var(--white); font-size: .84rem; }
.chat-brand span { color: #66dda2; font-size: .65rem; }
.chat-close { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 9px; background: transparent; cursor: pointer; }
.chat-messages { padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-message { max-width: 86%; padding: 10px 12px; border-radius: 13px; color: #c8dbe6; background: var(--navy-800); font-size: .83rem; line-height: 1.65; white-space: pre-wrap; }
.chat-message.bot { align-self: flex-start; border-start-start-radius: 4px; }
.chat-message.user { align-self: flex-end; color: #02131c; background: var(--cyan); border-end-end-radius: 4px; }
.chat-quick { padding: 0 14px 10px; display: flex; gap: 6px; overflow-x: auto; }
.chat-quick button { min-width: max-content; padding: 6px 10px; border: 1px solid var(--line); border-radius: 20px; color: var(--cyan); background: transparent; font-size: .68rem; cursor: pointer; }
.chat-form { padding: 11px; display: grid; grid-template-columns: 1fr auto; gap: 7px; border-top: 1px solid var(--line); }
.chat-form input { min-width: 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px; color: var(--white); background: var(--navy-950); outline: none; }
.chat-form input:focus { border-color: var(--cyan); }
.chat-form button { width: 43px; border: 0; border-radius: 11px; color: var(--navy-950); background: var(--cyan); font-weight: 900; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes logoBreath {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(25,195,230,.16)); transform: translateY(0); }
  50% { filter: drop-shadow(0 0 22px rgba(25,195,230,.34)); transform: translateY(-2px); }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotateX(0); }
  50% { transform: translateY(-7px) rotateX(2deg); }
}
@keyframes logoShine {
  0%, 58% { left: -35%; opacity: 0; }
  68% { opacity: 1; }
  88%, 100% { left: 125%; opacity: 0; }
}
@keyframes signalPulse {
  0%, 100% { transform: scale(.75); opacity: .6; }
  50% { transform: scale(1.1); opacity: 1; }
}
@keyframes auroraMove {
  from { transform: translate3d(-2%, -1%, 0) rotate(-2deg); }
  to { transform: translate3d(3%, 2%, 0) rotate(2deg); }
}
@keyframes chatPulse {
  0%,100% { box-shadow: 0 18px 45px rgba(0,0,0,.38), 0 0 0 5px rgba(25,195,230,.04); }
  50% { box-shadow: 0 18px 45px rgba(0,0,0,.38), 0 0 0 10px rgba(25,195,230,.09); }
}
@keyframes circuitDrift {
  0% { transform: translate3d(-2.5%, -2%, 0) scale(1.02); }
  100% { transform: translate3d(2.5%, 2%, 0) scale(1.05); }
}
@keyframes circuitPulse {
  0%, 100% { opacity: .54; transform: translate3d(-.5%, 0, 0) scale(1); }
  50% { opacity: .96; transform: translate3d(.5%, -.5%, 0) scale(1.015); }
}
@keyframes clientFlow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes clientShine {
  0%, 62% { left: -42%; opacity: 0; }
  72% { opacity: .72; }
  88%, 100% { left: 125%; opacity: 0; }
}
@keyframes clientSignal {
  from { background-position: 200% 0; }
  to { background-position: -20% 0; }
}
@keyframes clientOrbit {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header-height: 66px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 28px), var(--container)); }
  body::before { inset: -10%; background-size: 360px 360px; opacity: .29; filter: drop-shadow(0 0 4px rgba(25,195,230,.2)); }
  body::after { opacity: .62; background-size: 190px 190px, 260px 260px, 320px 320px, 100% 100%; }
  .utility-bar { display: none; }
  .brand-tag { display: none; }
  .brand img { width: 122px; height: 46px; }
  .header-actions .install-button { display: none !important; }
  .hero { min-height: auto; padding: 54px 0 70px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-media { margin-top: 12px; }
  .hero-media img { aspect-ratio: 4 / 3; }
  .hero-media::before { inset: -7px 9px 9px -7px; }
  .floating-metric { inset-inline-start: 12px; bottom: 12px; }
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .hero-lead { font-size: .95rem; }
  .actions .button { flex: 1; min-width: 145px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item { padding: 15px; }
  .section { padding: 68px 0; }
  .card-grid, .sector-grid { grid-template-columns: minmax(0, 1fr); }
  .card { padding: 23px; }
  .card-visual { width: calc(100% + 46px); height: 180px; margin: -23px -23px 20px; }
  .media-frame img { aspect-ratio: 4 / 3; }
  .sector-image { height: 180px; }
  .client-marquee { margin-inline: -14px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
  .client-marquee::before, .client-marquee::after { width: 26px; }
  .client-logo-tile { width: 152px; height: 94px; padding: 3px 5px; border-radius: 14px; }
  .clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .client-card { padding: 7px; border-radius: 16px; }
  .client-card-logo { height: 126px; padding: 4px; border-radius: 11px; }
  .client-card-copy { padding: 13px 8px 10px; }
  .client-card-copy h3 { font-size: .84rem; line-height: 1.4; }
  .client-card-copy p { font-size: .68rem; }
  .client-invitation { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
  .product-value-grid, .products-grid, .delivery-models { grid-template-columns: 1fr; }
  .product-value-grid > div { padding: 16px 4px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .product-value-grid > div:last-child { border-bottom: 0; }
  .product-card-media img { height: 205px; }
  .product-tagline { min-height: 0; }
  .product-demo-modal { padding: 5px; }
  .product-demo-dialog { height: calc(100svh - 10px); border-radius: 15px; }
  .product-demo-head { height: 56px; padding: 0 12px; }
  .product-demo-dialog iframe { height: calc(100% - 56px); }
  .bento { display: grid; grid-template-columns: 1fr; }
  .bento .card, .bento .wide, .bento .half { grid-column: 1; }
  .page-hero { padding: 72px 0; }
  .page-hero h1 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .process-step { grid-template-columns: 48px 1fr; padding: 18px; }
  .process-step::before { width: 44px; height: 44px; border-radius: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-panel, .contact-form { padding: 22px; }
  .cta-band { padding: 28px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 150;
    bottom: 0;
    right: 0;
    left: 0;
    height: calc(66px + env(safe-area-inset-bottom));
    padding: 7px 12px env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(3, 16, 28, .96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }
  .chat-launcher { bottom: calc(82px + env(safe-area-inset-bottom)); inset-inline-end: 14px; width: 56px; height: 56px; border-radius: 17px; }
  .chat-panel { inset-inline: 10px; bottom: calc(76px + env(safe-area-inset-bottom)); width: auto; height: min(590px, calc(100svh - 92px)); }
  .mobile-bottom-nav a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1px;
    color: var(--muted);
    text-decoration: none;
    font-size: .66rem;
    font-weight: 700;
  }
  .mobile-bottom-nav a span:first-child { color: var(--text); font-size: 1.05rem; }
  .mobile-bottom-nav a.active { color: var(--cyan); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
