:root {
  --navy: #071d49;
  --blue: #0b6cf2;
  --blue-dark: #0754c8;
  --cyan: #4bc7f5;
  --ink: #10203b;
  --muted: #5f6f86;
  --line: #dce7f4;
  --surface: #f4f9ff;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 29, 73, 0.1);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  top: -260px;
  right: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 199, 245, 0.18), rgba(75, 199, 245, 0));
  content: "";
}

a {
  color: var(--blue-dark);
}

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

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

.skip-link {
  position: absolute;
  z-index: 100;
  top: -60px;
  left: 20px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 231, 244, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(11, 108, 242, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--surface);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--blue) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    linear-gradient(135deg, rgba(244, 249, 255, 0.95), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(11, 108, 242, 0.2), transparent 34%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 4px;
  background: var(--cyan);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.16;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.2rem;
}

.hero-ar {
  margin: 0 0 20px;
  color: var(--blue-dark);
  font-family: Tahoma, Arial, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--blue);
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(11, 108, 242, 0.18);
}

.button:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--blue-dark);
  background: var(--surface);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgba(220, 231, 244, 0.92);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(75, 199, 245, 0.26), rgba(11, 108, 242, 0.08));
  content: "";
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 28px;
  border-radius: 34px;
  object-fit: cover;
}

.hero-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.3rem;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 22px 24px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  color: var(--navy);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--surface);
}

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

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 29, 73, 0.05);
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
}

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

.identity-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.identity-panel {
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #0a3578);
  box-shadow: var(--shadow);
}

.identity-panel h3,
.identity-panel a {
  color: var(--white);
}

.identity-panel p {
  color: #d8e8ff;
}

.identity-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.identity-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.identity-row:first-child {
  padding-top: 0;
}

.identity-row:last-child {
  border-bottom: 0;
}

.identity-row dt {
  color: var(--muted);
  font-weight: 700;
}

.identity-row dd {
  margin: 0;
  color: var(--navy);
  font-weight: 650;
}

.arabic-name {
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.9;
}

.notice {
  padding: 22px 24px;
  border: 1px solid #cfe3ff;
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  color: #3f5675;
  background: #f3f8ff;
}

.contact-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0b4a9f);
}

.contact-band .section-heading h2,
.contact-band .section-heading p {
  color: var(--white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.contact-card span {
  display: block;
  margin-bottom: 10px;
  color: #b9d9ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.08rem;
}

.page-hero {
  padding: 76px 0 56px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 60px;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.prose p,
.prose li {
  color: #40516b;
}

.prose ul {
  padding-left: 22px;
}

.prose a {
  overflow-wrap: anywhere;
}

.side-nav {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.side-nav strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
}

.side-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
}

.site-footer {
  padding: 54px 0 22px;
  color: #c9daf3;
  background: #06162f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 46px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #aebfd8;
}

.footer-links strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-links a {
  display: block;
  margin: 7px 0;
  color: #c9daf3;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8ea4c3;
  font-size: 0.87rem;
}

.not-found {
  display: grid;
  min-height: 64vh;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.not-found strong {
  color: var(--blue);
  font-size: 5rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .hero-grid,
  .identity-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

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

  .content-layout {
    gap: 32px;
  }

  .side-nav {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-card {
    padding: 28px;
  }

  .trust-grid,
  .card-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .identity-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .section {
    padding: 68px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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