/* ============================================================
   امیرحسین قادری — طراحی نسخه ۴ (حرفه‌ای / دو زبانه)
   ============================================================ */

/* ---------- فونت وزیرمتن RD (متغیر) ---------- */
@font-face {
  font-family: 'Vazirmatn RD';
  src: url('../../fonts/Vazirmatn-RD%5Bwght%5D.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn RD Static';
  src: url('../../fonts/Vazirmatn-RD-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn RD Static';
  src: url('../../fonts/Vazirmatn-RD-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ---------- توکن‌های طراحی ---------- */
:root {
  --bg:          #07090f;
  --bg-alt:      #0b0f18;
  --surface:     rgba(255, 255, 255, 0.035);
  --surface-2:   rgba(255, 255, 255, 0.06);
  --card:        #0e1422;
  --border:      rgba(255, 255, 255, 0.08);
  --border-glow: rgba(120, 140, 255, 0.28);
  --text:        #eef1f8;
  --text-muted:  #9aa3b8;
  --primary:     #7c8cff;
  --primary-2:   #a4b0ff;
  --accent:      #5eead4;
  --pink:        #c084fc;
  --success:     #34d399;
  --danger:      #f87171;
  --gold:        #fbbf24;
  --verified:    #1d9bf0;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 16px 40px rgba(0, 0, 0, 0.35);
  --grad:        linear-gradient(135deg, #7c8cff, #5eead4);
  --grad-tri:    linear-gradient(120deg, #7c8cff, #8b5cf6 55%, #5eead4);
  --font:        'Vazirmatn RD', 'Vazirmatn RD Static', Tahoma, sans-serif;
  --font-en:     'Outfit', 'Vazirmatn RD', sans-serif;
}

/* ---------- ریست ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  overflow-x: hidden;
  min-height: 100vh;
}
html[dir="ltr"] body,
body.lang-en {
  font-family: var(--font-en);
  letter-spacing: 0.01em;
}
html[dir="ltr"] .hero-title,
html[dir="ltr"] .section-title,
html[dir="ltr"] .page-hero h1 {
  letter-spacing: -0.03em;
  font-weight: 700;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--accent));
  border-radius: 5px; border: 2px solid var(--bg);
}

/* ---------- کمکی ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }
.container-narrow { width: min(860px, 92%); }

/* هاله‌ها و بافت پس‌زمینه */
.bg-glow {
  position: fixed; border-radius: 50%; filter: blur(150px);
  opacity: 0.14; pointer-events: none; z-index: 0;
}
.bg-glow { opacity: 0.08; filter: blur(160px); }
.bg-glow-1 { width: 480px; height: 480px; background: var(--primary); top: -180px; inset-inline-start: -120px; }
.bg-glow-2 { width: 420px; height: 420px; background: var(--accent); bottom: -150px; inset-inline-end: -120px; }

.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.55;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 55%, transparent 100%);
}

/* نوار پیشرفت اسکرول */
.scroll-progress {
  position: fixed; top: 0; inset-inline-start: 0; height: 3px; width: 0;
  background: var(--grad-tri); z-index: 200;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.8);
}

/* ---------- دکمه‌ها ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; height: 100%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  inset-inline-start: -60%; transform: skewX(-20deg);
  transition: inset-inline-start 0.6s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(139, 92, 246, 0.55); }
.btn-primary:hover::after { inset-inline-start: 120%; }
.btn-glow {
  animation: btnPulse 2.6s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4); }
  50% { box-shadow: 0 14px 48px rgba(139, 92, 246, 0.7), 0 0 30px rgba(34, 211, 238, 0.25); }
}

.btn-ghost {
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--border); backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-2); transform: translateY(-3px); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- هدر ---------- */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 300;
  padding: 18px 0; transition: 0.35s;
}
.site-header.scrolled {
  background: rgba(5, 7, 15, 0.82); backdrop-filter: blur(18px) saturate(1.4);
  padding: 11px 0; box-shadow: 0 6px 34px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  position: relative;
}

.logo {
  display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem;
  min-width: 0; flex-shrink: 1; z-index: 320;
}
.logo-mark {
  position: relative; display: grid; place-items: center; width: 40px; height: 40px; flex-shrink: 0;
  background: var(--grad); border-radius: 12px; color: #fff;
  font-family: var(--font-en); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
  box-shadow: 0 6px 18px rgba(124, 140, 255, 0.28);
}
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 40px; padding: 0 12px; border-radius: 11px;
  font-family: var(--font-en); font-size: 0.82rem; font-weight: 700;
  color: var(--text); background: var(--surface); border: 1px solid var(--border);
  transition: 0.25s;
}
.lang-switch:hover { border-color: var(--primary); color: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo-text strong {
  font-size: 1.02rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 46vw;
}
.logo-text small {
  font-size: 0.72rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.04em; margin-top: 2px;
}

.main-nav {
  display: flex; gap: 2px; padding: 5px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; backdrop-filter: blur(12px);
}
.nav-link {
  padding: 8px 16px; border-radius: 999px; font-size: 0.9rem;
  color: var(--text-muted); font-weight: 600; transition: 0.25s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: #fff; background: var(--grad); box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; z-index: 320; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 12px; cursor: pointer; padding: 10px;
  width: 44px; height: 44px; z-index: 320;
}
.nav-toggle span {
  display: block; width: 20px; height: 2.5px; margin-inline: auto;
  background: var(--text); border-radius: 2px; transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* لایه تیره پشت منوی موبایل */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 290;
  background: rgba(5, 7, 15, 0.72); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-backdrop.show { opacity: 1; visibility: visible; pointer-events: auto; }
body.nav-open { overflow: hidden; touch-action: none; }
.nav-mobile-cta { display: none; }

/* ---------- هیرو ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 140px 0 90px; z-index: 1;
}
.hero-inner {
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: rgba(52, 211, 153, 0.08); color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.25); margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-top-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.elite-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
  color: var(--gold); background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.12);
}
.elite-pill svg { color: var(--gold); }
.hero-handle {
  font-size: 0.95rem; font-weight: 800; color: var(--accent);
  letter-spacing: 0.08em; margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.45);
}
.hero-title {
  font-size: clamp(2.8rem, 6.8vw, 5rem); font-weight: 900; line-height: 1.2;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.35));
}
.hero-title .grad-text {
  background: var(--grad-tri); background-size: 220% 220%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
.hero-kicker {
  margin-top: 14px; font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800; color: #fff;
  padding-inline-start: 14px; border-inline-start: 3px solid var(--pink);
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.verified-badge {
  color: var(--verified); display: inline-flex; flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(29, 155, 240, 0.6));
  animation: floaty 4s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); font-weight: 700;
  color: var(--accent); min-height: 2.3em; margin-top: 12px;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}
.hero-subtitle::after {
  content: '|'; margin-inline-start: 3px; animation: blink 1s infinite;
  color: var(--pink);
}
@keyframes blink { 50% { opacity: 0; } }

.hero-desc { color: var(--text-muted); max-width: 540px; margin-top: 18px; font-size: 1.03rem; }

.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-socials { display: flex; gap: 11px; margin-top: 38px; flex-wrap: wrap; }
.hero-social {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 15px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); transition: 0.3s; backdrop-filter: blur(8px);
}
.hero-social:hover {
  color: #fff; background: var(--brand, var(--primary));
  border-color: transparent; transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

/* آواتار هیرو — قاب گرادیان چرخان + اوربیت */
.hero-visual { display: flex; justify-content: center; }
.hero-avatar-wrap {
  position: relative; width: min(380px, 80vw); aspect-ratio: 1;
}
.avatar-orbit {
  position: absolute; inset: -18px; border-radius: 42px;
  border: 1px dashed rgba(139, 92, 246, 0.35);
  animation: orbitSpin 18s linear infinite;
  pointer-events: none;
}
.avatar-orbit::before, .avatar-orbit::after {
  content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 16px var(--accent);
}
.avatar-orbit::before { top: 12%; inset-inline-start: 8%; }
.avatar-orbit::after { bottom: 18%; inset-inline-end: 6%; background: var(--pink); box-shadow: 0 0 16px var(--pink); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.avatar-frame {
  position: relative; width: 100%; height: 100%;
  border-radius: 34px; padding: 5px;
  background: conic-gradient(from var(--spin, 0deg), #8b5cf6, #ec4899, #22d3ee, #8b5cf6);
  animation: spinFrame 7s linear infinite;
  box-shadow: 0 0 70px rgba(139, 92, 246, 0.45), 0 0 140px rgba(34, 211, 238, 0.2);
}
.avatar-nameplate {
  position: absolute; bottom: 18px; inset-inline: 22px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 14px; border-radius: 16px; text-align: center;
  background: rgba(5, 7, 15, 0.82); border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.avatar-nameplate strong { font-size: 0.95rem; font-weight: 900; }
.avatar-nameplate span { font-size: 0.78rem; font-weight: 700; color: var(--accent); }
@property --spin {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes spinFrame { to { --spin: 360deg; } }
.hero-avatar {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 30px; background: var(--card);
}
.hero-avatar-placeholder {
  display: grid; place-items: center; font-size: 6.5rem; font-weight: 900;
  color: var(--primary-2);
}

.floating-card {
  position: absolute; display: flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 15px; font-size: 0.84rem; font-weight: 700;
  background: rgba(12, 17, 32, 0.88); border: 1px solid var(--border);
  backdrop-filter: blur(12px); box-shadow: var(--shadow); white-space: nowrap;
  animation: floaty 5s ease-in-out infinite; z-index: 2;
}
.floating-card svg { color: var(--accent); }
.fc-1 { top: 6%; inset-inline-start: -13%; color: var(--verified); animation-delay: 0s; }
.fc-1 svg { color: var(--verified); }
.fc-2 { bottom: 24%; inset-inline-end: -15%; animation-delay: 1.6s; }
.fc-2 svg { color: var(--pink); }
.fc-3 { bottom: -5%; inset-inline-start: 2%; animation-delay: 3.2s; }
.fc-3 svg { color: var(--success); }
@keyframes floaty { 50% { transform: translateY(-13px); } }

/* واترمارک بزرگ اسم پشت هیرو */
.hero-watermark {
  position: absolute; inset-inline-start: 50%; top: 46%;
  transform: translate(50%, -50%);
  font-size: clamp(7rem, 22vw, 19rem); font-weight: 900; letter-spacing: 0.06em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(139, 92, 246, 0.14);
  pointer-events: none; user-select: none; white-space: nowrap; z-index: 0;
  font-family: Arial, sans-serif;
  animation: watermarkPulse 6s ease-in-out infinite;
}
@keyframes watermarkPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.hero-aura {
  position: absolute; width: min(700px, 90vw); height: min(700px, 90vw);
  top: 50%; inset-inline-start: 50%; transform: translate(40%, -50%);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), rgba(236, 72, 153, 0.08) 40%, transparent 70%);
  pointer-events: none; z-index: 0; filter: blur(10px);
  animation: auraBreath 8s ease-in-out infinite;
}
@keyframes auraBreath {
  0%, 100% { opacity: 0.65; transform: translate(40%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(40%, -50%) scale(1.08); }
}

/* چیپ‌های اعتماد زیر توضیح هیرو */
.hero-trust { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.hero-trust span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-muted);
  backdrop-filter: blur(6px); transition: 0.25s;
}
.hero-trust span:hover {
  color: var(--text); border-color: rgba(251, 191, 36, 0.4);
  transform: translateY(-2px);
}
.hero-trust svg { color: var(--gold); }

.hero-scroll { position: absolute; bottom: 26px; inset-inline: 0; display: flex; justify-content: center; }
.hero-scroll a {
  width: 26px; height: 44px; border: 2px solid var(--text-muted);
  border-radius: 999px; display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span {
  width: 4px; height: 9px; background: var(--accent); border-radius: 2px;
  animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown { 60% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

/* ---------- نوار متحرک خدمات ---------- */
.marquee {
  position: relative; z-index: 1; overflow: hidden; padding: 20px 0;
  border-block: 1px solid var(--border);
  background: rgba(9, 13, 26, 0.65); backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 9px 22px; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-muted);
  transition: 0.3s;
}
.marquee-item:hover { color: var(--text); border-color: var(--border-glow); }
.marquee-item svg { color: var(--accent); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ---------- آمار ---------- */
.stats { position: relative; z-index: 2; padding: 30px 0 10px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.08), rgba(34, 211, 238, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 38px 26px;
  box-shadow: var(--shadow); backdrop-filter: blur(14px);
}
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; inset-inline-end: -10px; top: 15%; height: 70%;
  width: 1px; background: var(--border);
}
.stat-num {
  font-size: 2.5rem; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-plus { font-size: 1.7rem; font-weight: 800; color: var(--pink); }
.stat-label { display: block; color: var(--text-muted); font-size: 0.88rem; margin-top: 6px; font-weight: 600; }

/* ---------- بخش‌ها ---------- */
.section { position: relative; padding: 100px 0; z-index: 1; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.035) 20%, rgba(139, 92, 246, 0.035) 80%, transparent);
}
.section-more { text-align: center; margin-top: 48px; }

.section-head { text-align: center; margin-bottom: 58px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 20px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; color: var(--primary-2);
  background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.3);
  margin-bottom: 16px;
}
.section-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 8px var(--primary);
}
.section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem); font-weight: 900;
  background: linear-gradient(180deg, #fff, #b9c0d4);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-lead {
  margin-top: 14px; color: var(--text-muted); font-size: 1.02rem;
  max-width: 560px; margin-inline: auto;
}

/* ---------- هدر صفحات داخلی ---------- */
.page-hero {
  position: relative; z-index: 1; padding: 180px 0 80px;
  background:
    radial-gradient(ellipse 60% 90% at 50% -20%, rgba(139, 92, 246, 0.18), transparent),
    radial-gradient(ellipse 40% 60% at 80% 0%, rgba(34, 211, 238, 0.08), transparent);
  border-bottom: 1px solid var(--border); text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  background: var(--grad-tri); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradShift 7s ease-in-out infinite;
  display: inline-block;
}
.breadcrumb { margin-top: 14px; color: var(--text-muted); font-size: 0.9rem; }
.breadcrumb a { color: var(--primary-2); }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- کارت پایه (شیشه‌ای با لبه گرادیان) ---------- */
.glass-card {
  position: relative; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}
.glass-card:hover { transform: translateY(-8px); border-color: var(--border-glow); box-shadow: var(--shadow); }

/* اسپات‌لایت موس */
.spotlight::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%),
              rgba(139, 92, 246, 0.16), transparent 65%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none; z-index: 1;
}
.spotlight:hover::after { opacity: 1; }

/* ---------- دعوت به اقدام ---------- */
.cta-strip {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.12), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius); padding: 46px 50px;
}
.cta-strip::before {
  content: ''; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: var(--primary); filter: blur(110px); opacity: 0.4;
  top: -120px; inset-inline-end: -60px;
}
.cta-strip h2 { font-size: 1.5rem; margin-bottom: 6px; font-weight: 900; }
.cta-strip p { color: var(--text-muted); }
.cta-strip-wrap { padding-top: 20px; }
.cta-elite { align-items: center; }
.cta-eyebrow {
  display: inline-block; margin-bottom: 10px; font-size: 0.8rem; font-weight: 800;
  color: var(--gold); letter-spacing: 0.02em;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

.about-highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 28px 0 8px;
}
.about-highlights div {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 10px; text-align: center;
}
.about-highlights strong {
  display: block; font-size: 1.25rem; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-highlights span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

/* ---------- چرا من؟ ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 26px 30px; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}
.why-card:hover { transform: translateY(-8px); border-color: var(--border-glow); box-shadow: var(--shadow); }
.why-num {
  position: absolute; top: -14px; inset-inline-end: 10px;
  font-size: 4.6rem; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(139, 92, 246, 0.22);
  pointer-events: none;
}
.why-icon {
  display: grid; place-items: center; width: 58px; height: 58px;
  border-radius: 17px; background: rgba(139, 92, 246, 0.12); color: var(--primary-2);
  border: 1px solid rgba(139, 92, 246, 0.25); margin-bottom: 18px;
  transition: 0.35s;
}
.why-card:hover .why-icon { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.07); }
.why-card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 9px; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- روند همکاری ---------- */
.process-grid {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.process-grid::before {
  content: ''; position: absolute; top: 33px; inset-inline: 12%;
  height: 2px; z-index: 0;
  background: linear-gradient(90deg, var(--accent), var(--pink), var(--primary));
  opacity: 0.35;
}
.process-step { position: relative; text-align: center; padding: 0 10px; z-index: 1; }
.process-num {
  position: relative; display: grid; place-items: center; width: 66px; height: 66px;
  margin: 0 auto 20px; border-radius: 50%; font-size: 1.5rem; font-weight: 900;
  background: var(--card); color: var(--primary-2);
  border: 2px solid rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 0 7px var(--bg), 0 0 26px rgba(139, 92, 246, 0.3);
  transition: 0.35s;
}
.process-step:hover .process-num {
  background: var(--grad); color: #fff; transform: scale(1.1);
  border-color: transparent;
}
.process-step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; }

/* ---------- تماس سریع شناور ---------- */
.quick-contact {
  position: fixed; bottom: 28px; inset-inline-end: 28px; z-index: 95;
  display: flex; flex-direction: column-reverse; align-items: center; gap: 12px;
}
.qc-toggle {
  position: relative; display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad); color: #fff;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.55);
  transition: transform 0.3s;
}
.qc-toggle:hover { transform: scale(1.08); }
.quick-contact.open .qc-toggle { transform: rotate(-15deg); }
.qc-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.7);
  animation: qcPulse 2s infinite;
}
@keyframes qcPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}
.qc-items {
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: 0.3s;
}
.quick-contact.open .qc-items { opacity: 1; visibility: visible; transform: translateY(0); }
.qc-item {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--card); color: var(--brand); border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45); transition: 0.25s;
}
.qc-item:hover { background: var(--brand); color: #fff; transform: scale(1.1); border-color: transparent; }

/* ---------- درباره من ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
.about-text p { color: var(--text-muted); font-size: 1.02rem; }
.about-text > .btn { margin-top: 28px; }
.about-name {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 900; margin-top: 14px;
}
.about-role { color: var(--accent) !important; font-weight: 700; margin: 8px 0 18px; }
.about-text .hero-socials { margin-top: 26px; }

.about-visual { position: relative; }
.about-visual::before {
  content: ''; position: absolute; inset: 18px -18px -18px 18px;
  border-radius: var(--radius); border: 1.5px solid rgba(139, 92, 246, 0.35);
  z-index: -1;
}
.about-visual img, .about-placeholder {
  border-radius: var(--radius); border: 1px solid var(--border);
  width: 100%; box-shadow: var(--shadow);
}
.about-placeholder {
  aspect-ratio: 4/5; display: grid; place-items: center;
  background: var(--card); color: var(--primary); opacity: 0.9;
}

/* تایم‌لاین */
.timeline { margin-top: 30px; position: relative; padding-inline-start: 26px; }
.timeline::before {
  content: ''; position: absolute; inset-inline-start: 6px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(var(--primary), var(--pink), transparent);
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; inset-inline-start: -26px; top: 8px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.18), 0 0 14px rgba(139, 92, 246, 0.6);
}
.timeline-period {
  font-size: 0.78rem; color: var(--accent); font-weight: 700;
  background: rgba(34, 211, 238, 0.08); border: 1px solid rgba(34, 211, 238, 0.22);
  padding: 3px 14px; border-radius: 999px;
}
.timeline-body h4 { margin-top: 10px; font-size: 1.06rem; }
.timeline-body h4 small { color: var(--text-muted); font-weight: 500; }
.timeline-body p { font-size: 0.92rem !important; margin-top: 4px; }

/* ---------- خدمات ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px; overflow: hidden;
  display: flex; flex-direction: column; gap: 15px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; inset-inline: 0; height: 3px;
  background: var(--grad-tri); opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { transform: translateY(-9px); border-color: var(--border-glow); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(139, 92, 246, 0.45); background: linear-gradient(160deg, rgba(139, 92, 246, 0.07), var(--card) 45%); }
.service-flag {
  position: absolute; top: 20px; inset-inline-end: 20px; z-index: 2;
  font-size: 0.72rem; font-weight: 800; color: var(--gold);
  background: rgba(251, 191, 36, 0.08); border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 4px 13px; border-radius: 999px;
}
.service-icon {
  display: grid; place-items: center; width: 64px; height: 64px;
  border-radius: 19px; color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 26px rgba(139, 92, 246, 0.35);
  transition: transform 0.35s;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-5deg); }
.service-card h3 { font-size: 1.12rem; font-weight: 800; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.service-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; position: relative; z-index: 2; }
.service-price { font-size: 0.85rem; color: var(--success); font-weight: 700; }
.service-link { font-size: 0.88rem; color: var(--primary-2); font-weight: 700; }
.service-link:hover { color: var(--accent); }

/* ---------- مهارت‌ها ---------- */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.skills-col {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px; overflow: hidden;
  transition: border-color 0.35s;
}
.skills-col:hover { border-color: var(--border-glow); }
.skills-col-title {
  display: flex; align-items: center; gap: 11px;
  font-size: 1.12rem; margin-bottom: 28px; color: var(--accent); font-weight: 800;
}
.skill { margin-bottom: 22px; position: relative; z-index: 2; }
.skill:last-child { margin-bottom: 0; }
.skill-head { display: flex; justify-content: space-between; font-size: 0.93rem; margin-bottom: 9px; font-weight: 600; }
.skill-head span:last-child { color: var(--primary-2); }
.skill-bar { height: 10px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.skill-fill {
  height: 100%; width: 0; border-radius: inherit;
  background: var(--grad-tri); background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
  transition: width 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  animation: gradShift 4s linear infinite;
}

/* ---------- نمونه‌کار ---------- */
.portfolio-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 9px 24px; border-radius: 999px; font-size: 0.88rem; font-weight: 700;
  background: var(--surface); color: var(--text-muted);
  border: 1px solid var(--border); cursor: pointer; transition: 0.25s;
  backdrop-filter: blur(8px);
}
.filter-btn:hover { color: var(--text); border-color: var(--primary); transform: translateY(-2px); }
.filter-btn.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4); }
.filter-count {
  display: inline-grid; place-items: center; min-width: 24px; height: 24px;
  padding: 0 7px; margin-inline-start: 4px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800;
  background: rgba(255, 255, 255, 0.08); color: var(--text-muted);
  transition: 0.25s;
}
.filter-btn.active .filter-count { background: rgba(255, 255, 255, 0.22); color: #fff; }

/* انیمیشن ورود کارت هنگام فیلتر */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.portfolio-card.filter-in { animation: cardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.portfolio-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s, opacity 0.3s;
}
.portfolio-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); border-color: var(--border-glow); }
.portfolio-card.hidden { display: none; }

.portfolio-thumb { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.09); }
.portfolio-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 7, 15, 0.75));
  opacity: 0; transition: opacity 0.35s;
}
.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }
.portfolio-thumb-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(34, 211, 238, 0.12), transparent 60%),
    var(--bg-alt);
  color: var(--primary-2); opacity: 0.85;
}
.portfolio-cat {
  position: absolute; top: 15px; inset-inline-start: 15px; z-index: 2;
  font-size: 0.74rem; font-weight: 800; padding: 5px 15px; border-radius: 999px;
  background: rgba(5, 7, 15, 0.82); backdrop-filter: blur(8px);
  color: var(--accent); border: 1px solid rgba(34, 211, 238, 0.3);
}
.portfolio-view {
  position: absolute; inset-inline-end: 15px; bottom: 15px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  background: var(--grad); color: #fff;
  opacity: 0; transform: translateY(10px); transition: 0.35s;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
}
.portfolio-card:hover .portfolio-view { opacity: 1; transform: translateY(0); }
.portfolio-body { padding: 24px; }
.portfolio-body h3 { font-size: 1.06rem; margin-bottom: 8px; font-weight: 800; }
.portfolio-body h3 a:hover { color: var(--primary-2); }
.portfolio-body p { color: var(--text-muted); font-size: 0.9rem; }
.portfolio-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted);
}
.portfolio-meta a { color: var(--primary-2); font-weight: 700; }
.portfolio-meta a:hover { color: var(--accent); }

.empty-note { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 40px; }

/* ---------- صفحه جزئیات نمونه‌کار ---------- */
.project-grid { display: grid; grid-template-columns: 1fr 330px; gap: 38px; align-items: start; }
.project-cover {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow); margin-bottom: 30px;
}
.project-summary {
  font-size: 1.08rem; font-weight: 600; color: var(--text);
  padding: 20px 24px; border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.07); border-inline-start: 3px solid var(--primary);
  margin-bottom: 26px;
}
.project-desc { color: var(--text-muted); font-size: 1rem; }
.project-gallery-title { margin: 36px 0 18px; font-size: 1.18rem; font-weight: 800; }
.project-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.project-gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: zoom-in;
  border-radius: var(--radius-sm); border: 1px solid var(--border); transition: 0.3s;
}
.project-gallery a:hover img { transform: scale(1.04); border-color: var(--border-glow); }

.project-side { position: sticky; top: 110px; }
.project-info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.project-info-card h3 { font-size: 1.06rem; margin-bottom: 18px; font-weight: 800; }
.project-info-card ul { margin-bottom: 22px; }
.project-info-card li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem;
}
.project-info-card li:last-child { border-bottom: none; }
.project-info-card li span { color: var(--text-muted); }

/* لایت‌باکس گالری */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(5, 7, 15, 0.92); backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 100%; border-radius: var(--radius-sm);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

/* ---------- نظرات ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.testimonial-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.testimonial-card:hover { transform: translateY(-7px); border-color: var(--border-glow); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '❝'; position: absolute; top: 12px; inset-inline-end: 22px;
  font-size: 4.5rem; line-height: 1; color: rgba(139, 92, 246, 0.14);
}
.testimonial-stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; text-shadow: 0 0 12px rgba(251, 191, 36, 0.4); }
.testimonial-card > p { color: var(--text-muted); font-size: 0.95rem; flex: 1; position: relative; z-index: 2; }
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.testimonial-author img, .avatar-fallback {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(139, 92, 246, 0.4);
}
.avatar-fallback {
  display: grid; place-items: center; background: var(--grad);
  color: #fff; font-weight: 800; font-size: 1.1rem; border: none !important;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author small { color: var(--text-muted); font-size: 0.8rem; }

/* ---------- گیم‌پلی ---------- */
.gp-hero-lead {
  max-width: 640px; margin-top: 16px !important;
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.9;
}
.gp-teaser {
  text-align: center; padding: 48px 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(124, 140, 255, 0.08), rgba(236, 72, 153, 0.06));
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
.gp-teaser-icon {
  display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 16px;
  border-radius: 20px; color: #fff;
  background: linear-gradient(135deg, #7c8cff, #ec4899 60%, #22d3ee);
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.25);
}
.gp-teaser p { color: var(--text-muted); font-size: 1.05rem; font-weight: 600; }
.gp-teaser-hint {
  display: inline-block; margin-top: 10px; font-size: 0.85rem; font-weight: 700; color: var(--accent);
}
.gp-teaser-page { width: 100%; grid-column: 1 / -1; }
.cta-game {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(236, 72, 153, 0.18), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(124, 140, 255, 0.16), transparent 45%),
    var(--card);
}
.page-hero-game {
  background:
    radial-gradient(ellipse 50% 80% at 20% 0%, rgba(236, 72, 153, 0.16), transparent),
    radial-gradient(ellipse 50% 80% at 80% 0%, rgba(139, 92, 246, 0.2), transparent),
    linear-gradient(180deg, rgba(34, 211, 238, 0.05), transparent);
}
.gameplay-home {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(236, 72, 153, 0.08), transparent),
    transparent;
}
.gameplay-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.gameplay-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}
.gameplay-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 22px 55px rgba(236, 72, 153, 0.22), 0 0 0 1px rgba(124, 140, 255, 0.12);
}
.gameplay-card.featured { border-color: rgba(251, 191, 36, 0.35); }
.gameplay-card.hidden { display: none; }

.gameplay-thumb {
  position: relative; display: block; width: 100%; aspect-ratio: 16/9;
  border: none; padding: 0; cursor: pointer; overflow: hidden; background: var(--bg-alt);
}
.gameplay-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.gameplay-card:hover .gameplay-thumb img { transform: scale(1.08); }
.gameplay-thumb-ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.2), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.2), transparent 55%),
    var(--bg-alt);
  color: var(--pink);
}
.gameplay-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 15, 0.75));
}
.gameplay-play {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 64px; height: 64px;
  border-radius: 50%; color: #fff;
  background: var(--grad-tri); background-size: 200% 200%;
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.55);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gameplay-card:hover .gameplay-play {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 16px 44px rgba(236, 72, 153, 0.55);
}
.gameplay-duration {
  position: absolute; bottom: 12px; inset-inline-end: 12px; z-index: 2;
  padding: 4px 10px; border-radius: 8px; font-size: 0.75rem; font-weight: 800;
  background: rgba(5, 7, 15, 0.85); color: #fff; border: 1px solid var(--border);
}
.gameplay-live {
  position: absolute; top: 12px; inset-inline-start: 12px; z-index: 2;
  padding: 4px 12px; border-radius: 999px; font-size: 0.72rem; font-weight: 800;
  color: var(--gold); background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
}
.gameplay-body { padding: 20px 22px 22px; }
.gameplay-game {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 800; color: var(--pink);
  margin-bottom: 8px;
}
.gameplay-body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; line-height: 1.5; }
.gameplay-body h3 a:hover { color: var(--primary-2); }

/* صفحه تکی گیم‌پلی */
.gp-watch { display: grid; gap: 28px; }
.gp-watch-frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: #000;
  box-shadow: 0 24px 60px rgba(236, 72, 153, 0.15), var(--shadow);
}
.gp-watch-frame iframe,
.gp-watch-frame video { width: 100%; height: 100%; border: 0; display: block; object-fit: contain; background: #000; }
.gp-player {
  isolation: isolate;
  outline: 1px solid rgba(236, 72, 153, 0.28);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.12),
    0 30px 90px rgba(139, 92, 246, 0.28),
    0 0 80px rgba(236, 72, 153, 0.12);
}
.gp-player::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 15, 0.35) 0%, transparent 28%, transparent 72%, rgba(5, 7, 15, 0.45) 100%),
    radial-gradient(ellipse at 50% 120%, rgba(139, 92, 246, 0.18), transparent 55%);
  opacity: 1; transition: opacity 0.35s;
}
.gp-player.is-playing::before { opacity: 0.25; }
.gp-player video { background: radial-gradient(ellipse at center, #12122a, #000); position: relative; z-index: 0; }
.gp-corner {
  position: absolute; z-index: 3; width: 28px; height: 28px; pointer-events: none;
  border: 2px solid transparent;
}
.gp-corner-tl { top: 10px; inset-inline-start: 10px; border-top-color: var(--accent); border-inline-start-color: var(--accent); }
.gp-corner-tr { top: 10px; inset-inline-end: 10px; border-top-color: var(--pink); border-inline-end-color: var(--pink); }
.gp-corner-bl { bottom: 10px; inset-inline-start: 10px; border-bottom-color: var(--pink); border-inline-start-color: var(--pink); }
.gp-corner-br { bottom: 10px; inset-inline-end: 10px; border-bottom-color: var(--accent); border-inline-end-color: var(--accent); }
.gp-big-play {
  position: absolute; inset: 0; z-index: 4; margin: auto;
  width: 88px; height: 88px; border: none; cursor: pointer;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #ec4899 55%, #22d3ee);
  border-radius: 50%;
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.45);
  transition: transform 0.25s, opacity 0.3s, box-shadow 0.25s;
}
.gp-big-play svg { margin-inline-start: 4px; }
.gp-big-play-ring {
  position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(236, 72, 153, 0.45);
  animation: gp-ring 1.8s ease-out infinite;
}
.gp-big-play:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.4);
}
.gp-big-play.is-hidden {
  opacity: 0; pointer-events: none; transform: scale(0.85);
}
@keyframes gp-ring {
  0% { transform: scale(0.92); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.gp-watch-meta {
  display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 28px; align-items: start;
}
.gp-watch-meta h2 { font-size: 1.45rem; font-weight: 900; margin: 8px 0 12px; }
.gp-watch-meta > div > p { color: var(--text-muted); }
.gp-watch-actions { display: flex; flex-direction: column; gap: 12px; }
.gameplay-body p { color: var(--text-muted); font-size: 0.88rem; }
.gameplay-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted); font-weight: 600;
}
.gameplay-platform {
  color: var(--accent); font-weight: 800;
}

/* مودال پخش ویدیو */
.gp-modal {
  position: fixed; inset: 0; z-index: 320; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(5, 7, 15, 0.92); backdrop-filter: blur(12px);
}
.gp-modal.open { display: flex; }
.gp-modal-box {
  position: relative; width: min(960px, 100%);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.gp-modal-close {
  position: absolute; top: -14px; inset-inline-end: -14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad); color: #fff; font-size: 1.5rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}
.gp-modal-frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-sm); overflow: hidden; background: #000;
}
.gp-modal-frame iframe { width: 100%; height: 100%; border: 0; }
.gp-modal-title {
  margin-top: 14px; padding: 0 6px 4px; font-size: 1.05rem; font-weight: 800;
}

/* ---------- سوالات متداول ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--border-glow); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 19px 24px; cursor: pointer; font-weight: 700; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  display: grid; place-items: center; width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 9px; background: rgba(139, 92, 246, 0.12); color: var(--primary-2);
  font-size: 1.25rem; transition: transform 0.3s, background 0.3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq-item p { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.93rem; }

/* ---------- تماس ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 34px; align-items: start; }
.contact-info {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.contact-info-title { font-size: 1.3rem; margin-bottom: 12px; font-weight: 900; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }
.contact-info ul { display: flex; flex-direction: column; gap: 18px; }
.contact-info li { display: flex; align-items: center; gap: 15px; font-size: 0.95rem; font-weight: 600; }
.contact-info li a:hover { color: var(--accent); }
.ci-icon {
  display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 14px; background: color-mix(in srgb, var(--brand) 13%, transparent);
  color: var(--brand); border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
}
.contact-socials { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.contact-socials a {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 13px; background: var(--surface-2); color: var(--text-muted);
  border: 1px solid var(--border); transition: 0.3s;
}
.contact-socials a:hover { background: var(--brand, var(--primary)); color: #fff; border-color: transparent; transform: translateY(-4px); }

.contact-form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 8px; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 17px; border-radius: var(--radius-sm);
  background: var(--bg-alt); color: var(--text);
  border: 1.5px solid var(--border); outline: none; transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.13);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #576081; }

.alert { padding: 15px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.92rem; font-weight: 600; }
.alert-success { background: rgba(52, 211, 153, 0.08); color: var(--success); border: 1px solid rgba(52, 211, 153, 0.3); }
.alert-error { background: rgba(248, 113, 113, 0.08); color: var(--danger); border: 1px solid rgba(248, 113, 113, 0.3); }

/* ---------- فوتر ---------- */
.site-footer {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05));
  border-top: 1px solid var(--border); padding: 64px 0 0; margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 44px; padding-bottom: 44px; }
.footer-desc { color: var(--text-muted); font-size: 0.92rem; margin-top: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.footer-socials a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 13px; background: var(--surface); color: var(--text-muted);
  border: 1px solid var(--border); transition: 0.3s;
}
.footer-socials a:hover { background: var(--brand, var(--primary)); color: #fff; transform: translateY(-4px); border-color: transparent; }
.footer-col h4 { font-size: 1rem; margin-bottom: 20px; color: #fff; font-weight: 800; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: center; gap: 11px; color: var(--text-muted); font-size: 0.92rem; }
.footer-contact svg { color: var(--primary-2); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  text-align: center; color: var(--text-muted); font-size: 0.85rem;
}

/* ---------- دکمه بازگشت به بالا ---------- */
.back-to-top {
  position: fixed; bottom: 28px; inset-inline-start: 28px; z-index: 90;
  width: 50px; height: 50px; border-radius: 15px; border: none; cursor: pointer;
  background: var(--grad); color: #fff; font-size: 1.3rem;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: 0.3s; box-shadow: 0 10px 28px rgba(139, 92, 246, 0.5);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- انیمیشن ظهور ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- واکنش‌گرایی ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-top-row, .hero-trust, .hero-cta, .platform-strip { justify-content: center; }
  .hero-kicker { border: none; padding: 0; }
  .hero-desc { margin-inline: auto; }
  .hero-aura { transform: translate(-50%, -20%); inset-inline-start: 50%; }
  .about-highlights { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { order: -1; }
  .hero-avatar-wrap { width: min(270px, 68vw); }
  .fc-1 { inset-inline-start: -8%; }
  .fc-2 { inset-inline-end: -8%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin-inline: auto; }
  .services-grid, .portfolio-grid, .gameplay-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .skills-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .project-side { position: static; }
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }

  .main-nav {
    position: fixed; top: 0; bottom: 0; inset-inline-end: 0;
    width: min(320px, 86vw); height: 100dvh; max-height: 100dvh;
    margin: 0; padding: 88px 22px 28px;
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    background: linear-gradient(180deg, #0c1120 0%, #090d1a 100%);
    border: none; border-inline-start: 1px solid var(--border);
    border-radius: 0; box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    z-index: 310;
    /* LTR: کشو از راست؛ بسته = بیرون از صفحه به سمت راست */
    transform: translate3d(105%, 0, 0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden; pointer-events: none;
  }
  /* RTL: کشو از چپ (inline-end)؛ بسته = بیرون از صفحه به سمت چپ */
  [dir="rtl"] .main-nav { transform: translate3d(-105%, 0, 0); }
  .main-nav.open {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible; pointer-events: auto;
  }
  .nav-link {
    font-size: 1.05rem; padding: 14px 16px; border-radius: 14px;
    text-align: start;
  }
  .nav-link.active { box-shadow: none; }
  .nav-mobile-cta {
    display: flex !important;
    margin-top: 20px;
    justify-content: center; text-align: center;
  }
}

/* نوار پلتفرم‌ها */
.platform-strip {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 8px;
}
.platform-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 15px; border-radius: 999px; font-size: 0.84rem; font-weight: 700;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid color-mix(in srgb, var(--brand, var(--border)) 35%, var(--border));
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.platform-chip:hover {
  border-color: color-mix(in srgb, var(--brand, var(--primary)) 65%, transparent);
  color: #fff; transform: translateY(-3px);
  background: color-mix(in srgb, var(--brand, var(--primary)) 14%, transparent);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--brand, var(--primary)) 28%, transparent);
}
.platform-chip svg { color: var(--brand, var(--accent)); flex-shrink: 0; }

.arena-banner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center;
  padding: 34px 36px; border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(236, 72, 153, 0.18), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(34, 211, 238, 0.14), transparent 45%),
    var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.arena-banner h3 { font-size: 1.45rem; font-weight: 900; margin: 8px 0 10px; }
.arena-banner p { color: var(--text-muted); margin-bottom: 16px; }
.arena-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.arena-tags span {
  padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text);
}
.arena-visual {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.arena-card {
  padding: 18px 16px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; gap: 10px;
}
.arena-card svg { flex-shrink: 0; color: var(--brand, var(--primary-2)); }
@media (max-width: 900px) {
  .arena-banner { grid-template-columns: 1fr; padding: 28px 22px; }
}

@media (max-width: 700px) {
  .logo-text strong { max-width: 42vw; font-size: 0.92rem; }
  .logo-text small { font-size: 0.68rem; }
  .site-header { padding: 12px 0; }
  .site-header.scrolled { padding: 10px 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item:not(:last-child)::after { display: none; }
  .services-grid, .portfolio-grid, .gameplay-grid { grid-template-columns: 1fr; }
  .gp-modal-close { top: 8px; inset-inline-end: 8px; }
  .gp-watch-meta { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .floating-card { font-size: 0.72rem; padding: 8px 13px; }
  .page-hero { padding: 145px 0 55px; }
  .cta-strip { padding: 32px 26px; text-align: center; justify-content: center; }
  .why-grid, .process-grid { grid-template-columns: 1fr; }
  .quick-contact { bottom: 22px; inset-inline-end: 20px; }
  .qc-toggle { width: 52px; height: 52px; }
  .hero-trust { justify-content: center; }
  .platform-strip { gap: 8px; }
  .platform-chip { padding: 8px 12px; font-size: 0.78rem; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .lang-gate-actions { grid-template-columns: 1fr; }
  .header-actions .btn-sm { display: none; }
}

/* هیرو حرفه‌ای — بدون شلوغی پس‌زمینه، با آبجکت‌های پروفایل */
.hero-pro .hero-watermark,
.hero-pro .hero-aura { display: none; }
.floating-card {
  backdrop-filter: blur(12px);
  background: rgba(14, 20, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.fc-1 { color: #E1306C; }
.fc-1 svg { color: #E1306C; }
.fc-2 { color: #229ED9; }
.fc-2 svg { color: #229ED9; }
.fc-3 { color: #5865F2; }
.fc-3 svg { color: #5865F2; }

.platform-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.platform-card {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 16px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}
.platform-card:hover { border-color: var(--border-glow); transform: translateY(-2px); }
.platform-card span {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: color-mix(in srgb, var(--brand, var(--primary)) 14%, transparent);
  color: var(--brand, var(--primary-2));
}
.platform-card h3 { font-size: 0.95rem; font-weight: 700; }

.btn-glow { box-shadow: 0 10px 28px rgba(124, 140, 255, 0.22); }
.service-card.featured { box-shadow: none; }
.cta-elite { background: var(--card); }

/* مودال انتخاب زبان */
.lang-gate {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center; padding: 24px;
  background: rgba(5, 7, 15, 0.82); backdrop-filter: blur(14px);
}
.lang-gate-card {
  width: min(460px, 100%);
  padding: 36px 32px; border-radius: 20px;
  background: #0e1422; border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
}
.lang-gate-brand {
  font-family: var(--font-en); color: var(--accent); font-weight: 700;
  margin-bottom: 14px; letter-spacing: 0.04em;
}
.lang-gate-card h2 {
  font-size: 1.45rem; font-weight: 800; margin-bottom: 8px;
}
.lang-gate-sub { color: var(--text-muted); margin-bottom: 26px; font-size: 0.95rem; }
.lang-gate-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.lang-gate-btn {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 14px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
  transition: 0.25s;
}
.lang-gate-btn strong { font-size: 1.1rem; }
.lang-gate-btn span { font-size: 0.8rem; color: var(--text-muted); }
.lang-gate-btn:hover {
  border-color: var(--primary); background: rgba(124, 140, 255, 0.1);
  transform: translateY(-2px);
}
body:has(.lang-gate) { overflow: hidden; }

