.about-section {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.about-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(51, 12, 179, 0.05) 2px,
    transparent 2px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.about-header .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 3rem;
  text-align: justify;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(51, 12, 179, 0.1);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(51, 12, 179, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon {
  width: 28px;
  height: 28px;
  filter: invert(14%) sepia(85%) saturate(4529%) hue-rotate(253deg)
    brightness(81%) contrast(100%);
}

.feature-text h4 {
  color: #1f2937;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Visual Part */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-logo {
  width: 180px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.circle-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(51, 12, 179, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.dot-pattern {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(
    rgba(51, 12, 179, 0.2) 2px,
    transparent 2px
  );
  background-size: 15px 15px;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content .section-title {
    font-size: 2.2rem;
  }

  .visual-wrapper {
    width: 280px;
    height: 280px;
  }

  .floating-logo {
    width: 140px;
  }
}
