.solutions-hero {
  background:
    linear-gradient(90deg, rgba(7, 27, 43, 0.92), rgba(7, 27, 43, 0.38)),
    url("../assets/hero-generators.jpg") center / cover no-repeat;
}

.solution-index {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px clamp(18px, 6vw, 86px);
  color: #fff;
  background: #12633f;
  white-space: nowrap;
}

.solution-index a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.solution-index a:hover {
  color: #18231f;
  background: #f7c948;
}

.solution-grid {
  display: grid;
  gap: 14px;
}

.solution-card {
  scroll-margin-top: 150px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid #dfe6df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 32, 26, 0.06);
}

.solution-number {
  color: #b8c5bf;
  font-size: 24px;
  font-weight: 900;
}

.solution-card > div:last-child {
  display: grid;
  gap: 8px;
}

.solution-label {
  color: #12633f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card h3,
.solution-card p,
.solution-card strong {
  margin: 0;
}

.solution-card h3 {
  font-size: 21px;
}

.solution-card p {
  color: #5f6c68;
}

.solution-card strong {
  color: #33433d;
  font-size: 13px;
}

.solution-card a {
  width: max-content;
  margin-top: 4px;
  color: #12633f;
  font-weight: 900;
}

.solution-process {
  padding: 50px clamp(18px, 6vw, 86px);
  background: #eef3ef;
}

.solution-request {
  display: grid;
  align-items: center;
  gap: 22px;
  padding: 40px clamp(18px, 6vw, 86px);
  color: #fff;
  background: #0a2f4f;
}

.solution-request h2,
.solution-request p {
  margin: 0;
}

.solution-request h2 {
  margin-top: 5px;
  font-size: clamp(30px, 4.5vw, 48px);
}

.solution-request p:not(.eyebrow) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.solution-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 820px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-request {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 640px) {
  .solution-card {
    grid-template-columns: 1fr;
  }

  .solution-request-actions .btn {
    width: 100%;
  }
}
