/* ── Problem/Solution section ─────────────────────────── */

.section--problem {
  /* Override base .section to go full-bleed for dark background */
  max-width: none;
  background: var(--dark);
  color: var(--warm-cream);
  position: relative;
  overflow: hidden;
}

/* Grain texture overlay — CSS noise, no image file */
.section--problem::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

/* Content wrapper — constrains width inside the full-bleed section */
.problem__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ───────────────────────────────────────────── */

.problem__header {
  margin-bottom: 64px;
}

.problem__headline {
  font-family: var(--font-headline);
  font-size: 2.75rem;
  line-height: 1.1;
  color: var(--warm-cream);
  margin-bottom: 16px;
}

.problem__subhead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--warm-cream);
  opacity: 0.7;
  max-width: 600px;
}

/* ── Two-column grid ──────────────────────────────────── */

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Pain points (left column) ────────────────────────── */

.problem__pain {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pain-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pain-point__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 243, 238, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-top: 2px;
}

.pain-point__text h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-cream);
  margin-bottom: 6px;
}

.pain-point__text p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--warm-cream);
  opacity: 0.65;
}

/* ── Solution (right column) ──────────────────────────── */

.problem__solution {
  background: rgba(245, 243, 238, 0.04);
  border: 1px solid rgba(245, 243, 238, 0.08);
  border-radius: 16px;
  padding: 40px;
}

.problem__solution-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wheat-gold);
  margin-bottom: 20px;
}

.problem__solution-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-cream);
  opacity: 0.85;
}

.problem__solution-body strong {
  font-weight: 600;
  color: var(--warm-cream);
  opacity: 1;
}

/* ── Mobile ───────────────────────────────────────────── */

@media (max-width: 768px) {
  .problem__headline {
    font-size: 2rem;
  }

  .problem__header {
    margin-bottom: 40px;
  }

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

  .problem__solution {
    padding: 28px;
  }
}
