/* ==========================================================================
   Orbit TV — stylesheet
   ========================================================================== */

:root {
  --bg: #050814;
  --bg-2: #0a0f1d;
  --bg-3: #0f1629;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(148, 163, 184, 0.3);

  --primary: #7fbcf7;
  --primary-2: #b6d7fb;
  --primary-deep: #3f7fd0;
  --primary-ink: #06101f;
  --primary-soft: rgba(127, 188, 247, 0.12);

  --wa: #16a34a;
  --wa-hover: #15803d;
  --live: #ef4444;

  --text: #ffffff;
  --text-2: #cbd5e1;
  --text-3: #94a3b8;
  --text-4: #64748b;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --header-h: 76px;

  --font: 'Figtree', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-ar: 'Cairo', 'Figtree', ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang='ar'] body { font-family: var(--font-ar); }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
code { font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

::selection { background: var(--primary); color: var(--primary-ink); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 16px; }
.container-md { max-width: 960px; }
.container-sm { max-width: 820px; }
@media (min-width: 640px) { .container { padding-inline: 24px; } }
@media (min-width: 1024px) { .container { padding-inline: 32px; } }

.accent { color: var(--primary); }
.accent-grad {
  background: linear-gradient(100deg, var(--primary) 0%, var(--primary-2) 50%, var(--primary) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --------------------------------------------------------------------------
   Space background (fixed, behind everything)
   -------------------------------------------------------------------------- */
.space-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg); pointer-events: none; }
.space-bg .orb { position: absolute; border-radius: 50%; animation: float 9s ease-in-out infinite; will-change: transform; }
.space-bg .orb-1 { top: 8%; left: 4%; width: 46vw; height: 46vw; background: radial-gradient(circle, rgba(63, 127, 208, 0.28), transparent 65%); }
.space-bg .orb-2 { bottom: 0; right: 6%; width: 56vw; height: 56vw; background: radial-gradient(circle, rgba(127, 188, 247, 0.16), transparent 65%); animation-delay: -3s; animation-duration: 12s; }
.space-bg .orb-3 { top: 55%; left: 55%; width: 26vw; height: 26vw; background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 65%); animation-delay: -6s; }
.space-bg .stars,
.space-bg .stars-2 {
  position: absolute; inset: -50%;
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,.8), transparent 50%),
    radial-gradient(1px 1px at 140px 80px, rgba(255,255,255,.55), transparent 50%),
    radial-gradient(1.5px 1.5px at 260px 160px, rgba(182,215,251,.8), transparent 50%),
    radial-gradient(1px 1px at 90px 220px, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1px 1px at 310px 40px, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(1px 1px at 200px 280px, rgba(255,255,255,.4), transparent 50%);
  background-size: 340px 320px;
  animation: twinkle 6s ease-in-out infinite alternate;
  opacity: .55;
}
.space-bg .stars-2 { background-size: 520px 470px; animation-delay: -3s; opacity: .35; transform: rotate(12deg); }
.space-bg .shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,8,20,.2), rgba(5,8,20,.5) 50%, rgba(5,8,20,.9)); }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(2vw, -3vh, 0) scale(1.05); }
  66% { transform: translate3d(-2vw, 2vh, 0) scale(.97); }
}
@keyframes twinkle { from { opacity: .25; } to { opacity: .65; } }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 50;
  background: rgba(5, 8, 20, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.site-header.is-scrolled { background: rgba(5, 8, 20, 0.95); box-shadow: 0 10px 40px -20px rgba(0, 0, 0, .8); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; transition: height .3s var(--ease); }
.site-header.is-scrolled .bar { height: 64px; }

.logo { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; direction: ltr; }
.logo-mark { width: 50px; height: 42px; overflow: visible; }
.logo-text { font-weight: 900; font-size: 20px; letter-spacing: .06em; line-height: 1; white-space: nowrap; font-family: var(--font); }
.logo-text span { color: var(--primary-2); }
.logo:hover .logo-ring { animation: ring-wobble 1.2s var(--ease); }
@keyframes ring-wobble { 0%, 100% { transform: rotate(0); } 40% { transform: rotate(-8deg); } 70% { transform: rotate(4deg); } }
.logo-ring { transform-origin: 25px 22px; }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 8px 12px; font-size: 14px; font-weight: 500; color: var(--text-2);
  border-radius: 10px; transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; background: var(--surface); }
.nav a.is-active { color: var(--primary); }
.nav a.is-active::after {
  content: ''; position: absolute; left: 50%; bottom: 2px; width: 4px; height: 4px; border-radius: 50%;
  background: var(--primary); transform: translateX(-50%); box-shadow: 0 0 10px var(--primary);
}

.header-actions { display: flex; align-items: center; gap: 8px; }

.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; font-size: 14px; color: var(--text-2); border-radius: 10px; transition: background .2s, color .2s; }
.lang-btn:hover, .lang.is-open .lang-btn { background: var(--surface-2); color: #fff; }
.lang-btn svg { width: 18px; height: 18px; }
.lang-btn .chev { width: 14px; height: 14px; transition: transform .25s; }
.lang.is-open .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px); min-width: 150px; padding: 6px;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, .7);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s var(--ease);
}
.lang.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 9px 12px; font-size: 14px; border-radius: 9px; color: var(--text-2); }
.lang-menu button:hover { background: var(--surface-2); color: #fff; }
.lang-menu button[aria-current='true'] { color: var(--primary); }
.lang-menu button[aria-current='true']::after { content: '✓'; font-size: 12px; }

.menu-toggle { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--border); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; position: relative; transition: transform .3s var(--ease), background .2s;
}
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease);
  border-top: 1px solid transparent;
}
.mobile-nav > div { overflow: hidden; }
.menu-open .mobile-nav { grid-template-rows: 1fr; border-top-color: var(--border); }
.mobile-nav nav { display: flex; flex-direction: column; padding: 12px 0 20px; }
.mobile-nav a { padding: 12px 4px; font-weight: 600; color: var(--text-2); border-bottom: 1px solid rgba(148, 163, 184, .08); }
.mobile-nav a.is-active { color: var(--primary); }
.mobile-nav .btn { margin-top: 16px; padding: 14px 26px; border-bottom: 0; color: var(--primary-ink); }

@media (min-width: 1100px) {
  .nav { display: flex; }
  .menu-toggle, .mobile-nav { display: none; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; font-weight: 800; font-size: 16px; line-height: 1.2; border-radius: 14px;
  overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s, background .2s, color .2s, border-color .2s;
}
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(255, 255, 255, .22);
  transform: translateY(101%); transition: transform .35s var(--ease);
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
html[dir='rtl'] .btn .arrow { transform: scaleX(-1); }
html[dir='rtl'] .btn:hover .arrow { transform: scaleX(-1) translateX(4px); }

.btn-lg { padding: 18px 36px; font-size: 18px; border-radius: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 12px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--primary); color: var(--primary-ink); box-shadow: 0 10px 30px -10px rgba(127, 188, 247, .6); }
.btn-primary:hover { box-shadow: 0 16px 40px -10px rgba(127, 188, 247, .8); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 30px -10px rgba(22, 163, 74, .6); }
.btn-wa:hover { background: var(--wa-hover); box-shadow: 0 16px 40px -10px rgba(22, 163, 74, .8); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline::after { background: var(--primary); }
.btn-outline:hover { color: var(--primary-ink); }
.btn-ghost { border: 1px solid var(--border-strong); color: #fff; background: rgba(255, 255, 255, .04); backdrop-filter: blur(6px); }
.btn-ghost::after { background: rgba(255, 255, 255, .08); }

/* --------------------------------------------------------------------------
   Shared section parts
   -------------------------------------------------------------------------- */
main { position: relative; z-index: 0; }
.page-top { padding-top: calc(var(--header-h) + 56px); }
.section { position: relative; overflow: hidden; padding-block: 64px; }
@media (min-width: 768px) { .section { padding-block: 120px; } }
.section-sm { padding-block: 48px; }
@media (min-width: 768px) { .section-sm { padding-block: 88px; } }

.section-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.section-deco svg { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 1200px; height: auto; max-width: none; }

.center { text-align: center; }
.stack > * + * { margin-top: 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px;
  color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
}
html[lang='ar'] .eyebrow { letter-spacing: 0; font-size: 15px; }
.eyebrow::before, .eyebrow::after { content: ''; width: 32px; height: 1px; background: linear-gradient(90deg, transparent, var(--primary)); }
.eyebrow::after { transform: scaleX(-1); }

.bar-accent { width: 80px; height: 4px; margin: 0 auto 32px; border-radius: 4px; background: linear-gradient(90deg, var(--primary-deep), var(--primary), var(--primary-2)); transform-origin: center; }

.h1 { font-size: clamp(2.1rem, 6.2vw, 4.6rem); font-weight: 900; line-height: 1.08; letter-spacing: -.02em; }
.h2 { font-size: clamp(1.9rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
.h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; line-height: 1.2; }
html[lang='ar'] .h1, html[lang='ar'] .h2 { letter-spacing: 0; line-height: 1.35; }
.lead { font-size: clamp(1.2rem, 2.4vw, 1.85rem); font-weight: 700; color: var(--primary); line-height: 1.35; }
.body-lg { font-size: clamp(1.05rem, 1.8vw, 1.4rem); color: var(--text-2); line-height: 1.65; }
.muted { color: var(--text-3); }
.text-block { max-width: 780px; margin-inline: auto; }
.text-block > * + * { margin-top: 28px; }

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* Draw-on-scroll SVG helpers */
.draw { fill: none; }
.stroke-primary { stroke: var(--primary); }
.stroke-soft { stroke: rgba(127, 188, 247, .35); }
.stroke-faint { stroke: rgba(148, 163, 184, .18); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 620px; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.tv-wall {
  position: absolute; inset: 0; perspective: 1000px; perspective-origin: 50% 42%; overflow: hidden;
}
.tv-rig { position: absolute; left: 50%; top: 44%; transform-style: preserve-3d; animation: rig-sway 18s ease-in-out infinite alternate; }
@keyframes rig-sway { from { transform: translateZ(900px) rotateY(-5deg); } to { transform: translateZ(900px) rotateY(5deg); } }
.tv-col {
  position: absolute; left: -100px; top: -330px; width: 200px; display: flex; flex-direction: column; gap: 12px;
  transform-style: preserve-3d; backface-visibility: hidden;
}
.tile {
  position: relative; height: 112px; border-radius: 6px; overflow: hidden;
  background: #111827; border: 2px solid #0b1020;
  box-shadow: 0 0 24px -4px var(--glow, rgba(127, 188, 247, .35));
  animation: flicker var(--fd, 7s) ease-in-out infinite; animation-delay: var(--delay, 0s);
}
.tile::before { content: ''; position: absolute; inset: 0; background: var(--scene); transition: opacity .25s; }
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.14), transparent 40%), repeating-linear-gradient(0deg, rgba(0,0,0,.12) 0 1px, transparent 1px 3px);
}
.tile.is-zapping::before { animation: zap .45s steps(3); }
.tile .live { position: absolute; top: 6px; inset-inline-start: 6px; z-index: 1; padding: 1px 6px; font-size: 9px; font-weight: 900; letter-spacing: .08em; color: #fff; background: var(--live); border-radius: 3px; }
.tile .bug { position: absolute; bottom: 6px; inset-inline-end: 7px; z-index: 1; width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); }
.tile .lower { position: absolute; left: 0; right: 0; bottom: 10px; z-index: 1; height: 14px; background: linear-gradient(90deg, rgba(239,68,68,.95) 0 28%, rgba(15,23,42,.9) 28%); }
@keyframes flicker { 0%, 100% { opacity: 1; } 47% { opacity: 1; } 50% { opacity: .7; } 53% { opacity: .95; } }
@keyframes zap { 0% { opacity: .1; filter: hue-rotate(90deg); } 50% { opacity: 1; filter: saturate(3); } 100% { opacity: 1; } }

.tv-floor { position: absolute; left: 0; right: 0; bottom: 0; height: 42%; background: linear-gradient(to bottom, transparent, rgba(5, 8, 20, .85) 45%, var(--bg)); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(5, 8, 20, .55), rgba(5, 8, 20, .25) 70%, transparent),
    linear-gradient(to bottom, rgba(5, 8, 20, .75), rgba(5, 8, 20, .35) 25%, rgba(5, 8, 20, .35) 60%, var(--bg));
}

.hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-sat { position: absolute; top: 14%; inset-inline-start: 3%; width: 190px; opacity: .7; }
.hero-orbit { position: absolute; bottom: 4%; inset-inline-end: 2%; width: 320px; opacity: .8; }
.hero-trail { position: absolute; top: 22%; inset-inline-end: 0; width: 360px; opacity: .6; }
.hero-signal { position: absolute; top: 50%; inset-inline-end: 7%; width: 120px; transform: translateY(-50%); }
.hero-signal .arc { transform-origin: 20px 100px; }
@media (max-width: 767px) {
  .hero-sat { width: 110px; top: 12%; }
  .hero-orbit { width: 200px; }
  .hero-trail, .hero-signal { display: none; }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1100px; }
.hero-title { margin-bottom: 24px; text-shadow: 0 6px 40px rgba(0, 0, 0, .6); }
.hero-title .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-title .wi { display: inline-block; will-change: transform; }
.hero-title .num { color: var(--primary-2); }
.hero-title .accent-grad { white-space: nowrap; }
[data-stat], .num { direction: ltr; unicode-bidi: isolate; }
.hero-sub { max-width: 760px; margin: 0 auto 40px; font-size: clamp(1.05rem, 2.2vw, 1.5rem); color: var(--text-2); font-weight: 500; }
.hero-actions { display: flex; flex-direction: column; gap: 14px; justify-content: center; align-items: center; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 40px; color: var(--text-3); font-size: 14px; font-weight: 600; }
.hero-stats span { display: inline-flex; align-items: center; gap: 8px; }
.hero-stats span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); }

.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; }
.scroll-cue::after { content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--primary); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* --------------------------------------------------------------------------
   Quality / Channels statement sections
   -------------------------------------------------------------------------- */
.statement { text-align: center; }
.statement .body-lg { max-width: 760px; margin-inline: auto; }
.statement .note { max-width: 640px; margin: 20px auto 0; color: var(--text-3); font-size: clamp(1rem, 1.5vw, 1.2rem); }

.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }
.pill { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); font-size: 14px; font-weight: 700; color: var(--text-2); }
.pill b { color: var(--primary); }

/* --------------------------------------------------------------------------
   Free trial
   -------------------------------------------------------------------------- */
.trial { text-align: center; }
.trial-rings { position: absolute; left: 50%; top: 50%; width: 900px; height: 900px; transform: translate(-50%, -50%); pointer-events: none; }
.trial-rings .r { transform-origin: 450px 450px; }
.trial-title-wrap { position: relative; display: inline-block; margin-bottom: 8px; }
.trial-title { font-size: clamp(2.3rem, 7vw, 4.6rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
.trial-underline { position: absolute; left: 4%; right: 4%; bottom: -14px; width: 92%; height: 18px; overflow: visible; }
.trial .lead { margin: 40px auto 36px; max-width: 760px; }
.trial-body { max-width: 640px; margin: 0 auto 56px; }
.trial-body .boxed { padding: 16px 28px; margin-bottom: 16px; border-radius: 18px; border: 1px solid var(--border); background: var(--surface-2); color: #fff; font-weight: 600; backdrop-filter: blur(6px); }
.trial-body p:last-child { color: var(--text-3); font-size: 1.1rem; }
.trial-actions { display: flex; flex-direction: column; gap: 14px; justify-content: center; align-items: center; margin-bottom: 28px; }
@media (min-width: 640px) { .trial-actions { flex-direction: row; } }
.footnote { font-size: 14px; color: var(--text-4); }

/* --------------------------------------------------------------------------
   Why choose us (alternating timeline)
   -------------------------------------------------------------------------- */
.why-head { text-align: center; margin-bottom: 72px; }
.why-title { text-transform: uppercase; letter-spacing: -.03em; }
.why-title em { color: var(--primary); font-style: italic; padding-inline-end: .08em; }
.why-list { position: relative; display: flex; flex-direction: column; gap: 24px; }
.why-line { display: none; }
.why-item { position: relative; display: flex; align-items: center; }
.why-card {
  position: relative; width: 100%; padding: 32px; border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  transition: border-color .4s, transform .4s var(--ease), box-shadow .4s;
}
.why-card:hover { border-color: rgba(127, 188, 247, .45); transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(63, 127, 208, .6); }
.why-icon { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 24px; border-radius: 18px; background: var(--primary-soft); color: var(--primary); }
.why-icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; margin-bottom: 12px; }
.why-card p { color: var(--text-3); font-size: 1.1rem; }
.why-num {
  font-size: clamp(5rem, 11vw, 8.5rem); font-weight: 900; line-height: 1; user-select: none;
  color: transparent; -webkit-text-stroke: 1.5px rgba(148, 163, 184, .22);
  background: linear-gradient(180deg, var(--primary-2), var(--primary-deep)); -webkit-background-clip: text; background-clip: text;
  background-size: 100% 0%; background-repeat: no-repeat; background-position: bottom;
}
.why-card .why-num { position: absolute; top: 12px; inset-inline-end: 24px; font-size: 4.5rem; opacity: .6; }
@media (min-width: 1024px) {
  .why-list { gap: 40px; }
  .why-line { display: block; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px; background: rgba(148, 163, 184, .12); border-radius: 2px; }
  .why-line i { position: absolute; inset: 0; background: linear-gradient(180deg, var(--primary-2), var(--primary), var(--primary-deep)); transform-origin: top; transform: scaleY(0); border-radius: 2px; box-shadow: 0 0 20px var(--primary); }
  .why-item { gap: 64px; }
  .why-item:nth-child(odd of .why-item) { flex-direction: row; }
  .why-item.rev { flex-direction: row-reverse; }
  .why-item > .side { width: 50%; display: flex; }
  .why-item > .side-card { justify-content: flex-end; }
  .why-item.rev > .side-card { justify-content: flex-start; }
  .why-item.rev > .side-num { justify-content: flex-end; }
  .why-card { max-width: 520px; padding: 40px; }
  .why-card .why-num { display: none; }
  .why-dot { position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; background: var(--bg); border: 3px solid var(--primary); box-shadow: 0 0 0 6px rgba(127, 188, 247, .12), 0 0 20px var(--primary); z-index: 1; }
}
@media (max-width: 1023px) { .why-item > .side-num, .why-dot { display: none; } .why-item > .side { width: 100%; } }

/* --------------------------------------------------------------------------
   Plans (cards)
   -------------------------------------------------------------------------- */
.plans-head { text-align: center; margin-bottom: 56px; }
.plans-head p { margin-top: 16px; }
.plans-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.plan-card {
  position: relative; display: flex; flex-direction: column; width: 100%; max-width: 400px; padding: 32px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: linear-gradient(170deg, rgba(15, 22, 41, .9), rgba(10, 15, 29, .7));
  overflow: hidden; transition: border-color .5s, transform .5s var(--ease), box-shadow .5s;
}
.plan-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--angle, 0deg), transparent 0 70%, var(--primary) 80%, transparent 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s;
}
.plan-card:hover { transform: translateY(-6px); border-color: rgba(127, 188, 247, .35); box-shadow: 0 40px 80px -40px rgba(63, 127, 208, .7); }
.plan-card:hover::before, .plan-card.featured::before { opacity: 1; animation: spin-angle 5s linear infinite; }
.plan-card.featured { border-color: rgba(127, 188, 247, .35); }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes spin-angle { to { --angle: 360deg; } }
.plan-glow { position: absolute; top: -120px; inset-inline-end: -120px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(127, 188, 247, .18), transparent 70%); pointer-events: none; transition: transform .6s var(--ease); }
.plan-card:hover .plan-glow { transform: scale(1.4); }
.plan-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.plan-name { font-size: 1.6rem; font-weight: 800; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--primary-soft); color: var(--primary); border: 1px solid rgba(127, 188, 247, .25); }
.badge-hot { background: linear-gradient(90deg, var(--primary), var(--primary-2)); color: var(--primary-ink); border: 0; }
.plan-price { display: flex; flex-direction: column; margin-bottom: 24px; }
.plan-price .amount { display: flex; align-items: baseline; gap: 8px; }
.plan-price .amount b { font-size: 3.25rem; font-weight: 900; line-height: 1; color: var(--primary); }
.plan-price .amount span { color: var(--text-3); font-weight: 600; }
.plan-price small { margin-top: 8px; font-size: 11px; font-weight: 800; letter-spacing: .14em; color: var(--text-4); text-transform: uppercase; }
.plan-desc { flex-grow: 1; margin-bottom: 28px; color: var(--text-3); font-size: 15px; line-height: 1.7; }
.plan-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.plan-feats li { display: flex; flex-direction: column; padding: 12px 14px; border-radius: 12px; background: var(--surface); border: 1px solid rgba(148, 163, 184, .08); }
.plan-feats b { font-size: 1.15rem; font-weight: 800; }
.plan-feats span { font-size: 12px; color: var(--text-3); }
.plans-more { text-align: center; margin-top: 48px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; border-bottom: 1px solid transparent; transition: border-color .2s, gap .2s; }
.link-arrow:hover { border-color: var(--primary); gap: 12px; }
.link-arrow svg { width: 18px; height: 18px; }
html[dir='rtl'] .link-arrow svg { transform: scaleX(-1); }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.cta { text-align: center; }
.cta-planet { position: absolute; left: 50%; top: 50%; width: 760px; transform: translate(-50%, -50%); opacity: .5; pointer-events: none; }
.cta-box { position: relative; padding: 72px 24px; border-radius: 40px; border: 1px solid var(--border); background: radial-gradient(ellipse at top, rgba(63, 127, 208, .25), transparent 70%), rgba(10, 15, 29, .6); overflow: hidden; }
.cta-box p { max-width: 620px; margin: 20px auto 36px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { position: relative; border-top: 1px solid var(--border); background: rgba(5, 8, 20, .85); padding: 64px 0 32px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand p { margin-top: 16px; max-width: 300px; color: var(--text-3); font-size: 14px; }
.site-footer h4 { margin-bottom: 16px; font-size: 16px; font-weight: 800; }
.site-footer ul li + li { margin-top: 10px; }
.site-footer ul a { color: var(--text-3); font-size: 14px; transition: color .2s; }
.site-footer ul a:hover { color: var(--primary); }
.footer-wa { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; border: 1px solid rgba(22, 163, 74, .4); background: rgba(22, 163, 74, .1); color: #86efac; font-weight: 700; font-size: 14px; direction: ltr; transition: background .2s; }
.footer-wa:hover { background: rgba(22, 163, 74, .2); }
.footer-wa svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(148, 163, 184, .1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--text-4); font-size: 13px; }

/* --------------------------------------------------------------------------
   Floating WhatsApp button
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; bottom: 20px; inset-inline-end: 20px; z-index: 60; display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7); transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: ping 2.2s cubic-bezier(0, 0, .2, 1) infinite; }
.wa-float .tip {
  position: absolute; inset-inline-end: calc(100% + 12px); top: 50%; transform: translateY(-50%); white-space: nowrap;
  padding: 8px 14px; border-radius: 12px; background: #fff; color: #0f172a; font-weight: 700; font-size: 14px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .25s;
}
.wa-float:hover .tip { opacity: 1; }
@keyframes ping { 75%, 100% { transform: scale(1.6); opacity: 0; } }

/* --------------------------------------------------------------------------
   Subscribe modal
   -------------------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; visibility: hidden; }
.modal.is-open { visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .78); backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s; }
.modal.is-open .modal-backdrop { opacity: 1; }
.modal-panel {
  position: relative; width: 100%; max-width: 480px; max-height: calc(100vh - 32px); overflow: auto; padding: 32px;
  border-radius: var(--radius-lg); border: 1px solid var(--border-strong); background: linear-gradient(170deg, #111a31, #0a0f1d);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .9);
  opacity: 0; transform: translateY(24px) scale(.96); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.modal.is-open .modal-panel { opacity: 1; transform: none; }
.modal-close { position: absolute; top: 16px; inset-inline-end: 16px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; color: var(--text-3); transition: background .2s, color .2s; }
.modal-close:hover { background: var(--surface-2); color: #fff; }
.modal-close svg { width: 18px; height: 18px; }
.modal h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; padding-inline-end: 40px; }
.modal-intro { color: var(--text-3); font-size: 15px; margin-bottom: 24px; }
.field-label { display: block; margin-bottom: 10px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text-4); }
html[lang='ar'] .field-label { letter-spacing: 0; font-size: 14px; }
.durations { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-bottom: 24px; }
.duration {
  display: flex; flex-direction: column; align-items: center; padding: 14px 10px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--surface); transition: border-color .2s, background .2s, transform .2s;
}
.duration:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.duration b { font-size: 1.4rem; font-weight: 900; }
.duration span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.duration[aria-checked='true'] { border-color: var(--primary); background: var(--primary-soft); box-shadow: 0 0 0 3px rgba(127, 188, 247, .15); }
.duration[aria-checked='true'] b { color: var(--primary); }
.order-summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; margin-bottom: 20px; border-radius: 14px; background: rgba(22, 163, 74, .08); border: 1px dashed rgba(22, 163, 74, .4); font-size: 14px; color: var(--text-2); }
.order-summary b { color: #fff; font-size: 1.1rem; }
.modal-note { margin-top: 14px; text-align: center; font-size: 13px; color: var(--text-4); }

/* --------------------------------------------------------------------------
   Plans table page
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); background: rgba(10, 15, 29, .7); backdrop-filter: blur(8px); -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; }
.compare th, .compare td { padding: 20px 24px; text-align: center; border-bottom: 1px solid rgba(148, 163, 184, .08); }
.compare th:first-child, .compare td:first-child { text-align: start; color: var(--text-3); font-weight: 600; width: 34%; }
.compare thead th { padding-block: 28px; font-size: 1.35rem; font-weight: 800; background: rgba(255, 255, 255, .02); }
.compare thead th.featured { background: linear-gradient(180deg, rgba(127, 188, 247, .14), rgba(127, 188, 247, .02)); color: var(--primary-2); }
.compare thead th .badge { margin-top: 8px; }
.compare tbody tr { transition: background .2s; }
.compare tbody tr:hover { background: rgba(255, 255, 255, .025); }
.compare td { font-weight: 700; }
.compare .opts { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.compare .opts b { color: var(--primary); }
.compare .opts span { color: var(--text-3); font-weight: 500; }
.compare .yes { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(34, 197, 94, .14); color: #4ade80; }
.compare .yes svg { width: 16px; height: 16px; }
.compare .no { color: var(--text-4); }
.compare .extras { display: flex; flex-direction: column; gap: 4px; font-size: 14px; color: var(--text-2); }
.compare tfoot td { padding-block: 32px; border-bottom: 0; }
.compare tfoot .price { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.compare tfoot small { display: block; margin: 6px 0 16px; font-size: 11px; font-weight: 800; letter-spacing: .14em; color: var(--text-4); }
.table-hint { display: none; margin-top: 12px; text-align: center; font-size: 13px; color: var(--text-4); }
@media (max-width: 700px) { .table-hint { display: block; } }

/* --------------------------------------------------------------------------
   Install page
   -------------------------------------------------------------------------- */
.page-hero { text-align: center; margin-bottom: 64px; }
.page-hero p { margin-top: 20px; max-width: 640px; margin-inline: auto; }

.prereq { padding: 32px; margin-bottom: 40px; }
.prereq-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.prereq-head .ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); }
.prereq-head .ico svg { width: 24px; height: 24px; }
.prereq-head h2 { font-size: 1.5rem; font-weight: 800; }
.prereq-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .prereq-grid { grid-template-columns: 1fr 1fr; gap: 24px 40px; } }
.num-step { display: flex; gap: 16px; align-items: flex-start; color: var(--text-2); }
.num-step .n { flex-shrink: 0; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--primary); color: var(--primary-ink); font-weight: 900; font-size: 14px; }
.num-step b { color: #fff; }

.codes { padding: 32px; margin-bottom: 72px; border-color: rgba(127, 188, 247, .3); background: radial-gradient(ellipse at top left, rgba(63, 127, 208, .22), transparent 60%), rgba(10, 15, 29, .7); }
.codes-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.codes-head h2 { font-size: 1.5rem; font-weight: 800; }
.codes-head p { color: var(--text-3); font-size: 15px; margin-top: 4px; }
.codes-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .codes-grid { grid-template-columns: 1fr 1fr; } }
.code-card { display: flex; flex-direction: column; gap: 14px; padding: 20px; border-radius: 18px; border: 1px solid var(--border); background: rgba(5, 8, 20, .6); }
.code-card .label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }
html[lang='ar'] .code-card .label { letter-spacing: 0; font-size: 14px; }
.code-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; direction: ltr; }
.code-big { font-size: clamp(2rem, 5vw, 2.6rem); font-weight: 900; letter-spacing: .12em; color: var(--primary-2); font-family: var(--font); }
.copy-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 10px; border: 1px solid var(--border-strong); font-size: 13px; font-weight: 700; color: var(--text-2); transition: all .2s; }
.copy-btn:hover { border-color: var(--primary); color: var(--primary); }
.copy-btn.is-done { border-color: #22c55e; color: #4ade80; }
.copy-btn svg { width: 16px; height: 16px; }
.code-card a.url { font-size: 14px; color: var(--primary); direction: ltr; text-align: start; word-break: break-all; }
.code-card a.url:hover { text-decoration: underline; }
.dl-code { padding: 2px 8px; border-radius: 6px; background: var(--primary); color: var(--primary-ink); font-weight: 800; letter-spacing: .04em; font-family: var(--font); white-space: nowrap; direction: ltr; unicode-bidi: isolate; }
.dl-code.alt { background: transparent; color: var(--primary); border: 1px solid rgba(127, 188, 247, .5); }

.device-select h2 { text-align: center; margin-bottom: 32px; }
.device-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 96px; }
@media (min-width: 768px) { .device-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.device-tile {
  display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 20px 12px 18px; border-radius: 20px;
  border: 1px solid var(--border); background: var(--surface); text-align: center; font-weight: 700; font-size: 14px; color: var(--text-2);
  transition: border-color .3s, transform .3s var(--ease), background .3s, color .3s;
}
.device-tile:hover { border-color: rgba(127, 188, 247, .5); background: var(--primary-soft); transform: translateY(-4px); color: #fff; }
.device-tile svg { width: 100%; max-width: 150px; height: 96px; transition: transform .4s var(--ease); }
.device-tile:hover svg { transform: scale(1.06); }

.device-sec { display: grid; gap: 40px; align-items: center; padding-block: 56px; border-top: 1px solid rgba(148, 163, 184, .08); scroll-margin-top: calc(var(--header-h) + 24px); }
@media (min-width: 900px) {
  .device-sec { grid-template-columns: 1fr 1fr; gap: 64px; padding-block: 80px; }
  .device-sec.rev .device-art { order: 2; }
}
.device-art { position: relative; display: grid; place-items: center; min-height: 280px; }
.device-art::before { content: ''; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(63, 127, 208, .3), transparent 65%); }
.device-art svg { position: relative; width: 100%; max-width: 440px; height: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
.device-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 900; margin-bottom: 8px; }
.device-copy .sub { color: var(--text-3); margin-bottom: 24px; }
.steps { display: flex; flex-direction: column; gap: 16px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; color: var(--text-2); }
.steps .n { flex-shrink: 0; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: var(--primary-ink); font-weight: 900; font-size: 14px; margin-top: 1px; }
.steps b { color: #fff; }
.steps a:not(.btn) { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.path-box { padding: 20px 24px; border-radius: 18px; border: 1px solid var(--border); background: var(--surface); color: var(--text-2); line-height: 1.9; }
.path-box b { color: #fff; }
.path-box .sep { color: var(--primary); padding-inline: 4px; }
.device-copy .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.help-strip { margin-top: 32px; padding: 40px 24px; text-align: center; }
.help-strip h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 10px; }
.help-strip p { color: var(--text-3); margin-bottom: 24px; }

/* --------------------------------------------------------------------------
   Help center
   -------------------------------------------------------------------------- */
.search { position: relative; max-width: 640px; margin: 36px auto 0; }
.search svg { position: absolute; top: 50%; inset-inline-start: 20px; width: 20px; height: 20px; transform: translateY(-50%); color: var(--text-3); pointer-events: none; }
.search input {
  width: 100%; padding: 18px 22px; padding-inline-start: 54px; border-radius: 18px; border: 1px solid var(--border-strong);
  background: rgba(10, 15, 29, .8); color: #fff; font: inherit; font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
.search input::placeholder { color: var(--text-4); }
.search input:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(127, 188, 247, .15); }

.cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 40px 0 56px; }
.cat {
  display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 112px; padding: 16px 12px; border-radius: 18px;
  border: 1px solid var(--border); background: var(--surface); font-size: 13px; font-weight: 700; color: var(--text-3); transition: all .25s var(--ease);
}
.cat svg { width: 26px; height: 26px; }
.cat:hover { color: #fff; border-color: var(--border-strong); transform: translateY(-3px); }
.cat[aria-pressed='true'] { color: var(--primary); border-color: rgba(127, 188, 247, .5); background: var(--primary-soft); }

.faq-group { margin-bottom: 48px; }
.faq-group h2 { display: flex; align-items: center; gap: 14px; font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; }
.faq-group h2::before { content: ''; width: 5px; height: 26px; border-radius: 3px; background: var(--primary); }
.faq { border-radius: 16px; border: 1px solid var(--border); background: rgba(10, 15, 29, .7); overflow: hidden; transition: border-color .3s; }
.faq + .faq { margin-top: 12px; }
.faq.is-open { border-color: rgba(127, 188, 247, .35); }
.faq button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: start; font-weight: 700; font-size: 1.05rem; }
.faq button:hover { color: var(--primary-2); }
.faq .chev { flex-shrink: 0; width: 20px; height: 20px; color: var(--text-3); transition: transform .35s var(--ease); }
.faq.is-open .chev { transform: rotate(180deg); color: var(--primary); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 24px 22px; color: var(--text-3); }
.faq-a p + p { margin-top: -10px; }
.faq-a a { color: var(--primary); font-weight: 700; }
.faq-empty { display: none; text-align: center; padding: 40px 0; color: var(--text-3); }

.support-card { display: grid; gap: 24px; align-items: center; padding: 36px; margin-top: 24px; }
@media (min-width: 768px) { .support-card { grid-template-columns: 1.4fr 1fr; } }
.support-card h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.support-card p { color: var(--text-3); }
.support-card .contacts { display: flex; flex-direction: column; gap: 12px; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); font-weight: 700; transition: border-color .2s; }
.contact-line:hover { border-color: rgba(22, 163, 74, .6); }
.contact-line .ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(22, 163, 74, .14); color: #4ade80; }
.contact-line .ico svg { width: 22px; height: 22px; }
.contact-line small { display: block; font-size: 12px; font-weight: 600; color: var(--text-4); }
.contact-line .num { direction: ltr; unicode-bidi: isolate; }

.ready { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 28px; margin-top: 56px; padding: 28px; border-radius: var(--radius-lg); border: 1px dashed var(--border-strong); }
.ready h3 { font-size: 1.4rem; font-weight: 800; }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal { padding: 40px 28px; }
@media (min-width: 768px) { .legal { padding: 56px; } }
.legal .intro { padding-bottom: 28px; margin-bottom: 12px; border-bottom: 1px solid var(--border); color: var(--text-2); font-size: 1.1rem; }
.legal .updated { display: inline-block; margin-bottom: 16px; font-size: 13px; color: var(--text-4); }
.legal section { padding-top: 32px; }
.legal h2 { font-size: 1.45rem; font-weight: 800; margin-bottom: 14px; }
.legal h2 .n { color: var(--primary); margin-inline-end: 6px; }
.legal p, .legal li { color: var(--text-3); }
.legal p + p, .legal p + ul, .legal ul + p { margin-top: 12px; }
.legal ul li { position: relative; padding-inline-start: 22px; }
.legal ul li + li { margin-top: 8px; }
.legal ul li::before { content: ''; position: absolute; inset-inline-start: 4px; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.legal strong { color: #fff; }
.legal a { color: var(--primary); font-weight: 700; }
[data-lang] { display: none; }
html:not([lang='ar']) [data-lang='en'], html[lang='ar'] [data-lang='ar'] { display: block; }

/* Above-the-fold hero parts stay hidden until GSAP plays the intro (boot.js removes .anim if GSAP never loads). */
html.anim .hero-in { opacity: 0; }

/* --------------------------------------------------------------------------
   Ambient (continuous) decoration animations
   -------------------------------------------------------------------------- */
.dash-flow { animation: dash-flow 5s linear infinite; }
@keyframes dash-flow { to { stroke-dashoffset: -120; } }
.spin-slow { animation: spin 90s linear infinite; }
.spin-slow-2 { animation: spin 60s linear infinite; }
.spin-rev { animation: spin 70s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.pulse-dot { animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.8); opacity: .5; } }
.ring-pulse { transform-box: fill-box; transform-origin: center; animation: ring-pulse 2.4s ease-out infinite; }
@keyframes ring-pulse { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(2.2); opacity: 0; } }
.sat-float { animation: sat-float 8s ease-in-out infinite; transform-origin: 100px 64px; }
@keyframes sat-float { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-12px) rotate(-1deg); } }
.hero-signal .arc { opacity: 0; animation: sig 2.4s ease-out infinite; }
.hero-signal .arc:nth-of-type(2) { animation-delay: .25s; }
.hero-signal .arc:nth-of-type(3) { animation-delay: .5s; }
.hero-signal .sig-dot { transform-box: fill-box; transform-origin: center; animation: pulse-dot 2.4s ease-in-out infinite; }
html[dir='rtl'] .hero-signal { transform: translateY(-50%) scaleX(-1); }
@keyframes sig { 0% { opacity: 0; } 25% { opacity: 1; } 70%, 100% { opacity: 0; } }
.ch-flow path { animation: dash-flow 4s linear infinite; }
.ch-nodes, .ch-rings { opacity: .55; }
.trial-rings .r { transform-origin: 450px 450px; }

/* --------------------------------------------------------------------------
   Toast
   -------------------------------------------------------------------------- */
.toast { position: fixed; bottom: 96px; left: 50%; z-index: 120; padding: 12px 20px; border-radius: 12px; background: #fff; color: #0f172a; font-weight: 700; font-size: 14px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; transition: all .3s var(--ease); }
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  html.js.anim [data-reveal] { opacity: 1; }
}
