html,
body {
  width: 100%;
  overflow-x: hidden;
}

.icons-about-section {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 60% 40%, rgba(91, 36, 165, 0.18), transparent 35%),
    linear-gradient(180deg, #050008 0%, #07000d 45%, #030008 100%);
  padding: 40px 8%;
  display: flex;
  align-items: center;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  color: #ffffff;
  margin-top: -50px;
}

.icons-about-container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 120px;
}

.icons-about-content h2 {
  font-size: 57px;
  line-height: 1.01;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.icons-about-content h2 span {
  background: linear-gradient(90deg, #8b27ff, #1f7cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icons-about-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #d8d6ff;
    margin-bottom: 20px;
    max-width: 680px;
}

.icons-about-content strong {
  color: #ffffff;
  font-weight: 600;
}

.quote-box {
  border-left: 1px solid rgba(137, 47, 255, 0.7);
  padding-left: 18px;
  margin: 22px 0 22px;
}

.quote-box p {
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 11px;
}

.icons-about-content h3 {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  margin: 24px 0 26px;
  letter-spacing: 0.1px;
}

.icons-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  max-width: 465px;
}

.stat-card {
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card h4 {
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  margin: 0 0 7px;
  color: #8d28ff;
}

.stat-card p {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.icons-about-image {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.icons-about-image img {
  width: 100%;
  max-width: 582px;
  height: 527px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow:
    0 0 45px rgba(91, 36, 165, 0.35),
    0 0 80px rgba(11, 170, 255, 0.08);
}

/* Responsive */
@media (max-width: 991px) {
  .icons-about-section {
    padding: 70px 6%;
  }

  .icons-about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .icons-about-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
  }

  .icons-about-image {
    justify-content: center;
  }

  .icons-about-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .icons-about-content h2 {
    font-size: 32px;
  }

  .icons-about-content p {
    font-size: 14px;
  }

  .icons-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    height: 72px;
  }
}