:root {
  --navy: #082445;
  --navy-deep: #06182f;
  --navy-mid: #0d3a66;
  --navy-soft: #123f6c;
  --gold: #c9a227;
  --gold-bright: #e0c15a;
  --ice: #8ec5d8;
  --ice-strong: #6eb4cd;
  --paper: #f5f7fb;
  --ink: #10243c;
  --muted: #6b7c90;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(6, 24, 47, 0.18);
  --radius: 22px;
  --max: 1180px;
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "IBM Plex Sans Arabic", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

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

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

.skip {
  position: absolute;
  left: 1rem;
  top: -80px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip:focus {
  top: 1rem;
}

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

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

h1,
h2,
h3 {
  font-family: "Outfit", "IBM Plex Sans Arabic", sans-serif;
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border: 0;
  margin: 18px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-gold {
  background: linear-gradient(180deg, #e4c45f, var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(8, 36, 69, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.18em;
}

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

.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
}

.brand-name span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--gold-bright);
}

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

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.lang-toggle button {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
}

.lang-toggle button.is-active {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(201, 162, 39, 0.16), transparent 55%),
    radial-gradient(700px 420px at 10% 90%, rgba(110, 180, 205, 0.16), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 72px 0 140px;
}

.hero h1 {
  color: #f7f9fc;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: radial-gradient(120% 90px at 50% 0, transparent 40%, var(--paper) 41%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero p {
  color: rgba(244, 247, 251, 0.78);
  font-size: 1.12rem;
  max-width: 52ch;
}

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

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta strong {
  display: block;
  font-size: 1.45rem;
  color: var(--gold-bright);
  font-family: "Outfit", sans-serif;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.mark-stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(142, 197, 216, 0.35);
  border-radius: 50%;
  animation: spin 36s linear infinite;
}

.orbit-a { width: 360px; height: 360px; }
.orbit-b { width: 270px; height: 270px; animation-direction: reverse; animation-duration: 28s; }
.orbit-c { width: 180px; height: 180px; }

.hero-logo {
  width: 210px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
  animation: float 6s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  50% { transform: translateY(-10px); }
}

.trust {
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.trust-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.panel {
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(142, 197, 216, 0.4);
  border-radius: 50%;
  right: -40px;
  bottom: -50px;
}

html[dir="rtl"] .panel::before {
  right: auto;
  left: -40px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.checklist li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.plus {
  color: var(--gold-bright);
  font-weight: 800;
}

.services {
  background: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: var(--paper);
  border: 1px solid #e6ecf3;
  border-radius: 20px;
  padding: 26px;
  min-height: 230px;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow);
}

.icon-tri {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.approach {
  background:
    linear-gradient(180deg, rgba(8, 36, 69, 0.96), #082445),
    var(--navy);
  color: #fff;
}

.approach .lead {
  color: rgba(255, 255, 255, 0.72);
}

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

.step {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  border: 1px solid #d7e0ea;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  color: var(--navy-mid);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.stat-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
}

.stat b {
  display: block;
  font-size: 2rem;
  color: var(--gold-bright);
  font-family: "Outfit", sans-serif;
}

.contact {
  background: #fff;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5dee8;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfcfe;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 162, 39, 0.45);
  border-color: var(--gold);
}

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

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

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.success {
  display: none;
  background: #eef8f0;
  color: #1d5c38;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
}

.success.is-visible {
  display: block;
}

.contact-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
}

.contact-card a {
  color: var(--navy-mid);
  font-weight: 700;
}

.ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 28px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal {
  font-size: 0.82rem;
  padding-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .why-grid,
  .cards,
  .steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    inset-inline: 0;
    background: #082445;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding-top: 40px;
  }

  .mark-stage {
    min-height: 300px;
  }
}
