.about-section {
  padding: 100px 0;
  position: relative;
  background: var(--dark-bg);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  max-width: 600px;
}

.about-badge {
  display: inline-block;
  background: rgba(0, 217, 255, 0.2);
  color: var(--accent-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-title .gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: 'Orbitron', sans-serif;
}

.about-feature-text p {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-circle-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
}

.about-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.about-circle-1 {
  width: 200px;
  height: 200px;
  background: var(--gradient-1);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 20px 60px rgba(108, 99, 255, 0.4);
}

.about-circle-2 {
  width: 180px;
  height: 180px;
  background: var(--gradient-2);
  bottom: 50px;
  left: 0;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
}

.about-circle-3 {
  width: 180px;
  height: 180px;
  background: var(--gradient-3);
  bottom: 50px;
  right: 0;
  box-shadow: 0 20px 60px rgba(255, 101, 132, 0.4);
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    order: -1;
  }

  .about-circle-container {
    height: 400px;
  }

  .about-circle-1 {
    width: 160px;
    height: 160px;
    font-size: 40px;
  }

  .about-circle-2,
  .about-circle-3 {
    width: 140px;
    height: 140px;
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 36px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-circle-container {
    height: 300px;
  }

  .about-circle-1 {
    width: 140px;
    height: 140px;
    font-size: 36px;
  }

  .about-circle-2,
  .about-circle-3 {
    width: 120px;
    height: 120px;
    font-size: 32px;
    bottom: 30px;
  }
}
