@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #020815;
  --navy: #06162d;
  --navy-2: #09213c;
  --blue: #4ec3ff;
  --blue-soft: #aee9ff;
  --ice: #eefaff;
  --steel: #9fb6c7;
  --brass: #d8b36a;
  --mist: rgba(238, 250, 255, 0.78);
  --line: rgba(174, 233, 255, 0.24);
  --glass: rgba(4, 17, 38, 0.7);
  --glass-strong: rgba(5, 20, 39, 0.88);
  --paper: #f7fbff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --section-pad: clamp(76px, 10vw, 132px);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ice);
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--navy) 42%, #0d375b 100%),
    var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(174, 233, 255, 0.045) 0 1px, transparent 1px 108px),
    repeating-linear-gradient(0deg, rgba(174, 233, 255, 0.035) 0 1px, transparent 1px 108px),
    linear-gradient(115deg, transparent 0%, rgba(78, 195, 255, 0.1) 48%, transparent 76%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(70deg, rgba(216, 179, 106, 0.11), transparent 28%),
    linear-gradient(250deg, rgba(78, 195, 255, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(2, 8, 21, 0.15), rgba(2, 8, 21, 0.68));
  pointer-events: none;
}

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

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

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

html[lang="ar"] body {
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.68;
  letter-spacing: normal;
  word-spacing: 0.015em;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(78, 195, 255, 0.38);
  color: var(--paper);
}

.site-header {
  position: fixed;
  top: 16px;
  left: clamp(16px, 3vw, 42px);
  right: clamp(16px, 3vw, 42px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(174, 233, 255, 0.2);
  border-radius: 8px;
  background: rgba(3, 12, 26, 0.56);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(130%);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 12, 26, 0.86);
  border-color: rgba(174, 233, 255, 0.32);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 224px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(174, 233, 255, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(78, 195, 255, 0.95), rgba(7, 36, 72, 0.9)),
    var(--navy);
  color: var(--paper);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark::after {
  position: absolute;
  inset: -40%;
  content: "";
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.62) 48%, transparent 62%);
  transform: translateX(-120%) rotate(10deg);
  animation: markSweep 5.8s ease-in-out infinite;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: var(--blue-soft);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-kicker {
  display: none;
}

.main-nav a {
  position: relative;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--mist);
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-toggle {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(174, 233, 255, 0.22);
  border-radius: 8px;
  background: rgba(174, 233, 255, 0.08);
  color: var(--blue-soft);
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(174, 233, 255, 0.46);
  background: rgba(174, 233, 255, 0.14);
  color: var(--paper);
  outline: none;
  transform: translateY(-1px);
}

.language-toggle:disabled {
  cursor: progress;
  opacity: 0.78;
}

.language-toggle.is-switching {
  animation: languageButtonPulse 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.is-language-switching .site-header,
body.is-language-switching main,
body.is-language-switching .site-footer {
  animation: languageMorph 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

#top,
#about,
#channels,
#services,
#faq,
#privacy,
#contact {
  scroll-margin-top: 110px;
}

.main-nav a::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue), var(--brass), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: rgba(174, 233, 255, 0.09);
  color: var(--paper);
  outline: none;
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(174, 233, 255, 0.34);
  border-radius: 8px;
  background: rgba(174, 233, 255, 0.08);
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(2, 8, 21, 0.58);
  backdrop-filter: blur(10px);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 92vh;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(132px, 16vh, 190px) clamp(20px, 5vw, 72px) 74px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(112%) contrast(112%);
  transform: scale(1.035);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 8, 21, 0.98) 0%, rgba(4, 17, 38, 0.88) 39%, rgba(6, 22, 45, 0.4) 70%, rgba(2, 8, 21, 0.56) 100%),
    linear-gradient(180deg, rgba(2, 8, 21, 0.52) 0%, transparent 42%, rgba(2, 8, 21, 0.98) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(174, 233, 255, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(174, 233, 255, 0.1) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 72%);
  animation: gridGlide 18s linear infinite;
}

.hero-copy {
  width: min(820px, 100%);
  align-self: center;
}

.hero-title-line {
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: 5.55rem;
  line-height: 0.93;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 3.35rem;
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.contact-copy p {
  max-width: 680px;
  color: var(--mist);
  font-size: 1.07rem;
}

.hero-text p {
  margin-bottom: 12px;
}

.hero-text p:last-child {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  overflow: hidden;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(110%);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue-soft), var(--blue) 52%, #7ad9ff);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(78, 195, 255, 0.24);
}

.button.secondary {
  border-color: rgba(174, 233, 255, 0.3);
  background: rgba(238, 250, 255, 0.08);
  color: var(--paper);
}

.hero-facts {
  position: absolute;
  right: calc(clamp(20px, 5vw, 72px) + 58px);
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  width: min(420px, calc(100% - 96px));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(174, 233, 255, 0.25);
  border-radius: 8px;
  background: rgba(174, 233, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-facts div {
  padding: 16px 20px;
  background: rgba(3, 12, 26, 0.68);
}

.hero-facts dt {
  direction: ltr;
  unicode-bidi: isolate;
  color: var(--paper);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  width: 38px;
  height: 58px;
  place-items: start center;
  border: 1px solid rgba(174, 233, 255, 0.32);
  border-radius: 999px;
  background: rgba(3, 12, 26, 0.32);
  backdrop-filter: blur(12px);
}

.scroll-cue span {
  width: 4px;
  height: 9px;
  margin-top: 11px;
  border-radius: 99px;
  background: var(--blue-soft);
  animation: cueDrop 1.5s ease-in-out infinite;
}

.service-bridge {
  position: relative;
  padding: clamp(28px, 4vw, 54px) clamp(20px, 5vw, 72px) clamp(44px, 5vw, 74px);
  background:
    linear-gradient(180deg, rgba(2, 8, 21, 0.86), rgba(6, 22, 45, 0.74)),
    radial-gradient(circle at 18% 0%, rgba(78, 195, 255, 0.14), transparent 34%);
}

.service-bridge::before {
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(174, 233, 255, 0.44), rgba(216, 179, 106, 0.34), transparent);
}

.bridge-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(174, 233, 255, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(238, 250, 255, 0.1), rgba(238, 250, 255, 0.03)),
    rgba(5, 20, 39, 0.74);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.bridge-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue), var(--brass), transparent);
  animation: bridgePulse 4.8s ease-in-out infinite;
}

.bridge-heading {
  display: grid;
  align-content: center;
  padding: 26px;
  border-right: 1px solid rgba(174, 233, 255, 0.18);
}

.bridge-heading h2 {
  max-width: 430px;
  margin-bottom: 0;
  font-size: 2.05rem;
  line-height: 1.05;
}

.bridge-heading p:last-child {
  margin: 14px 0 0;
  color: var(--steel);
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  background: rgba(174, 233, 255, 0.12);
}

.quick-contact a {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 24px;
  background: rgba(4, 17, 38, 0.56);
  color: var(--mist);
  overflow-wrap: anywhere;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.quick-contact a::before {
  width: 36px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--brass));
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  background: rgba(10, 44, 78, 0.86);
  color: var(--paper);
  outline: none;
  transform: translateY(-2px);
}

.quick-contact span {
  color: var(--blue-soft);
  font-weight: 900;
}

.quick-contact p {
  margin: 0;
  color: var(--steel);
}

.bridge-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(174, 233, 255, 0.18);
  background: rgba(174, 233, 255, 0.12);
}

.bridge-flow span {
  position: relative;
  min-height: 58px;
  padding: 17px 22px;
  background: rgba(3, 12, 26, 0.48);
  color: var(--mist);
  font-weight: 900;
}

.bridge-flow span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--brass));
  box-shadow: 0 0 22px rgba(78, 195, 255, 0.45);
  content: "";
  vertical-align: 1px;
}

.section {
  position: relative;
  padding: var(--section-pad) clamp(20px, 5vw, 72px);
}

.section::before {
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(174, 233, 255, 0.36), rgba(216, 179, 106, 0.32), transparent);
}

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

.capability-section {
  padding-top: clamp(34px, 4vw, 58px);
}

.service-grid,
.privacy-grid,
.about-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.service-card,
.info-card,
.value-card,
.stats-panel,
.cta-panel,
.workflow-panel,
.privacy-grid article,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(238, 250, 255, 0.09), rgba(238, 250, 255, 0.025)),
    rgba(4, 17, 38, 0.74);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.service-card::before,
.info-card::before,
.value-card::before,
.privacy-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(78, 195, 255, 0.14) 42%, rgba(216, 179, 106, 0.1) 58%, transparent 100%);
  opacity: 0;
  transform: translateX(-30%);
  transition:
    opacity 220ms ease,
    transform 420ms ease;
}

.service-card:hover::before,
.info-card:hover::before,
.value-card:hover::before,
.privacy-grid article:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.service-card,
.info-card,
.value-card,
.privacy-grid article {
  min-height: 288px;
  padding: 26px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover,
.info-card:hover,
.value-card:hover,
.privacy-grid article:hover {
  border-color: rgba(174, 233, 255, 0.52);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.service-card > *,
.info-card > *,
.value-card > *,
.privacy-grid article > * {
  position: relative;
  z-index: 1;
}

.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.values-grid {
  margin-bottom: 16px;
}

.info-card p {
  color: var(--steel);
}

.value-card {
  min-height: 220px;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(174, 233, 255, 0.12);
}

.stats-panel > div {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 22px;
  background: rgba(3, 12, 26, 0.56);
}

.stats-panel span {
  color: var(--blue-soft);
  font-weight: 900;
}

.stats-panel strong {
  direction: ltr;
  unicode-bidi: isolate;
  color: var(--paper);
  font-size: 2rem;
  line-height: 1;
}

.core-services {
  grid-column: span 1;
}

.core-services p {
  margin: 0;
  color: var(--steel);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.05rem);
}

.cta-panel p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--mist);
}

.service-grid-detailed .service-card {
  min-height: 420px;
}

.service-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--steel);
  font-size: 0.92rem;
}

.service-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--brass));
  content: "";
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 34px);
}

.workflow-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.workflow-panel p:last-child {
  margin-bottom: 0;
  color: var(--mist);
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.workflow-strip span {
  min-height: 58px;
  padding: 15px;
  border: 1px solid rgba(174, 233, 255, 0.18);
  border-radius: 8px;
  background: rgba(174, 233, 255, 0.075);
  color: var(--paper);
  font-weight: 900;
}

.card-index,
.privacy-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  direction: ltr;
  unicode-bidi: isolate;
  color: var(--blue-soft);
  font-weight: 900;
}

.card-index::after,
.privacy-mark::after {
  display: inline-block;
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--brass));
}

.service-card p,
.info-card p,
.value-card p,
.privacy-grid p,
.faq-item p,
address span,
.contact-line span,
.site-footer {
  color: var(--steel);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.faq-item:hover {
  border-color: rgba(174, 233, 255, 0.48);
  transform: translateX(4px);
}

.faq-item.is-open {
  background:
    linear-gradient(140deg, rgba(78, 195, 255, 0.12), rgba(216, 179, 106, 0.05)),
    rgba(5, 20, 39, 0.84);
}

.faq-question {
  position: relative;
  display: block;
  width: 100%;
  min-height: 68px;
  padding: 21px 58px 21px 22px;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question::after {
  position: absolute;
  top: 22px;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(174, 233, 255, 0.25);
  border-radius: 8px;
  color: var(--blue-soft);
  content: "+";
  font-weight: 900;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  outline: none;
}

.faq-item.is-open .faq-question::after {
  background: rgba(78, 195, 255, 0.12);
  content: "-";
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 280ms ease,
    transform 340ms ease;
}

.faq-item.is-open .faq-content {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

.faq-content p {
  margin: 0;
  padding: 0 22px 24px;
}

.privacy-section {
  background:
    linear-gradient(180deg, rgba(238, 250, 255, 0.035), rgba(78, 195, 255, 0.045)),
    rgba(2, 8, 21, 0.2);
}

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

.privacy-grid article {
  min-height: 246px;
}

.contact-section {
  padding-top: clamp(64px, 7vw, 92px);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(174, 233, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(238, 250, 255, 0.1), rgba(78, 195, 255, 0.05) 34%, rgba(216, 179, 106, 0.08)),
    var(--glass-strong);
  box-shadow: var(--shadow);
}

.contact-panel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(174, 233, 255, 0.36), transparent);
}

address {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  font-style: normal;
}

address strong {
  color: var(--paper);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-list address {
  margin-top: 0;
}

.contact-line {
  display: grid;
  gap: 7px;
}

.contact-line strong {
  color: var(--paper);
}

.contact-line a {
  color: var(--blue-soft);
  font-weight: 800;
}

.contact-value {
  direction: ltr;
  unicode-bidi: isolate;
}

.consultation-form {
  display: grid;
  gap: 16px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consultation-form label {
  display: grid;
  gap: 7px;
  color: var(--mist);
  font-weight: 800;
}

.consultation-form small,
.legal-notice {
  color: var(--steel);
  font-size: 0.88rem;
  line-height: 1.65;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border: 1px solid rgba(174, 233, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 250, 255, 0.08), rgba(238, 250, 255, 0.025)),
    rgba(2, 8, 21, 0.7);
  color: var(--paper);
  padding: 14px 15px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.consultation-form select {
  color-scheme: dark;
}

.consultation-form textarea {
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--blue-soft);
  background: rgba(2, 8, 21, 0.88);
  box-shadow: 0 0 0 4px rgba(78, 195, 255, 0.13);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-soft);
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(2, 8, 21, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-grid strong {
  color: var(--paper);
}

.footer-grid span {
  color: var(--blue-soft);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.footer-rights {
  padding-top: 16px;
  border-top: 1px solid rgba(174, 233, 255, 0.14);
}

html[dir="rtl"] .brand,
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .bridge-heading,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .service-card,
html[dir="rtl"] .info-card,
html[dir="rtl"] .value-card,
html[dir="rtl"] .stats-panel,
html[dir="rtl"] .cta-panel,
html[dir="rtl"] .workflow-panel,
html[dir="rtl"] .privacy-grid article,
html[dir="rtl"] .quick-contact a,
html[dir="rtl"] .bridge-flow span,
html[dir="rtl"] .workflow-strip span,
html[dir="rtl"] .contact-line,
html[dir="rtl"] .site-footer {
  text-align: right;
}

html[dir="rtl"] .brand {
  direction: rtl;
}

html[lang="ar"] h1 {
  max-width: 940px;
  font-size: clamp(3rem, 5.4vw, 4.35rem);
  line-height: 1.16;
  font-weight: 900;
}

html[lang="ar"] h2 {
  font-size: clamp(2rem, 3.25vw, 2.82rem);
  line-height: 1.22;
  font-weight: 900;
}

html[lang="ar"] #contact .contact-copy h2 {
  font-size: clamp(2.05rem, 3vw, 2.9rem);
  line-height: 1.16;
}

html[lang="ar"] h3 {
  line-height: 1.42;
  font-weight: 800;
}

html[lang="ar"] .eyebrow,
html[lang="ar"] .nav-kicker {
  font-size: 0.86rem;
  letter-spacing: normal;
  text-transform: none;
}

html[lang="ar"] .brand strong {
  line-height: 1.45;
  font-weight: 900;
}

html[lang="ar"] .brand small {
  line-height: 1.55;
}

html[lang="ar"] .main-nav a,
html[lang="ar"] .language-toggle,
html[lang="ar"] .button,
html[lang="ar"] .faq-question,
html[lang="ar"] .consultation-form label,
html[lang="ar"] .form-status {
  font-weight: 800;
}

html[lang="ar"] .hero-text,
html[lang="ar"] .section-heading p,
html[lang="ar"] .contact-copy p,
html[lang="ar"] .service-card p,
html[lang="ar"] .info-card p,
html[lang="ar"] .value-card p,
html[lang="ar"] .privacy-grid p,
html[lang="ar"] .faq-item p,
html[lang="ar"] address span,
html[lang="ar"] .contact-line span,
html[lang="ar"] .site-footer {
  line-height: 1.82;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .hero-copy {
  justify-self: start;
}

html[dir="rtl"] .hero-wash {
  background:
    linear-gradient(270deg, rgba(2, 8, 21, 0.98) 0%, rgba(4, 17, 38, 0.9) 42%, rgba(6, 22, 45, 0.42) 72%, rgba(2, 8, 21, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 8, 21, 0.52) 0%, transparent 42%, rgba(2, 8, 21, 0.98) 100%);
}

html[dir="rtl"] .hero-grid {
  mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.95), transparent 72%);
}

html[dir="rtl"] .hero-facts {
  right: auto;
  left: calc(clamp(20px, 5vw, 72px) + 58px);
  text-align: right;
}

html[dir="rtl"] .scroll-cue {
  right: auto;
  left: clamp(20px, 5vw, 72px);
}

html[lang="ar"] .service-card,
html[lang="ar"] .info-card,
html[lang="ar"] .value-card,
html[lang="ar"] .privacy-grid article {
  padding-top: 28px;
}

html[dir="rtl"] .contact-value {
  display: inline-block;
  max-width: 100%;
  text-align: inherit;
  overflow-wrap: anywhere;
}

html[dir="rtl"] .consultation-form {
  text-align: right;
}

html[dir="rtl"] .consultation-form input,
html[dir="rtl"] .consultation-form select,
html[dir="rtl"] .consultation-form textarea {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .consultation-form input[type="email"],
html[dir="rtl"] .consultation-form input[type="tel"] {
  direction: ltr;
  text-align: right;
  unicode-bidi: plaintext;
}

html[dir="rtl"] .service-list li {
  padding-right: 18px;
  padding-left: 0;
}

html[dir="rtl"] .service-list li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .quick-contact a::before {
  justify-self: end;
}

html[dir="rtl"] .bridge-flow span::before {
  margin-right: 0;
  margin-left: 11px;
}

html[dir="rtl"] address span,
html[dir="rtl"] .footer-grid p:not(.contact-value) {
  unicode-bidi: plaintext;
}

html[dir="rtl"] .faq-question {
  padding: 22px 22px 22px 58px;
  text-align: right;
}

html[dir="rtl"] .faq-question::after {
  right: auto;
  left: 20px;
}

html[dir="rtl"] .faq-content p {
  padding: 0 22px 24px;
}

html[dir="rtl"] .contact-panel::before {
  left: auto;
  right: 45%;
}

html[dir="rtl"] .bridge-heading {
  border-right: 0;
  border-left: 1px solid rgba(174, 233, 255, 0.18);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.service-grid [data-reveal]:nth-child(2),
.privacy-grid [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.service-grid [data-reveal]:nth-child(3),
.privacy-grid [data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

.service-grid [data-reveal]:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes gridGlide {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 120px 0, 0 120px;
  }
}

@keyframes markSweep {
  0%,
  64% {
    transform: translateX(-120%) rotate(10deg);
  }
  78%,
  100% {
    transform: translateX(120%) rotate(10deg);
  }
}

@keyframes cueDrop {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes bridgePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.55);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes languageMorph {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
  42% {
    opacity: 0.48;
    filter: blur(5px);
    transform: translateY(7px) scale(0.996);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes languageButtonPulse {
  0% {
    box-shadow: none;
    transform: translateY(0) scale(1);
  }
  45% {
    box-shadow: 0 0 0 7px rgba(78, 195, 255, 0.12);
    transform: translateY(-1px) scale(1.04);
  }
  100% {
    box-shadow: none;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 190px;
  }

  .main-nav a,
  .language-toggle {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 0.92rem;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.72rem;
  }

  .hero-section {
    min-height: 92vh;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(2, 8, 21, 0.98) 0%, rgba(4, 17, 38, 0.88) 58%, rgba(2, 8, 21, 0.68) 100%),
      linear-gradient(180deg, rgba(2, 8, 21, 0.4), rgba(2, 8, 21, 0.95));
  }

  .faq-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .bridge-heading {
    border-right: 0;
    border-bottom: 1px solid rgba(174, 233, 255, 0.18);
  }

  .sticky-heading {
    position: static;
  }

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

  .about-grid,
  .stats-panel,
  .workflow-panel,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-panel {
    align-items: stretch;
  }

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

  .contact-panel::before {
    display: none;
  }

  html[lang="ar"] h1 {
    font-size: clamp(2.9rem, 7.8vw, 4.15rem);
  }

  html[lang="ar"] h2 {
    font-size: clamp(2rem, 5vw, 2.72rem);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    align-items: center;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  html[dir="rtl"] .site-header {
    direction: ltr;
  }

  html[dir="rtl"] .brand {
    order: 2;
    margin-left: auto;
    direction: rtl;
  }

  html[dir="rtl"] .menu-toggle {
    order: 1;
    margin-right: 0;
    margin-left: 0;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    right: 10px;
    left: 10px;
    z-index: 49;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(174, 233, 255, 0.28);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(238, 250, 255, 0.11), rgba(78, 195, 255, 0.045)),
      rgba(3, 12, 26, 0.92);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    backdrop-filter: blur(18px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid rgba(174, 233, 255, 0.16);
    background: rgba(174, 233, 255, 0.075);
  }

  .language-toggle {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
  }

  .main-nav a::before {
    color: var(--blue-soft);
    content: attr(data-index);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-kicker {
    display: block;
    padding: 2px 4px 4px;
    color: var(--blue-soft);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  html[dir="rtl"] .main-nav a {
    flex-direction: row-reverse;
  }

  .hero-section {
    min-height: auto;
    display: block;
    padding: 108px 20px 22px;
  }

  .hero-bg {
    object-position: 64% 50%;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-text,
  .section-heading p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-facts {
    position: static;
    grid-template-columns: 1fr;
    width: auto;
    max-width: none;
    margin-top: 18px;
  }

  .hero-facts div {
    padding: 12px 16px;
  }

  .hero-facts dt {
    font-size: 1.45rem;
  }

  .hero-facts dd {
    margin-top: 4px;
    font-size: 0.82rem;
  }

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

  .scroll-cue {
    display: none;
  }

  .service-grid,
  .privacy-grid,
  .about-grid,
  .values-grid,
  .stats-panel,
  .workflow-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-panel .button {
    width: 100%;
  }

  .workflow-strip {
    grid-template-columns: 1fr;
  }

  .service-bridge {
    padding: 20px 14px 44px;
  }

  .bridge-heading {
    padding: 22px;
  }

  .bridge-heading h2 {
    font-size: 1.55rem;
  }

  .quick-contact {
    grid-template-columns: 1fr;
  }

  .bridge-flow {
    grid-template-columns: 1fr;
  }

  .bridge-flow span {
    min-height: 50px;
    padding: 14px;
    font-size: 0.9rem;
  }

  .privacy-grid article,
  .info-card,
  .value-card,
  .service-card {
    min-height: auto;
  }

  html[lang="ar"] h1 {
    font-size: clamp(2.45rem, 10vw, 3.25rem);
    line-height: 1.18;
  }

  html[lang="ar"] h2,
  html[lang="ar"] #contact .contact-copy h2 {
    font-size: clamp(1.78rem, 8vw, 2.25rem);
    line-height: 1.24;
  }

  html[lang="ar"] .hero-text,
  html[lang="ar"] .section-heading p,
  html[lang="ar"] .contact-copy p,
  html[lang="ar"] .service-card p,
  html[lang="ar"] .info-card p,
  html[lang="ar"] .value-card p,
  html[lang="ar"] .privacy-grid p,
  html[lang="ar"] .faq-item p,
  html[lang="ar"] address span,
  html[lang="ar"] .contact-line span,
  html[lang="ar"] .site-footer {
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.92rem;
  }

  .hero-section {
    padding-bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-panel {
    padding: 20px;
  }

  html[lang="ar"] h1 {
    font-size: 2.15rem;
  }

  html[lang="ar"] h2,
  html[lang="ar"] #contact .contact-copy h2 {
    font-size: 1.82rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
