#about-section {
  min-height: 100vh;
  padding: 120px 8%;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 245, 255, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(139, 92, 246, 0.18),
      transparent 35%
    ),
    #050816;
}

.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  color: #00f5ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-title {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
}

.about-desc {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.about-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 245, 255, 0.12);
}

.about-card i {
  margin-bottom: 22px;
  color: #00f5ff;
  font-size: 34px;
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
}

.about-card p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
