/* ==========================================================================
   Section 05 — solutions
   Values transcribed verbatim from docs/research/sections/05-solutions.html
   No hover states exist on the original.
   ========================================================================== */

.solutions {
  background: var(--bg);
}

/* max-width:1180px; margin:0 auto; padding:120px 32px 60px */
.solutions__inner {
  padding-top: 120px;
  padding-bottom: 60px;
}

/* --- head ---------------------------------------------------------------- */
.solutions__head {
  max-width: 680px;
}

/* .eyebrow supplies font-size/text-transform; the slice differs on the rest */
.solutions__eyebrow {
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--pink);
  margin: 0;
}

.solutions__title {
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 14px;
}

.solutions__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 560px;
  text-wrap: pretty;
}

/* --- grid ---------------------------------------------------------------- */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

/* --- solution card ------------------------------------------------------- */
.solutions__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg-tint);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  cursor: pointer;
}

.solutions__num {
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.solutions__num--pink   { color: var(--pink); }
.solutions__num--indigo { color: var(--indigo); }

.solutions__card-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 16px 0 8px;
}

.solutions__card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
  flex: 1;
  text-wrap: pretty;
}

.solutions__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pink);
  font-weight: 700;
  font-size: 14.5px;
}

.solutions__arrow {
  font-size: 16px;
}

/* --- dark CTA tile ------------------------------------------------------- */
.solutions__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--grad-trust);
  border-radius: var(--r-lg);
  padding: 34px 30px;
}

.solutions__cta-title {
  font-weight: 800;
  font-size: 21px;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.2;
}

.solutions__cta-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 18px;
}

.solutions__cta-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
}

/* --- responsive ---------------------------------------------------------- */
@media (max-width: 860px) {
  /* Verified on the original at 390px: 64px top AND bottom. */
  .solutions__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Verified on the original at 390px: the grid keeps its 52px top margin. */
  .solutions__grid {
    grid-template-columns: 1fr;
  }
}
