/* ==========================================================================
   KiteLine Lawn Care — Homeowner Problem Recognition
   Warm White ground, White rounded cards with a soft shadow.
   ========================================================================== */

.kl-problem {
  background: var(--kl-warm-white);
  padding: 128px 0 96px;
}

.kl-problem__inner {
  max-width: var(--kl-max-width);
  margin: 0 auto;
  padding: 0 var(--kl-gutter);
}

/* ---- Header: eyebrow + asymmetric two-column statement -------------------- */

.kl-problem__eyebrow {
  font-family: var(--kl-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kl-evergreen);
  margin: 0 0 24px;
}

.kl-problem__header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  column-gap: 64px;
  align-items: end;
  padding-bottom: 72px;
}

.kl-problem__headline {
  margin: 0;
  font-family: var(--kl-font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--kl-evergreen);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.kl-problem__statement {
  margin: 0;
  font-family: var(--kl-font-serif);
  font-style: italic;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: var(--kl-gold-dark);
  padding-bottom: 6px;
}

/* ---- Long-horizontal pain-point cards --------------------------------------- */

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

.kl-pain {
  display: grid;
  grid-template-columns: 96px 1fr 1.7fr;
  column-gap: 40px;
  align-items: center;
  padding: 44px 52px;
  background: var(--kl-white);
  border-radius: var(--kl-card-radius);
  box-shadow: var(--kl-card-shadow);
  transition: background-color 0.2s var(--kl-ease), box-shadow 0.2s var(--kl-ease), transform 0.2s var(--kl-ease);
}

.kl-pain:hover {
  background: var(--kl-warm-white);
  box-shadow: var(--kl-card-shadow-hover);
  transform: translateY(-2px);
}

.kl-pain__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-family: var(--kl-font-mono);
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: var(--kl-gold);
  background: var(--kl-evergreen);
  border-radius: 16px;
}

.kl-pain__headline {
  margin: 0;
  font-family: var(--kl-font-display);
  font-weight: 700;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.25;
  color: var(--kl-evergreen);
}

.kl-pain__copy {
  margin: 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--kl-evergreen-60);
}

/* ---- Bottom statement — bridges into the next section ---------------------- */

.kl-problem__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 88px;
  text-align: center;
}

.kl-problem__bottom-statement {
  margin: 0;
  max-width: 820px;
  font-family: var(--kl-font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--kl-evergreen);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.kl-problem__bridge {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--kl-gold-dark), rgba(217, 169, 29, 0));
}

/* ---- Responsive ------------------------------------------------------------- */

@media (max-width: 1023px) {
  .kl-problem {
    padding: 96px 0 72px;
  }

  .kl-problem__header {
    grid-template-columns: 1fr;
    row-gap: 20px;
    align-items: start;
    padding-bottom: 56px;
  }

  .kl-problem__statement {
    padding-bottom: 0;
  }

  .kl-pain {
    grid-template-columns: 56px 1fr;
    row-gap: 12px;
    padding: 28px 32px;
    align-items: start;
  }

  .kl-pain__number {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 12px;
  }

  .kl-pain__copy {
    grid-column: 2 / -1;
    max-width: 56ch;
  }
}

@media (max-width: 640px) {
  .kl-pain {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 28px 24px;
    border-radius: 16px;
  }

  .kl-pain__copy {
    grid-column: 1;
    max-width: none;
  }

  .kl-problem__bottom {
    padding-top: 64px;
  }
}
