/* ===== ABOUT US SECTION ===== */
.about-us-section {
  padding: 80px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 50px 20px;
  }
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.about-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 20px;
  background-color: #ede9fe;
  border: 1px solid #ddd6fe;
  font-size: 13px;
  font-weight: 600;
  color: #6d28d9;
}

.badge-icon {
  font-size: 14px;
}

.badge-text {
  /* inherits color and font-weight from parent */
}

.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 16px;
}

.about-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 1.8rem;
  }
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #ffffff;
  border: 1px solid #d8c4f8;
  border-radius: 1rem;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(124, 58, 237, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.2);
  border-color: #b794f6;
}

.feature-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-description {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #6b7280;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 36px 48px;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #d8c4f8;
  box-shadow: 0 2px 16px rgba(124, 58, 237, 0.12);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px 20px;
  }
  .stat-divider {
    display: none;
  }
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #e9d5ff;
  flex-shrink: 0;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid #a855f7;
}

.trust-text {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.6;
}