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

:root {
  --white:    #FFFFFF;
  --g50:      #F7F7F7;
  --g100:     #F0F0F0;
  --g150:     #E8E8E8;
  --g200:     #DCDCDC;
  --g300:     #C0C0C0;
  --g400:     #9A9A9A;
  --g500:     #6E6E6E;
  --g600:     #4A4A4A;
  --g700:     #2E2E2E;
  --g800:     #1C1C1E;
  --g900:     #0A0A0A;
  --border:   #E4E4E4;
  --text:     #0A0A0A;
  --muted:    #6E6E6E;
  --faint:    #9A9A9A;
  --font: 'Cairo','Tajawal',-apple-system,sans-serif;
  --ease: cubic-bezier(0.22,1,0.36,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ══ REVEAL ══ */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease),transform .7s var(--ease); }
.reveal.in { opacity:1; transform:translateY(0); }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s} .d4{transition-delay:.32s}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  padding: 5.5rem 2rem 5rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* توهج الخلفية */
.hero-glow {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
/* دائرة رمادية كبيرة — علوي وسط */
.hero-glow::before {
  content:'';
  position:absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(180,180,180,0.18) 0%,
    rgba(150,150,150,0.06) 40%,
    transparent 70%);
}
/* دائرة ذهبية خفيفة — يسار */
.hero-glow::after {
  content:'';
  position:absolute;
  top: 60px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(212,168,48,0.07) 0%,
    rgba(212,168,48,0.02) 45%,
    transparent 70%);
}
/* دائرة ذهبية ثانية — يمين أسفل */
.hero-glow-extra {
  position:absolute;
  bottom: -80px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(200,160,40,0.06) 0%,
    transparent 65%);
  pointer-events:none; z-index:0;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--g900); border-radius:100px;
  padding:7px 18px; font-size:12px; font-weight:600;
  color:var(--white); margin-bottom:2rem; letter-spacing:.3px;
}
.pulse-dot {
  width:6px; height:6px; border-radius:50%; background:#fff;
  animation: pdot 2s infinite;
}
@keyframes pdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.65)} }

.hero h1 {
  font-size: clamp(2rem,5.5vw,3.5rem);
  font-weight:900; line-height:1.17; letter-spacing:-.5px;
  color:var(--g900); margin: 0 auto 1.25rem;
  max-width:680px;
}
.hero h1 .ul-anim {
  position:relative; display:inline-block;
}
.hero h1 .ul-anim::after {
  content:''; position:absolute; bottom:-5px; right:0;
  width:0; height:2px; background:var(--g900);
  transition:width 1.3s var(--ease); border-radius:2px;
}
.hero h1 .ul-anim.go::after { width:100%; }

.hero-sub {
  font-size:1.05rem; color:var(--muted);
  max-width:490px; margin:0 auto 2.5rem; line-height:1.9;
}

.hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:3rem; }

.btn-dark {
  background:var(--g900); color:var(--white);
  border:none; border-radius:100px;
  padding:15px 32px; font-size:1rem; font-weight:700;
  font-family:var(--font); cursor:pointer; text-decoration:none;
  display:inline-block;
  box-shadow:0 2px 14px rgba(0,0,0,.15);
  transition:background .2s,transform .15s,box-shadow .2s;
}
.btn-dark:hover { background:var(--g700); transform:translateY(-2px); box-shadow:0 6px 22px rgba(0,0,0,.2); }

.btn-outline {
  background:var(--white); color:var(--g700);
  border:1.5px solid var(--border); border-radius:100px;
  padding:14px 28px; font-size:.95rem; font-weight:600;
  font-family:var(--font); cursor:pointer; text-decoration:none;
  display:inline-block;
  transition:border-color .2s,transform .15s;
}
.btn-outline:hover { border-color:var(--g400); transform:translateY(-1px); }

.trust-row {
  display:flex; align-items:center; justify-content:center;
  gap:1.75rem; flex-wrap:wrap;
  padding-top:2rem; border-top:1px solid var(--border);
}
.trust-item { display:flex; align-items:center; gap:7px; font-size:13px; font-weight:500; color:var(--muted); }
.trust-item strong { color:var(--g900); font-weight:700; }
.t-sep { width:1px; height:18px; background:var(--border); }

/* ══════════════ PROOF BAR ══════════════ */
.proof-bar {
  background:var(--g900); padding:1.5rem 2rem;
  display:flex; align-items:center; justify-content:center;
  gap:0; flex-wrap:wrap;
}
.proof-item { text-align:center; padding:0 2.5rem; border-left:1px solid rgba(255,255,255,.08); }
.proof-item:last-child { border-left:none; }
.p-num { display:block; font-size:1.6rem; font-weight:900; color:var(--white); margin-bottom:2px; }
.p-lbl { font-size:11px; color:rgba(255,255,255,.4); letter-spacing:.3px; }

/* ══════════════ SECTION ══════════════ */
.sec { padding:5rem 2rem; }
.sec-gray { background:var(--g50); }
.sec-white { background:var(--white); }
.wrap { max-width:960px; margin:0 auto; }
.eyebrow { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--g400); text-align:center; margin-bottom:.75rem; }
.sec-h { font-size:clamp(1.6rem,3.5vw,2.3rem); font-weight:900; text-align:center; color:var(--g900); line-height:1.2; letter-spacing:-.3px; margin-bottom:.75rem; }
.sec-p { text-align:center; font-size:1rem; color:var(--muted); line-height:1.85; max-width:500px; margin:0 auto 3rem; }

/* ══════════════ PAIN ══════════════ */
.pain-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1rem; }
.pain-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:16px; padding:1.5rem; text-align:center;
  transition:box-shadow .25s,transform .25s;
}
.pain-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.07); transform:translateY(-2px); }
.p-icon { width:48px; height:48px; background:var(--g100); border-radius:14px; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
.p-text { font-size:.9rem; color:var(--muted); line-height:1.7; }

/* ══════════════ SERVICES ══════════════ */
.srv-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:1.25rem; }
.srv {
  background:var(--white); border:1px solid var(--border);
  border-radius:24px; padding:2rem 1.75rem;
  position:relative; transition:box-shadow .3s,transform .25s,border-color .2s;
  text-decoration:none; color:inherit; display:block;
}
.srv:hover { box-shadow:0 10px 40px rgba(0,0,0,.09); transform:translateY(-4px); border-color:var(--g300); }
.srv.featured { border-color:var(--g900); background:var(--g900); }
.srv.featured:hover { box-shadow:0 10px 40px rgba(0,0,0,.25); }

.srv-badge { position:absolute; top:-13px; right:24px; background:var(--g900); color:var(--white); font-size:11px; font-weight:700; padding:5px 14px; border-radius:100px; }
.srv.featured .srv-badge { background:var(--white); color:var(--g900); }

.s-icon { width:48px; height:48px; background:var(--g100); border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.srv.featured .s-icon { background:rgba(255,255,255,.12); }
.srv-name { font-size:1.05rem; font-weight:700; color:var(--g900); margin-bottom:.5rem; }
.srv.featured .srv-name { color:var(--white); }
.srv-desc { font-size:.875rem; color:var(--muted); line-height:1.75; margin-bottom:1.5rem; }
.srv.featured .srv-desc { color:rgba(255,255,255,.5); }

.price-plans { display:flex; gap:1.5rem; margin-bottom:1rem; flex-wrap:wrap; align-items:flex-end; }
.pp label { font-size:11px; color:var(--faint); display:block; margin-bottom:4px; }
.srv.featured .pp label { color:rgba(255,255,255,.4); }
.pp .badge-fast { display:inline-block; background:var(--white); color:var(--g900); font-size:10px; font-weight:700; padding:2px 8px; border-radius:6px; margin-bottom:4px; }
.p-amt { font-size:1.7rem; font-weight:900; color:var(--g900); }
.srv.featured .p-amt { color:var(--white); }
.p-cur { font-size:.85rem; color:var(--faint); }
.srv.featured .p-cur { color:rgba(255,255,255,.4); }
.p-row { display:flex; align-items:baseline; gap:6px; }

.note-chip {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
  border-radius:8px; padding:7px 12px;
  font-size:12px; font-weight:600; color:rgba(255,255,255,.8);
  margin-bottom:1.25rem;
}

.btn-w { display:block; width:100%; background:var(--white); color:var(--g900); border:none; border-radius:100px; padding:13px; font-size:.95rem; font-weight:700; font-family:var(--font); cursor:pointer; text-align:center; transition:background .2s; text-decoration:none; }
.btn-w:hover { background:var(--g100); }
.btn-b { display:block; width:100%; background:transparent; color:var(--g700); border:1.5px solid var(--border); border-radius:100px; padding:12px; font-size:.9rem; font-weight:600; font-family:var(--font); cursor:pointer; text-align:center; transition:border-color .2s,background .2s; text-decoration:none; }
.btn-b:hover { border-color:var(--g700); background:var(--g50); }

/* ══════════════ OFFERS ══════════════ */
.off-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:1.25rem; max-width:700px; margin:0 auto; }
.off { border-radius:24px; padding:2.25rem 2rem; text-align:center; transition:transform .25s,box-shadow .25s; }
.off:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(0,0,0,.08); }
.off-dark { background:var(--g900); }
.off-light { background:var(--g100); border:1px solid var(--border); }
.off-icon { width:56px; height:56px; border-radius:16px; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; margin:0 auto 1.25rem; }
.off-light .off-icon { background:var(--white); }
.off-title { font-size:1.2rem; font-weight:800; margin-bottom:.5rem; }
.off-dark .off-title { color:var(--white); }
.off-light .off-title { color:var(--g900); }
.off-desc { font-size:.9rem; line-height:1.75; }
.off-dark .off-desc { color:rgba(255,255,255,.5); }
.off-light .off-desc { color:var(--muted); }
.off-tag { display:inline-block; margin-top:1.25rem; border-radius:8px; padding:8px 18px; font-size:.95rem; font-weight:700; }
.off-dark .off-tag { background:rgba(255,255,255,.1); color:var(--white); }
.off-light .off-tag { background:var(--white); color:var(--g900); border:1px solid var(--border); }

/* ══════════════ STEPS ══════════════ */
.steps-wrap { max-width:600px; margin:0 auto; }
.step-item { display:flex; gap:1.25rem; align-items:flex-start; padding:1.5rem 1.75rem; background:var(--white); border:1px solid var(--border); border-radius:16px; margin-bottom:.875rem; transition:box-shadow .25s,transform .25s; }
.step-item:hover { box-shadow:0 6px 20px rgba(0,0,0,.06); transform:translateX(3px); }
.s-num { width:38px; height:38px; border-radius:50%; background:var(--g900); color:var(--white); font-size:.9rem; font-weight:900; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.s-title { font-size:1rem; font-weight:700; color:var(--g900); margin-bottom:4px; }
.s-desc { font-size:.875rem; color:var(--muted); line-height:1.7; }

/* ══════════════ TESTIMONIALS ══════════════ */
.testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.25rem; }
.testi { background:var(--white); border:1px solid var(--border); border-radius:16px; padding:1.75rem; transition:box-shadow .25s,transform .25s; }
.testi:hover { box-shadow:0 6px 24px rgba(0,0,0,.07); transform:translateY(-2px); }
.t-stars { color:var(--g900); font-size:.9rem; letter-spacing:3px; margin-bottom:.875rem; }
.t-text { font-size:.9rem; color:var(--muted); line-height:1.8; margin-bottom:1.25rem; font-style:italic; }
.t-name { font-size:.88rem; font-weight:700; color:var(--g900); }
.t-role { font-size:.78rem; color:var(--faint); margin-top:2px; }

/* ══════════════ CLIENT LOGOS ══════════════ */

/* Marquee */
.marquee-section { padding:3rem 0; overflow:hidden; background:var(--white); }
.marquee-mask {
  overflow:hidden;
  -webkit-mask:linear-gradient(90deg,transparent 0%,black 12%,black 88%,transparent 100%);
  mask:linear-gradient(90deg,transparent 0%,black 12%,black 88%,transparent 100%);
}
.marquee-track {
  display:flex; width:max-content;
  animation:mscroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state:paused; }
@keyframes mscroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.m-img {
  height:90px; width:auto;
  object-fit:contain;
  border-radius:10px;
  margin-left:12px;
  flex-shrink:0;
}

/* Grid */
.logos-grid-section { padding:4rem 2rem; background:var(--g50); border-top:1px solid var(--border); }
.logos-grid-img {
  display:block;
  width:100%; max-width:960px;
  margin:2rem auto 0;
  border-radius:20px;
  border:1px solid var(--border);
  background:var(--white);
  box-shadow:0 4px 24px rgba(0,0,0,.06);
  overflow:hidden;
}
.logos-grid-img img { width:100%; display:block; }

/* ══════════════ INSTALLMENT ══════════════ */
.install-box { max-width:580px; margin:0 auto; background:var(--g900); border-radius:32px; padding:3rem 2.5rem; text-align:center; }
.i-title { font-size:1.5rem; font-weight:900; color:var(--white); margin-bottom:.75rem; }
.i-sub { font-size:.95rem; color:rgba(255,255,255,.5); line-height:1.8; margin-bottom:2rem; }
.i-pills { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:1.5rem; }
.i-pill { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:100px; padding:8px 18px; font-size:.875rem; font-weight:600; color:var(--white); }
.i-note { font-size:.82rem; color:rgba(255,255,255,.3); }
.i-note strong { color:rgba(255,255,255,.7); }

/* ══════════════ FINAL CTA ══════════════ */
.final { background:var(--g900); padding:6rem 2rem; text-align:center; position:relative; overflow:hidden; }
.final::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background:radial-gradient(ellipse 70% 60% at 50% 0%,rgba(255,255,255,.04) 0%,transparent 70%); pointer-events:none; }
.urg-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:100px; padding:8px 20px; font-size:13px; font-weight:600; color:rgba(255,255,255,.6); margin-bottom:2rem; }
.final-h { font-size:clamp(1.9rem,4.5vw,2.9rem); font-weight:900; color:var(--white); line-height:1.18; letter-spacing:-.3px; margin-bottom:1.25rem; position:relative; }
.final-p { font-size:1rem; color:rgba(255,255,255,.5); line-height:1.85; margin-bottom:2.5rem; position:relative; }
.final-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:2rem; position:relative; }
.btn-ws { background:var(--white); color:var(--g900); border:none; border-radius:100px; padding:15px 32px; font-size:1rem; font-weight:700; font-family:var(--font); cursor:pointer; text-decoration:none; display:inline-block; transition:background .2s,transform .15s; }
.btn-ws:hover { background:var(--g100); transform:translateY(-2px); }
.btn-gw { background:transparent; color:rgba(255,255,255,.7); border:1.5px solid rgba(255,255,255,.2); border-radius:100px; padding:14px 28px; font-size:.95rem; font-weight:600; font-family:var(--font); cursor:pointer; transition:border-color .2s,color .2s; }
.btn-gw:hover { border-color:rgba(255,255,255,.5); color:var(--white); }
.final-trust { display:flex; justify-content:center; gap:2rem; flex-wrap:wrap; position:relative; }
.ft-item { font-size:13px; color:rgba(255,255,255,.35); display:flex; align-items:center; gap:6px; }
.ft-item::before { content:'✓'; color:rgba(255,255,255,.6); font-weight:700; }

@media(max-width:640px){
  .hero{padding:3.5rem 1.25rem 3rem}
  .sec{padding:3.5rem 1.25rem}
  .proof-bar{flex-direction:column}
  .proof-item{border-left:none;border-top:1px solid rgba(255,255,255,.08);padding:.75rem}
  .t-sep{display:none}
}