:root {
  --base: #0A0F24;
  --night2: #151C3F;
  --text: #F4F1E8;
  --muted: rgba(244, 241, 232, 0.72);
  --faint: rgba(244, 241, 232, 0.4);
  --surface: rgba(255, 255, 255, 0.055);
  --surface2: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.09);
  --gold: #E9C27A;
  --gold-soft: rgba(233, 194, 122, 0.14);
  --glow: rgba(233, 194, 122, 0.22);
  --sky: radial-gradient(120% 70% at 70% -10%, #3B2C4F 0%, rgba(59, 44, 79, 0) 60%),
         linear-gradient(180deg, #1A1B45 0%, #0A0F24 70%);
  color-scheme: dark;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --base: #F6F3EC;
    --night2: #EDE7DA;
    --text: #1D2130;
    --muted: rgba(29, 33, 48, 0.72);
    --faint: rgba(29, 33, 48, 0.45);
    --surface: rgba(255, 255, 255, 0.75);
    --surface2: rgba(29, 33, 48, 0.06);
    --line: rgba(29, 33, 48, 0.1);
    --gold: #86601D;
    --gold-soft: rgba(176, 127, 42, 0.12);
    --glow: rgba(176, 127, 42, 0.18);
    --sky: radial-gradient(120% 70% at 70% -10%, #F7DDA8 0%, rgba(247, 221, 168, 0) 60%),
           linear-gradient(180deg, #E8EEF8 0%, #F6F3EC 70%);
    color-scheme: light;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font: 400 17px/1.6 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }

/* Header */
.top {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  background: color-mix(in srgb, var(--base) 78%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; font-size: 19px; }
.brand:hover { text-decoration: none; }
.brand img { border-radius: 22%; }
.top nav, .foot nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.top nav a, .foot nav a { color: var(--muted); font-weight: 600; font-size: 15px; }
.top nav a:hover, .foot nav a:hover { color: var(--text); text-decoration: none; }
.top .lang { border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }
@media (max-width: 640px) {
  .top nav a:not(.lang) { display: none; }
}

/* Hero */
.hero {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 48px;
  max-width: 1120px; margin: 0 auto; padding: 72px 16px 96px;
}
.sky { position: absolute; inset: 0 calc(50% - 50vw); background: var(--sky); z-index: -1; }
.eyebrow { color: var(--gold); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 16px; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--gold); }
.lead { color: var(--muted); font-size: 19px; max-width: 34em; margin: 22px 0 30px; }
.store { display: inline-block; }
.store img { height: 56px; width: auto; max-width: none; }
.badges { list-style: none; padding: 0; margin: 28px 0 0; display: flex; gap: 10px; flex-wrap: wrap; }
.badges li {
  font-size: 14px; font-weight: 600; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
}
.badges li::before { content: '✓'; color: var(--gold); margin-right: 7px; }
.hero-phone { display: flex; justify-content: center; }
.phone {
  border-radius: 44px; padding: 10px; background: #05070F;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 40px 80px -20px rgba(0, 0, 0, 0.6), 0 0 120px var(--glow);
}
.phone img { border-radius: 34px; }
.hero .phone { width: min(340px, 80vw); }
.tilt { transform: rotate(3deg); }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .badges { justify-content: center; }
  .tilt { transform: none; }
}

/* Sections */
section h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; text-align: center; }
.features, .shots { max-width: 1120px; margin: 0 auto; padding: 88px 16px 0; scroll-margin-top: 60px; }
.features ul {
  list-style: none; padding: 0; margin: 44px 0 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px;
}
.features li { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.features .ic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: var(--gold-soft); color: var(--gold); margin-bottom: 18px;
}
.features h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.features p { color: var(--muted); margin: 0; font-size: 16px; }

.rail {
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 44px 16px 24px; margin: 0 -16px;
  scrollbar-width: thin;
}
.rail figure { margin: 0; flex: 0 0 240px; scroll-snap-align: center; text-align: center; }
.rail .phone { border-radius: 34px; padding: 7px; }
.rail .phone img { border-radius: 28px; }
.rail figcaption { margin-top: 14px; font-weight: 600; color: var(--muted); font-size: 15px; }

.privacy-band {
  max-width: 820px; margin: 88px auto 0; padding: 56px 28px; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
  margin-left: max(16px, calc((100vw - 820px) / 2)); margin-right: max(16px, calc((100vw - 820px) / 2));
}
.privacy-band p { color: var(--muted); margin: 16px auto 20px; max-width: 36em; }
.privacy-band a { font-weight: 700; }
.arabic { font-family: 'Amiri', serif; color: var(--gold) !important; font-size: 34px; margin: 0 0 8px !important; line-height: 1.4; }

.cta { text-align: center; padding: 96px 16px 104px; }
.cta img { margin: 0 auto 22px; border-radius: 22%; box-shadow: 0 20px 50px -10px var(--glow); }
.cta h2 { margin-bottom: 28px; }

/* Documents (privacy, support) */
.doc { max-width: 760px; margin: 0 auto; padding: 64px 16px 96px; }
.doc h1 { font-size: clamp(34px, 5vw, 48px); font-weight: 800; margin-bottom: 12px; }
.doc h2 { font-size: 21px; font-weight: 700; margin: 36px 0 10px; text-align: left; }
.doc p { color: var(--muted); margin: 0 0 12px; }
.doc .lead { margin: 12px 0 28px; }
.muted { color: var(--faint) !important; font-size: 15px; }
.mail-card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 24px 26px; }
.mail-card span { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.mail-card a { display: inline-block; font-size: clamp(18px, 4vw, 22px); font-weight: 700; margin: 6px 0 10px; word-break: break-all; }
.mail-card p { font-size: 15px; margin: 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 12px 0 0; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 32px max(16px, calc((100vw - 1120px) / 2)) 40px; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.legal { color: var(--faint); font-size: 13px; margin: 20px 0 0; }
