/* -- PROBLEM -- */
.problem {
  position: relative;
  z-index: 1;
  background: var(--ink);
  padding: 7rem 5vw;
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 100%,
    rgba(49, 151, 149, 0.12),
    transparent
  );
  pointer-events: none;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.section-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.section-eyebrow-light::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.problem-headline {
  font-family: "Processity", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 3rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.problem-callout {
  font-family: "Processity", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  max-width: 56ch;
}

.section-text-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.section-text-link:hover {
  color: var(--teal-400);
}

