
body {
  padding-top: 80px;
  font-family: 'Inter', sans-serif;
}
.hero {
  padding: 120px 0 80px;
  background: var(--Grad2, radial-gradient(828.48% 141.42% at 0 0, #eff7ff 0, #d3ecfd 31.5%, #c9e3ff 66.67%, #ddecff 100%));
  opacity: .8;
}
.stats {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 72px);
  max-width: 1004px;
  height: 250px;
  background: var(
    --Grad2,
    radial-gradient(
      828.48% 141.42% at 0 0,
      #eff7ff 0%,
      #d3ecfd 31.5%,
      #c9e3ff 66.67%,
      #ddecff 100%
    )
  );
  border-radius: 1004px;
  filter: blur(50px);
  opacity: 0.6;
  z-index: -1;
}



/* Section container */
.payment-box {
  background: radial-gradient(
    100% 822.42% at 0 0,
    #f0fcfe 0%,
    #d8f9fd 29.49%,
    #ccf6fe 64.21%,
    #ddf1ec 100%
  );
  border-radius: 16px;
  min-height: 410px;
  overflow: hidden;
}

/* Marquee container */
.marquee-wrapper {
  height: 300px;
  overflow: hidden;
  position: relative;
}

/* Marquee animation */
.marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scrollUp 10s linear infinite;
}

.marquee img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.feature-card {
  background-color: var(--ultra-light-grey, #f1f3fc);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.fast-checkout-card {
  background-color: var(--fiola-color, #cde7ff);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.fast-checkout-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}


.secure-payments-card {
  background: var(--fiola-color, #6c5bd9);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.secure-payments-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(108, 91, 217, 0.35);
}

.contact-telegram {
  background-color: var(--fiola-color, #6c5bd9);
  color: #fff;
  transition: all 0.25s ease;
}

.contact-telegram:hover {
  background-color: #5a4bcc;
  color: #fff;
}

.contact-email {
  background-color: #f1f3fc;
  color: #333;
  border: 1px solid #d9ddf2;
  transition: all 0.25s ease;
}

.contact-email:hover {
  background-color: #e7eaf8;
  color: #000;
}


.svg-wrapper {
  width: 100%;
  max-width: 900px;   /* controls max size on desktop */
  margin: 0 auto;
}

.responsive-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .svg-wrapper {
    max-width: 100%;
  }
}

.alert-icon {
  color: inherit;
  line-height: 1;
}
.alert-message {
  flex: 1;
}




/* Animation */
@keyframes scrollUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Delay for natural movement */
.delay-1 {
  animation-delay: 2s;
}
.delay-2 {
  animation-delay: 4s;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .marquee-wrapper {
    height: 220px;
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .stats::before {
    height: 300px;
    filter: blur(60px);
  }
}


