
:root {
  --navy: #08172e;
  --blue: #1677ff;
  --ink: #101828;
  --muted: #667085;
  --line: #e5eaf1;
  --soft: #f4f7fb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 clamp(22px, 5vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,.11);
  background: rgba(8, 23, 46, .94);
  backdrop-filter: blur(14px);
  color: white;
}
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-logo { display: block; width: 285px; height: 58px; object-fit: contain; object-position: left center; }
.brand-mark { position: relative; display: grid; width: 38px; height: 38px; place-items: center; }
.brand-mark::before, .brand-mark::after, .brand-mark span {
  content: "";
  position: absolute;
  width: 22px;
  height: 8px;
  border: 3px solid #29b6d7;
  border-radius: 20px;
  transform: rotate(-42deg);
}
.brand-mark::before { transform: translate(-6px,-7px) rotate(-42deg); border-color: #1e7dff; }
.brand-mark::after { transform: translate(6px,7px) rotate(-42deg); border-color: #29b6d7; }
.brand-mark span:first-child { border-color: white; }
.brand-mark span:last-child { width: 5px; height: 5px; border: 0; background: white; border-radius: 50%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 14px; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: #a9b9d2; font-size: 9px; letter-spacing: .26em; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a { color: #c9d4e5; font-size: 13px; font-weight: 600; }
.desktop-nav a:hover { color: white; }
.desktop-nav .active-nav { color: #63cce5; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 11px;
  border: 0;
  background: transparent;
  color: #76d2e7;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
}
.lang-switch:hover { color: white; }
.header-cta { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.25); font-size: 13px; font-weight: 700; }
.header-cta:hover { background: white; color: var(--navy); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { display: grid; cursor: pointer; list-style: none; place-items: center; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; top: 44px; right: -4px; width: 210px; display: grid; padding: 12px; background: white; color: var(--navy); box-shadow: 0 18px 48px rgba(1, 12, 31, .25); }
.mobile-menu nav a { padding: 11px 10px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 650; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 118px clamp(22px, 6vw, 100px) 0;
  background: radial-gradient(circle at 83% 44%, rgba(22,119,255,.28), transparent 24%), linear-gradient(130deg, #07152b 0%, #0a1c37 50%, #071428 100%);
  color: white;
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .09;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent 10%, black 60%, transparent);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 88px; height: 1px; background: rgba(255,255,255,.13); }
.hero-orbit { position: absolute; right: 4%; top: 12%; width: 630px; height: 630px; border: 1px solid rgba(60,174,255,.16); border-radius: 50%; }
.orbit-two { right: 12%; top: 22%; width: 420px; height: 420px; border-color: rgba(255,255,255,.09); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 9px; margin-bottom: 25px; color: #1677ff; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light, .section-kicker.light { color: #59c9e5; }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(48px, 6.2vw, 86px); font-weight: 640; letter-spacing: -.055em; line-height: .98; }
.hero h1 span { display: block; color: #71cde3; }
.hero-content > p { max-width: 620px; margin: 30px 0 0; color: #becbdd; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 22px; border: 1px solid transparent; font-size: 13px; font-weight: 760; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: #1677ff; color: white; box-shadow: 0 14px 30px rgba(22,119,255,.25); }
.button-primary:hover { background: #318bff; }
.button-ghost { border-color: rgba(255,255,255,.24); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button-white { background: white; color: var(--navy); }
.button-outline-white { border-color: rgba(255,255,255,.35); color: white; }

.hero-system { position: absolute; z-index: 2; top: 180px; right: clamp(28px, 8vw, 130px); width: 430px; height: 430px; }
.system-label { position: absolute; left: 50%; top: 7%; transform: translateX(-50%); color: #6f8cad; font-size: 9px; font-weight: 800; letter-spacing: .22em; white-space: nowrap; }
.system-core { position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translate(-50%,-50%); border: 1px solid rgba(93,205,231,.5); border-radius: 50%; background: rgba(9,33,67,.92); box-shadow: 0 0 0 24px rgba(34,133,227,.055), 0 0 70px rgba(32,150,255,.16); color: #59c9e5; }
.system-core strong { margin-top: 8px; color: white; font-size: 16px; letter-spacing: .12em; }
.system-core span { margin-top: 3px; color: #7d93b1; font-size: 8px; letter-spacing: .2em; }
.system-core::before, .system-core::after { content: ""; position: absolute; width: 270px; height: 270px; border: 1px dashed rgba(101,180,255,.22); border-radius: 50%; }
.system-core::after { width: 380px; height: 380px; border-style: solid; border-color: rgba(255,255,255,.07); }
.system-node { position: absolute; display: flex; align-items: center; gap: 7px; padding: 10px 12px; border: 1px solid rgba(83,173,255,.27); background: rgba(7,22,44,.9); box-shadow: 0 9px 30px rgba(0,0,0,.2); color: #6fd5ec; font-size: 10px; font-weight: 750; letter-spacing: .06em; }
.system-node span { color: #dbe8f8; }
.node-app { left: 3%; top: 21%; }
.node-cloud { right: -1%; top: 29%; }
.node-network { right: 3%; bottom: 18%; }
.node-hardware { left: 0; bottom: 21%; }
.hero-stats { position: absolute; z-index: 3; left: clamp(22px, 6vw, 100px); right: clamp(22px, 6vw, 100px); bottom: 0; height: 89px; display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-stats div { display: flex; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-stats div:not(:first-child) { padding-left: 38px; }
.hero-stats strong { color: white; font-size: 22px; }
.hero-stats span { color: #8fa3be; font-size: 11px; font-weight: 680; letter-spacing: .06em; text-transform: uppercase; }

.section { max-width: 1240px; margin: 0 auto; padding: 112px clamp(22px, 5vw, 60px); }
.intro { padding-bottom: 90px; }
.intro-copy { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(50px, 10vw, 140px); align-items: start; }
.intro h2, .section-heading h2, .legal-copy h2, .contact-copy h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 4.5vw, 60px); font-weight: 650; letter-spacing: -.045em; line-height: 1.06; }
.intro-copy p { margin: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 9px; color: #1476f2; font-size: 13px; font-weight: 760; }

.focus-section { padding-top: 24px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 52px; }
.section-heading > p { max-width: 400px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.focus-card { position: relative; min-height: 330px; padding: 30px 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: .25s ease; }
.focus-card:hover { z-index: 2; background: var(--navy); color: white; transform: translateY(-8px); box-shadow: 0 24px 50px rgba(9,34,70,.18); }
.card-top { display: flex; justify-content: space-between; color: #1476f2; }
.card-top span { color: #98a2b3; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.focus-card h3 { margin: 65px 0 13px; color: var(--navy); font-size: 20px; }
.focus-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.card-arrow { position: absolute; right: 27px; bottom: 26px; color: #1677ff; }
.focus-card:hover h3 { color: white; }
.focus-card:hover p { color: #aebed3; }

.legal-platform { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; background: #0a1d3a; color: white; }
.legal-visual { position: relative; display: grid; overflow: hidden; place-items: center; background: radial-gradient(circle at center, rgba(22,119,255,.25), transparent 48%), linear-gradient(145deg,#0d2a52,#08182f); }
.legal-visual::before { content:""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(30deg, #fff 1px, transparent 1px), linear-gradient(120deg, #fff 1px, transparent 1px); background-size: 70px 70px; }
.legal-window { position: relative; width: min(78%, 540px); min-height: 360px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; background: #f7f9fc; box-shadow: 0 35px 80px rgba(0,0,0,.35); transform: perspective(1000px) rotateY(5deg) rotateX(2deg); }
.window-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid #dde3ec; background: white; }
.window-bar span { width: 7px; height: 7px; border-radius: 50%; background: #d5dce7; }
.window-layout { min-height: 325px; display: grid; grid-template-columns: 66px 1fr; }
.window-side { display: flex; flex-direction: column; align-items: center; gap: 24px; padding-top: 26px; background: #0e2c53; color: #4cc1df; }
.window-side i { width: 24px; height: 3px; border-radius: 3px; background: #536d8c; }
.window-main { padding: 27px; }
.window-title { display: flex; justify-content: space-between; color: #0b2345; font-size: 13px; }
.window-title span { width: 60px; height: 10px; border-radius: 2px; background: #e5eaf2; }
.window-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 23px; }
.window-metrics i { height: 68px; border: 1px solid #e2e8f0; border-radius: 4px; background: white; box-shadow: inset 0 4px #1c82f6; }
.window-chart { height: 150px; display: flex; align-items: end; gap: 18px; padding: 25px 34px 0; margin-top: 20px; border: 1px solid #e2e8f0; background: white; }
.window-chart span { flex: 1; min-height: 35px; background: linear-gradient(#29b6d7,#1677ff); }
.window-chart span:nth-child(2) { height: 72%; }
.window-chart span:nth-child(3) { height: 48%; }
.window-chart span:nth-child(4) { height: 88%; }
.window-chart span:nth-child(5) { height: 64%; }
.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.2); background: rgba(8,26,52,.9); box-shadow: 0 16px 30px rgba(0,0,0,.25); color: #d9e7f6; font-size: 11px; font-weight: 700; }
.floating-chip svg { color: #52cee8; }
.chip-one { right: 8%; top: 23%; }
.chip-two { left: 9%; bottom: 24%; }
.legal-copy { max-width: 650px; align-self: center; padding: 90px clamp(38px, 7vw, 110px); }
.legal-copy h2 { color: white; }
.legal-copy > p { margin: 28px 0; color: #aebed3; font-size: 16px; line-height: 1.85; }
.capability-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 22px; margin: 30px 0 36px; }
.capability-list span { display: flex; align-items: center; gap: 10px; color: #d8e4f2; font-size: 12px; font-weight: 620; }
.capability-list svg { color: #52cee8; }

.industries { padding-top: 120px; }
.industry-grid { border-top: 1px solid var(--line); }
.industry-grid article { display: grid; grid-template-columns: 100px 1fr; gap: 32px; padding: 36px 24px; border-bottom: 1px solid var(--line); transition: .2s ease; }
.industry-grid article:hover { padding-left: 38px; background: var(--soft); }
.industry-grid article > svg { color: #1677ff; }
.industry-grid article div { display: grid; grid-template-columns: 60px 1fr 1.3fr; align-items: center; gap: 24px; }
.industry-grid span { color: #98a2b3; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.industry-grid h3 { margin: 0; color: var(--navy); font-size: 20px; }
.industry-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.solutions-section { background: #06152b; color: white; }
.solutions-inner { max-width: 1360px; }
.white-heading h2 { color: white; }
.white-heading > p { color: #9db0ca; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.solution-card { min-height: 180px; display: grid; grid-template-columns: 35px 1fr 20px; gap: 17px; align-items: start; padding: 31px 27px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); transition: .2s ease; }
.solution-card > svg { color: #4fc5e2; }
.solution-card > svg:last-child { align-self: end; color: #55708f; }
.solution-card h3 { margin: 1px 0 10px; font-size: 16px; }
.solution-card p { margin: 0; color: #8fa3be; font-size: 12px; line-height: 1.7; }
.solution-card:hover { background: #0c2850; }
.solution-card:hover > svg:last-child { color: #4fc5e2; transform: translateX(4px); }

.partners-section { max-width: none; padding-left: 0; padding-right: 0; overflow: hidden; }
.partners-heading { max-width: 750px; margin: 0 auto 50px; padding: 0 24px; text-align: center; }
.partners-heading .section-kicker { justify-content: center; }
.partners-heading h2 { margin: 0; color: var(--navy); font-size: clamp(34px,4vw,50px); letter-spacing: -.04em; }
.partners-heading p { max-width: 570px; margin: 17px auto 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.partner-marquee { display: flex; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-row { width: max-content; display: flex; animation: marquee 45s linear infinite; }
.partner-logo { min-width: 190px; height: 110px; display: grid; padding: 20px 28px; border-right: 1px solid var(--line); place-items: center; background: white; }
.partner-logo img { display: block; width: 138px; height: 64px; object-fit: contain; }
.partner-marquee:hover .partner-row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.contact-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; padding: 100px clamp(24px, 8vw, 130px); background: linear-gradient(130deg,#126fee,#0a9bc4); color: white; }
.contact-copy { max-width: 700px; }
.contact-copy h2 { color: white; }
.contact-copy > p { max-width: 560px; margin: 24px 0 0; color: #d7edff; font-size: 16px; line-height: 1.75; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.contact-card { align-self: center; padding: 35px; background: white; box-shadow: 0 30px 70px rgba(3,38,81,.2); color: var(--navy); }
.contact-brand { display: flex; align-items: center; gap: 12px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.contact-brand img { display: block; width: min(100%, 330px); height: auto; }
.official-arabic-name { display: none; width: 100%; color: #53657d; font-size: 14px; font-weight: 750; }
.arabic-site .official-arabic-name { display: block; }
.dark-mark span:last-child { background: var(--navy); }
.dark-mark span:first-child { border-color: var(--navy); }
.contact-brand div { display: flex; flex-direction: column; }
.contact-brand strong { font-size: 13px; letter-spacing: .08em; }
.contact-brand small { margin-top: 4px; color: #7c8aa0; font-size: 8px; letter-spacing: .24em; }
.contact-detail { display: grid; grid-template-columns: 25px 1fr; gap: 14px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-detail svg { color: #1677ff; }
.contact-detail span { display: block; margin-bottom: 7px; color: #8a98aa; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.contact-detail strong { font-size: 13px; line-height: 1.65; }

footer { min-height: 110px; display: flex; align-items: center; gap: 35px; padding: 28px clamp(24px, 6vw, 95px); background: #061124; color: #758ba7; }
.footer-brand { color: white; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.footer-brand span { color: #4ec4e1; }
footer p { margin: 0; font-size: 11px; }
footer p:last-child { margin-left: auto; }
.footer-logo { width: 225px; height: 50px; object-fit: contain; object-position: left center; }

.arabic-site {
  font-family: Tahoma, Arial, sans-serif;
}
.arabic-site .brand { margin-right: 0; margin-left: auto; direction: ltr; }
.arabic-site .brand-logo { object-position: right center; }
.arabic-site .header-cta svg,
.arabic-site .hero-actions svg,
.arabic-site .text-link svg,
.arabic-site .legal-copy .button svg,
.arabic-site .solution-card > svg:last-child {
  transform: rotate(180deg);
}
.arabic-site .hero-system { direction: rtl; }
.arabic-site .system-core { direction: ltr; }
.arabic-site .card-arrow { right: auto; left: 27px; transform: rotate(180deg); }
.arabic-site .contact-detail { grid-template-columns: 1fr 25px; }
.arabic-site .contact-detail > svg { grid-column: 2; grid-row: 1; }
.arabic-site .contact-detail > div { grid-column: 1; grid-row: 1; }
.arabic-site footer p:last-child { margin-left: 0; margin-right: auto; }
.arabic-site .footer-logo { object-position: right center; }

.clients-page { min-height: 100vh; background: #f5f8fc; }
.clients-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px clamp(24px, 8vw, 130px);
  background: radial-gradient(circle at 82% 35%, rgba(22,119,255,.3), transparent 26%), linear-gradient(130deg, #07152b 0%, #0a1c37 58%, #071428 100%);
  color: white;
}
.clients-hero-inner { position: relative; z-index: 2; width: min(100%, 1050px); margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 45px; color: #a9bdd6; font-size: 12px; font-weight: 700; }
.back-link:hover { color: white; }
.clients-hero .section-kicker { margin-bottom: 19px; }
.clients-hero h1 { max-width: 790px; margin: 0; font-size: clamp(44px, 6vw, 76px); font-weight: 650; letter-spacing: -.05em; line-height: 1.02; }
.clients-hero p { max-width: 650px; margin: 25px 0 0; color: #b8c7da; font-size: 17px; line-height: 1.75; }
.clients-content { max-width: 1240px; margin: 0 auto; padding: 100px clamp(22px, 5vw, 60px); }
.client-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.client-card { overflow: hidden; border: 1px solid #e0e7f0; background: white; box-shadow: 0 12px 34px rgba(8,23,46,.05); transition: .25s ease; }
.client-card:hover { transform: translateY(-7px); box-shadow: 0 22px 52px rgba(8,23,46,.11); }
.client-logo-frame { height: 250px; display: grid; place-items: center; padding: 42px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg,#f9fbfd,#f1f5fa); }
.client-logo-frame img { display: block; width: 100%; height: 150px; object-fit: contain; }
.client-card-body { position: relative; min-height: 220px; padding: 30px 32px 32px; }
.client-number { color: #1677ff; font-size: 9px; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
.client-card h2 { max-width: 480px; margin: 17px 0 9px; color: var(--navy); font-size: 23px; line-height: 1.25; }
.client-card p { margin: 0; color: #6a788c; font-size: 13px; line-height: 1.65; }
.client-card-body > a { position: absolute; left: 32px; bottom: 29px; display: inline-flex; align-items: center; gap: 8px; color: #1476f2; font-size: 12px; font-weight: 760; }
.client-card-body > a:hover { color: #075dcc; }
.clients-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 80px clamp(24px, 8vw, 130px); background: linear-gradient(130deg,#126fee,#0a9bc4); color: white; }
.clients-cta > div:first-child { max-width: 660px; }
.clients-cta h2 { margin: 0; font-size: clamp(34px,4vw,52px); letter-spacing: -.04em; line-height: 1.08; }
.clients-cta p { margin: 18px 0 0; color: #d9edff; font-size: 15px; line-height: 1.75; }
.clients-cta .contact-actions { flex-shrink: 0; margin-top: 0; }
.arabic-site .client-card-body > a { left: auto; right: 32px; }
.arabic-site .client-card-body > a svg { transform: rotate(180deg); }

@media (max-width: 1120px) {
  .hero-content { max-width: 620px; }
  .hero h1 { font-size: 64px; }
  .hero-system { right: -120px; opacity: .68; }
  .focus-grid { grid-template-columns: repeat(2,1fr); }
  .legal-platform { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 1050px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
}

@media (max-width: 820px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: 760px; padding-top: 90px; }
  .hero-system { top: 300px; right: -160px; opacity: .32; }
  .hero-content > p { max-width: 530px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .hero-stats div { display: grid; align-content: center; gap: 3px; }
  .hero-stats div:not(:first-child) { padding-left: 18px; }
  .hero-stats span { font-size: 8px; }
  .intro-copy, .legal-platform, .contact-section { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 24px; }
  .legal-visual { min-height: 500px; }
  .legal-copy { max-width: none; }
  .solutions-grid { grid-template-columns: repeat(2,1fr); }
  .industry-grid article div { grid-template-columns: 40px 1fr; }
  .industry-grid p { grid-column: 2; }
  .contact-section { gap: 50px; }
  .client-grid { grid-template-columns: 1fr; }
  .clients-cta { display: block; }
  .clients-cta .contact-actions { margin-top: 30px; }
  footer { flex-wrap: wrap; gap: 14px 28px; }
  footer p:last-child { width: 100%; margin-left: 0; }
  .arabic-site footer p:last-child { margin-right: 0; }
}

@media (max-width: 560px) {
  .site-header { height: 72px; gap: 9px; padding-left: 15px; padding-right: 15px; }
  .brand-logo { width: 190px; height: 48px; }
  .lang-switch { padding: 8px 2px; font-size: 10px; }
  .lang-switch svg { display: none; }
  .hero { min-height: 720px; padding-top: 74px; }
  .hero h1 { font-size: clamp(44px, 13vw, 61px); }
  .hero-content > p { font-size: 15px; line-height: 1.7; }
  .hero-actions .button { width: 100%; }
  .hero-system { display: none; }
  .hero-stats { height: 80px; left: 22px; right: 22px; }
  .hero-stats div { padding-right: 7px; }
  .hero-stats div:not(:first-child) { padding-left: 9px; }
  .hero-stats strong { font-size: 15px; }
  .hero-stats span { letter-spacing: .02em; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .focus-section { padding-top: 15px; }
  .focus-grid, .solutions-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 275px; }
  .focus-card h3 { margin-top: 44px; }
  .legal-visual { min-height: 390px; }
  .legal-window { width: 87%; min-height: 280px; }
  .window-layout { min-height: 245px; }
  .window-main { padding: 19px; }
  .window-chart { height: 110px; padding: 20px 20px 0; }
  .chip-one { right: 4%; top: 18%; }
  .chip-two { left: 4%; bottom: 15%; }
  .legal-copy { padding: 72px 24px; }
  .capability-list { grid-template-columns: 1fr; }
  .industry-grid article { grid-template-columns: 45px 1fr; gap: 13px; padding-left: 8px; padding-right: 8px; }
  .industry-grid article:hover { padding-left: 12px; }
  .industry-grid article div { grid-template-columns: 1fr; gap: 8px; }
  .industry-grid p { grid-column: 1; }
  .solution-card { min-height: 155px; }
  .contact-section { padding-top: 75px; padding-bottom: 75px; }
  .contact-actions .button { width: 100%; }
  .contact-card { padding: 27px 22px; }
  footer { display: grid; }
  .footer-logo { width: 210px; }
  .clients-hero { min-height: 390px; padding-top: 55px; padding-bottom: 55px; }
  .back-link { margin-bottom: 35px; }
  .clients-hero p { font-size: 15px; }
  .clients-content { padding-top: 65px; padding-bottom: 65px; }
  .client-logo-frame { height: 205px; padding: 32px; }
  .client-logo-frame img { height: 125px; }
  .client-card-body { min-height: 215px; padding: 27px 24px; }
  .client-card h2 { font-size: 20px; }
  .client-card-body > a { left: 24px; bottom: 25px; }
  .arabic-site .client-card-body > a { right: 24px; }
  .clients-cta { padding-top: 65px; padding-bottom: 65px; }
  .clients-cta .button { width: 100%; }
}

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

.static-icon { display:inline-grid; min-width:24px; min-height:24px; place-items:center; color:#38b9da; font-size:11px; font-weight:800; letter-spacing:.04em; }
.solution-card > b { align-self:end; color:#55708f; }
.card-arrow { font-size:26px; line-height:1; }
.contact-detail > .static-icon { color:#1677ff; }
