@font-face {
  font-family: "Lahzeh";
  src: url("fonts/YekanBakh-Bold.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lahzeh";
  src: url("fonts/YekanBakh-ExtraBold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lahzeh";
  src: url("fonts/YekanBakh-ExtraBlack.ttf");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.08);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --glass-blur: 24px;
  --glass-hover: rgba(255,255,255,0.08);
  
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --primary-glow: rgba(124,58,237,0.3);
  --secondary: #ec4899;
  --secondary-glow: rgba(236,72,153,0.2);
  --accent: #f59e0b;
  --success: #10b981;
  
  --myket-blue: #2563eb;
  --myket-blue-hover: #1d4ed8;
  --bazaar-green: #22c55e;
  --bazaar-green-hover: #16a34a;
  
  --text: #f1f5f9;
  --text-light: #94a3b8;
  --text-muted: #64748b;
  --white: #ffffff;
  --white-soft: rgba(255,255,255,0.7);
  
  --bg-primary: #0f0a1a;
  --bg-secondary: #1a1225;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Lahzeh", system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ================================================================
   کلاس Glass
   ================================================================ */
.glass {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(var(--glass-blur)) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}
.glass-hover {
  transition: all 0.3s ease;
}
.glass-hover:hover {
  background: var(--glass-hover) !important;
  border-color: rgba(255,255,255,0.12) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5) !important;
}

/* ================================================================
   پس‌زمینه
   ================================================================ */
.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(236,72,153,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(124,58,237,0.05) 0%, transparent 40%),
    linear-gradient(180deg, #0f0a1a 0%, #1a1225 40%, #0d0820 100%);
}
.grid-3d {
  position: absolute;
  inset: 0;
  perspective: 800px;
  overflow: hidden;
  pointer-events: none;
}
.grid-3d-inner {
  position: absolute;
  inset: 0;
  transform: rotateX(60deg) rotateZ(-20deg);
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { transform: rotateX(60deg) rotateZ(-20deg) translateY(0); }
  100% { transform: rotateX(60deg) rotateZ(-20deg) translateY(60px); }
}
.particles-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124,58,237,0.4), transparent 70%);
  animation: particleFloat 8s ease-in-out infinite;
}
.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 30%; top: 60%; animation-delay: 1.2s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 50%; top: 10%; animation-delay: 2.4s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 70%; top: 50%; animation-delay: 0.8s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 90%; top: 30%; animation-delay: 3.2s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 15%; top: 80%; animation-delay: 1.8s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 60%; top: 70%; animation-delay: 2.8s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 85%; top: 85%; animation-delay: 0.4s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-30px) scale(2); opacity: 0.6; }
}
.ring-neon {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,0.08);
  animation: ringNeon 10s ease-in-out infinite;
}
.ring-neon-1 { width: 600px; height: 600px; left: -200px; top: -200px; animation-delay: 0s; }
.ring-neon-2 { width: 800px; height: 800px; right: -300px; bottom: -300px; animation-delay: 2s; }
.ring-neon-3 { width: 400px; height: 400px; left: 50%; top: 50%; transform: translate(-50%,-50%); animation-delay: 4s; }
@keyframes ringNeon {
  0% { opacity: 0.1; transform: scale(0.9) rotate(0deg); border-color: rgba(124,58,237,0.08); }
  50% { opacity: 0.4; transform: scale(1.1) rotate(15deg); border-color: rgba(124,58,237,0.2); }
  100% { opacity: 0.1; transform: scale(0.9) rotate(0deg); border-color: rgba(124,58,237,0.08); }
}
.triangle-neon {
  position: absolute;
  width: 0; height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid rgba(124,58,237,0.05);
  animation: triangleNeon 12s linear infinite;
}
.triangle-neon-1 { left: 15%; top: 30%; animation-delay: 0s; }
.triangle-neon-2 { right: 20%; bottom: 25%; animation-delay: 3s; }
@keyframes triangleNeon {
  0% { transform: rotate(0deg) scale(1); opacity: 0.1; }
  50% { transform: rotate(180deg) scale(1.4); opacity: 0.35; }
  100% { transform: rotate(360deg) scale(1); opacity: 0.1; }
}
.wave-neon {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.12), rgba(236,72,153,0.08), transparent);
  animation: waveNeon 8s ease-in-out infinite;
}
.wave-neon-1 { width: 500px; left: -150px; top: 35%; transform: rotate(-8deg); animation-delay: 0s; }
.wave-neon-2 { width: 600px; right: -200px; bottom: 30%; transform: rotate(10deg); animation-delay: 2s; }
@keyframes waveNeon {
  0% { transform: translateX(-50px) rotate(-8deg); opacity: 0.04; }
  50% { transform: translateX(100px) rotate(-8deg); opacity: 0.25; }
  100% { transform: translateX(-50px) rotate(-8deg); opacity: 0.04; }
}
.aura {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  animation: auraPulse 6s ease-in-out infinite;
}
.aura-1 { width: 300px; height: 300px; left: 5%; top: 20%; background: rgba(124,58,237,0.06); animation-delay: 0s; }
.aura-2 { width: 400px; height: 400px; right: 5%; bottom: 20%; background: rgba(236,72,153,0.04); animation-delay: 2s; }
@keyframes auraPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
  50% { transform: scale(1.3) rotate(180deg); opacity: 0.5; }
}
.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(rgba(255,255,255,0.04) 0.8px, transparent 0.8px);
  background-size: 20px 20px;
  animation: noiseShift 30s linear infinite;
}
@keyframes noiseShift {
  0% { transform: translate(0,0); }
  100% { transform: translate(20px,20px); }
}

/* ================================================================
   مودال‌ها
   ================================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.active { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  background: rgba(20,15,35,0.95) !important;
  backdrop-filter: blur(32px) !important;
  -webkit-backdrop-filter: blur(32px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 28px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: modalSlide 0.3s ease;
}
@keyframes modalSlide {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 24px;
  color: rgba(255,255,255,0.3);
  transition: 0.2s;
}
.modal-close:hover { color: #fff; transform: rotate(90deg); }
.modal-content h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 8px;
  color: var(--text);
}
.modal-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-buttons .cta {
  min-height: 50px;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 16px;
}
.modal-buttons .cta img { width: 22px; height: 22px; }
.modal-body p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-light);
  margin: 0 0 8px;
  padding-right: 16px;
  border-right: 2px solid var(--primary);
}
.modal-form .form-group {
  margin-bottom: 16px;
  text-align: right;
}
.modal-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: var(--primary);
  background: rgba(0,0,0,0.4);
}
.modal-form select option { background: #1a1225; }
.btn-submit {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--primary-glow); }
.form-feedback {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  color: var(--success);
  min-height: 22px;
}

/* ================================================================
   دکمه برگشت به بالا
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 8px 30px var(--primary-glow);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); }
.back-to-top svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

/* ================================================================
   هدر
   ================================================================ */
.header-new {
  position: sticky;
  top: 12px;
  z-index: 50;
  padding: 0;
  margin: 0 auto;
  width: min(1350px, calc(100% - 24px));
  border-radius: 28px;
  background: rgba(15,10,26,0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.header-new:hover {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 12px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 12px;
}
.header-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-new {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo-new {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.brand-logo-new img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain;
}
.brand-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.header-nav {
  display: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 999px;
  transition: 0.2s;
  position: relative;
}
.header-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
  transform: translateX(50%);
  box-shadow: 0 0 12px var(--primary-glow);
}
.header-nav a:hover::after { width: 60%; }
.header-right {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.header-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s;
  border: 1px solid rgba(255,255,255,0.06);
}
.header-btn-new img { width: 18px; height: 18px; object-fit: contain; }
.btn-rubika {
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
}
.btn-rubika:hover { background: rgba(255,255,255,0.08); color: var(--text); transform: translateY(-2px); }
.btn-download {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--primary-glow); }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.header-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: rgba(15,10,26,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 0 0 28px 28px;
}
.header-nav-mobile a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  padding: 10px 16px;
  border-radius: 12px;
  transition: 0.2s;
}
.header-nav-mobile a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.header-nav-mobile.open { display: flex; }

/* ================================================================
   صفحه اصلی
   ================================================================ */
.page {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 40px;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 0;
  text-align: center;
}
.hero-content {
  width: 100%;
  max-width: 900px;
  padding: 20px 0 40px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 16px rgba(16,185,129,0.4);
  animation: blinkRandom 1.7s ease-in-out infinite;
}
@keyframes blinkRandom {
  0%, 100% { opacity: 0.2; }
  20% { opacity: 1; }
  40% { opacity: 0.3; }
  60% { opacity: 0.9; }
}
.hero-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.6;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-title span { display: block; }
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ================================================================
   دکمه‌های دانلود
   ================================================================ */
.cta-group {
  width: 100%;
  max-width: 560px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 700;
  font-size: 14px;
}
.cta img { width: 24px; height: 24px; object-fit: contain; }
.cta span { position: relative; z-index: 2; }
.cta:hover:not(.cta-disabled) {
  transform: translateY(-4px) scale(1.02);
}
.cta-myket {
  background: rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.3);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.15);
}
.cta-myket::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(37,99,235,0.05));
  z-index: 0;
  opacity: 0.6;
  transition: 0.3s;
}
.cta-myket:hover:not(.cta-disabled) {
  background: rgba(37,99,235,0.35);
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 8px 32px rgba(37,99,235,0.3);
}
.cta-myket:hover:not(.cta-disabled)::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(37,99,235,0.5), rgba(37,99,235,0.1));
}
.cta-bazaar {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.25);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.1);
}
.cta-bazaar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(34,197,94,0.03));
  z-index: 0;
  opacity: 0.6;
  transition: 0.3s;
}
.cta-bazaar:hover:not(.cta-disabled) {
  background: rgba(34,197,94,0.3);
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 8px 32px rgba(34,197,94,0.25);
}
.cta-bazaar:hover:not(.cta-disabled)::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(34,197,94,0.4), rgba(34,197,94,0.08));
}
.cta-rubika-channel {
  margin-top: 12px;
}
.cta-channel {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.2);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(124,58,237,0.08);
  min-height: 48px;
  padding: 10px 20px;
  font-size: 13px;
  width: 100%;
}
.cta-channel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(124,58,237,0.02));
  z-index: 0;
  opacity: 0.6;
  transition: 0.3s;
}
.cta-channel:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.15);
}
.cta-channel:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(124,58,237,0.05));
}
.cta-channel img { width: 22px; height: 22px; }
.cta-channel span { color: var(--text); }
.cta-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cta-disabled:hover { transform: none !important; }
.cta-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px var(--secondary-glow);
  z-index: 5;
}

/* ================================================================
   اسلایدر - نسخه نهایی با ریسپانسیو کامل
   ================================================================ */
.slider-section {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 60px;
}
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: #0f0a1a;
}
.slider-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0f0a1a;
}
.slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slider-slide.active {
  display: block;
  opacity: 1;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== کپشن با آیکون - اصلاح‌شده برای ریسپانسیو ===== */
.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 30px 20px 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 70%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.caption-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.caption-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.caption-text {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

/* ===== دکمه‌ها ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.05);
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

/* ===== نقاط ===== */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: 0.3s;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: #fff;
  width: 30px;
}

/* ================================================================
   ریسپانسیو اسلایدر - اصلاح‌شده
   ================================================================ */

/* تبلت و موبایل بزرگ */
@media (max-width: 992px) {
  .slider-caption {
    font-size: 17px;
    padding: 16px 24px 16px 80px;
    gap: 10px;
  }
  .caption-icon {
    width: 32px;
    height: 32px;
  }
  .caption-icon img {
    width: 18px;
    height: 18px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
}

/* موبایل */
@media (max-width: 767px) {
  .slider-caption {
    font-size: 14px;
    padding: 12px 16px 12px 60px;
    gap: 8px;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
  }
  .caption-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
  .caption-icon img {
    width: 16px;
    height: 16px;
  }
  .caption-text {
    font-size: 13px;
    line-height: 1.4;
  }
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
    opacity: 0.7;
  }
  .slider-btn:hover {
    opacity: 1;
  }
  .slider-prev { 
    left: 6px; 
    top: 50%;
    transform: translateY(-50%);
  }
  .slider-next { 
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
  }
  .slider-dots {
    bottom: 10px;
    gap: 8px;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
  }
  .slider-dot.active {
    width: 20px;
  }
}

/* موبایل خیلی کوچک */
@media (max-width: 400px) {
  .slider-caption {
    font-size: 12px;
    padding: 8px 12px 8px 50px;
    gap: 6px;
  }
  .caption-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }
  .caption-icon img {
    width: 13px;
    height: 13px;
  }
  .caption-text {
    font-size: 11px;
    line-height: 1.3;
  }
  .slider-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .slider-prev { left: 4px; }
  .slider-next { right: 4px; }
  .slider-dots {
    bottom: 6px;
    gap: 6px;
  }
  .slider-dot {
    width: 6px;
    height: 6px;
  }
  .slider-dot.active {
    width: 16px;
  }
}
/* ================================================================
   آمار
   ================================================================ */
.stats-section {
  margin-top: 60px;
  width: 100%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: 24px;
}
.stat-number {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 14px;
  color: var(--text-light);
}

/* ================================================================
   نقشه شهر
   ================================================================ */
.map-section {
  margin-top: 60px;
  width: 100%;
}
.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================================
   نقشه راه
   ================================================================ */
.roadmap-section {
  margin-top: 60px;
  width: 100%;
}
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  right: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}
.roadmap-item {
  position: relative;
  padding-right: 70px;
  margin-bottom: 30px;
}
.roadmap-item:last-child { margin-bottom: 0; }
.roadmap-dot {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary);
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px var(--primary-glow);
  z-index: 2;
}
.roadmap-content {
  padding: 20px 24px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.roadmap-content:hover {
  transform: translateX(-4px);
  background: var(--glass-hover) !important;
}
.roadmap-date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(124,58,237,0.12);
  padding: 2px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.roadmap-content h3 {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 6px;
}
.roadmap-content p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* ================================================================
   بخش‌های مشترک
   ================================================================ */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
}
.section-title {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  max-width: 600px;
  line-height: 1.5;
}
.features-section { margin-top: 60px; width: 100%; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.feature-item {
  padding: 24px 16px;
  border-radius: 24px;
  text-align: center;
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.15);
}
.feature-icon img { width: 32px; height: 32px; object-fit: contain; }
.feature-item h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--text);
}
.feature-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}
.testimonials-section { margin-top: 60px; width: 100%; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.testimonial-card {
  padding: 24px 20px;
  border-radius: 24px;
  text-align: center;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 2px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.03);
}
.testimonial-avatar img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 999px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0 0 12px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  opacity: 0.5;
}
.about-section {
  margin-top: 60px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.04);
}
.about-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.studio-logo-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  padding: 30px;
  animation: logoDrift 20s linear infinite;
}
.studio-logo-bg img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1) blur(3px);
  opacity: 1;
  animation: logoPulse 5s ease-in-out infinite alternate;
}
@keyframes logoDrift {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(20px,-10px) rotate(2deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}
@keyframes logoPulse {
  0% { opacity: 0.8; transform: scale(0.7); }
  100% { opacity: 1.0; transform: scale(1.1); }
}
.about-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px 40px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-image img { width: 100%; height: 200px; object-fit: cover; }
.about-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-light);
  margin: 0 0 12px;
}
.about-text strong { color: var(--text); }

/* ================================================================
   kicker-icon
   ================================================================ */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
}
.kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 16px rgba(124,58,237,0.15);
  transition: all 0.3s ease;
}
.kicker-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}
.section-kicker:hover .kicker-icon {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.2);
  box-shadow: 0 4px 20px rgba(124,58,237,0.25);
  transform: scale(1.05);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
  margin-top: 60px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 20px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: right;
  transition: 0.2s;
  background: rgba(255,255,255,0.02);
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
  flex: 0 0 auto;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  background: rgba(255,255,255,0.02);
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 12px 20px 20px;
}
.faq-answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ================================================================
   Jobs
   ================================================================ */
.jobs-section { margin-top: 60px; width: 100%; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.job-card {
  padding: 22px 18px;
  border-radius: 24px;
  text-align: right;
}
.job-card h3 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--text);
}
.job-card p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 12px;
  line-height: 1.7;
}
.job-tag {
  display: inline-block;
  background: rgba(124,58,237,0.12);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,0.15);
}
.jobs-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.btn-cooperation {
  padding: 14px 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 8px 30px var(--primary-glow);
  transition: 0.3s;
}
.btn-cooperation:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px var(--primary-glow); }

/* ================================================================
   Suggest
   ================================================================ */
.suggest-section {
  margin-top: 60px;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.suggest-form {
  padding: 28px 24px;
  border-radius: 28px;
}
.suggest-form .form-group {
  margin-bottom: 16px;
  text-align: right;
}
.suggest-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.suggest-form input,
.suggest-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}
.suggest-form input:focus,
.suggest-form textarea:focus {
  border-color: var(--primary);
  background: rgba(0,0,0,0.3);
}
.suggest-form input::placeholder,
.suggest-form textarea::placeholder {
  color: var(--text-muted);
}
.suggest-submit {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s;
}
.suggest-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--primary-glow); }
.suggest-feedback {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  color: var(--success);
  min-height: 22px;
}

/* ================================================================
   فوتر
   ================================================================ */
.footer-new {
  margin-top: 60px;
  width: 100%;
  padding: 28px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.footer-brand span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-btn {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: 6px;
  transition: 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.footer-btn:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.footer-copy {
  font-size: 13px;
  color: var(--text-light);
  opacity: 0.4;
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-year { font-size: 12px; opacity: 0.6; }

/* ================================================================
   ریسپانسیو
   ================================================================ */
@media (min-width: 768px) {
  .header-nav { display: flex; }
  .header-right { display: flex; }
  .hamburger { display: none; }
  .header-nav-mobile { display: none !important; }
  .hero-title { font-size: 52px; }
  .hero-desc { font-size: 17px; }
  .section-title { font-size: 32px; }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: right;
  }
  .about-inner { grid-template-columns: 1fr 1fr; }
  .slider-caption { font-size: 24px; }
}

@media (max-width: 767px) {
  .header-new {
    top: 8px;
    border-radius: 20px;
    width: calc(100% - 16px);
  }
  .header-inner { padding: 8px 14px; }
  .brand-name { font-size: 15px; }
  .brand-logo-new { width: 36px; height: 36px; }
  .header-right { display: none; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 30px; }
  .cta-row { grid-template-columns: 1fr; }
  .cta { min-height: 48px; padding: 10px 14px; font-size: 13px; }
  .cta img { width: 20px; height: 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-inner { grid-template-columns: 1fr; gap: 20px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .studio-logo-bg { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .studio-logo-bg img { width: 50px; height: 50px; }
  .footer-inner { flex-direction: column; gap: 12px; }
  .back-to-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }
  .back-to-top svg { width: 22px; height: 22px; }
  .section-title { font-size: 22px; }
  .modal-content { padding: 24px 18px; }
  .slider-caption { font-size: 14px; padding: 12px 16px; }
  .slider-btn { width: 36px; height: 36px; font-size: 16px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 28px; }
  .roadmap-item { padding-right: 50px; }
  .roadmap-dot { right: 12px; width: 12px; height: 12px; }
  .roadmap-content { padding: 16px 18px; }
  .roadmap-content h3 { font-size: 16px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 13px; }
  .brand-logo-new { width: 32px; height: 32px; }
  .cta-rubika-channel .cta-channel { font-size: 12px; min-height: 42px; padding: 8px 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .slider-caption { font-size: 12px; padding: 8px 12px; }
}