/* Zero+ marketing site — shared styles */
:root {
  --accent: #4f46e5;
  --accent-2: #7c74ff;
  --accent-soft: #eceafe;
  --ink: #12131a;
  --ink-2: #4a4d5c;
  --muted: #7c8194;
  --bg: #f7f7fb;
  --bg-2: #efeff7;
  --card: #ffffff;
  --border: #e9e9f2;
  --pos: #16a34a;
  --pos-soft: #e7f6ed;
  --warn: #d97706;
  --warn-soft: #fbf1e3;
  --neg: #dc2626;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -20px rgba(31, 27, 90, 0.28);
  --shadow-sm: 0 8px 24px -12px rgba(31, 27, 90, 0.22);
  --maxw: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(247, 247, 251, 0.82);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  direction: ltr; /* "Zero+" always reads left-to-right, even on RTL pages */
}
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid; place-items: center;
  color: #fff; font-size: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-sm);
}
.brand__logo {
  width: 34px; height: 34px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--ink-2); font-weight: 500; font-size: 15px; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: inline-flex; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(79,70,229,.7); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 16px 30px -12px rgba(79,70,229,.8); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { background: var(--bg-2); }
.btn--lg { padding: 15px 28px; font-size: 16px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(124,116,255,.18), transparent 60%),
    radial-gradient(700px 400px at 5% 10%, rgba(79,70,229,.10), transparent 55%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  /* padding-top/bottom only — keep the .wrap side padding (24px) intact */
  padding-top: 84px;
  padding-bottom: 96px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  font-size: 19px; color: var(--ink-2); margin: 0; max-width: 30em;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 56px; }
.hero__note { margin-top: 18px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note b { color: var(--pos); }

.hero__art { display: grid; place-items: center; position: relative; }
.hero__art .phone { transform: rotate(2deg); }
.hero__art::before {
  content: ''; position: absolute; inset: 8% 12%;
  background: linear-gradient(135deg, rgba(124,116,255,.25), rgba(79,70,229,.1));
  filter: blur(46px); border-radius: 50%; z-index: 0;
}

/* store badges */
.store { display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: 14px; background: var(--ink); color: #fff; }
.store small { display: block; font-size: 10px; opacity: .8; line-height: 1.1; }
.store b { font-size: 16px; font-weight: 700; line-height: 1.2; }
.store svg { width: 22px; height: 22px; }

/* ---------- section shells ---------- */
.section { padding: 88px 0; }
.section--tint { background: linear-gradient(180deg, #fff, var(--bg-2)); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section__head .eyebrow { margin-bottom: 14px; }
.section__head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.025em; margin: 0 0 14px; font-weight: 800; }
.section__head p { font-size: 18px; color: var(--ink-2); margin: 0; }

/* ---------- screens showcase ---------- */
.screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.screen-col { text-align: center; }
.screen-col .phone { margin: 0 auto 22px; }
.screen-col h3 { font-size: 19px; margin: 0 0 6px; letter-spacing: -0.01em; }
.screen-col p { color: var(--ink-2); font-size: 15px; margin: 0 auto; max-width: 30ch; }

/* ---------- feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature__ic {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; font-size: 22px;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 16px;
}
.feature h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* ---------- privacy band ---------- */
.band {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border-radius: var(--radius-lg);
  padding: 54px; text-align: center;
  box-shadow: var(--shadow);
}
.band h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 14px; letter-spacing: -0.02em; }
.band p { font-size: 18px; opacity: .92; margin: 0 auto 26px; max-width: 46ch; }
.band .btn--ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.28); }
.band .btn--ghost:hover { background: rgba(255,255,255,.22); }
.band__pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.band__pills span { background: rgba(255,255,255,.16); padding: 7px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 46px 0 60px; color: var(--muted); }
.footer__grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { color: var(--ink-2); font-size: 15px; }
.footer__links a:hover { color: var(--ink); }
.footer__copy { font-size: 14px; margin-top: 26px; }

/* ---------- device mockup ---------- */
.phone {
  position: relative; z-index: 1;
  width: min(290px, 80vw);
  border-radius: 42px;
  background: #0e0f16;
  padding: 12px;
  box-shadow: var(--shadow), 0 2px 6px rgba(0,0,0,.25);
}
.phone__screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 292 / 620;
}
.phone__notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 42%; height: 22px; background: #0e0f16;
  border-bottom-left-radius: 14px; border-bottom-right-radius: 14px;
  z-index: 5;
}
.app { padding: 30px 14px 16px; font-size: 12px; }
.app-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.app-brand { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 13px; direction: ltr; }
.app-brand--rtl { direction: rtl; }
.app-brand .m { width: 18px; height: 18px; border-radius: 6px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; color: #fff; font-size: 10px; }
.app-icons { color: var(--muted); font-size: 13px; letter-spacing: 3px; }

.s-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 14px; margin-bottom: 12px;
  box-shadow: 0 6px 18px -12px rgba(31,27,90,.25);
}
.s-card--status { position: relative; overflow: hidden; }
.s-card--status::before { content: ''; position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 4px; background: var(--pos); }
.s-greet { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.s-line { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.s-muted { color: var(--ink-2); font-weight: 600; }
.s-badge { font-weight: 800; padding: 2px 9px; border-radius: 999px; font-size: 11px; }
.s-badge--good { background: var(--pos-soft); color: var(--pos); }
.s-avail { margin-top: 11px; font-weight: 600; font-size: 13px; }
.s-avail b { font-weight: 800; }
.s-norisk { margin-top: 8px; color: var(--pos); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.s-score { margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--border); }
.s-score-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; font-weight: 700; }
.s-score-head b { font-size: 16px; }
.s-bar { height: 8px; border-radius: 999px; background: var(--bg-2); overflow: hidden; }
.s-bar > i { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.s-bar--good > i { background: var(--pos); }
.s-bar--warn > i { background: var(--warn); }

.s-sec { font-weight: 800; font-size: 12px; margin: 4px 2px 8px; }
.s-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.s-item:last-child { border-bottom: none; }
.s-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 15px; flex-shrink: 0; }
.s-ic--good { background: var(--pos-soft); color: var(--pos); }
.s-ic--warn { background: var(--warn-soft); color: var(--warn); }
.s-ic--accent { background: var(--accent-soft); color: var(--accent); }
.s-item h4 { margin: 0; font-size: 13px; }
.s-item p { margin: 2px 0 6px; color: var(--ink-2); font-size: 11px; }
.s-chip { display: inline-block; font-weight: 700; font-size: 10px; padding: 3px 8px; border-radius: 999px; }
.s-chip--pos { background: var(--pos-soft); color: var(--pos); }
.s-chip--warn { background: var(--warn-soft); color: var(--warn); }

/* tip card */
.s-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.s-head .s-ic { width: 28px; height: 28px; }
.s-head b { font-size: 13px; }
.s-today { margin-inline-start: auto; font-size: 9px; font-weight: 800; color: var(--accent); background: var(--accent-soft); padding: 2px 7px; border-radius: 999px; }
.s-lead { font-weight: 600; font-size: 12px; margin: 0 0 12px; }
.s-slider { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.s-slider .k { color: var(--muted); font-weight: 600; }
.s-slider .v { color: var(--accent); font-weight: 800; font-size: 15px; }
.s-track { height: 6px; background: var(--bg-2); border-radius: 999px; position: relative; margin: 8px 0 12px; }
.s-track .knob { position: absolute; top: 50%; left: 52%; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; transform: translate(-50%,-50%); box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.s-out { display: flex; background: var(--bg-2); border-radius: 12px; padding: 11px 6px; margin-top: 4px; }
.s-out .col { flex: 1; text-align: center; }
.s-out .div { width: 1px; background: var(--border); }
.s-out .n { font-weight: 800; font-size: 14px; }
.s-out .n.pos { color: var(--pos); }
.s-out .l { color: var(--muted); font-size: 10px; margin-top: 2px; }
.s-chart { margin: 2px -4px 10px; }

/* timeline */
.tl { padding: 4px 2px; }
.tl-row { display: flex; gap: 10px; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 11px; height: 11px; border-radius: 50%; margin-top: 6px; box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--border); }
.tl-dot--today { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.tl-dot--good { background: var(--pos); }
.tl-dot--warn { background: var(--warn); }
.tl-line { flex: 1; width: 2px; background: var(--border); margin: 4px 0; }
.tl-body { flex: 1; padding-bottom: 12px; }
.tl-today { font-weight: 800; color: var(--accent); padding-top: 3px; }
.tl-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; box-shadow: 0 4px 14px -10px rgba(31,27,90,.25); }
.tl-date { color: var(--muted); font-weight: 700; font-size: 10px; margin-bottom: 4px; }
.tl-card h4 { margin: 0 0 3px; font-size: 13px; }
.tl-card p { margin: 0; color: var(--ink-2); font-size: 11px; }
.tl-finale { text-align: center; background: var(--pos-soft); border-radius: 12px; padding: 12px; }
.tl-finale .e { font-size: 20px; }
.tl-finale b { display: block; color: var(--pos); font-weight: 800; font-size: 14px; margin-top: 2px; }
.tl-finale span { color: var(--ink-2); font-size: 10px; }

/* ---------- legal + support pages ---------- */
.page-head { padding: 64px 0 30px; background: linear-gradient(180deg, rgba(124,116,255,.10), transparent); }
.page-head h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.03em; margin: 0 0 8px; }
.page-head p { color: var(--ink-2); margin: 0; font-size: 16px; }
.legal { max-width: 780px; margin: 0 auto; padding: 20px 0 80px; }
.legal h2 { font-size: 21px; margin: 38px 0 10px; letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-2); font-size: 16px; }
.legal ul { padding-inline-start: 22px; }
.legal li { margin: 6px 0; }
.legal .callout {
  background: var(--pos-soft); border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--radius); padding: 18px 20px; margin: 22px 0;
  color: #0f5c2e;
}
.legal .callout strong { color: #0a3f20; }
.legal .muted-note { color: var(--muted); font-size: 14px; }

/* support form */
.support-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; max-width: 980px; margin: 0 auto; padding: 20px 0 90px; }
.card-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; font-family: inherit; font-size: 15px;
  border: 1px solid var(--border); border-radius: 12px; background: #fcfcfe; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: var(--pos-soft); color: #0f5c2e; font-weight: 600; }
.contact-side h3 { margin: 0 0 6px; }
.contact-side p { color: var(--ink-2); margin: 0 0 20px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 14px; background: var(--card); }
.contact-row .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.contact-row .ic.wa { background: rgba(37,211,102,.15); color: #25d366; }
.contact-row .ic.mail { background: var(--accent-soft); color: var(--accent); }
.contact-row b { display: block; font-size: 15px; }
.contact-row span { color: var(--muted); font-size: 13px; }

/* ---------- responsive ---------- */
.menu-btn { display: none; background: none; border: 0; cursor: pointer; font-size: 22px; color: var(--ink); }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 64px; }
  .hero__art { order: -1; }
  .screens { grid-template-columns: 1fr; gap: 44px; }
  .features { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--border);
  }
  .nav__cta { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .band { padding: 36px 22px; }
  .card-panel { padding: 22px; }
}

/* ---------- language switch ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13px;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
  transition: background .15s, border-color .15s;
}
.lang-switch:hover { background: var(--accent-soft); border-color: var(--accent); }

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] body {
  font-family: 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
[dir="rtl"] .hero h1,
[dir="rtl"] .section__head h2,
[dir="rtl"] .band h2,
[dir="rtl"] .page-head h1 { letter-spacing: 0; }
[dir="rtl"] .app-icons { letter-spacing: 2px; }
[dir="rtl"] .form-note,
[dir="rtl"] .footer__copy,
[dir="rtl"] .hero__note { text-align: start; }
/* keep numeric/latin bits readable inside RTL flow */
[dir="rtl"] .store,
[dir="rtl"] .s-score-head b,
[dir="rtl"] .s-out .n { direction: ltr; unicode-bidi: isolate; }
/* Zero+ marketing site — shared styles */
:root {
  --accent: #4f46e5;
  --accent-2: #7c74ff;
  --accent-soft: #eceafe;
  --ink: #12131a;
  --ink-2: #4a4d5c;
  --muted: #7c8194;
  --bg: #f7f7fb;
  --bg-2: #efeff7;
  --card: #ffffff;
  --border: #e9e9f2;
  --pos: #16a34a;
  --pos-soft: #e7f6ed;
  --warn: #d97706;
  --warn-soft: #fbf1e3;
  --neg: #dc2626;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -20px rgba(31, 27, 90, 0.28);
  --shadow-sm: 0 8px 24px -12px rgba(31, 27, 90, 0.22);
  --maxw: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(247, 247, 251, 0.82);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  direction: ltr; /* "Zero+" always reads left-to-right, even on RTL pages */
}
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid; place-items: center;
  color: #fff; font-size: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-sm);
}
.brand__logo {
  width: 34px; height: 34px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--ink-2); font-weight: 500; font-size: 15px; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: inline-flex; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(79,70,229,.7); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 16px 30px -12px rgba(79,70,229,.8); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { background: var(--bg-2); }
.btn--lg { padding: 15px 28px; font-size: 16px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(124,116,255,.18), transparent 60%),
    radial-gradient(700px 400px at 5% 10%, rgba(79,70,229,.10), transparent 55%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  /* padding-top/bottom only — keep the .wrap side padding (24px) intact */
  padding-top: 84px;
  padding-bottom: 96px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  font-size: 19px; color: var(--ink-2); margin: 0; max-width: 30em;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 56px; }
.hero__note { margin-top: 18px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note b { color: var(--pos); }

.hero__art { display: grid; place-items: center; position: relative; }
.hero__art .phone { transform: rotate(2deg); }
.hero__art::before {
  content: ''; position: absolute; inset: 8% 12%;
  background: linear-gradient(135deg, rgba(124,116,255,.25), rgba(79,70,229,.1));
  filter: blur(46px); border-radius: 50%; z-index: 0;
}

/* store badges */
.store { display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: 14px; background: var(--ink); color: #fff; }
.store small { display: block; font-size: 10px; opacity: .8; line-height: 1.1; }
.store b { font-size: 16px; font-weight: 700; line-height: 1.2; }
.store svg { width: 22px; height: 22px; }

/* ---------- section shells ---------- */
.section { padding: 88px 0; }
.section--tint { background: linear-gradient(180deg, #fff, var(--bg-2)); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section__head .eyebrow { margin-bottom: 14px; }
.section__head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.025em; margin: 0 0 14px; font-weight: 800; }
.section__head p { font-size: 18px; color: var(--ink-2); margin: 0; }

/* ---------- screens showcase ---------- */
.screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.screen-col { text-align: center; }
.screen-col .phone { margin: 0 auto 22px; }
.screen-col h3 { font-size: 19px; margin: 0 0 6px; letter-spacing: -0.01em; }
.screen-col p { color: var(--ink-2); font-size: 15px; margin: 0 auto; max-width: 30ch; }

/* ---------- feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature__ic {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; font-size: 22px;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 16px;
}
.feature h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* ---------- privacy band ---------- */
.band {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border-radius: var(--radius-lg);
  padding: 54px; text-align: center;
  box-shadow: var(--shadow);
}
.band h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 14px; letter-spacing: -0.02em; }
.band p { font-size: 18px; opacity: .92; margin: 0 auto 26px; max-width: 46ch; }
.band .btn--ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.28); }
.band .btn--ghost:hover { background: rgba(255,255,255,.22); }
.band__pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.band__pills span { background: rgba(255,255,255,.16); padding: 7px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 46px 0 60px; color: var(--muted); }
.footer__grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { color: var(--ink-2); font-size: 15px; }
.footer__links a:hover { color: var(--ink); }
.footer__copy { font-size: 14px; margin-top: 26px; }

/* ---------- device mockup ---------- */
.phone {
  position: relative; z-index: 1;
  width: min(290px, 80vw);
  border-radius: 42px;
  background: #0e0f16;
  padding: 12px;
  box-shadow: var(--shadow), 0 2px 6px rgba(0,0,0,.25);
}
.phone__screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 292 / 620;
}
.phone__notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 42%; height: 22px; background: #0e0f16;
  border-bottom-left-radius: 14px; border-bottom-right-radius: 14px;
  z-index: 5;
}
.app { padding: 30px 14px 16px; font-size: 12px; }
.app-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.app-brand { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 13px; direction: ltr; }
.app-brand--rtl { direction: rtl; }
.app-brand .m { width: 18px; height: 18px; border-radius: 6px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; color: #fff; font-size: 10px; }
.app-icons { color: var(--muted); font-size: 13px; letter-spacing: 3px; }

.s-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 14px; margin-bottom: 12px;
  box-shadow: 0 6px 18px -12px rgba(31,27,90,.25);
}
.s-card--status { position: relative; overflow: hidden; }
.s-card--status::before { content: ''; position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 4px; background: var(--pos); }
.s-greet { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.s-line { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.s-muted { color: var(--ink-2); font-weight: 600; }
.s-badge { font-weight: 800; padding: 2px 9px; border-radius: 999px; font-size: 11px; }
.s-badge--good { background: var(--pos-soft); color: var(--pos); }
.s-avail { margin-top: 11px; font-weight: 600; font-size: 13px; }
.s-avail b { font-weight: 800; }
.s-norisk { margin-top: 8px; color: var(--pos); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.s-score { margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--border); }
.s-score-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; font-weight: 700; }
.s-score-head b { font-size: 16px; }
.s-bar { height: 8px; border-radius: 999px; background: var(--bg-2); overflow: hidden; }
.s-bar > i { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.s-bar--good > i { background: var(--pos); }
.s-bar--warn > i { background: var(--warn); }

.s-sec { font-weight: 800; font-size: 12px; margin: 4px 2px 8px; }
.s-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.s-item:last-child { border-bottom: none; }
.s-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 15px; flex-shrink: 0; }
.s-ic--good { background: var(--pos-soft); color: var(--pos); }
.s-ic--warn { background: var(--warn-soft); color: var(--warn); }
.s-ic--accent { background: var(--accent-soft); color: var(--accent); }
.s-item h4 { margin: 0; font-size: 13px; }
.s-item p { margin: 2px 0 6px; color: var(--ink-2); font-size: 11px; }
.s-chip { display: inline-block; font-weight: 700; font-size: 10px; padding: 3px 8px; border-radius: 999px; }
.s-chip--pos { background: var(--pos-soft); color: var(--pos); }
.s-chip--warn { background: var(--warn-soft); color: var(--warn); }

/* tip card */
.s-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.s-head .s-ic { width: 28px; height: 28px; }
.s-head b { font-size: 13px; }
.s-today { margin-inline-start: auto; font-size: 9px; font-weight: 800; color: var(--accent); background: var(--accent-soft); padding: 2px 7px; border-radius: 999px; }
.s-lead { font-weight: 600; font-size: 12px; margin: 0 0 12px; }
.s-slider { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.s-slider .k { color: var(--muted); font-weight: 600; }
.s-slider .v { color: var(--accent); font-weight: 800; font-size: 15px; }
.s-track { height: 6px; background: var(--bg-2); border-radius: 999px; position: relative; margin: 8px 0 12px; }
.s-track .knob { position: absolute; top: 50%; left: 52%; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; transform: translate(-50%,-50%); box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.s-out { display: flex; background: var(--bg-2); border-radius: 12px; padding: 11px 6px; margin-top: 4px; }
.s-out .col { flex: 1; text-align: center; }
.s-out .div { width: 1px; background: var(--border); }
.s-out .n { font-weight: 800; font-size: 14px; }
.s-out .n.pos { color: var(--pos); }
.s-out .l { color: var(--muted); font-size: 10px; margin-top: 2px; }
.s-chart { margin: 2px -4px 10px; }

/* timeline */
.tl { padding: 4px 2px; }
.tl-row { display: flex; gap: 10px; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 11px; height: 11px; border-radius: 50%; margin-top: 6px; box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--border); }
.tl-dot--today { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.tl-dot--good { background: var(--pos); }
.tl-dot--warn { background: var(--warn); }
.tl-line { flex: 1; width: 2px; background: var(--border); margin: 4px 0; }
.tl-body { flex: 1; padding-bottom: 12px; }
.tl-today { font-weight: 800; color: var(--accent); padding-top: 3px; }
.tl-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; box-shadow: 0 4px 14px -10px rgba(31,27,90,.25); }
.tl-date { color: var(--muted); font-weight: 700; font-size: 10px; margin-bottom: 4px; }
.tl-card h4 { margin: 0 0 3px; font-size: 13px; }
.tl-card p { margin: 0; color: var(--ink-2); font-size: 11px; }
.tl-finale { text-align: center; background: var(--pos-soft); border-radius: 12px; padding: 12px; }
.tl-finale .e { font-size: 20px; }
.tl-finale b { display: block; color: var(--pos); font-weight: 800; font-size: 14px; margin-top: 2px; }
.tl-finale span { color: var(--ink-2); font-size: 10px; }

/* ---------- legal + support pages ---------- */
.page-head { padding: 64px 0 30px; background: linear-gradient(180deg, rgba(124,116,255,.10), transparent); }
.page-head h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.03em; margin: 0 0 8px; }
.page-head p { color: var(--ink-2); margin: 0; font-size: 16px; }
.legal { max-width: 780px; margin: 0 auto; padding: 20px 0 80px; }
.legal h2 { font-size: 21px; margin: 38px 0 10px; letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-2); font-size: 16px; }
.legal ul { padding-inline-start: 22px; }
.legal li { margin: 6px 0; }
.legal .callout {
  background: var(--pos-soft); border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--radius); padding: 18px 20px; margin: 22px 0;
  color: #0f5c2e;
}
.legal .callout strong { color: #0a3f20; }
.legal .muted-note { color: var(--muted); font-size: 14px; }

/* support form */
.support-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; max-width: 980px; margin: 0 auto; padding: 20px 0 90px; }
.card-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; font-family: inherit; font-size: 15px;
  border: 1px solid var(--border); border-radius: 12px; background: #fcfcfe; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: var(--pos-soft); color: #0f5c2e; font-weight: 600; }
.contact-side h3 { margin: 0 0 6px; }
.contact-side p { color: var(--ink-2); margin: 0 0 20px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 14px; background: var(--card); }
.contact-row .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.contact-row .ic.wa { background: rgba(37,211,102,.15); color: #25d366; }
.contact-row .ic.mail { background: var(--accent-soft); color: var(--accent); }
.contact-row b { display: block; font-size: 15px; }
.contact-row span { color: var(--muted); font-size: 13px; }

/* ---------- responsive ---------- */
.menu-btn { display: none; background: none; border: 0; cursor: pointer; font-size: 22px; color: var(--ink); }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 64px; }
  .hero__art { order: -1; }
  .screens { grid-template-columns: 1fr; gap: 44px; }
  .features { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--border);
  }
  .nav__cta { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .band { padding: 36px 22px; }
  .card-panel { padding: 22px; }
}

/* ---------- language switch ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13px;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
  transition: background .15s, border-color .15s;
}
.lang-switch:hover { background: var(--accent-soft); border-color: var(--accent); }

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] body {
  font-family: 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
[dir="rtl"] .hero h1,
[dir="rtl"] .section__head h2,
[dir="rtl"] .band h2,
[dir="rtl"] .page-head h1 { letter-spacing: 0; }
[dir="rtl"] .app-icons { letter-spacing: 2px; }
[dir="rtl"] .form-note,
[dir="rtl"] .footer__copy,
[dir="rtl"] .hero__note { text-align: start; }
/* keep numeric/latin bits readable inside RTL flow */
[dir="rtl"] .store,
[dir="rtl"] .s-score-head b,
[dir="rtl"] .s-out .n { direction: ltr; unicode-bidi: isolate; }
