:root {
  --bg-main: #070914;
  --bg-card: rgba(255,255,255,0.06);
  --border-glass: rgba(255,255,255,0.15);
  --primary: #7c7cff;
  --secondary: #8a2be2;
  --text-main: #ffffff;
  --text-muted: #b3b7d1;
}

* {
  box-sizing: border-box;
}
.navbar {
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.25);
}

.navbar-dark .navbar-toggler-icon {
  filter: drop-shadow(0 0 10px rgba(124,124,255,0.45));
}
body {
  margin: 0;
  font-family: 'Vazirmatn', sans-serif;
  background: radial-gradient(circle at top, #14163a, #070914);
  color: var(--text-main);
}

/* --------- Global --------- */
section {
  padding: 110px 0;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-main,
.btn-outline {
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
}

.btn-main {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--border-glass);
  color: #fff;
  text-decoration: none;
}

/* --------- Navbar --------- */
.navbar {
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}

/* --------- Hero --------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* ---------- Rocket ---------- */
.hero-rocket {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 110px;
  color: var(--primary);
  opacity: 0.5;
  pointer-events: none;
  filter: drop-shadow(0 0 35px rgba(124,124,255,0.6));
  z-index: 1;
  animation: orbitRocket 22s linear infinite;
}

.hero-rocket i {
  display: block;
  transform-origin: center;
  animation: rocketDirection 22s linear infinite;
}

/* مسیر حرکت */
@keyframes orbitRocket {
  0%   { transform: translate(-50%, -50%) translate(-320px, -140px); }
  25%  { transform: translate(-50%, -50%) translate(300px, -200px); }
  50%  { transform: translate(-50%, -50%) translate(340px, 160px); }
  75%  { transform: translate(-50%, -50%) translate(-280px, 220px); }
  100% { transform: translate(-50%, -50%) translate(-320px, -140px); }
}

@keyframes rocketDirection {
  0%   { transform: rotate(45deg) scaleX(1.15); }
  25%  { transform: rotate(135deg) scaleX(1.15); }
  50%  { transform: rotate(225deg) scaleX(1.15); }
  75%  { transform: rotate(315deg) scaleX(1.15); }
  100% { transform: rotate(405deg) scaleX(1.15); }
}

/* ---------- Stats ---------- */
#stats {
  padding: 120px 0;
}

.stat-card {
  padding: 40px 30px;
  height: 100%;
  border-radius: 26px;
  transition: all 0.35s ease;
  text-align: center;
}

.stat-card i {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 18px;
}

.stat-card h3 {
  font-size: 2.6rem;
  font-weight: 900;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Features ---------- */
.feature-card {
  padding: 35px;
  height: 100%;
  text-align: center;
}

.feature-card i {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary);
}

/* ---------- Pricing ---------- */
.pricing-card {
  padding: 45px 35px;
  text-align: center;
}

.pricing-card.featured {
  transform: scale(1.05);
}

.price {
  font-size: 46px;
  font-weight: 900;
}
.pricing-card .text-muted {
  color: #ffffff !important;
  opacity: 0.85;
  font-size: 0.95rem;
}
/* ---------- About ---------- */
#about p {
  text-align: justify;
}

/* ---------- Contact ---------- */
.contact-phone {
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-btn {
  margin-top: 60px;
  display: inline-block;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border-glass);
  padding: 30px 0;
  color: var(--text-muted);
  text-align: center;
}

/* ========================= */
/* ===== Responsive ======== */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-rocket {
    font-size: 90px;
  }

  .price {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: 140px 0 100px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-rocket {
    display: none; /* حذف موشک در موبایل */
  }

  .btn-main,
  .btn-outline {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .price {
    font-size: 36px;
  }

  .contact-phone {
    font-size: 1.1rem;
  }
}

.text-muted {
  color: #ffffff !important;
  opacity: 0.85;
  font-size: 0.95rem;
}







@media (max-width: 768px) { .glass { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: rgba(255,255,255,0.12); /* واضح‌تر */ } }