.about-page {
  background-color: #f8f8fc;
}

.about-hero {
  background: linear-gradient(135deg, #f4f6ff 0%, #ffffff 70%);
  border-bottom: 1px solid rgba(103, 80, 249, 0.08);
}

.about-pill {
  background-color: rgba(103, 80, 249, 0.12);
  color: #6750f9;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.about-hero-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
}

.about-hero-card__badge {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(103, 80, 249, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 600;
}

.about-panel {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(103, 80, 249, 0.08);
  box-shadow: 0 15px 35px rgba(16, 24, 40, 0.05);
}

.about-panel p {
  font-size: 1rem;
  line-height: 1.6;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.about-highlight {
  background-color: #fff;
  border-radius: 18px;
  border: 1px solid rgba(103, 80, 249, 0.08);
  box-shadow: 0 20px 40px rgba(20, 24, 62, 0.04);
}

.about-highlight__icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background-color: rgba(103, 80, 249, 0.12);
  color: #6750f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about-cta {
  background: linear-gradient(120deg, #6750f9 0%, #4f7bf9 55%, #42b4ff 100%);
  border-radius: 28px 28px 0 0;
  margin-top: 3rem;
}

.about-cta .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.about-cta .btn-outline-light:hover {
  color: #6750f9 !important;
  background-color: #fff !important;
}

@media (max-width: 767px) {
  .about-panel,
  .about-highlight {
    border-radius: 16px;
  }

  .about-cta {
    border-radius: 0;
  }
}

