:root {
  --ink: #071319;
  --ink-soft: #10232b;
  --paper: #f4f0e7;
  --paper-deep: #e9e1d2;
  --gold: #f0b90b;
  --gold-soft: #ffe795;
  --aqua: #64d8cb;
  --white: #fffdf8;
  --muted: #617078;
  --line: rgba(7, 19, 25, 0.13);
  --shadow: 0 28px 70px rgba(7, 19, 25, 0.13);
  --radius: 28px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(100, 216, 203, 0.16), transparent 26rem),
    var(--paper);
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.ltr {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-160%);
}

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

.risk-strip {
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 12px;
  text-align: center;
}

.risk-strip strong {
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(7, 19, 25, 0.08);
  background: rgba(244, 240, 231, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 74px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border: 3px solid var(--gold);
  transform: rotate(45deg);
}

.brand-mark::before {
  inset: 7px auto auto 7px;
}

.brand-mark::after {
  inset: auto 7px 7px auto;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #30424a;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #000;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
}

.language-switcher a {
  min-width: 38px;
  padding: 4px 9px;
  border-radius: 99px;
  text-align: center;
}

.language-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--white) !important;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.progress {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -1px;
  width: 0;
  height: 2px;
  background: var(--gold);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 80px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12% auto auto -12%;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 19, 25, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(7, 19, 25, 0.025),
    0 0 0 140px rgba(7, 19, 25, 0.02);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 7px 12px;
  border: 1px solid rgba(7, 19, 25, 0.12);
  border-radius: 999px;
  color: #31464d;
  background: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 850;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(100, 216, 203, 0.18);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(43px, 6vw, 78px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.ltr h1 {
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: auto -2% 7% -2%;
  z-index: -1;
  height: 25%;
  background: var(--gold);
  transform: rotate(-1deg);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #465860;
  font-size: clamp(17px, 2vw, 20px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(240, 185, 11, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(240, 185, 11, 0.3);
}

.button-secondary {
  border-color: rgba(7, 19, 25, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

.arrow {
  font-size: 19px;
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  color: #69777d;
  font-size: 12px;
  font-weight: 700;
}

.microcopy span::before {
  content: "✓";
  margin-inline-end: 6px;
  color: #17897d;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(480px, 100%);
  aspect-ratio: 1;
  border: 1px dashed rgba(7, 19, 25, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.main-card {
  inset: 50% auto auto 50%;
  width: min(420px, 89%);
  padding: 28px;
  transform: translate(-50%, -50%) rotate(-2.6deg);
}

.main-card::before {
  content: "";
  position: absolute;
  inset: -110px -80px auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(1px);
  opacity: 0.12;
}

.card-label {
  position: relative;
  color: rgba(255, 255, 255, 0.53);
  font-size: 12px;
  font-weight: 800;
}

.card-title {
  position: relative;
  margin: 8px 0 24px;
  font-size: 25px;
  font-weight: 900;
}

.checklist {
  display: grid;
  gap: 12px;
}

.check-row {
  display: grid;
  grid-template-columns: 37px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.check-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 950;
}

.check-copy b,
.check-copy small {
  display: block;
}

.check-copy b {
  font-size: 13px;
}

.check-copy small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.status {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 850;
}

.float-card {
  padding: 14px 17px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.float-card.one {
  inset: 10% 0 auto auto;
  transform: rotate(5deg);
}

.float-card.two {
  inset: auto auto 7% 1%;
  color: var(--ink);
  background: var(--aqua);
  transform: rotate(-5deg);
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.kicker {
  margin-bottom: 12px;
  color: #907100;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-dark .kicker {
  color: var(--gold);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.7vw, 60px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.section-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-heading > p {
  color: rgba(255, 255, 255, 0.58);
}

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

.feature-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255, 253, 248, 0.65);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(7, 19, 25, 0.09);
}

.feature-card::after {
  content: attr(data-number);
  position: absolute;
  inset: auto auto -34px 16px;
  color: rgba(7, 19, 25, 0.04);
  font-size: 150px;
  font-weight: 950;
  line-height: 1;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 50px;
  place-items: center;
  border-radius: 15px;
  color: var(--ink);
  background: var(--gold);
  font-size: 22px;
  font-weight: 950;
}

.feature-card:nth-child(2) .card-icon {
  background: var(--aqua);
}

.feature-card:nth-child(3) .card-icon {
  color: var(--white);
  background: var(--ink);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 950;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.steps {
  counter-reset: step;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 90px 0.75fr 1.25fr;
  align-items: start;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step::before {
  content: "0" counter(step);
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 0;
  font-size: 22px;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
}

.safety-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.safety-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  color: var(--white);
  background: var(--ink-soft);
}

.safety-panel::after {
  content: "";
  position: absolute;
  inset: auto -90px -100px auto;
  width: 280px;
  height: 280px;
  border: 60px solid rgba(240, 185, 11, 0.8);
  border-radius: 50%;
}

.shield {
  display: grid;
  width: 76px;
  height: 86px;
  margin-bottom: 84px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 38px 38px 44px 44px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 950;
}

.safety-panel h3 {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin-bottom: 10px;
  font-size: 29px;
}

.safety-panel p {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.safety-copy h2 {
  margin-bottom: 22px;
}

.safety-copy > p {
  color: var(--muted);
}

.safety-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.safety-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 800;
}

.safety-list li::before {
  content: "✓";
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--aqua);
  font-size: 12px;
  font-weight: 950;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.ltr .faq-list summary {
  padding: 25px 0 25px 54px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  inset: 50% 10px auto auto;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.ltr .faq-list summary::before,
.ltr .faq-list summary::after {
  inset: 50% auto auto 10px;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 850px;
  padding: 0 54px 24px 0;
  color: var(--muted);
}

.ltr .faq-list details p {
  padding: 0 0 24px 54px;
}

.cta-band {
  padding: 12px 0 90px;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 66px);
  border-radius: 34px;
  color: var(--white);
  background: var(--ink);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: -130px auto auto -100px;
  width: 360px;
  height: 360px;
  border: 70px solid var(--gold);
  border-radius: 50%;
  opacity: 0.95;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-content h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.cta-content p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.footer-note {
  color: var(--muted);
  font-size: 12px;
}

.footer-note strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px 22px;
  color: #42545c;
  font-size: 13px;
  font-weight: 800;
}

.ltr .footer-links {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .safety-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-visual {
    min-height: 480px;
  }

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

  .feature-card {
    min-height: 250px;
  }

  .card-icon {
    margin-bottom: 32px;
  }

  .step {
    grid-template-columns: 60px 1fr;
  }

  .step p {
    grid-column: 2;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .nav-links {
    position: absolute;
    inset: 74px 14px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 24px 50px rgba(7, 19, 25, 0.14);
  }

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

  .language-switcher {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: clamp(41px, 13vw, 64px);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 36px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .float-card.one {
    right: 2%;
  }

  .float-card.two {
    left: 0;
    bottom: 2%;
  }

  .step {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .cta-content {
    grid-template-columns: 1fr;
  }

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

  .faq-list summary {
    font-size: 17px;
  }
}

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

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