@font-face {
  font-family: "Thmanyah Sans";
  src: url("../fonts/thmanyahsans-Regular.woff2") format("woff2"), url("../fonts/thmanyahsans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Thmanyah Sans";
  src: url("../fonts/thmanyahsans-Medium.woff2") format("woff2"), url("../fonts/thmanyahsans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Thmanyah Sans";
  src: url("../fonts/thmanyahsans-Bold.woff2") format("woff2"), url("../fonts/thmanyahsans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("../fonts/SuisseIntl-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("../fonts/SuisseIntl-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --brand-orange: #f8851b;
  --brand-orange-2: #ff5802;
  --brand-black: #000000;
  --brand-white: #ffffff;
  --bg: #000000;
  --bg-2: #060606;
  --surface: rgba(255, 255, 255, .07);
  --surface-2: rgba(255, 255, 255, .11);
  --border: rgba(255, 255, 255, .14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .68);
  --soft: rgba(255, 255, 255, .08);
  --shadow: 0 28px 90px rgba(0, 0, 0, .45);
  --container: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --pad-section: clamp(76px, 8vw, 126px);
  --pad-inline: clamp(18px, 4vw, 36px);
  --font-ar: "Thmanyah Sans", "Tahoma", "Arial", sans-serif;
  --font-en: "Suisse Intl", "Inter", "Arial", sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --bg-2: #f7f3ee;
  --surface: rgba(0, 0, 0, .055);
  --surface-2: rgba(0, 0, 0, .08);
  --border: rgba(0, 0, 0, .12);
  --text: #080401;
  --muted: rgba(8, 4, 1, .67);
  --soft: rgba(0, 0, 0, .055);
  --shadow: 0 24px 80px rgba(0, 0, 0, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(248, 133, 27, .22), transparent 31vw),
    radial-gradient(circle at 85% 0%, rgba(255, 88, 2, .15), transparent 30vw),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  font-family: var(--font-ar);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
html[lang="en"] body { font-family: var(--font-en); }
html[lang="ar"] body { letter-spacing: 0; }
body, input, button, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }
::selection { background: var(--brand-orange); color: #000; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,133,27,.16), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: .85;
  filter: blur(8px);
}
.page-shell { position: relative; z-index: 2; }
.container {
  width: min(var(--container), calc(100% - (var(--pad-inline) * 2)));
  margin-inline: auto;
}
.section-pad { padding: var(--pad-section) 0; position: relative; }
.section-pad.compact { padding: clamp(62px, 7vw, 104px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px var(--pad-inline);
  backdrop-filter: blur(22px);
}
.nav-wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  border-radius: 999px;
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
}
.brand { display: inline-flex; align-items: center; width: 174px; min-width: 138px; }
.brand-logo { width: 100%; height: auto; object-fit: contain; }
.brand-logo-light, .footer-logo-light { display: none; }
html[data-theme="light"] .brand-logo-light,
html[data-theme="light"] .footer-logo-light { display: block; }
html[data-theme="light"] .brand-logo-dark,
html[data-theme="light"] .footer-logo-dark { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 15px;
}
.nav-menu a { transition: color .22s ease, transform .22s ease; }
.nav-menu a:hover { color: var(--text); transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.pill-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  background: transparent;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  white-space: nowrap;
}
.pill-btn:hover { transform: translateY(-2px); border-color: rgba(248,133,27,.7); }
.pill-btn.primary { background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-2)); color: #090400; border-color: transparent; font-weight: 700; }
.pill-btn.ghost { background: var(--surface); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); transition: .2s; }
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { bottom: 17px; }
.nav-toggle.is-open span:first-child { transform: rotate(45deg); top: 21px; }
.nav-toggle.is-open span:last-child { transform: rotate(-45deg); bottom: 20px; }

.hero { min-height: calc(100vh - 74px); display: grid; align-items: center; overflow: hidden; padding-top: clamp(54px, 6vw, 96px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}
.hero-copy { max-width: 720px; }
.eyebrow, .section-kicker, .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-orange);
  border: 1px solid rgba(248,133,27,.34);
  background: rgba(248,133,27,.1);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand-orange); box-shadow: 0 0 0 8px rgba(248,133,27,.14); }
h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(48px, 7.8vw, 104px);
  line-height: .93;
  letter-spacing: -.045em;
  max-width: 820px;
}
html[lang="ar"] h1 { letter-spacing: -.02em; }
h1 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--brand-orange);
  text-shadow: 0 0 36px rgba(248,133,27,.22);
}
.hero-lead {
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
  max-width: 650px;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.btn-main, .btn-secondary {
  min-height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.btn-main {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-2));
  color: #090400;
  box-shadow: 0 18px 50px rgba(248,133,27,.28);
}
.btn-main:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 24px 70px rgba(248,133,27,.34); }
.btn-main b { font-family: var(--font-en); }
.btn-main.full { width: 100%; border: 0; font-size: 16px; }
.btn-secondary { border-color: var(--border); background: var(--surface); color: var(--text); }
.btn-secondary:hover { transform: translateY(-3px); border-color: rgba(248,133,27,.6); }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 540px;
}
.hero-metrics div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}
.hero-metrics strong {
  display: block;
  font-family: var(--font-en);
  font-size: 38px;
  line-height: 1;
  color: var(--brand-orange);
}
.hero-metrics span { color: var(--muted); font-size: 14px; margin-top: 7px; display: block; }

.hero-visual { perspective: 1200px; }
.book-stage {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}
.book-glow {
  position: absolute;
  width: min(86%, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,133,27,.36), transparent 61%);
  filter: blur(32px);
  animation: pulseGlow 5.8s ease-in-out infinite;
}
.book-img {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  max-height: 780px;
  object-fit: contain;
  filter: drop-shadow(0 34px 80px rgba(0,0,0,.46));
  transform: rotate(-1deg);
  animation: floatBook 6s ease-in-out infinite;
}
html[dir="ltr"] .book-img { transform: rotate(1deg); }
.price-chip, .mini-card {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 66%, transparent);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.price-chip {
  top: 14%;
  inset-inline-start: 0;
  padding: 15px 18px;
}
.price-chip small { color: var(--muted); display: block; margin-bottom: 4px; }
.price-chip b { font-family: var(--font-en); font-size: 22px; color: var(--brand-orange); }
.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  max-width: 220px;
  color: var(--muted);
}
.mini-card b {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #080300;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-2));
  font-family: var(--font-en);
}
.mini-card-1 { right: 0; bottom: 20%; }
.mini-card-2 { left: 8%; bottom: 9%; }

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(22px); opacity: .55; }
.orb-1 { width: 310px; height: 310px; background: rgba(248,133,27,.22); top: 16%; right: 8%; animation: drift 12s ease-in-out infinite; }
.orb-2 { width: 220px; height: 220px; background: rgba(255,88,2,.18); bottom: 9%; left: 5%; animation: drift 15s ease-in-out infinite reverse; }
.slash { position: absolute; width: 14px; height: 160px; background: linear-gradient(var(--brand-orange), var(--brand-orange-2)); transform: rotate(30deg); border-radius: 999px; opacity: .28; }
.slash-1 { top: 18%; left: 19%; animation: slashMove 8s ease-in-out infinite; }
.slash-2 { bottom: 16%; right: 13%; animation: slashMove 11s ease-in-out infinite reverse; }
.dot-grid {
  position: absolute;
  inset-inline-end: -90px;
  top: 16%;
  width: 360px;
  height: 360px;
  opacity: .25;
  background-image: radial-gradient(var(--brand-orange) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle, #000 40%, transparent 70%);
}

.marquee-wrap {
  border-block: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  transform: rotate(-1.2deg) scale(1.02);
  margin: 10px 0 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 44px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--text) 45%, transparent);
  font-family: var(--font-en);
  font-size: clamp(28px, 5vw, 74px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.two-col, .pricing-grid, .faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}
.section-head h2, .split-head h2 {
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
html[lang="ar"] .section-head h2,
html[lang="ar"] .split-head h2 { letter-spacing: -.01em; }
.section-head.center { text-align: center; max-width: 790px; margin: 0 auto 44px; }
.section-head.center p, .split-head p, .rich-copy p, .pricing-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-top: 18px;
}
.rich-copy { font-size: 20px; line-height: 1.8; color: var(--muted); }
.quote-card {
  position: relative;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface), transparent);
  overflow: hidden;
}
.quote-card span { position: absolute; top: -16px; inset-inline-start: 18px; color: var(--brand-orange); font-size: 100px; line-height: 1; opacity: .35; }
.quote-card p { position: relative; color: var(--text); font-weight: 700; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-card, .path-card, .timeline-item, .pricing-card, .faq-item {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface), color-mix(in srgb, var(--surface) 35%, transparent));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-card { padding: 24px; min-height: 250px; }
.feature-card::after, .path-card::after, .pricing-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 160px;
  background: radial-gradient(circle, rgba(248,133,27,.26), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}
.feature-card:hover::after, .path-card:hover::after, .pricing-card:hover::after { opacity: 1; }
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-2));
  color: #080300;
  font-family: var(--font-en);
  font-weight: 800;
  margin-bottom: 24px;
}
.feature-card h3, .path-card h3, .timeline-item h3 { font-size: 24px; line-height: 1.18; }
.feature-card p, .path-card p, .timeline-item p, .faq-item p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 12px;
  font-size: 16px;
}
.split-head {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.paths-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(230px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding: 8px 2px 20px;
  scroll-snap-type: x mandatory;
}
.path-card {
  scroll-snap-align: start;
  min-height: 285px;
  padding: 22px;
  transition: transform .22s ease, border-color .22s ease;
}
.path-card:hover { transform: translateY(-6px); border-color: rgba(248,133,27,.48); }
.path-number { font-family: var(--font-en); font-size: 15px; color: var(--brand-orange); margin-bottom: 48px; display: inline-block; }
.path-chip { margin-top: 18px; display: inline-flex; padding: 8px 11px; border-radius: 999px; background: var(--soft); color: var(--muted); font-size: 13px; }

.timeline-wrap { position: relative; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}
.timeline-item { padding: 24px; min-height: 230px; }
.timeline-item b {
  display: inline-flex;
  font-family: var(--font-en);
  color: var(--brand-orange);
  margin-bottom: 28px;
}

.pricing-grid { grid-template-columns: 1fr .78fr; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding: 14px 46px 14px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}
html[dir="ltr"] .check-list li { padding: 14px 18px 14px 46px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #080300;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 13px;
}
.pricing-card { padding: clamp(24px, 4vw, 34px); background: linear-gradient(145deg, rgba(248,133,27,.15), var(--surface)); }
.pricing-card h3 { font-family: var(--font-en); font-size: clamp(40px, 5vw, 64px); line-height: 1; color: var(--brand-orange); margin: 8px 0 14px; }
.pricing-card p { color: var(--muted); line-height: 1.8; }
.order-form { display: grid; gap: 13px; margin-top: 26px; }
.order-form label { display: grid; gap: 8px; color: var(--muted); font-size: 14px; }
.order-form input {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  color: var(--text);
  padding: 0 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  direction: inherit;
}
.order-form input:focus { border-color: rgba(248,133,27,.75); box-shadow: 0 0 0 4px rgba(248,133,27,.12); }
.order-form small { color: var(--muted); text-align: center; }

.faq-grid { grid-template-columns: .68fr 1fr; }
.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 0; }
.faq-question {
  width: 100%;
  min-height: 70px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: inherit;
  font-weight: 800;
}
.faq-question span:last-child { color: var(--brand-orange); font-family: var(--font-en); font-size: 24px; transition: transform .22s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 22px 22px; }
.faq-item.is-open .faq-answer { max-height: 180px; }
.faq-item.is-open .faq-question span:last-child { transform: rotate(45deg); }

.site-footer { padding: 48px 0 34px; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--bg) 82%, transparent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr .8fr;
  align-items: start;
  gap: 28px;
}
.footer-logo { width: 210px; margin-bottom: 18px; }
.site-footer p { color: var(--muted); max-width: 390px; line-height: 1.75; }
.footer-links, .footer-meta { display: grid; gap: 12px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-meta { font-family: var(--font-en); }
html[lang="ar"] .footer-meta span:last-child { font-family: var(--font-ar); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes floatBook { 0%,100% { translate: 0 0; } 50% { translate: 0 -18px; } }
@keyframes pulseGlow { 0%,100% { scale: .92; opacity: .58; } 50% { scale: 1.08; opacity: .9; } }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(38px,-32px,0); } }
@keyframes slashMove { 0%,100% { transform: rotate(30deg) translateY(0); } 50% { transform: rotate(30deg) translateY(32px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }

@media (max-width: 1040px) {
  .hero-grid, .two-col, .pricing-grid, .faq-grid, .split-head { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .book-stage { min-height: 600px; }
  .feature-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head.center { text-align: inherit; margin-inline: 0; }
}
@media (max-width: 820px) {
  .site-header { padding: 10px; }
  .nav-wrap { border-radius: 26px; align-items: center; }
  .brand { width: 142px; }
  .nav-toggle { display: block; order: 3; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 10px;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: grid; }
  .nav-actions { margin-inline-start: auto; }
  .hide-sm { display: none; }
  .pill-btn { min-height: 40px; padding: 0 12px; }
  .theme-icon + span { display: none; }
  .hero-grid { gap: 10px; }
  .hero-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .book-stage { min-height: 520px; }
  .book-img { width: min(94vw, 430px); }
  .price-chip { top: 5%; inset-inline-start: 4px; }
  .mini-card-1 { right: 0; bottom: 12%; }
  .mini-card-2 { left: 0; bottom: 2%; }
  .cursor-glow { display: none; }
}
@media (max-width: 620px) {
  .section-pad { padding: 68px 0; }
  h1 { font-size: clamp(44px, 15vw, 72px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; }
  .btn-main, .btn-secondary { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .feature-grid, .timeline { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: repeat(7, 86vw); }
  .footer-grid { grid-template-columns: 1fr; }
  .mini-card { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* Arabic font final override */
@font-face {
  font-family: "Thmanyah";
  src: url("../fonts/thmanyahsans-Regular.woff2") format("woff2"),
       url("../fonts/thmanyahsans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah";
  src: url("../fonts/thmanyahsans-Medium.woff2") format("woff2"),
       url("../fonts/thmanyahsans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah";
  src: url("../fonts/thmanyahsans-Bold.woff2") format("woff2"),
       url("../fonts/thmanyahsans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* English font */
@font-face {
  font-family: "Suisse";
  src: url("../fonts/SuisseIntl-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suisse";
  src: url("../fonts/SuisseIntl-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Apply fonts strongly */
html[lang="ar"],
html[lang="ar"] body,
html[dir="rtl"],
html[dir="rtl"] body {
  font-family: "Thmanyah", Tahoma, Arial, sans-serif !important;
}

html[lang="ar"] *:not(.en):not(.number):not(.num):not(.price):not(.path-number):not(.stat-number) {
  font-family: "Thmanyah", Tahoma, Arial, sans-serif !important;
}

html[lang="en"],
html[lang="en"] body,
html[dir="ltr"],
html[dir="ltr"] body {
  font-family: "Suisse", Arial, sans-serif !important;
}

/* English numbers always */
.number,
.num,
.price,
.path-number,
.stat-number,
.price-chip b,
[data-number],
.digit,
.timer,
.counter {
  font-family: "Suisse", Arial, sans-serif !important;
  direction: ltr;
  unicode-bidi: plaintext;
  font-variant-numeric: lining-nums tabular-nums;
}
.play-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ff5802;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #000;
  margin-left: 3px;
}
.hero-title {
  font-size: clamp(24px, 5.8vw, 55px);
  line-height: 1.08;
  font-weight: 800;
  max-width: 820px;
}

.orange-fill {
  color: #ff5802;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}