body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 18px 6vw;
  background: #0a0a0a;
  border-bottom: 1.5px solid #1aff00;
}

.logo, .footer-logo {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.xmedia { color: #fff; }
.bd { color: #1aff00; font-size: 1.1rem; font-weight: 600; margin-left: 2px; }

nav .btn {
  margin-left: 18px;
  padding: 8px 22px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid #1aff00;
  background: transparent;
  color: #1aff00;
  transition: background 0.2s, color 0.2s;
}
nav .btn.signup {
  background: #1aff00;
  color: #0a0a0a;
}
nav .btn:hover, .btn.neon:hover {
  background: #fff;
  color: #0a0a0a;
}

.hero {
  text-align: center;
  padding: 70px 10vw 60px 10vw;
  background: #0a0a0a;
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.hero .xmedia { color: #fff; }
.hero .bd { color: #1aff00; }
.hero p {
  font-size: 1.2rem;
  color: #e0ffe0;
  margin-bottom: 30px;
}
.btn.neon {
  background: #1aff00;
  color: #0a0a0a;
  border: none;
  padding: 13px 38px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 0 12px #1aff00a0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn.neon:hover {
  background: #fff;
  color: #0a0a0a;
  box-shadow: 0 0 24px #1aff00;
}

.divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #1aff00 0%, #0a0a0a 100%);
  margin: 40px auto;
  border-radius: 2px;
}

.about {
  text-align: center;
  font-size: 1.1rem;
  color: #baffb8;
  padding: 18px 10vw 10px 10vw;
}

.services {
  padding: 30px 6vw;
  text-align: center;
}
.services h2 {
  color: #1aff00;
  font-size: 2rem;
  margin-bottom: 30px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 10px;
}
.service-card {
  background: #181818;
  border: 1.5px solid #1aff00;
  border-radius: 18px;
  padding: 32px 18px 22px 18px;
  box-shadow: 0 0 18px #1aff0030;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 28px #1aff0060;
}
.service-card i {
  font-size: 2.2rem;
  color: #1aff00;
  margin-bottom: 12px;
}
.service-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.service-card p {
  color: #baffb8;
  font-size: 1rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px 0 20px 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat .circle {
  width: 80px;
  height: 80px;
  background: #111;
  border: 3px solid #1aff00;
  border-radius: 50%;
  color: #1aff00;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  box-shadow: 0 0 18px #1aff0030;
  animation: popIn 1s;
}
@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0.2; }
  100% { transform: scale(1); opacity: 1; }
}
.stat .label {
  color: #fff;
  font-size: 1rem;
}

.best-partner {
  text-align: center;
  padding: 30px 10vw 20px 10vw;
}
.partner-logo {
  width: 90px;
  margin-bottom: 12px;
  filter: brightness(1.2) drop-shadow(0 0 8px #1aff00a0);
}
.best-partner p {
  color: #baffb8;
  font-size: 1.1rem;
  margin-top: 0;
}

.portfolio {
  padding: 30px 6vw;
  text-align: center;
}
.portfolio h2 {
  color: #1aff00;
  font-size: 2rem;
  margin-bottom: 30px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.portfolio-item {
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-item img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #1aff00;
  box-shadow: 0 0 12px #1aff0030;
  transition: box-shadow 0.2s, transform 0.2s;
}
.portfolio-item:hover {
  transform: translateY(-6px) scale(1.03);
}
.portfolio-item:hover img {
  box-shadow: 0 0 24px #1aff00;
}
.portfolio-item p {
  color: #baffb8;
  margin-top: 8px;
  font-size: 1rem;
}

.why-payment {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px 6vw;
}
.why-us {
  flex: 1 1 300px;
  min-width: 260px;
}
.why-us h2 {
  color: #1aff00;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.why-us ul {
  list-style: disc inside;
  color: #baffb8;
  font-size: 1.1rem;
  padding-left: 0;
}
.why-us ul li {
  margin-bottom: 10px;
}
.payment-system {
  flex: 1 1 300px;
  min-width: 260px;
  background: #181818;
  border: 1.5px solid #1aff00;
  border-radius: 18px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 0 18px #1aff0030;
  text-align: center;
}
.payment-system h3 {
  color: #1aff00;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.payment-logos img {
  height: 32px;
  background: #222;
  border-radius: 6px;
  padding: 4px 8px;
  transition: filter 0.2s, box-shadow 0.2s;
  filter: grayscale(0.2) brightness(1.2);
  box-shadow: 0 0 8px #1aff0030;
}
.payment-logos img:hover {
  filter: brightness(2) drop-shadow(0 0 8px #1aff00a0);
  box-shadow: 0 0 18px #1aff0060;
}
.payment-system p {
  color: #baffb8;
  font-size: 1rem;
  margin-top: 8px;
}

.trusted-partners {
  padding: 30px 6vw 20px 6vw;
  text-align: center;
}
.trusted-partners h2 {
  color: #1aff00;
  font-size: 2rem;
  margin-bottom: 10px;
}
.trusted-partners p {
  color: #baffb8;
  margin-bottom: 18px;
}
.partners-logos {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-logos img {
  background: #222;
  border-radius: 8px;
  padding: 6px 12px;
  transition: filter 0.2s, box-shadow 0.2s;
  filter: grayscale(0.2) brightness(1.2);
  box-shadow: 0 0 8px #1aff0030;
}
.partners-logos img:hover {
  filter: brightness(2) drop-shadow(0 0 8px #1aff00a0);
  box-shadow: 0 0 18px #1aff0060;
}

.testimonials {
  padding: 30px 6vw;
  text-align: center;
}
.testimonials h2 {
  color: #1aff00;
  font-size: 2rem;
  margin-bottom: 30px;
}
.testimonial-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #181818;
  border: 1.5px solid #1aff00;
  border-radius: 18px;
  padding: 22px 18px 18px 18px;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 0 18px #1aff0030;
  margin-bottom: 18px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 28px #1aff0060;
}
.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #1aff00;
  margin-bottom: 10px;
  object-fit: cover;
}
.testimonial-card p {
  color: #baffb8;
  font-size: 1rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.team {
  padding: 30px 6vw;
  text-align: center;
}
.team h2 {
  color: #1aff00;
  font-size: 2rem;
  margin-bottom: 30px;
}
.team-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.team-member {
  background: #181818;
  border: 1.5px solid #1aff00;
  border-radius: 18px;
  padding: 28px 18px 18px 18px;
  min-width: 180px;
  max-width: 220px;
  box-shadow: 0 0 18px #1aff0030;
  margin-bottom: 18px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 28px #1aff0060;
}
.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #1aff00;
  margin-bottom: 10px;
  object-fit: cover;
}
.team-member h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.team-member p {
  color: #baffb8;
  font-size: 1rem;
}

footer {
  background: #0a0a0a;
  padding: 30px 6vw 18px 6vw;
  text-align: center;
  border-top: 1.5px solid #1aff00;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-contact {
  color: #baffb8;
  margin-bottom: 10px;
}
.footer-social a {
  color: #1aff00;
  font-size: 1.3rem;
  margin: 0 8px;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff;
}
.footer-copy {
  color: #baffb8;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .service-grid, .portfolio-grid, .team-grid, .pricing-cards, .testimonial-grid {
    grid-template-columns: 1fr 1fr !important;
    flex-direction: column;
    gap: 18px;
  }
  .stats, .why-payment {
    gap: 18px;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  header, .footer-logo, .footer-contact, .footer-copy {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .hero {
    padding: 40px 4vw 30px 4vw;
  }
  .service-grid, .portfolio-grid, .team-grid, .testimonial-grid {
    grid-template-columns: 1fr !important;
    flex-direction: column;
    gap: 12px;
  }
  .stats, .why-payment {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
@media (max-width: 480px) {
  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
  nav .btn.login {
    width: 100%;
    margin: 0 0 5px 0;
    font-size: 16px;
    box-sizing: border-box;
  }
}