/* ===== ABOUT / WHY US SECTION ===== */
.about {
  background: var(--dark-bg);
  padding: 3.5rem 0;
}

.about__inner {
  display: grid;
  gap: 2rem;
}

.about__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
}

.about__title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.about__points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about__point {
  display: flex;
  gap: 1rem;
}

.about__point-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 0.875rem;
  margin-top: 2px;
}

.about__point-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.about__point-text {
  margin-top: 0.4rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--white-78);
  max-width: 36rem;
}

/* CTA card */
.about__cta-card {
  border-radius: 1rem;
  background: linear-gradient(135deg, #8f0f7a 0%, #ff157e 55%, #ff6382 100%);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(255,21,126,0.2);
}

.about__cta-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  max-width: 22rem;
}

.about__cta-card p {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
}

.btn-dark {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: var(--dark-bg);
  padding: 1rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: opacity 0.2s;
}

.btn-dark:hover {
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr 0.95fr;
    align-items: start;
  }
}
