.problem {
  position: relative;
  padding: 100px 0;
  background-color: white;
  overflow: hidden;
}

.problem__bg-dots {
  position: absolute;
  top: 40px;
  right: 0;
  width: 288px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.problem__inner {
  position: relative;
  z-index: 1;
}

.problem__headline {
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 60px;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.problem__column {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: white;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-default);
}

.problem__column:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-teal);
}

.problem__column--pain {
  border-top: 3px solid var(--color-coral);
}

.problem__column--solution {
  border-top: 3px solid var(--color-teal);
}

.problem__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem__icon--pain {
  background: var(--coral-12);
  color: var(--color-coral);
}

.problem__icon--solution {
  background: var(--teal-12);
  color: var(--color-teal);
}

.problem__icon svg {
  width: 24px;
  height: 24px;
}

.problem__column-headline {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 20px;
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-gray);
}

.problem__list-bullet {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.problem__list-bullet--pain {
  color: var(--color-coral);
}

.problem__list-bullet--solution {
  color: var(--color-teal);
}

.problem__callout {
  text-align: center;
  margin-top: 48px;
  padding: 16px 28px;
  background: var(--coral-8);
  border: 1px solid var(--coral-20);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: #18395F;
}

@keyframes statPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.82; transform: scale(1.012); }
}

@media (prefers-reduced-motion: no-preference) {
  .stat-callout {
    animation: statPulse 4s ease-in-out infinite;
  }
}

.problem__callout-wrapper {
  text-align: center;
}

@media (max-width: 768px) {
  .problem__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem {
    padding: 60px 0;
  }

  .problem__column {
    padding: 28px;
  }
}
