:root {
  --bg: #08111f;
  --bg-soft: #101b2f;
  --ink: #f8fafc;
  --muted: #b8c3d4;
  --paper: #f7fafc;
  --text: #111827;
  --text-soft: #526071;
  --gold: #d4af62;
  --gold-2: #ffe29b;
  --teal: #38d8cf;
  --green: #22c55e;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(17, 24, 39, 0.1);
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", "IBM Plex Sans Arabic", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 175, 98, 0.25), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(56, 216, 207, 0.16), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #0c1728 48%, var(--bg) 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  animation: gridDrift 16s linear infinite;
}

a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 28px), var(--max)); margin-inline: auto; }
.skip-link { position: absolute; inset-inline-start: 18px; top: -60px; background: #fff; color: #111827; padding: 10px 14px; border-radius: 12px; z-index: 999; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.16rem; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #08111f;
  box-shadow: 0 16px 30px rgba(212, 175, 98, 0.22);
}
.brand-mark img { width: 100%; height: 100%; display: block; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 10px 12px; color: var(--muted); border-radius: 999px; font-weight: 800; font-size: .9rem; transition: .2s ease; }
.nav-links a:hover { color: var(--gold-2); background: rgba(255,255,255,.08); }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #111827; background: linear-gradient(135deg, var(--gold), var(--gold-2)); box-shadow: 0 18px 34px rgba(212, 175, 98, .25); }
.btn-ghost { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(120%);
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.5) 45%, transparent 70%);
  animation: sheen 3.2s ease-in-out infinite;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fe06d, #128c4a);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 46px rgba(0,0,0,.36), inset 0 0 0 1px rgba(255,255,255,.28); }
.whatsapp-float svg { width: 34px; height: 34px; display: block; }

.hero { padding: 54px 0 34px; }
.hero-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 22px; align-items: center; }
.hero-copy {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(120%);
  animation: panelShine 7s ease-in-out infinite;
  pointer-events: none;
}
.hero-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -88px;
  bottom: -104px;
  border-radius: 50%;
  background: rgba(212,175,98,.18);
  filter: blur(6px);
  animation: softPulse 5s ease-in-out infinite;
}
.eyebrow, .section-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(212,175,98,.25);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(212,175,98,.12);
  font-size: .82rem;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 16px; font-size: clamp(2.15rem, 4.5vw, 4.6rem); line-height: 1.1; font-weight: 900; }
.lead { max-width: 64ch; color: var(--muted); font-size: 1.03rem; line-height: 2; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.speed-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.speed-badges div {
  min-height: 82px;
  padding: 13px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  animation: badgeLift 4.8s ease-in-out infinite;
}
.speed-badges div:nth-child(2) { animation-delay: .35s; }
.speed-badges div:nth-child(3) { animation-delay: .7s; }
.speed-badges strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  font-weight: 900;
}
.speed-badges span {
  display: block;
  margin-top: 4px;
  color: #eaf0f8;
  font-size: .82rem;
  line-height: 1.55;
  font-weight: 800;
}
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; position: relative; z-index: 1; }
.trust-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: #eaf0f8;
  font-weight: 900;
  font-size: .84rem;
  animation: fadeGlow 5s ease-in-out infinite;
}

.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.dashboard-card {
  width: min(420px, 92%);
  padding: 22px;
  border-radius: 32px;
  background: #f8fafc;
  color: var(--text);
  box-shadow: var(--shadow);
  position: relative;
  animation: float 6s ease-in-out infinite, cardGlow 4.5s ease-in-out infinite;
}
.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(17,24,39,.08);
  pointer-events: none;
}
.dashboard-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(212,175,98,.2), transparent 30%);
  animation: rotate 10s linear infinite;
  pointer-events: none;
  z-index: -1;
}
.card-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 22px; }
.card-top span { color: var(--text-soft); font-weight: 800; }
.card-top b { padding: 8px 10px; border-radius: 999px; background: rgba(34,197,94,.12); color: #15803d; font-size: .78rem; }
.speed-ring {
  width: 210px;
  height: 210px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, #fff 0 53%, transparent 54%),
    conic-gradient(from 40deg, var(--gold), var(--teal), #101827, var(--gold));
  box-shadow: inset 0 0 0 1px rgba(17,24,39,.06), 0 24px 45px rgba(17,24,39,.14);
  animation: ringPulse 3.6s ease-in-out infinite;
}
.speed-ring span, .speed-ring strong { grid-area: 1/1; }
.speed-ring span { transform: translateY(-22px); color: var(--text-soft); font-weight: 800; }
.speed-ring strong { transform: translateY(14px); font-size: 1.2rem; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-grid div { padding: 12px; border-radius: 18px; background: #eef3f8; text-align: center; }
.mini-grid small { display: block; color: var(--text-soft); font-weight: 800; }
.mini-grid b { display: block; margin-top: 3px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; animation: rotate 18s linear infinite; }
.orbit.one { width: 390px; height: 390px; }
.orbit.two { width: 510px; height: 510px; animation-direction: reverse; }
.floating-note {
  position: absolute;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  font-weight: 900;
  line-height: 1.6;
  animation: noteFloat 5.5s ease-in-out infinite;
}
.floating-note.note-b { animation-delay: .55s; }
.note-a { top: 70px; right: 8px; }
.note-b { bottom: 70px; left: 10px; }

.section { padding: 42px 0; }
.light { margin: 28px 0; background: var(--paper); color: var(--text); border-radius: 42px; }
.light .section-tag { color: #8a641e; background: rgba(212,175,98,.16); }
.section-head { max-width: 760px; margin-bottom: 22px; }
.section-head h2 { margin: 12px 0 8px; font-size: clamp(1.55rem, 2.4vw, 2.65rem); line-height: 1.35; }
.section-head p { color: var(--muted); line-height: 1.9; font-weight: 700; }
.light .section-head p { color: var(--text-soft); }

.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(17,24,39,.07);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(17,24,39,.11); }
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(115%);
  background: linear-gradient(100deg, transparent, rgba(212,175,98,.16), transparent);
  transition: transform .75s ease;
}
.feature-card:hover::after { transform: translateX(-115%); }
.feature-card.featured { background: #111827; color: #fff; border-color: #111827; }
.feature-card.featured p { color: #d1d5db; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: rgba(212,175,98,.14); color: #9a711f; font-weight: 900; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.18rem; line-height: 1.5; }
.feature-card p { color: var(--text-soft); line-height: 1.9; font-weight: 700; }
.feature-card a { display: inline-flex; margin-top: 8px; color: #8a641e; font-weight: 900; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start; }
.proof-list { display: grid; gap: 12px; }
.proof-list div { padding: 18px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid var(--line); }
.proof-list b { display: block; color: var(--gold-2); margin-bottom: 5px; }
.proof-list span { color: var(--muted); line-height: 1.8; font-weight: 700; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; counter-reset: steps; }
.step { padding: 22px; border-radius: 24px; background: #fff; border: 1px solid var(--line-dark); box-shadow: 0 16px 36px rgba(17,24,39,.06); }
.step:hover { animation: stepPop .55s ease; }
.step b { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; background: #111827; color: var(--gold-2); margin-bottom: 14px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-soft); line-height: 1.8; font-weight: 700; }

.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
details { padding: 20px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 900; line-height: 1.7; }
details p { margin: 12px 0 0; color: var(--muted); line-height: 1.9; font-weight: 700; }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
}
.cta-panel h2 { margin: 12px 0 6px; font-size: clamp(1.35rem, 2.4vw, 2.2rem); }
.cta-panel p { color: var(--muted); line-height: 1.8; font-weight: 700; }

.footer { padding: 34px 0 26px; background: rgba(0,0,0,.15); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 22px; }
.footer p, .footer a, .footer-bottom { color: var(--muted); line-height: 1.9; font-weight: 700; }
.footer h3 { margin-bottom: 10px; }
.footer-grid > div:nth-child(n+2) a { display: block; margin-bottom: 8px; }
.footer-bottom { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }

.form-page { padding: 34px 0 54px; }
.form-shell { max-width: 860px; margin: 0 auto; padding: 26px; border-radius: 32px; background: rgba(255,255,255,.09); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 7px; }
label { color: #e8eef7; font-weight: 900; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font: inherit;
  outline: none;
}
textarea { min-height: 118px; padding-block: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,98,.14); }
.full { grid-column: 1 / -1; }
.form-note { margin: 14px 0 20px; padding: 14px 16px; border-radius: 18px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.22); color: #dffce9; line-height: 1.8; font-weight: 800; }
.legal-page { max-width: 900px; margin: 36px auto 60px; padding: 28px; border-radius: 28px; background: rgba(255,255,255,.09); border: 1px solid var(--line); box-shadow: var(--shadow); }
.legal-page h1 { font-size: clamp(1.8rem, 3vw, 3rem); }
.legal-page h2 { margin-top: 24px; color: var(--gold-2); }
.legal-page p, .legal-page li { color: var(--muted); line-height: 2; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes gridDrift { to { background-position: 44px 44px; } }
@keyframes sheen { 0%, 42% { transform: translateX(120%); } 58%, 100% { transform: translateX(-120%); } }
@keyframes panelShine { 0%, 52% { transform: translateX(120%); } 70%, 100% { transform: translateX(-120%); } }
@keyframes softPulse { 0%, 100% { opacity: .65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes badgeLift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes fadeGlow { 0%, 100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,0); } 50% { box-shadow: inset 0 0 0 1px rgba(255,226,155,.2); } }
@keyframes cardGlow { 0%, 100% { box-shadow: var(--shadow); } 50% { box-shadow: 0 30px 85px rgba(212,175,98,.26); } }
@keyframes ringPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }
@keyframes noteFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes stepPop { 0%, 100% { transform: translateY(0); } 45% { transform: translateY(-6px); } }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .cards.three, .timeline, .faq-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 18px), var(--max)); }
  .site-header { padding: 8px 0; }
  .nav { min-height: 58px; border-radius: 18px; }
  .brand { font-size: 1rem; }
  .brand-mark { width: 38px; height: 38px; border-radius: 13px; }
  .nav .btn { min-height: 42px; padding: 0 12px; font-size: .78rem; }
  .hero { padding: 22px 0; }
  .hero-copy, .form-shell, .legal-page { padding: 18px; border-radius: 24px; }
  h1 { font-size: 1.8rem; line-height: 1.35; }
  .lead { font-size: .9rem; }
  .trust-strip, .cards.three, .timeline, .faq-grid, .form-grid { grid-template-columns: 1fr; }
  .speed-badges { grid-template-columns: 1fr; }
  .speed-badges div { min-height: 64px; padding: 11px 12px; }
  .hero-visual { min-height: 430px; overflow: hidden; }
  .orbit.two { width: 390px; height: 390px; }
  .floating-note { position: static; margin: 10px auto; width: 100%; max-width: 100%; }
  .dashboard-card { width: 100%; }
  .mini-grid { grid-template-columns: 1fr; }
  .mini-grid div { padding: 10px; }
  .speed-ring { width: 178px; height: 178px; }
  .cta-panel { display: block; }
  .cta-panel .btn { width: 100%; margin-top: 14px; }
  .light { border-radius: 28px; }
  .whatsapp-float { width: 54px; height: 54px; font-size: .68rem; }
}

@media (max-width: 390px) {
  .nav { gap: 8px; padding: 8px; }
  .brand span:last-child { max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav .btn { max-width: 132px; padding: 0 10px; }
  h1 { font-size: 1.55rem; }
  .hero-copy, .form-shell, .legal-page { padding: 15px; }
  .speed-ring { width: 158px; height: 158px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
