:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F8F8FF;
  --surface-3: #F1F1F8;
  --line: #E6E6F0;
  --line-2: #EFEFF5;

  --ink: #0F0F1F;
  --ink-2: #3C3C56;
  --muted: #6E6E86;
  --muted-2: #9B9BAC;

  --indigo-50: #EEF0FF;
  --indigo-100: #E0E2FF;
  --indigo-500: #6366F1;
  --indigo-600: #4F46E5;
  --indigo-700: #4338CA;
  --teal-500: #0D9488;
  --teal-400: #14B8A6;
  --emerald-500: #10B981;
  --amber-500: #F59E0B;

  --grad: linear-gradient(135deg, #4F46E5 0%, #6366F1 45%, #0D9488 100%);
  --grad-soft: linear-gradient(135deg, #EEF0FF 0%, #F0FBF9 100%);
  --grad-band: linear-gradient(135deg, #4F46E5 0%, #5B53EB 30%, #0D9488 100%);

  --shadow-xs: 0 1px 2px rgba(15,15,31,.04);
  --shadow-sm: 0 2px 6px rgba(15,15,31,.06), 0 1px 2px rgba(15,15,31,.04);
  --shadow-md: 0 10px 26px rgba(15,15,31,.08), 0 2px 6px rgba(15,15,31,.05);
  --shadow-lg: 0 26px 60px rgba(15,15,31,.12), 0 6px 16px rgba(15,15,31,.06);
  --shadow-glow: 0 18px 40px rgba(79,70,229,.28);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --space: clamp(56px, 8vw, 104px);
  --gutter: clamp(20px, 4vw, 36px);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-ar: 'Tajawal', 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--indigo-100); color: var(--indigo-700); }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
html[lang="ar"] { font-family: var(--font-ar); }
html[lang="en"] { font-family: var(--font); }
body {
  background: var(--bg); color: var(--ink); font-family: inherit;
  line-height: 1.65; font-size: 17px;
  min-height: 100vh; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.skip-link {
  position: absolute; inset-inline-start: 12px; top: -50px; padding: 10px 16px;
  background: var(--ink); color: #fff; border-radius: 10px; z-index: 10000; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ─── Buttons / Pills ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 22px 48px rgba(79,70,229,.34); }
.btn--sm { padding: 9px 16px; font-size: .9rem; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600;
  background: var(--indigo-50); color: var(--indigo-700);
  border: 1px solid var(--indigo-100); box-shadow: var(--shadow-xs);
}
.eyebrow {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--surface-3); color: var(--muted);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
}
html[lang="ar"] .eyebrow { text-transform: none; letter-spacing: 0; font-size: .82rem; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* ─── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line); box-shadow: var(--shadow-xs); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__logo { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow-sm); flex: none; }
.brand__wordmark { height: 22px; width: auto; display: block; }
.footer__brand .brand__logo { width: 32px; height: 32px; }
.footer__brand .brand__wordmark { height: 20px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 600; color: var(--ink-2); font-size: .96rem; transition: color .15s; }
.nav__links a:hover { color: var(--indigo-600); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  padding: 8px 14px; border-radius: 999px; background: var(--surface-2);
  border: 1px solid var(--line); font-weight: 600; font-size: .85rem; color: var(--ink-2);
  font-family: var(--font);
}
html[lang="ar"] .lang-toggle { font-family: var(--font-ar); }
.lang-toggle:hover { background: var(--surface-3); }
.nav__burger { display: none; flex-direction: column; gap: 4px; width: 36px; height: 36px; padding: 8px; }
.nav__burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-menu { display: none; padding: 16px var(--gutter) 22px; background: #fff; border-bottom: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 0; font-weight: 600; color: var(--ink-2); }
.mobile-menu .btn { width: 100%; margin-top: 10px; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding-block: clamp(60px, 9vw, 120px) clamp(60px, 9vw, 100px); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
}
.hero__blob--a { width: 520px; height: 520px; inset-block-start: -120px; inset-inline-end: -120px;
  background: radial-gradient(circle, rgba(79,70,229,.42), transparent 70%); }
.hero__blob--b { width: 440px; height: 440px; inset-block-end: -100px; inset-inline-start: -100px;
  background: radial-gradient(circle, rgba(13,148,136,.32), transparent 70%); }
.hero__grid {
  position: absolute; inset: 0; opacity: .26;
  background-image:
    linear-gradient(rgba(79,70,229,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 22px; max-width: 620px; }
.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 800; line-height: 1.04;
  letter-spacing: -0.03em; color: var(--ink); margin-block-start: 6px;
}
.hero__title span { display: block; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.18rem); color: var(--ink-2); max-width: 56ch; line-height: 1.7; }
.hero__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-block-start: 4px; }
.hero__under { color: var(--muted); font-size: .92rem; font-weight: 600; }
.hero__trust { color: var(--muted); font-size: .9rem; }

.hero__visual { position: relative; display: grid; place-items: center; min-height: 540px; }

/* ─── Store badge ───────────────────────────────────────────── */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px; border-radius: 14px;
  background: var(--ink); color: #fff;
  box-shadow: var(--shadow-md); transition: transform .15s, box-shadow .2s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.store-badge svg { color: #fff; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.05; }
.store-badge small { font-size: .68rem; opacity: .82; }
.store-badge strong { font-size: 1.05rem; font-weight: 700; }
.store-badge--lg { padding: 14px 24px; }
.store-badge--lg strong { font-size: 1.16rem; }

/* ─── Phone mock ────────────────────────────────────────────── */
.phone {
  width: 320px; aspect-ratio: 320 / 640; border-radius: 42px; padding: 12px;
  background: linear-gradient(180deg, #1B1B2B, #0C0C16);
  box-shadow: 0 40px 70px rgba(15,15,31,.22), 0 12px 22px rgba(15,15,31,.12), inset 0 0 0 2px rgba(255,255,255,.04);
  position: relative;
}
.phone--tilt { transform: rotate(-3deg); }
.phone__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 112px; height: 24px; background: #0C0C16; border-radius: 12px; z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FF 100%);
}
.app { display: flex; flex-direction: column; gap: 12px; padding: 56px 16px 18px; height: 100%; }
.app__top { display: flex; align-items: center; justify-content: space-between; }
.app__icon { width: 32px; height: 32px; border-radius: 9px; box-shadow: var(--shadow-xs); }
.app__bell {
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: 12px; background: var(--surface-3); font-size: 18px;
}
.app__summary {
  background: var(--grad); color: #fff; border-radius: var(--radius);
  padding: 14px 16px; box-shadow: 0 10px 22px rgba(79,70,229,.28);
}
.app__summary-label { font-size: .8rem; opacity: .82; margin: 0; }
.app__summary-value { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; margin: 0; }
.app__summary-sub { font-size: .76rem; opacity: .88; margin-top: 2px; }
.app__section { font-size: .78rem; color: var(--muted); font-weight: 600; }
.app__list { display: flex; flex-direction: column; gap: 8px; }
.sub-row {
  display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center;
  background: #fff; border: 1px solid var(--line-2); border-radius: 12px;
  padding: 9px 10px;
}
.sub-row__logo {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: .72rem;
}
.sub-row__meta { display: flex; flex-direction: column; line-height: 1.15; }
.sub-row__meta strong { font-size: .88rem; }
.sub-row__meta small { font-size: .72rem; color: var(--muted); }
.sub-row__amt { font-weight: 700; color: var(--emerald-500); font-size: .88rem; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 13px; box-shadow: var(--shadow-md); z-index: 3;
}
.float-card span { font-size: 22px; }
.float-card div { display: flex; flex-direction: column; line-height: 1.15; }
.float-card strong { font-size: .82rem; }
.float-card small { font-size: .7rem; color: var(--muted); }
.float-card--bell { inset-block-start: 10%; inset-inline-end: -16px; }

/* ─── Hook ──────────────────────────────────────────────────── */
.hook { position: relative; padding-block: var(--space); overflow: hidden; }
.hook__inner { position: relative; max-width: 940px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; gap: 22px; align-items: center; }
.hook__q {
  font-size: clamp(1.85rem, 4.4vw, 3.4rem); font-weight: 800; line-height: 1.18;
  letter-spacing: -.02em; color: var(--ink); max-width: 22ch;
}
.hook__a { color: var(--ink-2); font-size: clamp(1rem, 1.4vw, 1.1rem); max-width: 56ch; line-height: 1.75; }
.hook__phantoms {
  position: absolute; inset: 0; pointer-events: none;
  display: grid; grid-template-columns: repeat(5, 1fr); align-items: center;
  z-index: -1;
}
.phantom {
  font-family: var(--font); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--indigo-600); opacity: .07; letter-spacing: -.01em;
  direction: ltr; unicode-bidi: isolate;
}
.phantom:nth-child(1) { transform: translate(-12%, -90%); }
.phantom:nth-child(2) { transform: translate( 18%,  60%); }
.phantom:nth-child(3) { transform: translate(  0%, -54%); color: var(--teal-500); opacity: .06; }
.phantom:nth-child(4) { transform: translate(-22%,  74%); }
.phantom:nth-child(5) { transform: translate( 14%, -76%); color: var(--amber-500); opacity: .08; }

/* ─── Section heads ─────────────────────────────────────────── */
.section-head { text-align: center; max-width: 780px; margin-inline: auto; margin-block-end: clamp(36px, 5vw, 56px); display: flex; flex-direction: column; gap: 12px; align-items: center; }
.section-head--start { text-align: start; align-items: flex-start; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; color: var(--ink); }
.section-sub { font-size: 1.04rem; color: var(--muted); max-width: 60ch; line-height: 1.7; }

/* ─── Steps ─────────────────────────────────────────────────── */
.steps { padding-block: var(--space); background: var(--surface-2); border-block: 1px solid var(--line-2); }
.step-list { display: grid; gap: 0; max-width: 920px; margin-inline: auto; }
.step-item {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 44px);
  align-items: center; padding-block: clamp(28px, 4vw, 40px);
  border-block-end: 1px solid var(--line);
}
.step-item:last-child { border-block-end: 0; }
.step-num {
  font-size: clamp(3.6rem, 8vw, 6rem); font-weight: 800; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.04em; min-width: 1.2ch; text-align: center;
}
.step-body h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; margin-block-end: 8px; color: var(--ink); }
.step-body p { color: var(--ink-2); line-height: 1.7; max-width: 56ch; }

/* ─── Showcase ──────────────────────────────────────────────── */
.showcase { padding-block: var(--space); }
.show-stage { display: flex; justify-content: center; align-items: flex-start; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap; }
.show-phone { display: flex; flex-direction: column; align-items: center; gap: 18px; max-width: 320px; }
.mini-app {
  width: 280px; aspect-ratio: 280/420; border-radius: 28px; padding: 22px;
  background: linear-gradient(180deg, #fff 0%, #F8F9FF 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 16px;
}
.show-phone--cal .mini-app { transform: rotate(-2deg); }
.show-phone--alert .mini-app { transform: rotate(2deg); }
.mini-app__title { font-size: 1rem; font-weight: 700; color: var(--ink); }
.mini-cal {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  font-size: .74rem;
}
.mini-cal > span { color: var(--muted-2); font-weight: 600; text-align: center; }
.mini-cal > i {
  display: grid; place-items: center; height: 28px; border-radius: 8px;
  background: var(--surface-3); color: var(--ink-2); font-style: normal; font-weight: 600;
}
.mini-cal > i.dot { background: var(--indigo-50); color: var(--indigo-700); }
.mini-cal > i.dot--t { background: rgba(13,148,136,.18); color: var(--teal-500); }
.mini-cal > i.dot--e { background: rgba(16,185,129,.16); color: #047857; }

.mini-app--alert { justify-content: space-between; }
.alert-toast {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 12px; box-shadow: var(--shadow-sm);
}
.alert-toast span { font-size: 22px; }
.alert-toast div { display: flex; flex-direction: column; line-height: 1.2; }
.alert-toast strong { font-size: .92rem; }
.alert-toast small { font-size: .76rem; color: var(--muted); }
.alert-actions { display: flex; gap: 8px; }
.chip { flex: 1; padding: 10px 14px; border-radius: 12px; text-align: center; font-weight: 600; font-size: .88rem; }
.chip--ghost { background: var(--surface-3); color: var(--ink-2); }
.chip--solid { background: var(--grad); color: #fff; }

.show-cap { color: var(--ink-2); font-size: .98rem; font-weight: 600; text-align: center; max-width: 26ch; }

/* ─── Promise band ──────────────────────────────────────────── */
.promise { padding-block: clamp(64px, 8vw, 100px); background: var(--grad-band); color: #fff; position: relative; overflow: hidden; }
.promise::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 30% 20%, rgba(255,255,255,.18), transparent 70%);
  pointer-events: none;
}
.promise__inner { position: relative; text-align: center; max-width: 920px; margin-inline: auto; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.promise__kicker {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24);
  font-size: .82rem; font-weight: 600;
}
.promise__line {
  font-size: clamp(1.6rem, 3.6vw, 2.8rem); font-weight: 800; line-height: 1.25;
  letter-spacing: -.02em; max-width: 22ch;
}
.promise__elab { color: rgba(255,255,255,.88); font-size: 1.04rem; max-width: 56ch; line-height: 1.75; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq { padding-block: var(--space); }
.faq__inner { max-width: 840px; margin-inline: auto; }
.qa-list { display: flex; flex-direction: column; }
.qa { border-block-end: 1px solid var(--line); }
.qa:first-child { border-block-start: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 22px; font-size: clamp(1.02rem, 1.6vw, 1.18rem); font-weight: 700; color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary i {
  flex: none; display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: 50%; background: var(--surface-3); color: var(--indigo-600); font-style: normal;
  font-size: 1.1rem; transition: transform .25s, background .2s;
}
.qa[open] summary i { transform: rotate(45deg); background: var(--indigo-50); }
.qa p { padding-block-end: 22px; color: var(--ink-2); line-height: 1.8; max-width: 64ch; }

/* ─── CTA ───────────────────────────────────────────────────── */
.cta { position: relative; padding-block: clamp(72px, 10vw, 120px); overflow: hidden; background: var(--surface-2); border-block-start: 1px solid var(--line-2); }
.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta__glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta__glow--a { width: 460px; height: 460px; inset-block-start: -160px; inset-inline-end: -140px;
  background: radial-gradient(circle, rgba(79,70,229,.32), transparent 70%); }
.cta__glow--b { width: 380px; height: 380px; inset-block-end: -140px; inset-inline-start: -140px;
  background: radial-gradient(circle, rgba(13,148,136,.30), transparent 70%); }
.cta__inner { position: relative; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.cta__title { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; color: var(--ink); max-width: 18ch; }
.cta__sub { color: var(--ink-2); font-size: 1.08rem; max-width: 50ch; }
.cta__row { margin-block-start: 16px; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer { padding-block: 48px 28px; background: #fff; border-block-start: 1px solid var(--line); }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-block-end: 24px; border-block-end: 1px solid var(--line); }
.footer__brand { display: flex; flex-direction: column; gap: 10px; max-width: 320px; }
.footer__brand p { color: var(--muted); font-size: .94rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { color: var(--ink-2); font-weight: 600; font-size: .94rem; }
.footer__links a:hover { color: var(--indigo-600); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block-start: 24px; flex-wrap: wrap; color: var(--muted); font-size: .88rem; }
.footer__credit { display: inline-flex; align-items: center; gap: 8px; }
.footer__credit a { display: inline-flex; align-items: center; gap: 6px; color: var(--indigo-600); font-weight: 600; }
.footer__credit a:hover { text-decoration: underline; }

/* ─── Legal pages ───────────────────────────────────────────── */
.legal { padding-block: clamp(40px, 6vw, 72px) var(--space); }
.legal__wrap { max-width: 800px; margin-inline: auto; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--indigo-600); margin-bottom: 26px; }
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal .updated { color: var(--muted-2); font-size: .92rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-2); }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: disc; padding-inline-start: 26px; margin-bottom: 16px; display: grid; gap: 8px; }
.legal a { color: var(--indigo-600); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }

/* ─── Reveal animation ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ─── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center; gap: 22px;
  grid-auto-rows: max-content; align-content: center;
  background: radial-gradient(120% 80% at 50% 0%, #EEF0FF 0%, #FFFFFF 55%, #F5FBF8 100%);
  transition: opacity .55s ease, visibility 0s linear .55s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__stage { position: relative; width: 104px; height: 104px; display: grid; place-items: center; }
.preloader__ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(79,70,229,0) 0deg, #6366F1 70deg, #4F46E5 140deg, #0D9488 220deg, rgba(13,148,136,0) 300deg);
  -webkit-mask: radial-gradient(circle, transparent 42px, #000 44px, #000 50px, transparent 51px);
          mask: radial-gradient(circle, transparent 42px, #000 44px, #000 50px, transparent 51px);
  animation: zk-spin 1.4s linear infinite;
  filter: drop-shadow(0 8px 18px rgba(79,70,229,.25));
}
.preloader__logo {
  width: 72px; height: 72px; border-radius: 18px;
  box-shadow: 0 12px 32px rgba(79,70,229,.32), 0 2px 6px rgba(13,148,136,.18);
  animation: zk-pulse 1.8s ease-in-out infinite;
  background: #fff; position: relative; z-index: 1;
}
.preloader__word { display: inline-flex; gap: 1px; font-family: var(--font); font-weight: 800; font-size: 1.05rem; letter-spacing: .01em; direction: ltr; unicode-bidi: isolate; }
.preloader__char {
  display: inline-block;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 45%, #0D9488 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .22;
  animation: zk-wave 1.4s ease-in-out infinite;
}
.preloader__char:nth-child(1) { animation-delay: .00s; }
.preloader__char:nth-child(2) { animation-delay: .08s; }
.preloader__char:nth-child(3) { animation-delay: .16s; }
.preloader__char:nth-child(4) { animation-delay: .24s; }
.preloader__char:nth-child(5) { animation-delay: .32s; }
.preloader__char:nth-child(6) { animation-delay: .40s; }
.preloader__char:nth-child(7) { animation-delay: .48s; }
.preloader__bar { position: relative; width: 132px; height: 3px; border-radius: 999px; background: rgba(79,70,229,.12); overflow: hidden; }
.preloader__bar::after { content: ""; position: absolute; inset: 0; width: 42%; border-radius: inherit; background: linear-gradient(90deg, #4F46E5 0%, #0D9488 100%); animation: zk-slide 1.2s ease-in-out infinite; }
@keyframes zk-spin  { to { transform: rotate(360deg); } }
@keyframes zk-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes zk-wave  { 0%, 100% { opacity: .22; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
@keyframes zk-slide { 0% { transform: translateX(-110%); } 100% { transform: translateX(260%); } }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__copy { max-width: 100%; align-items: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { min-height: 480px; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .mobile-menu { display: block; }
  .nav__actions .btn { display: none; }
  .step-item { grid-template-columns: auto 1fr; gap: 18px; }
}
@media (max-width: 560px) {
  .hero__title { font-size: 2.2rem; line-height: 1.1; }
  .phone { width: 280px; }
  .float-card--bell { inset-block-start: 4%; inset-inline-end: -6px; }
  .footer__inner { flex-direction: column; }
  .step-num { font-size: 3.4rem; }
}

html[dir="rtl"] { }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { line-height: 1.5; }
html[lang="ar"] .hero__title { line-height: 1.5; padding-block: .08em; }
html[lang="ar"] .hero__title .grad-text { line-height: 1.6; padding-block: .06em; }
html[lang="ar"] .section-title { line-height: 1.5; padding-block: .04em; }
html[lang="ar"] .hook__q { line-height: 1.55; padding-block: .04em; }
html[lang="ar"] .promise__line { line-height: 1.55; padding-block: .04em; }
html[lang="ar"] .cta__title { line-height: 1.5; padding-block: .04em; }
html[lang="ar"] .grad-text { -webkit-box-decoration-break: clone; box-decoration-break: clone; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .preloader__ring, .preloader__logo, .preloader__char, .preloader__bar::after { animation: none !important; }
  .preloader__char { opacity: 1; }
}
