*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: ModamFaNumWeb;

  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

input,
textarea,
button,
select,
a,
img,
svg {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:focus,
a:hover,
a:active {
  outline: none;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
:root {
  --body-color: #000000;
  --color-one: #c447e7;
  --color-two: #8825cd;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 90vh;
  background-color: var(--body-color);
}
#progress-bar {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-one), var(--color-two));
  box-shadow: 0px 0px 40px 3px var(--color-one);
  width: 0%;
  transition: width 0.1s ease-out;
}
::-webkit-scrollbar {
  display: none;
}
.header-landing {
  max-width: 800px;
  position: fixed;
  width: 100%;
  height: 70px;
  justify-content: space-between;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.5px);
  -webkit-backdrop-filter: blur(14.5px);
}
.header-landing.fixed {
  position: fixed;
}

.header-img {
  width: 40px;
}
.hat {
  position: absolute;
  transform: rotate(15deg);
  top: 5px;
  right: 10px;
  width: 25px;
}
.header-btn {
  position: relative;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 100ms ease;
}
.header-btn:hover {
  transform: scale(1.05);
}
.btn-animation {
  position: absolute;
  z-index: -1;
  background-color: #fff;
  width: 115px;
  height: 40px;
  inset: 0;
  right: -1px;
  top: -4px;
  border-radius: 8px;
  animation: boxbigger 1.4s infinite;
}
@keyframes boxbigger {
  0% {
    opacity: 40%;
    transform: scale(1);
  }
  100% {
    opacity: 0%;
    transform: scale(1.4);
  }
}
.sec-1 {
  flex-direction: column;
  margin-top: 10rem;
  width: 100%;
  gap: 2rem;
}
.title-1 {
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: 3rem;
}
.title-1 span {
  background: linear-gradient(90deg, var(--color-one), var(--color-two));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: neonAnime 2s linear infinite;
}
@keyframes neonAnime {
  0% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 20px var(--color-one);
  }
}

.btn-1 {
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 100ms ease;
}

.btn-1:hover {
  transform: scale(1.05);
}
.p-1 {
  font-size: 1.1rem;
  text-align: center;
  line-height: 16px;
  color: #ffffff7b;
  margin-top: 5px;
}
@media screen and (min-width: 764px) {
  .title-1 {
    font-size: 5rem;
  }
  .btn-1 {
    padding: 1rem 1.5rem;
  }
  .p-1 {
    font-size: 1.3rem;
    line-height: 20px;
    margin-top: 10px;
  }
}
/* * ------------------------------ */
.scan-line {
  --h: 350px;
  --w: 1px;
  --speed: 1s;
  --dash: 15px;
  --gap: 10px;
  --color: 255, 255, 255;
  --alpha: 0.9;
  --x: 50%;
  --y: 375px;

  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  transform: translateX(-50%);
  pointer-events: none;
}

.scan-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(var(--color), var(--alpha)) 0 var(--dash),
    rgba(var(--color), 0) var(--dash) calc(var(--dash) + var(--gap))
  );
  animation: dashMove var(--speed) linear infinite;
}

@keyframes dashMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 calc(var(--dash) + var(--gap));
  }
}
@media screen and (min-width: 764px) {
  .scan-line {
    --y: 450px;
  }
}
/* * ------------------------------ */
.sec-2 {
  margin-top: 50px;
  width: 100%;
  height: 500px;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
}
.box-icon {
  width: 150px;
  height: 120px;
  flex-direction: column;
  border-radius: 15px;
  transition: all 200ms ease;
}
.cyrcle {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 1px solid #fff;
}
.box-text {
  color: #fff;
  margin-top: 8px;
  font-weight: 100;
  font-size: 1.2rem;
}
.box-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* -------------------------------- */
.sec-3 {
  z-index: -9;
  flex-direction: column;
  width: 80%;
  margin-top: 70px;
  gap: 4rem;
}
.box-img-price {
  display: flex;
  flex-direction: column;
  align-items: center; /* عکس وسط باشه */
  position: relative;
  width: fit-content; /* اندازه کانتینر دقیقا با محتوا هماهنگ میشه */
  transition: all 250ms ease;
}
.box-img-price img {
  width: 100%;
  display: block;
}
.box-price-btn {
  position: absolute;
  bottom: -20px;
  width: 120px;
  height: 40px;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 100ms ease;
}
.box-price-btn:hover {
  background-color: #f0baff;
}
.box-img-price:first-child:hover .box-price-btn {
  background-color: #ffbaba;
}
@media screen and (min-width: 764px) {
  .sec-3 {
    flex-direction: row;
    width: 80%;
  }
  .box-img-price img {
    width: 100%;
  }
  .box-img-price:hover {
    transform: scale(1.1);
  }
  .box-price-btn {
    width: 100px;
    height: 30px;
  }
}

/* * -------------------------- */
.sec-4 {
  margin-top: 90px;
  flex-direction: column;
  width: 100%;
  height: auto;
  color: #fff;
}
.text-4-1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.text-4-2 {
  font-size: 13px;
  margin-bottom: 15px;
  color: #ffffff95;
}
.sec-4 img {
  width: 20px;
}
.sec-4-btn {
  color: #fff;
  width: 210px;
  height: 45px;
  border-radius: 15px;
  background: transparent;
  border: 1px solid #fff;
  gap: 8px;
  cursor: pointer;
  transition: all 250ms ease;
}
.sec-4-btn:hover {
  background-color: #fff;
  color: #000;
}
/* * -------------------------- */
.sec-5 {
  margin-top: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
}
.sec-5-header {
  width: 360px;
  justify-content: flex-start;
}
.sec-5-title {
  color: #fff;
  font-weight: 900;
  font-size: 25px;
  margin-bottom: 15px;
}
.question-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}

.q-item {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  font-size: 13px;
  font-weight: 700;
  text-align: right;
  padding: 8px 0;
}

.chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

/* wrapper جواب برای انیمیشن */
.a-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.a-item {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.9;
  padding: 10px 0 0 0;
  width: 350px;
  text-align: justify;
}

.faq-item.open .a-wrap {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open .chev {
  transform: rotate(-135deg);
}
/* * -------------------------- */
.sec-6 {
  margin-top: 60px;
  width: 100%;
  height: auto;
  flex-direction: column;
}
.sec-6-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.sec-6-p {
  font-size: 13px;
  margin-bottom: 15px;
  color: #ffffff95;
}
.contact-icon {
  flex-direction: column;
  gap: 1.5rem;
}
.sec-6 img {
  width: 20px;
}
.sec-6-btn {
  color: #fff;
  width: 190px;
  height: 40px;
  border-radius: 15px;
  background: transparent;
  border: 1px solid #fff;
  gap: 8px;
  cursor: pointer;
  transition: all 250ms ease;
}
.sec-6-btn:hover {
  background-color: #fff;
  color: #000;
}
/* * -------------------------- */
footer {
  margin-top: 60px;
  width: 100%;
  height: auto;
  flex-direction: column;
  padding-bottom: 3rem;
  border-top: 1px solid #ffffff3f;
  padding: 2rem;
}
.box-footer {
  width: 100%;
  justify-content: flex-start;
}
footer img {
  width: 40px;
  margin-bottom: 10px;
}
footer a {
  color: #ffffff95;
  text-decoration: none;
  font-size: 15px;
  margin: 0 10px;
  transition: all 250ms ease;
}
footer a:hover {
  color: var(--color-one);
}
#tsparticles {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;

  background: transparent !important; /* 👈 مهم */
}
#tsparticles canvas {
  background: transparent !important; /* 👈 مهم */
}
