:root {
  --ink: #0f1728;
  --ink-soft: #405068;
  --navy: #07111f;
  --navy-raised: #0b192a;
  --surface: #f5f7fa;
  --white: #ffffff;
  --line: #dce3eb;
  --line-dark: rgba(255, 255, 255, 0.11);
  --primary: #4169ff;
  --primary-dark: #3153d6;
  --mint: #4ed7c1;
  --mint-soft: #dff8f4;
  --text-on-dark: #f8fbff;
  --muted-on-dark: #9fb0c6;
  --shadow-sm: 0 14px 45px rgba(17, 30, 52, 0.07);
  --shadow-lg: 0 35px 90px rgba(2, 10, 23, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.tech-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

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

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

::selection {
  background: rgba(65, 105, 255, 0.22);
  color: var(--ink);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.section-head.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head.centered .eyebrow::after {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.section-head > p,
.section-head .head-copy > p {
  max-width: 550px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-head > p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 14px;
  right: 50%;
  left: auto;
  z-index: 1000;
  width: min(calc(100% - 28px), 1240px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 16px 48px rgba(2, 10, 23, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(50%);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(7, 17, 31, 0.93);
  box-shadow: 0 18px 55px rgba(2, 10, 23, 0.3);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 36px), 1180px);
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 0.3s ease;
}

.site-header.scrolled .nav-shell {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand img.original-logo,
.panel-identity img.original-logo {
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 11px;
  background: #fff;
  object-fit: cover;
}

.brand-word {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.09em;
}

.brand-word small {
  display: block;
  margin-top: -3px;
  color: var(--muted-on-dark);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.site-header .brand-word {
  display: inline-flex;
  direction: rtl;
  align-items: center;
  gap: 5px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-ar {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

.brand-en {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.brand-separator {
  color: var(--muted-on-dark);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: #bec9d8;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta {
  min-height: 44px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
}

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

.button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(65, 105, 255, 0.24);
}

.button-primary:hover {
  background: #5578ff;
  box-shadow: 0 22px 50px rgba(65, 105, 255, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.button-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.button:hover .button-arrow {
  transform: translateX(-3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.social-float {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 950;
  display: grid;
  gap: 6px;
}

.social-float-link {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(2, 10, 23, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-float-link svg {
  width: 16px;
  height: 16px;
}

.social-float-link.facebook {
  background: #1877f2;
}

.social-float-link.whatsapp {
  background: #20bd67;
}

.social-float-link:hover {
  box-shadow: 0 13px 30px rgba(2, 10, 23, 0.3);
  transform: translateY(-2px);
}

.network-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--navy);
  color: var(--text-on-dark);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 95%);
  content: "";
}

.hero::after {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(65, 105, 255, 0.18);
  content: "";
  filter: blur(100px);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 80px;
  padding-top: 122px;
  padding-bottom: 76px;
}

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

.hero .eyebrow {
  color: var(--mint);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.3rem, 6.4vw, 6.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.06;
}

.hero h1 span {
  display: block;
  color: #89a0ff;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted-on-dark);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.9;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 38px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-dark);
  color: #aab8ca;
  list-style: none;
  font-size: 0.84rem;
}

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

.hero-meta li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(78, 215, 193, 0.1);
  content: "";
}

.engineering-visual {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.visual-glow {
  position: absolute;
  inset: 90px 30px 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 105, 255, 0.28), transparent 68%);
  filter: blur(20px);
}

.system-panel {
  position: absolute;
  inset: 54px 0 30px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(18, 36, 59, 0.95), rgba(8, 21, 37, 0.92));
  box-shadow: var(--shadow-lg);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.engineering-visual:hover .system-panel {
  transform: rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-dark);
}

.panel-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-identity img {
  width: 30px;
  height: 30px;
}

.panel-identity strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.panel-identity small {
  display: block;
  color: #73859d;
  font-size: 0.64rem;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9fb0c6;
  font-size: 0.68rem;
}

.panel-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  box-shadow: 0 0 14px var(--mint);
}

.system-map {
  position: relative;
  min-height: 410px;
  padding: 38px 34px;
}

.map-spine {
  position: absolute;
  top: 75px;
  right: 50%;
  bottom: 72px;
  width: 1px;
  background: linear-gradient(var(--primary), rgba(78, 215, 193, 0.35));
}

.map-node {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82%;
  min-height: 72px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.map-node:nth-of-type(even) {
  margin-right: auto;
}

.map-node:nth-of-type(odd) {
  margin-left: auto;
}

.node-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(65, 105, 255, 0.14);
  color: #91a6ff;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.map-node:nth-of-type(3) .node-index,
.map-node:nth-of-type(4) .node-index {
  background: rgba(78, 215, 193, 0.1);
  color: var(--mint);
}

.node-copy strong {
  display: block;
  font-size: 0.78rem;
}

.node-copy small {
  color: #71849d;
  font-size: 0.64rem;
}

.node-signal {
  width: 42px;
  height: 4px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.node-signal::after {
  display: block;
  width: var(--signal, 75%);
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  content: "";
}

.map-node:nth-of-type(3) .node-signal::after,
.map-node:nth-of-type(4) .node-signal::after {
  background: var(--mint);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 11px 14px;
  background: rgba(14, 31, 51, 0.86);
  color: #cfdae8;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  font-size: 0.72rem;
  animation: float 5s ease-in-out infinite;
}

.floating-chip::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.chip-one {
  top: 12px;
  left: -18px;
}

.chip-two {
  right: -18px;
  bottom: 12px;
  animation-delay: -2.2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.capability-orbit {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1;
  margin-inline: auto;
  isolation: isolate;
}

.orbit-glow {
  position: absolute;
  inset: 17%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 105, 255, 0.26), rgba(78, 215, 193, 0.05) 48%, transparent 72%);
  filter: blur(28px);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: -1;
  border: 1px solid rgba(128, 153, 202, 0.16);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  box-shadow: 0 0 15px rgba(78, 215, 193, 0.8);
}

.orbit-ring::before {
  top: 13%;
  right: 13%;
}

.orbit-ring::after {
  bottom: 13%;
  left: 13%;
  background: #8198ff;
  box-shadow: 0 0 15px rgba(129, 152, 255, 0.8);
}

.ring-one {
  width: 84%;
  height: 84%;
  border-style: dashed;
  animation: orbit-spin 34s linear infinite;
}

.ring-two {
  width: 62%;
  height: 62%;
  animation: orbit-spin-reverse 25s linear infinite;
}

.ring-three {
  width: 39%;
  height: 39%;
  border-color: rgba(78, 215, 193, 0.18);
}

@keyframes orbit-spin {
  from { transform: translate(50%, -50%) rotate(0deg); }
  to { transform: translate(50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  from { transform: translate(50%, -50%) rotate(360deg); }
  to { transform: translate(50%, -50%) rotate(0deg); }
}

.orbit-connectors {
  position: absolute;
  inset: 8%;
  z-index: -1;
  width: 84%;
  height: 84%;
  overflow: visible;
}

.orbit-connectors path {
  fill: none;
  stroke: rgba(112, 141, 196, 0.18);
  stroke-dasharray: 5 9;
  stroke-width: 1;
}

.orbit-connectors circle {
  fill: var(--mint);
  filter: drop-shadow(0 0 5px rgba(78, 215, 193, 0.75));
}

.orbit-core {
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: 3;
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 45px;
  padding: 19px;
  background: linear-gradient(145deg, rgba(23, 46, 74, 0.96), rgba(10, 25, 43, 0.94));
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.35), 0 0 55px rgba(65, 105, 255, 0.12);
  text-align: center;
  transform: translate(50%, -50%) rotate(-3deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.capability-orbit:hover .orbit-core {
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.4), 0 0 70px rgba(65, 105, 255, 0.2);
  transform: translate(50%, -50%) rotate(0deg) scale(1.03);
}

.orbit-core img.original-logo {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.orbit-core strong,
.orbit-core small {
  position: relative;
  z-index: 2;
  display: block;
  line-height: 1;
}

.orbit-core strong {
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.orbit-core small {
  margin-top: -4px;
  color: #74879e;
  font-family: "Manrope", sans-serif;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.core-scan {
  position: absolute;
  top: -20%;
  left: -75%;
  width: 55%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  transform: rotate(18deg);
  animation: core-scan 5.5s ease-in-out infinite;
}

@keyframes core-scan {
  0%, 30% { left: -75%; }
  72%, 100% { left: 125%; }
}

.orbit-node {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 164px;
  min-height: 66px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  padding: 9px 10px;
  background: rgba(11, 28, 48, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(15px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.capability-orbit.is-orbiting .orbit-node {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  will-change: transform;
}

.capability-orbit.is-orbiting .orbit-status {
  display: none;
}

.orbit-node:hover {
  border-color: rgba(78, 215, 193, 0.32);
  background: rgba(17, 38, 62, 0.96);
}

.orbit-node-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: #fff;
}

.orbit-node-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orbit-node-icon.pink { background: linear-gradient(145deg, #f05cae, #ff6c7d); }
.orbit-node-icon.purple { background: linear-gradient(145deg, #755ee5, #9673eb); }
.orbit-node-icon.mint { background: linear-gradient(145deg, #21bda4, #45dbc3); }
.orbit-node-icon.blue { background: linear-gradient(145deg, #5572ef, #7888ff); }

.orbit-node div {
  min-width: 0;
}

.orbit-node small,
.orbit-node strong {
  display: block;
}

.orbit-node small {
  margin-bottom: 3px;
  color: #71859e;
  font-family: "Manrope", sans-serif;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.orbit-node strong {
  overflow: hidden;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orbit-education {
  top: 3%;
  right: 50%;
  transform: translateX(50%);
}

.orbit-education:hover { transform: translateX(50%) translateY(-4px); }

.orbit-web {
  top: 39%;
  right: -1%;
}

.orbit-web:hover { transform: translateX(-4px); }

.orbit-ai {
  right: 50%;
  bottom: 3%;
  width: 190px;
  transform: translateX(50%);
}

.orbit-ai strong {
  line-height: 1.25;
  white-space: normal;
}

.orbit-ai:hover { transform: translateX(50%) translateY(-4px); }

.orbit-mobile {
  top: 39%;
  left: -1%;
}

.orbit-mobile:hover { transform: translateX(4px); }

.orbit-status {
  position: absolute;
  top: 20%;
  bottom: auto;
  left: -4%;
  z-index: 5;
  display: flex;
  min-width: 195px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  padding: 9px 11px;
  background: rgba(9, 23, 40, 0.88);
  color: #b7c3d3;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-size: 0.6rem;
}

.orbit-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.orbit-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.orbit-status b {
  color: #7990ff;
  font-family: "Manrope", sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.06em;
}

.expertise-strip {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  position: relative;
  padding: 27px 18px;
  color: #526176;
  text-align: center;
  font-family: "Manrope", "IBM Plex Sans Arabic", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.expertise-list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 20px;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

.metrics {
  padding: 110px 0 95px;
  background: var(--surface);
}

.metrics-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.metrics-intro h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.metrics-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
}

.metrics-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.metric {
  min-height: 205px;
  padding: 34px;
}

.metric:not(:last-child) {
  border-left: 1px solid var(--line);
}

.metric-value {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-value .plus {
  color: var(--primary);
  font-size: 0.55em;
}

.metric h3 {
  margin: 26px 0 5px;
  font-size: 0.95rem;
}

.metric p {
  margin: 0;
  color: #748197;
  font-size: 0.82rem;
}

.capabilities {
  padding: 120px 0;
  background: var(--white);
}

.core-services {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #0a1323;
  color: var(--text-on-dark);
}

.core-services::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(65, 105, 255, 0.13), transparent 32%),
    radial-gradient(circle at 78% 88%, rgba(78, 215, 193, 0.08), transparent 28%);
  content: "";
}

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

.core-services .eyebrow {
  color: var(--mint);
}

.core-services .section-head h2 {
  max-width: 850px;
  margin-inline: auto;
}

.core-services .section-head p:not(.eyebrow) {
  color: var(--muted-on-dark);
}

.service-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
}

.service-tile {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  padding: 44px 26px 34px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-tile:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.service-tile::after {
  position: absolute;
  right: 18%;
  bottom: -70px;
  width: 170px;
  height: 120px;
  border-radius: 50%;
  background: var(--service-accent);
  content: "";
  filter: blur(70px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-tile:hover {
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
}

.service-tile:hover::after,
.service-tile-featured::after {
  opacity: 0.18;
}

.service-number {
  position: absolute;
  top: -16px;
  right: 18px;
  color: rgba(255, 255, 255, 0.027);
  font-family: "Manrope", sans-serif;
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.service-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--service-accent), var(--service-accent-2));
  box-shadow: 0 17px 36px color-mix(in srgb, var(--service-accent) 26%, transparent);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tile h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 13px;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-tile p {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  color: #8f9db1;
  font-size: 0.86rem;
  line-height: 1.9;
}

.service-tile-featured {
  background: linear-gradient(180deg, rgba(240, 92, 174, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 -2px 0 var(--service-accent);
}

.service-badge {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 3;
  border: 1px solid rgba(240, 92, 174, 0.38);
  border-radius: 100px;
  padding: 4px 9px;
  background: rgba(240, 92, 174, 0.08);
  color: #ff9bd2;
  font-size: 0.62rem;
  font-weight: 700;
}

.education-focus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  padding: 34px 38px;
  background: rgba(255, 255, 255, 0.025);
}

.education-focus span {
  color: #ff8bc9;
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.education-focus h3 {
  margin: 9px 0 0;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.5;
}

.education-focus > p {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 0.88rem;
}

.services-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.services-heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.3rem, 4.7vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.16;
}

.services-heading > p {
  max-width: 490px;
  margin: 0 0 5px;
  color: var(--muted-on-dark);
  font-size: 0.98rem;
}

.services-showcase {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}

.education-card,
.compact-service {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.028);
  backdrop-filter: blur(4px);
}

.education-card {
  min-height: 580px;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 86%, rgba(240, 92, 174, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(111, 89, 225, 0.12), rgba(255, 255, 255, 0.025) 48%, rgba(78, 215, 193, 0.04));
  box-shadow: inset 0 0 0 1px rgba(240, 92, 174, 0.03), 0 30px 75px rgba(0, 0, 0, 0.16);
}

.education-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f05cae);
  content: "";
}

.education-watermark {
  position: absolute;
  bottom: -32px;
  left: -8px;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Manrope", sans-serif;
  font-size: clamp(5rem, 9vw, 8.4rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.education-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.education-icon,
.compact-icon {
  display: grid;
  place-items: center;
  color: #fff;
}

.education-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f05cae, #ff6c7d);
  box-shadow: 0 18px 42px rgba(240, 92, 174, 0.24);
}

.education-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.education-label {
  border: 1px solid rgba(240, 92, 174, 0.35);
  border-radius: 100px;
  padding: 6px 12px;
  background: rgba(240, 92, 174, 0.07);
  color: #ff9bd2;
  font-size: 0.7rem;
  font-weight: 700;
}

.education-card-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: end;
  gap: 28px;
}

.service-sequence {
  display: block;
  margin-bottom: 13px;
  color: #ff8bc9;
  font-family: "Manrope", sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.education-copy h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.36;
}

.education-copy > p {
  margin: 18px 0 0;
  color: #9aa9bd;
  font-size: 0.86rem;
}

.education-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.education-features li {
  position: relative;
  padding-right: 17px;
  color: #d7e0ec;
  font-size: 0.72rem;
  font-weight: 600;
}

.education-features li::before {
  position: absolute;
  top: 0.72em;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #f05cae;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.education-interface {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 17px;
  background: rgba(247, 249, 253, 0.96);
  color: #172238;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(-1.5deg) translateY(5px);
  transition: transform 0.35s ease;
}

.education-card:hover .education-interface {
  transform: rotate(-0.4deg) translateY(0);
}

.interface-top,
.interface-progress > div,
.interface-row,
.interface-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.interface-top {
  margin-bottom: 16px;
  color: #718096;
  direction: ltr;
  font-family: "Manrope", sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
}

.interface-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.interface-brand i {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: linear-gradient(145deg, #7e68ed, #f05cae);
}

.interface-dots {
  letter-spacing: 0.1em;
}

.interface-progress {
  border-radius: 11px;
  padding: 12px;
  background: #edf1f7;
}

.interface-progress span {
  color: #5e6c80;
  font-size: 0.62rem;
}

.interface-progress strong {
  color: #725fe3;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
}

.interface-progress > i {
  display: block;
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: #dce3ee;
}

.interface-progress > i b {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #725fe3, #f05cae);
}

.interface-row {
  margin-top: 10px;
  border: 1px solid #e3e8f0;
  border-radius: 11px;
  padding: 10px;
}

.interface-row-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: #ebe8fd;
  color: #725fe3;
  font-size: 0.62rem;
}

.interface-row > div {
  flex: 1;
}

.interface-row strong,
.interface-row small {
  display: block;
}

.interface-row strong {
  font-size: 0.62rem;
}

.interface-row small {
  margin-top: 2px;
  color: #8b98a9;
  font-size: 0.52rem;
}

.interface-row em {
  border-radius: 100px;
  padding: 3px 6px;
  background: #e1f7f2;
  color: #138b77;
  font-family: "Manrope", sans-serif;
  font-size: 0.46rem;
  font-style: normal;
  font-weight: 800;
}

.interface-stats {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e4e9f0;
}

.interface-stats div {
  flex: 1;
  text-align: center;
}

.interface-stats strong,
.interface-stats span {
  display: block;
}

.interface-stats strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
}

.interface-stats span {
  margin-top: 2px;
  color: #8a97a8;
  font-size: 0.49rem;
}

.support-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compact-service {
  min-height: 270px;
  padding: 24px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.compact-service::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--compact-accent);
  content: "";
  filter: blur(60px);
  opacity: 0.08;
  transition: opacity 0.3s ease;
}

.compact-service:hover {
  border-color: color-mix(in srgb, var(--compact-accent) 45%, transparent);
  background: rgba(255, 255, 255, 0.042);
  transform: translateY(-4px);
}

.compact-service:hover::after {
  opacity: 0.2;
}

.compact-service-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.compact-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--compact-accent) 86%, #fff 14%);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--compact-accent) 18%, transparent);
}

.compact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compact-number {
  color: rgba(255, 255, 255, 0.06);
  font-family: "Manrope", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.compact-service h3 {
  position: relative;
  z-index: 2;
  margin: 33px 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.compact-service p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #8f9db1;
  font-size: 0.78rem;
}

.compact-link {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--compact-accent) 70%, #fff 30%);
  font-family: "Manrope", sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.compact-link b {
  font-size: 0.85rem;
}

.compact-service-wide {
  min-height: 294px;
  grid-column: 1 / -1;
}

.compact-wide-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}

.compact-wide-copy .compact-link {
  position: static;
  padding-bottom: 2px;
}

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

.capability {
  display: grid;
  grid-template-columns: 0.25fr 0.9fr 1.25fr 42px;
  align-items: start;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding: 42px 8px;
  transition: background 0.25s ease, padding 0.25s ease;
}

.capability:hover {
  padding-inline: 24px;
  background: #f8faff;
}

.capability-number {
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.capability h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.capability-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 12px;
  color: #607087;
  font-size: 0.74rem;
  font-weight: 600;
}

.capability-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.capability:hover .capability-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-45deg);
}

.standards {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--navy);
  color: var(--text-on-dark);
}

.standards::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(65, 105, 255, 0.16), transparent 35%);
  content: "";
}

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

.standards .eyebrow {
  color: var(--mint);
}

.standards .section-head > p,
.standards .section-head .head-copy > p {
  color: var(--muted-on-dark);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.standard-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 34px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.standard-card:hover {
  border-color: rgba(78, 215, 193, 0.32);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-4px);
}

.standard-card::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(65, 105, 255, 0.14);
  content: "";
  filter: blur(35px);
}

.standard-index {
  color: var(--mint);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.standard-card h3 {
  margin: 55px 0 14px;
  font-size: 1.35rem;
  font-weight: 600;
}

.standard-card p {
  max-width: 470px;
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 0.92rem;
}

.process {
  padding: 120px 0;
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-step::before {
  position: absolute;
  top: 49px;
  right: 58px;
  left: -19px;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-step:last-child::before {
  display: none;
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.process-step:nth-child(4) .step-number {
  background: var(--primary);
}

.process-step h3 {
  margin: 64px 0 14px;
  font-size: 1.18rem;
  font-weight: 700;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.step-output {
  display: block;
  margin-top: 26px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}

.technology {
  padding: 120px 0;
  background: var(--white);
}

.tech-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.tech-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.tech-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.tech-copy p {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.tech-groups {
  border-top: 1px solid var(--line);
}

.tech-group {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.tech-group h3 {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-items span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  background: #fff;
  color: #35445a;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 650;
  box-shadow: 0 6px 18px rgba(21, 42, 71, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tech-items span:hover {
  border-color: color-mix(in srgb, var(--tech-color) 42%, #d4deea);
  box-shadow: 0 10px 24px rgba(21, 42, 71, 0.09);
  transform: translateY(-2px);
}

.tech-items svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--tech-color);
  overflow: visible;
}

.tech-react { --tech-color: #00bcd4; }
.tech-next { --tech-color: #111827; }
.tech-javascript { --tech-color: #f7df1e; }
.tech-html { --tech-color: #e34f26; }
.tech-css { --tech-color: #1572b6; }
.tech-flutter { --tech-color: #087ac1; }
.tech-pwa { --tech-color: #6d61df; }
.tech-responsive { --tech-color: #50657d; }
.tech-node { --tech-color: #339933; }
.tech-python { --tech-color: #3776ab; }
.tech-php { --tech-color: #777bb4; }
.tech-laravel { --tech-color: #ff2d20; }
.tech-api { --tech-color: #5271e8; }
.tech-aws { --tech-color: #ff9900; }
.tech-firebase { --tech-color: #ffca28; }
.tech-mongodb { --tech-color: #47a248; }
.tech-mysql { --tech-color: #008eaa; }
.tech-ai { --tech-color: #845edc; }
.tech-n8n { --tech-color: #ea4b71; }
.tech-workflow { --tech-color: #20a889; }
.tech-pipeline { --tech-color: #4169e1; }

.about {
  padding: 120px 0;
  background: #eaf0f7;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.about-copy > p {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.about-note {
  margin-top: 34px;
  border-right: 2px solid var(--primary);
  padding-right: 20px;
  color: #26364c;
  font-weight: 600;
}

.principles {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #ccd6e2;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
}

.principle {
  min-height: 170px;
  padding: 28px;
}

.principle:nth-child(odd) {
  border-left: 1px solid #ccd6e2;
}

.principle:nth-child(-n + 2) {
  border-bottom: 1px solid #ccd6e2;
}

.principle strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
}

.principle h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.principle p {
  margin: 0;
  color: #65758a;
  font-size: 0.8rem;
}

.contact {
  padding: 120px 0;
  background: var(--navy);
  color: var(--text-on-dark);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 90px;
}

.contact .eyebrow {
  color: var(--mint);
}

.contact-copy > p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted-on-dark);
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.contact-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: #d6dfeb;
  font-family: "Manrope", "IBM Plex Sans Arabic", sans-serif;
  font-size: 0.9rem;
}

.contact-link span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: var(--mint);
}

.contact-form {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 38px;
  background: rgba(255, 255, 255, 0.035);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 9px;
}

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

.field label {
  color: #bac6d5;
  font-size: 0.76rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: none;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 52px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #718197;
}

.field select option {
  background: var(--navy-raised);
  color: var(--white);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(78, 215, 193, 0.7);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(78, 215, 193, 0.08);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.form-submit:hover {
  background: #5578ff;
  box-shadow: 0 16px 40px rgba(65, 105, 255, 0.25);
  transform: translateY(-2px);
}

.form-note {
  margin: 12px 0 0;
  color: #75869c;
  font-size: 0.68rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--navy);
  color: var(--text-on-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 70px;
  padding: 70px 0 55px;
}

.footer-brand .brand-word {
  line-height: 1.1;
}

.footer-brand .brand-word small {
  margin-top: 7px;
  color: #d8e0eb;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
}

.footer-brand p {
  max-width: 420px;
  margin: 20px 0 0;
  color: #8394a9;
  font-size: 0.86rem;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: #e8edf5;
  font-size: 0.8rem;
}

.footer-column ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: #8293a8;
  list-style: none;
  font-size: 0.8rem;
}

.footer-column a {
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
  color: #6f8095;
  font-family: "Manrope", "IBM Plex Sans Arabic", sans-serif;
  font-size: 0.7rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: #a5b3c4;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a svg {
  width: 17px;
  height: 17px;
}

.footer-social a.facebook:hover {
  border-color: #1877f2;
  color: #5ca0f8;
}

.footer-social a.whatsapp:hover {
  border-color: #20bd67;
  color: #39dc80;
}

.footer-social a:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1060px) {
  .nav-links {
    gap: 20px;
  }

  .hero-shell {
    gap: 45px;
    grid-template-columns: 1fr 0.9fr;
  }

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

  .metric:nth-child(2) {
    border-left: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .capability-orbit {
    width: min(100%, 490px);
  }

  .orbit-node {
    width: 145px;
    min-height: 60px;
  }

  .orbit-node-icon {
    width: 39px;
    height: 39px;
  }

  .orbit-core {
    width: 138px;
    height: 138px;
    border-radius: 40px;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .education-card-body {
    grid-template-columns: 1fr 0.82fr;
  }

  .service-tile:not(:last-child) {
    border-left: 0;
  }

  .service-tile:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-tile:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .process-step:nth-child(2)::before,
  .process-step:last-child::before {
    display: none;
  }

  .tech-layout,
  .about-layout,
  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 880px) {
  .nav-links,
  .nav-actions .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    visibility: hidden;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    padding: 14px;
    background: rgba(11, 25, 42, 0.98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    border-radius: 10px;
    padding: 12px 14px;
    color: #c5d0de;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
  }

  .mobile-menu .mobile-cta {
    margin-top: 6px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
  }

  .hero,
  .hero-shell {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 100px;
  }

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

  .capability-orbit {
    width: min(100%, 560px);
  }

  .engineering-visual {
    width: min(100%, 620px);
    min-height: 580px;
    margin-inline: auto;
  }

  .metrics-intro,
  .tech-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .education-focus {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-heading > p {
    max-width: 620px;
  }

  .metrics-intro,
  .tech-layout,
  .about-layout,
  .contact-layout {
    gap: 45px;
  }

  .tech-copy {
    position: static;
  }

  .capability {
    grid-template-columns: 54px 1fr 42px;
  }

  .capability-copy {
    grid-column: 2 / 4;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    border-radius: 16px;
  }

  .nav-shell {
    width: calc(100% - 22px);
    min-height: 64px;
    gap: 14px;
  }

  .site-header.scrolled .nav-shell {
    min-height: 64px;
  }

  .mobile-menu {
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    border-radius: 14px;
    padding: 10px;
  }

  .mobile-menu a {
    border-radius: 9px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-word {
    font-size: 0.94rem;
  }

  .brand-word small {
    margin-top: -2px;
    font-size: 0.56rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .social-float {
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 5px;
  }

  .social-float-link {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .hero-shell {
    gap: 38px;
    padding-top: 112px;
    padding-bottom: 66px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.45rem);
    line-height: 1.09;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    gap: 12px 16px;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.73rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .engineering-visual {
    min-height: 455px;
  }

  .capability-orbit {
    width: min(100%, 390px);
    margin-top: 2px;
  }

  .orbit-core {
    width: 100px;
    height: 100px;
    border-radius: 29px;
    padding: 11px;
  }

  .orbit-core img.original-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .orbit-core strong {
    font-size: 0.58rem;
  }

  .orbit-core small {
    font-size: 0.34rem;
  }

  .orbit-node {
    width: 122px;
    min-height: 53px;
    gap: 7px;
    border-radius: 14px;
    padding: 7px;
  }

  .orbit-node-icon {
    width: 35px;
    height: 35px;
    border-radius: 11px;
  }

  .orbit-node-icon svg {
    width: 19px;
    height: 19px;
  }

  .orbit-node small {
    font-size: 0.37rem;
  }

  .orbit-node strong {
    font-size: 0.63rem;
  }

  .orbit-education {
    top: 1%;
  }

  .orbit-web,
  .orbit-mobile {
    top: 39%;
  }

  .orbit-ai {
    bottom: 1%;
    width: 122px;
  }

  .orbit-status {
    display: none;
  }

  .system-panel {
    inset: 30px 0 20px;
    transform: none;
  }

  .system-map {
    min-height: 305px;
    padding: 20px 15px;
  }

  .map-node {
    width: 92%;
    min-height: 60px;
    grid-template-columns: 34px 1fr;
    margin-bottom: 12px;
    padding: 10px 12px;
  }

  .node-index {
    width: 32px;
    height: 32px;
  }

  .node-signal,
  .map-spine,
  .floating-chip {
    display: none;
  }

  .expertise-list {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-list li:last-child {
    grid-column: 1 / -1;
  }

  .expertise-list li {
    border-bottom: 1px solid var(--line);
    padding: 18px 8px;
    font-size: 0.67rem;
  }

  .expertise-list li:nth-child(even)::after {
    display: none;
  }

  .metrics,
  .capabilities,
  .core-services,
  .standards,
  .process,
  .technology,
  .about,
  .contact {
    padding: 70px 0;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 13px;
    font-size: 0.72rem;
  }

  .section-head h2,
  .about-copy h2,
  .contact-copy h2,
  .tech-copy h2,
  .metrics-intro h2 {
    font-size: 2.05rem;
    line-height: 1.24;
  }

  .section-head > p,
  .section-head .head-copy > p,
  .metrics-intro p,
  .tech-copy p,
  .about-copy > p,
  .contact-copy > p {
    font-size: 0.9rem;
  }

  .section-head {
    display: block;
    margin-bottom: 34px;
  }

  .section-head > p {
    margin-top: 18px;
  }

  .metrics-grid,
  .standards-grid,
  .process-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .services-heading {
    gap: 15px;
    margin-bottom: 32px;
  }

  .services-heading h2 {
    font-size: 2.1rem;
    line-height: 1.24;
  }

  .services-heading > p {
    font-size: 0.88rem;
  }

  .education-card {
    min-height: auto;
    border-radius: 19px;
    padding: 19px;
  }

  .education-card-body,
  .support-services,
  .compact-wide-copy {
    grid-template-columns: 1fr;
  }

  .education-card-head {
    margin-bottom: 23px;
  }

  .education-icon {
    width: 51px;
    height: 51px;
    border-radius: 15px;
  }

  .education-icon svg {
    width: 27px;
    height: 27px;
  }

  .education-label {
    padding: 5px 10px;
    font-size: 0.64rem;
  }

  .education-copy h3 {
    font-size: 1.55rem;
    line-height: 1.42;
  }

  .education-copy > p {
    margin-top: 14px;
    font-size: 0.79rem;
  }

  .education-features {
    gap: 8px 10px;
    margin-top: 19px;
  }

  .education-features li {
    padding-right: 14px;
    font-size: 0.66rem;
  }

  .education-interface {
    margin-top: 8px;
    border-radius: 15px;
    padding: 14px;
    transform: none;
  }

  .education-card:hover .education-interface {
    transform: none;
  }

  .compact-service,
  .compact-service-wide {
    min-height: 218px;
    border-radius: 18px;
    padding: 20px;
  }

  .compact-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .compact-icon svg {
    width: 22px;
    height: 22px;
  }

  .compact-number {
    font-size: 1.9rem;
  }

  .compact-service h3 {
    margin-top: 25px;
    font-size: 1.05rem;
  }

  .compact-service p {
    font-size: 0.73rem;
  }

  .compact-link {
    right: 20px;
    bottom: 17px;
    font-size: 0.52rem;
  }

  .compact-service-wide {
    grid-column: auto;
  }

  .compact-wide-copy .compact-link {
    position: static;
    margin-top: 18px;
  }

  .service-tile {
    min-height: 315px;
  }

  .service-tile:nth-child(n) {
    border-left: 0;
  }

  .service-tile:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .education-focus {
    padding: 28px 24px;
  }

  .metric {
    min-height: 140px;
    padding: 22px;
  }

  .metric-value {
    font-size: 2.35rem;
  }

  .metric h3 {
    margin-top: 16px;
    font-size: 0.88rem;
  }

  .metric p {
    font-size: 0.75rem;
  }

  .metric:not(:last-child) {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .standard-card {
    min-height: 205px;
    border-radius: 17px;
    padding: 23px;
  }

  .standard-card h3 {
    margin-top: 30px;
    font-size: 1.14rem;
  }

  .standard-card p {
    font-size: 0.82rem;
  }

  .process-step {
    min-height: 245px;
    border-radius: 17px;
    padding: 23px;
  }

  .process-step h3 {
    margin-top: 44px;
    font-size: 1.05rem;
  }

  .process-step p {
    font-size: 0.8rem;
  }

  .step-output {
    margin-top: 20px;
    font-size: 0.68rem;
  }

  .capability {
    grid-template-columns: 38px 1fr;
    gap: 18px;
    padding: 34px 0;
  }

  .capability:hover {
    padding-inline: 10px;
  }

  .capability-icon {
    display: none;
  }

  .capability-copy {
    grid-column: 2;
  }

  .process-step::before {
    display: none;
  }

  .tech-group {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .principle {
    min-height: auto;
  }

  .principle:nth-child(n) {
    border-left: 0;
  }

  .principle:not(:last-child) {
    border-bottom: 1px solid #ccd6e2;
  }

  .contact-form {
    padding: 24px;
  }

  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .field.full,
  .footer-brand {
    grid-column: auto;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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