/* ── Variables ───────────────────────────────────────── */
:root {
  --pink:        #E91E8C;
  --pink-dim:    rgba(233,30,140,.15);
  --pink-glow:   rgba(233,30,140,.35);
  --bg:          #080808;
  --bg2:         #0e0e0e;
  --card:        rgba(255,255,255,.04);
  --border:      rgba(233,30,140,.18);
  --border-h:    rgba(233,30,140,.5);
  --white:       #ffffff;
  --muted:       rgba(255,255,255,.55);
  --nav-h:       76px;
  --r:           12px;
  --fn-en:       'Barlow', sans-serif;
  --fn-ar:       'Cairo', sans-serif;
}

/* ── Custom Cursor ───────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [onclick], .svc-card, .port-card, .testi-card, .why-card,
  .proc-card, .c-logo, .ai-option-btn, .nav-link, .ai-advisor-btn {
    cursor: none;
  }
}
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, background .15s;
  box-shadow: 0 0 8px var(--pink);
}
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(233,30,140,.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .35s ease, height .35s ease,
              border-color .35s ease, background .35s ease, transform .1s;
}
#cursor-ring.hovered {
  width: 56px; height: 56px;
  background: rgba(233,30,140,.08);
  border-color: rgba(233,30,140,.9);
}
#cursor-ring.clicking {
  width: 28px; height: 28px;
  background: rgba(233,30,140,.2);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fn-en);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
html[lang="ar"] body { font-family: var(--fn-ar); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; color: inherit; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--white);
  padding: 14px 18px;
  width: 100%;
  font-size: 15px;
  outline: none;
  transition: border-color .25s;
}
input:focus, textarea:focus, select:focus { border-color: var(--pink); }
select option { background: #1a1a1a; }
textarea { resize: vertical; }

/* ── Stars Canvas ────────────────────────────────────── */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Utils ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pink { color: var(--pink); }
section, .sec { position: relative; z-index: 1; }
.dark { background: var(--bg2); }

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--pink);
  transition: transform .25s, box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--pink-glow);
  background: #ff2da0;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.25);
  transition: border-color .25s, background .25s;
}
.btn-outline:hover { border-color: var(--pink); background: var(--pink-dim); }
.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* ── Navbar ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
#navbar.scrolled {
  background: rgba(8,8,8,.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.logo-wordmark {
  font-family: var(--fn-en);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -1px;
  color: var(--white);
}
.logo-wordmark em, .logo-wordmark span.pink { color: var(--pink); font-style: normal; }
.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: var(--card); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.lang-btn:hover { color: var(--pink); border-color: var(--pink); }

.btn-nav {
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--pink-glow); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Section Shared ──────────────────────────────────── */
.sec { padding: 100px 0; }
.sec-header { text-align: center; margin-bottom: 60px; }
.sec-header p { color: var(--muted); max-width: 500px; margin: 12px auto 0; }

.sec-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}
.sec-title em { font-style: normal; color: var(--pink); }

/* ── Reveal Animation ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Hero ────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 24px 80px;
  position: relative;
  z-index: 1;
}
.hero-inner { max-width: 800px; }
.hero-badge {
  display: inline-block;
  background: var(--pink-dim);
  border: 1px solid var(--border);
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeDown .8s .2s both;
}
.hero-h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeDown .8s .4s both;
}
.hero-line2 {
  background: linear-gradient(135deg, var(--pink), #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px var(--pink-glow));
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeDown .8s .6s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeDown .8s .8s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeDown .8s 1s both;
}
.h-stat { text-align: center; }
.h-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
.h-lbl { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; display: block; }
.h-sep { width: 1px; height: 50px; background: var(--border); }
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-down span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  margin: 0 auto;
}

/* ── About ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-left { padding-top: 8px; }
.about-left p { color: var(--muted); margin-bottom: 18px; }
.pink-quote {
  color: var(--pink) !important;
  font-size: 15px;
  line-height: 1.8;
  border-left: 3px solid var(--pink);
  padding-left: 16px;
}
html[dir="rtl"] .pink-quote { border-left: none; border-right: 3px solid var(--pink); padding-left: 0; padding-right: 16px; }

.vm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  margin-bottom: 20px;
  transition: border-color .3s, box-shadow .3s;
}
.vm-card:hover { border-color: var(--border-h); box-shadow: 0 0 30px var(--pink-dim); }
.vm-num { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.vm-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.vm-card p { color: var(--muted); font-size: 14px; line-height: 1.75; }

/* ── Services ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-h);
  box-shadow: 0 16px 50px var(--pink-dim);
}
.svc-icon {
  width: 52px; height: 52px;
  background: var(--pink-dim);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--pink);
  margin-bottom: 18px;
}
.svc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 8px;
}
.svc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 13.5px; line-height: 1.7; }

/* ── Process ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  transition: border-color .3s, box-shadow .3s;
}
.proc-card:hover { border-color: var(--border-h); box-shadow: 0 0 30px var(--pink-dim); }
.proc-step {
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink-dim);
  line-height: 1;
  margin-bottom: 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--pink);
}
.proc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.proc-card p { color: var(--muted); font-size: 13.5px; line-height: 1.7; }

/* ── Clients Marquee ─────────────────────────────────── */
.marquee-wrap { overflow: hidden; padding: 10px 0; }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.c-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  margin: 0 8px;
  background: var(--card);
  border: 1.5px solid rgba(233,30,140,0.35);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: color .25s, border-color .25s;
}
.c-logo:hover { color: var(--white); border-color: var(--pink); }
.c-logo img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: filter .25s, opacity .25s;
}
.c-logo:hover img { opacity: 1; }

/* ── Why Us ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.why-left p { color: var(--muted); margin-bottom: 18px; }
.why-left .btn-primary { margin-top: 8px; }
.why-right { display: flex; flex-direction: column; gap: 20px; }
.why-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color .3s;
}
.why-feat:hover { border-color: var(--border-h); }
.why-icon {
  width: 44px; height: 44px;
  background: var(--pink-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  font-size: 18px;
  flex-shrink: 0;
}
.why-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-feat p { color: var(--muted); font-size: 13.5px; }

/* ── Portfolio ───────────────────────────────────────── */
.port-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all .25s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.port-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.port-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--pink-dim);
  border-color: var(--border-h);
}
.port-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--border);
}
.port-body { padding: 22px; }
.port-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}
.port-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.port-card p { color: var(--muted); font-size: 13.5px; line-height: 1.65; }
.port-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  transition: gap .2s;
}
.port-link:hover { gap: 10px; }
.port-video {
  width: 100%;
  border: none;
  display: block;
  background: #000;
}
.port-video.landscape { aspect-ratio: 16/9; }
.port-video.portrait  {
  aspect-ratio: 9/16;
  max-height: 520px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.port-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  display: none;
}
.port-empty i { font-size: 3rem; color: var(--border-h); margin-bottom: 16px; display: block; }

/* ── Consultation Form ───────────────────────────────── */
.consult-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.consult-left p { color: var(--muted); margin-bottom: 24px; }
.consult-info { display: flex; flex-direction: column; gap: 12px; }
.ci { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.ci i { color: var(--pink); }
.consult-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label { font-size: 13px; font-weight: 600; color: var(--muted); }
.form-success {
  display: none;
  background: var(--pink-dim);
  border: 1px solid var(--pink);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
  color: var(--pink);
}
.form-success i { font-size: 2rem; margin-bottom: 10px; display: block; }

/* ── Contact Band ────────────────────────────────────── */
.sec-contact { background: var(--bg2); padding: 60px 0; position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: border-color .3s;
}
.contact-card:hover { border-color: var(--pink); }
.contact-card > i { font-size: 22px; color: var(--pink); flex-shrink: 0; }
.contact-card div { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact-card span { font-size: 12px; color: var(--muted); font-weight: 500; }
.contact-card strong { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Footer ──────────────────────────────────────────── */
footer { background: #040404; padding: 50px 0 24px; position: relative; z-index: 1; border-top: 1px solid var(--border); }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.footer-brand p { color: var(--muted); font-size: 13px; margin-top: 6px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-nav a:hover { color: var(--pink); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 16px;
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social a:hover { color: var(--pink); border-color: var(--pink); background: var(--pink-dim); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.admin-link { color: var(--muted); transition: color .2s; }
.admin-link:hover { color: var(--pink); }

/* ── WhatsApp Float ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: white;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
}
html[dir="rtl"] .wa-float { right: 28px; left: auto; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.5); }

/* ── Keyframes ───────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RTL Overrides ───────────────────────────────────── */
html[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .nav-actions { flex-direction: row-reverse; }
html[dir="rtl"] .hero-btns { flex-direction: row-reverse; }
html[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
html[dir="rtl"] .about-grid { direction: rtl; }
html[dir="rtl"] .why-grid { direction: rtl; }
html[dir="rtl"] .consult-wrap { direction: rtl; }
html[dir="rtl"] .footer-top { flex-direction: row-reverse; }
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .contact-card { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .why-feat { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .vm-card { text-align: right; }
html[dir="rtl"] .svc-card { text-align: right; }
html[dir="rtl"] .proc-card { text-align: right; }
html[dir="rtl"] .ci { flex-direction: row-reverse; }
html[dir="rtl"] .btn-primary i { transform: scaleX(-1); }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* ── Preloader ───────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.pl-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
#pl-logo { height: 70px; width: auto; animation: pl-pulse 1.2s ease-in-out infinite; }
.pl-inner .logo-wordmark { animation: pl-pulse 1.2s ease-in-out infinite; }
.pl-dots { display: flex; gap: 8px; }
.pl-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  animation: pl-bounce .9s ease-in-out infinite;
}
.pl-dots span:nth-child(2) { animation-delay: .15s; }
.pl-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes pl-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(.94); }
}
@keyframes pl-bounce {
  0%,100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(-10px); opacity: 1; }
}

/* ── Stats Band ──────────────────────────────────────── */
.stats-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative; z-index: 1;
}
.stats-grid {
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 160px;
  text-align: center; padding: 10px 20px;
}
.stat-top { display: flex; align-items: flex-start; justify-content: center; line-height: 1; }
.stat-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--pink);
  font-variant-numeric: tabular-nums;
}
.stat-suf {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--pink);
  margin-top: 4px;
}
.stat-lbl {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: .5px;
}
.stat-sep {
  width: 1px; height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Testimonials ────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .3s, box-shadow .3s;
}
.testi-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 16px 50px var(--pink-dim);
}
.testi-stars { color: var(--pink); font-size: 15px; letter-spacing: 2px; }
.testi-quote {
  color: rgba(255,255,255,.8);
  font-size: 14.5px;
  line-height: 1.8;
  flex: 1;
  position: relative;
}
.testi-quote::before {
  content: '"';
  font-size: 4rem; line-height: .6;
  color: var(--pink-dim);
  font-family: Georgia, serif;
  position: absolute;
  top: -8px; left: -4px;
}
html[dir="rtl"] .testi-quote::before { left: auto; right: -4px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--pink-dim);
  border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: var(--pink);
  flex-shrink: 0;
}
.testi-author-info strong { display: block; font-size: 14px; font-weight: 700; }
.testi-author-info span { font-size: 12px; color: var(--muted); }

/* ── Instagram ───────────────────────────────────────── */
.insta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.insta-left p { color: var(--muted); margin: 16px 0 28px; }
.insta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.insta-card:hover { border-color: var(--border-h); box-shadow: 0 20px 60px var(--pink-dim); }
.insta-card-top {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.insta-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white; flex-shrink: 0;
}
.insta-card-info { display: flex; flex-direction: column; }
.insta-card-info strong { font-size: 14px; font-weight: 700; }
.insta-card-info span { font-size: 12px; color: var(--muted); }
.insta-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.insta-cell {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a0a14, #0e0e0e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--border);
  border: 1px solid var(--border);
  transition: background .3s, color .3s;
}
.insta-cell:hover { background: var(--pink-dim); color: var(--pink); }
.insta-cta { cursor: pointer; }
.insta-cta a {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; width: 100%; height: 100%;
  color: var(--pink);
  font-size: 1.4rem;
}
.insta-cta a span { font-size: 12px; font-weight: 700; letter-spacing: 1px; }

/* ── Active Nav ──────────────────────────────────────── */
.nav-links a.active { color: var(--pink) !important; }

/* ── Back to Top ─────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 44px; height: 44px;
  background: var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white;
  z-index: 998;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 4px 20px var(--pink-glow);
}
html[dir="rtl"] #back-to-top { right: auto; left: 28px; }
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { box-shadow: 0 8px 30px var(--pink-glow); transform: translateY(-3px); }

/* ── Name Welcome Modal ──────────────────────────────── */
#name-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.75); z-index: 9000;
  backdrop-filter: blur(6px);
  animation: fadeIn .3s ease;
}
#name-overlay.show { display: block; }
#name-modal {
  position: fixed; z-index: 9001;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  background: #111;
  border: 1px solid rgba(233,30,140,.3);
  border-radius: 20px;
  padding: 36px 32px;
  width: min(420px, 92vw);
  text-align: center;
  display: none;
  flex-direction: column; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px rgba(233,30,140,.2);
  animation: modalPop .4s cubic-bezier(.22,1,.36,1);
}
#name-modal.show { display: flex; }
@keyframes modalPop {
  from { opacity:0; transform: translate(-50%, -44%) scale(.94); }
  to   { opacity:1; transform: translate(-50%, -48%) scale(1); }
}
.nm-logo { margin-bottom: 4px; }
.nm-title { font-size: 22px; font-weight: 800; color: #fff; }
.nm-sub { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; max-width: 280px; }
#name-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(233,30,140,.3);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--fn-ar);
  font-size: 15px;
  text-align: right;
  outline: none;
  transition: border-color .2s;
}
#name-input:focus { border-color: var(--pink); }
#name-input::placeholder { color: rgba(255,255,255,.3); }
#name-submit {
  width: 100%;
  background: linear-gradient(135deg,#E91E8C,#b5006d);
  color: #fff; border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--fn-ar);
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: opacity .2s, transform .2s;
}
#name-submit:hover { opacity: .9; transform: translateY(-2px); }
.nm-skip {
  background: none; border: none;
  color: rgba(255,255,255,.3);
  font-family: var(--fn-ar);
  font-size: 13px; cursor: pointer;
  transition: color .2s;
}
.nm-skip:hover { color: rgba(255,255,255,.6); }

/* ── Exit Intent Popup ───────────────────────────────── */
#exit-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: 9000;
  backdrop-filter: blur(5px);
}
#exit-overlay.show { display: block; }
#exit-popup {
  position: fixed; z-index: 9001;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.92);
  background: #111;
  border: 1px solid rgba(233,30,140,.35);
  border-radius: 20px;
  padding: 40px 32px 32px;
  width: min(400px, 92vw);
  text-align: center;
  display: none;
  flex-direction: column; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px rgba(233,30,140,.25);
  opacity: 0;
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
#exit-popup.show {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.exit-close {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.08); border: none;
  color: rgba(255,255,255,.5); width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 13px;
  transition: background .2s, color .2s;
}
.exit-close:hover { background: rgba(233,30,140,.2); color: #fff; }
.exit-emoji { font-size: 52px; line-height: 1; }
#exit-title { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.4; }
#exit-sub { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 290px; }
.exit-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff; border-radius: 12px;
  padding: 15px 28px; width: 100%;
  font-family: var(--fn-ar); font-size: 16px; font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.exit-wa-btn:hover { opacity: .9; transform: translateY(-2px); }
.exit-note { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── AI Marketing Advisor ────────────────────────────── */
#ai-advisor-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #E91E8C, #b5006d);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: var(--fn-ar);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(233,30,140,.5);
  transition: transform .3s, box-shadow .3s;
}
#ai-advisor-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(233,30,140,.7); }
#ai-advisor-btn i { font-size: 18px; }
.ai-btn-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #00e676;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: ai-pulse 2s infinite;
}
@keyframes ai-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

#ai-advisor-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1000;
  backdrop-filter: blur(4px);
}
#ai-advisor-overlay.open { display: block; }

#ai-advisor-panel {
  position: fixed;
  bottom: 0; left: 0;
  width: 420px;
  max-height: 88vh;
  background: #0e0e0e;
  border: 1px solid rgba(233,30,140,.25);
  border-radius: 20px 20px 0 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 -8px 40px rgba(233,30,140,.2);
}
#ai-advisor-panel.open { transform: translateY(0); }

.ai-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.ai-header-info { display: flex; align-items: center; gap: 12px; }
.ai-avatar-wrap {
  position: relative;
  width: 44px; height: 44px;
  background: linear-gradient(135deg,#E91E8C,#7c0044);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}
.ai-online-dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 10px; height: 10px;
  background: #00e676;
  border-radius: 50%;
  border: 2px solid #0e0e0e;
}
.ai-panel-header h4 { margin: 0; font-size: 15px; color: #fff; font-weight: 700; }
.ai-panel-header span { font-size: 12px; color: rgba(255,255,255,.5); }
.ai-close-btn {
  background: rgba(255,255,255,.07);
  border: none; color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.ai-close-btn:hover { background: rgba(233,30,140,.3); }

.ai-progress-wrap {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.ai-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}
.ai-progress-fill {
  height: 100%;
  background: linear-gradient(90deg,#E91E8C,#ff6fc8);
  border-radius: 4px;
  width: 0%;
  transition: width .5s ease;
}
.ai-progress-label { font-size: 11px; color: rgba(255,255,255,.4); white-space: nowrap; }

.ai-messages-area {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.ai-messages-area::-webkit-scrollbar { width: 4px; }
.ai-messages-area::-webkit-scrollbar-track { background: transparent; }
.ai-messages-area::-webkit-scrollbar-thumb { background: rgba(233,30,140,.3); border-radius: 4px; }

.ai-msg { display: flex; max-width: 85%; animation: ai-msg-in .3s ease; }
@keyframes ai-msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ai-msg-bot { align-self: flex-start; }
.ai-msg-user { align-self: flex-end; flex-direction: row-reverse; }
.ai-msg-bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.ai-msg-bot .ai-msg-bubble {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.9);
  border-bottom-right-radius: 4px;
}
.ai-msg-user .ai-msg-bubble {
  background: linear-gradient(135deg,#E91E8C,#b5006d);
  color: #fff;
  border-bottom-left-radius: 4px;
}
.ai-msg-results { max-width: 100%; width: 100%; }
.ai-results-bubble { background: transparent !important; padding: 0 !important; width: 100%; }

/* Typing dots */
.ai-typing-indicator .ai-msg-bubble {
  display: flex; gap: 5px; align-items: center;
  padding: 14px 18px;
}
.ai-typing-indicator span {
  width: 7px; height: 7px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  animation: ai-dot 1.2s infinite;
}
.ai-typing-indicator span:nth-child(2) { animation-delay: .2s; }
.ai-typing-indicator span:nth-child(3) { animation-delay: .4s; }
@keyframes ai-dot {
  0%,80%,100% { transform: scale(1); opacity: .5; }
  40% { transform: scale(1.3); opacity: 1; }
}

.ai-options-area {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.05);
  max-height: 280px;
  overflow-y: auto;
}
.ai-option-btn {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  padding: 11px 16px;
  border-radius: 10px;
  text-align: right;
  font-family: var(--fn-ar);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
}
.ai-option-btn:hover {
  background: rgba(233,30,140,.15);
  border-color: rgba(233,30,140,.5);
  color: #fff;
  transform: translateX(-3px);
}

/* Results */
.ai-results { display: flex; flex-direction: column; gap: 12px; padding: 4px 0; }
.ai-score-ring {
  position: relative;
  width: 110px; height: 110px;
  margin: 0 auto;
}
.ai-score-ring svg { width: 100%; height: 100%; }
.ai-score-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
  color: #E91E8C;
}
.ai-score-label {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin: 0;
  line-height: 1.5;
}
.ai-section-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  padding: 6px 0 2px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ai-service-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(233,30,140,.08);
  border: 1px solid rgba(233,30,140,.2);
  border-radius: 10px;
  padding: 12px;
}
.ai-service-card--yellow {
  background: rgba(255,193,7,.06);
  border-color: rgba(255,193,7,.2);
}
.ai-service-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg,#E91E8C,#7c0044);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff;
  flex-shrink: 0;
}
.ai-service-card--yellow .ai-service-icon { background: linear-gradient(135deg,#ffc107,#e65100); }
.ai-service-info strong { display: block; font-size: 13px; color: #fff; margin-bottom: 3px; }
.ai-service-info p { font-size: 12px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.5; }
.ai-strength-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,230,118,.08);
  border: 1px solid rgba(0,230,118,.2);
  color: #00e676;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  margin: 0 4px 4px 0;
}
.ai-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--fn-ar);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 4px;
  transition: opacity .2s, transform .2s;
}
.ai-wa-btn:hover { opacity: .9; transform: translateY(-2px); }
.ai-restart-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  font-family: var(--fn-ar);
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}
.ai-restart-btn:hover { border-color: rgba(233,30,140,.4); color: rgba(255,255,255,.8); }

@media (max-width: 480px) {
  #ai-advisor-panel { width: 100%; border-radius: 20px 20px 0 0; }
  #ai-advisor-btn {
    padding: 15px;
    border-radius: 50%;
    width: 56px; height: 56px;
    justify-content: center;
    bottom: 100px;
    left: 20px;
    z-index: 9999;
  }
  #ai-advisor-btn span { display: none; }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .insta-wrap { grid-template-columns: 1fr; }
  .about-grid, .why-grid, .consult-wrap { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(8,8,8,.97); flex-direction: column; padding: 24px; gap: 8px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  html[dir="rtl"] .nav-links { left: auto; }
  .btn-nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .stats-grid { gap: 8px; }
  .stat-sep { width: 100%; height: 1px; }
  .testi-grid { grid-template-columns: 1fr; }
  .sec { padding: 70px 0; }
  .hero-h1 { letter-spacing: -1px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .h-sep { height: 30px; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .port-grid { grid-template-columns: 1fr; }
}
