/* ========================================
   متغیرهای رنگ و فونت - آپدیت شده
======================================== */
:root {
  --primary-color: #A020F0;
  --primary-dark: #8a1acc;
  --accent-color: #FF1493;
  --secondary-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* ========================================
   ریست و تنظیمات پایه
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

/* ========================================
   فاصله استاندارد بین بخش‌ها
======================================== */
section {
  margin-bottom: 100px;
}

/* ========================================
   هدر و نویگیشن
======================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 80px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  width: 100%;
}

.cta-button {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cta-button:hover,
.cta-button:focus {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* ========================================
   هیرو (Hero Section)
======================================== */
.hero {
  margin-top: 100px;
  margin-bottom: 120px;
  background: linear-gradient(135deg, #A020F0 0%, #FF1493 100%);
  color: var(--white);
  padding: 3.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(160, 32, 240, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
  animation: particleMove 15s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-image {
  max-width: 400px;
  margin: 2rem auto 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

/* استایل اسلایدر Hero */
.hero-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(160, 32, 240, 0.3);
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-image.active {
  opacity: 1;
  z-index: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(135deg, #A020F0 0%, #FF1493 100%);
  width: 32px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(160, 32, 240, 0.6);
}

/* ========================================
   بخش‌های عمومی
======================================== */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #A020F0 0%, #FF1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   محصولات
======================================== */
.products {
  background: var(--bg-light);
  padding-top: 100px;
  padding-bottom: 100px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(160, 32, 240, 0.1), rgba(255, 20, 147, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
  z-index: -1;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(160, 32, 240, 0.4);
}

.product-card:nth-child(2) {
  animation-delay: 0.5s;
}

.product-card:nth-child(3) {
  animation-delay: 1s;
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.product-card .target-audience {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-card .btn-primary {
  width: 100%;
  justify-content: center;
}

.product-card .btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #A020F0 0%, #FF1493 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: auto;
  width: auto;
}

.product-card .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(160, 32, 240, 0.4);
}

/* ========================================
   ویژگی‌ها (چرا دیجیتالی شو)
======================================== */
.features {
  padding: 100px 1.5rem;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--bg-light);
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) {
  animation-delay: 1s;
}

.feature-card:hover,
.feature-card:focus-within {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   بخش Values - آیکون در کنار متن
======================================== */
.values-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-10px);
  box-shadow: 0 10px 30px rgba(160, 32, 240, 0.2);
}

.value-item .icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(160, 32, 240, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 20px;
  padding: 15px;
  transition: all 0.4s ease;
}

.value-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(160, 32, 240, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
}

.value-content {
  flex: 1;
  text-align: right;
}

.value-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.value-content p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}


/* ========================================
   استایل برای product-target
======================================== */

.product-target {
  color: var(--text-light);
  margin: 1rem 0 1.5rem 0;
  line-height: 1.8;
  font-size: 0.95rem;
}


/* ========================================
   بخش differentiation
======================================== */


.differentiation {
  padding: 100px 1.5rem;
  background: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.diff-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float 6s ease-in-out infinite;
}

.diff-card:nth-child(2) {
  animation-delay: 0.5s;
}

.diff-card:nth-child(3) {
  animation-delay: 1s;
}

.diff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(160, 32, 240, 0.3);
}

.diff-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.diff-card p {
  color: var(--text-light);
  line-height: 2;
  font-size: 1rem;
}


/* ========================================
   بخش About
======================================== */
.about {
  padding: 100px 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-dark);
}

.about h2 {
  color: var(--text-dark);
  background: none;
  -webkit-text-fill-color: var(--text-dark);
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.why-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ========================================
   آمار (Stats)
======================================== */
.stats {
  background: var(--white);
  padding: 4rem 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  animation: countUp 0.8s ease-out;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ========================================
   نحوه کار
======================================== */
.how-it-works {
  background: var(--bg-light);
  padding-top: 100px;
  padding-bottom: 100px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #A020F0 0%, #FF1493 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   بخش CTA نهایی
======================================== */
.final-cta {
  background: var(--bg-light);
  padding: 5rem 1.5rem;
  text-align: center;
}

.final-cta h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-buttons .btn {
  width: 280px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.cta-buttons .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-buttons .btn:active::after {
  width: 300px;
  height: 300px;
  transition: width 0s, height 0s;
}

.cta-buttons .btn-taraz {
  background-color: #ed464a;
  color: #ffffff;
}

.cta-buttons .btn-taraz:hover,
.cta-buttons .btn-taraz:focus {
  background-color: #d63d41;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 70, 74, 0.3);
}

.cta-buttons .btn-nobatiify {
  background-color: #175c5e;
  color: #ffffff;
}

.cta-buttons .btn-nobatiify:hover,
.cta-buttons .btn-nobatiify:focus {
  background-color: #134a4c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 92, 94, 0.3);
}

.cta-buttons .btn-purchase {
  background-color: #f09647;
  color: #ffffff;
}

.cta-buttons .btn-purchase:hover,
.cta-buttons .btn-purchase:focus {
  background-color: #e0863d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240, 150, 71, 0.3);
}

/* ========================================
   تماس با ما
======================================== */
.contact {
  background: linear-gradient(135deg, #A020F0 0%, #FF1493 100%);
  color: var(--white);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact .section-title h2,
.contact .section-title p {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-method {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  min-width: 250px;
  transition: var(--transition);
}

.contact-method:hover,
.contact-method:focus-within {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-method .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-method h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-method a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

/* ========================================
   فوتر
======================================== */
/* ===== Footer Styles ===== */
.footer {
  background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
  color: #e0e6ed;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

/* ستون لوگو */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  margin-bottom: 1.5rem;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(1.3);
}

.footer-description {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* تیترهای فوتر */
.footer-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  border-radius: 2px;
}

/* لینک‌های فوتر */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
  transform: translateX(-5px);
}

.footer-links a:hover::before,
.footer-links a:focus::before {
  width: 100%;
}

/* شبکه‌های اجتماعی */
.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.social-link:hover,
.social-link:focus {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.social-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

/* ایمیل */
.footer-email {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.footer-email::before {
  content: '✉';
  font-size: 1.2rem;
}

.footer-email:hover,
.footer-email:focus {
  color: #8b5cf6;
}

/* خط جداکننده */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
  margin: 2rem 0;
}

/* کپی‌رایت */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}


.enamad {
    transition: transform 0.3s ease;
}

.enamad:hover {
    transform: scale(1.05);
}

.enamad img {
    max-width: 100px;
    height: auto;
    display: block;
    cursor: pointer;
}

/* ========================================
   ریسپانسیو (موبایل)
======================================== */
@media (max-width: 768px) {
  section {
    margin-bottom: 60px;
  }

  .about {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about h2 {
    font-size: 1.75rem;
  }

  .logo img {
    width: 60px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    display: none;
  }

  .nav-menu.active {
    right: 0;
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-image {
    max-width: 300px;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .slider-container {
    height: 300px;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .products-grid,
  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    flex-direction: column;
  }

  .social-links {
    justify-content: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .final-cta {
    padding: 3rem 1.5rem;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .about .container {
    padding: 0 1.5rem;
  }

  .values-list {
    padding: 0;
  }

  .value-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
    margin: 0 0 1.5rem 0;
  }

  .value-content {
    text-align: center;
  }

  .value-content h3 {
    font-size: 1.25rem;
  }

  .value-content p {
    font-size: 0.95rem;
  }
  
    .diff-grid {
    grid-template-columns: 1fr;
  }

  .diff-card p {
    line-height: 2.2;
  }
}



@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    margin: 0 auto 1.5rem;
    display: block;
  }

  .footer-title::after {
    right: 50%;
    transform: translateX(50%);
  }

  .social-links {
    justify-content: center;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .footer-links a:hover {
    transform: translateX(0);
  }

  .enamad img {
      max-width: 85px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 2rem;
  }

  .footer-title {
    font-size: 1rem;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }
}
/* ========================================
   محصولات - حذف نقطه‌های bullet
======================================== */
.product-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

.product-features li svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* ========================================
   انیمیشن‌های AOS
======================================== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* ========================================
   دسترسی‌پذیری
======================================== */
.skip-to-content {
  position: absolute;
  top: -40px;
  right: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ========================================
   انیمیشن‌های سفارشی
======================================== */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes particleMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
