* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vazirmatn", sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  line-height: 1.9;
}
html {
  background: #0f2027;
}

.container {
  padding: 20px;
  max-width: 700px;
  margin: auto;
}

/* کارت */
.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* تیتر */
h1 {
  font-size: 22px;
}

h2 {
  color: #00e5ff;
  margin-bottom: 10px;
}

h3 {
  color: #00e5ff;
  margin-bottom: 8px;
}

/* متن */
p {
  margin-bottom: 10px;
  color: #cfd8dc;
}

/* لیست */
ul {
  padding-right: 15px;
}

li {
  margin-bottom: 6px;
  font-size: 14px;
}
/* دکمه واتساپ حرفه‌ای */
.wa-fixed {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #00e5ff, #00bcd4);
  color: #00363a;

  padding: 14px 22px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: bold;

  text-decoration: none;

  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
  z-index: 999;
}

/* آیکون */
.wa-fixed i {
  font-size: 20px;
}

/* hover */
.wa-fixed:hover {
  transform: translateX(-50%) translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* افکت pulse (خیلی خفن 😎) */
.wa-fixed::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ================= MOBILE VERSION ================= */
@media (max-width: 600px) {

  /* کانتینر */
  .container {
    padding: 12px;
    max-width: 100%;
  }

  /* کارت‌ها */
  .card {
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .card:hover {
    transform: none; /* تو موبایل hover نداریم */
    box-shadow: none;
  }

  /* تیترها */
  h1 {
    font-size: 18px;
    line-height: 1.6;
  }

  h2 {
    font-size: 15px;
  }

  h3 {
    font-size: 14px;
  }

  /* متن */
  p {
    font-size: 13px;
    line-height: 1.8;
  }

  /* لیست */
  ul {
    padding-right: 12px;
  }

  li {
    font-size: 13px;
    line-height: 1.7;
  }

  /* فاصله بین سکشن‌ها */
  .card + .card {
    margin-top: 10px;
  }

  /* دکمه واتساپ (بهینه‌تر) */
  .wa-fixed {
    bottom: 15px;
    padding: 12px 16px;
    font-size: 13px;
    gap: 8px;
  }

  .wa-fixed i {
    font-size: 18px;
  }

  /* متن دکمه کوچیک‌تر */
  .wa-fixed span {
    font-size: 12px;
  }

}
.wa-fixed {
    padding: 12px 18px;
    font-size: 13px;
  }