/* ── 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;
}

/* ── 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; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.c-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  margin: 0 8px;
  background: var(--card);
  border: 1px solid var(--border);
  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: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(.55);
  transition: filter .25s;
}
.c-logo:hover img { filter: brightness(0) invert(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: auto; left: 28px; }
.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); }

/* ── 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; }
}
