.solutions-main {
  min-height: calc(100vh - 210px);
  padding-top: 84px;
  background: #fff;
}

.solutions-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 40px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 8%, rgba(99, 218, 255, .28), transparent 27%),
    linear-gradient(135deg, #063f91 0%, #0769c3 58%, #1194d8 100%);
}

.solutions-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 72%);
}

.solutions-hero-inner {
  position: relative;
  z-index: 1;
}

.solutions-eyebrow {
  margin: 0 0 9px;
  color: #c4e4ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.solutions-hero h1 {
  max-width: none;
  margin: 0 0 11px;
  font-size: clamp(2.15rem, 1.55rem + 2vw, 3.15rem);
  white-space: nowrap;
}

.solutions-hero-lede {
  max-width: 920px;
  margin: 0;
  color: #d8eaff;
  font-size: 1.02rem;
  line-height: 1.5;
}

.solutions-hero-support {
  max-width: 920px;
  margin: 4px 0 0;
  color: #bcd9f4;
  font-size: .95rem;
  line-height: 1.45;
}

.solutions-catalog {
  padding: 70px 0 84px;
  background: #f4f8fe;
}

.solutions-catalog-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 32px;
}

.solutions-catalog-heading h2 {
  margin: 0;
}

.solutions-catalog-heading > p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
}

.solution-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 18px;
}

.solution-search {
  position: relative;
  display: block;
}

.solution-search::before {
  position: absolute;
  top: 50%;
  left: 19px;
  width: 12px;
  height: 12px;
  border: 2px solid #6b7e99;
  border-radius: 50%;
  content: "";
  transform: translateY(-60%);
}

.solution-search::after {
  position: absolute;
  top: 55%;
  left: 31px;
  width: 7px;
  height: 2px;
  content: "";
  background: #6b7e99;
  transform: rotate(45deg);
}

.solution-search input {
  width: 100%;
  min-height: 50px;
  padding: 13px 18px 13px 49px;
  color: var(--text);
  border: 1px solid #d4dfec;
  border-radius: 12px;
  outline: none;
  background: #fff;
}

.solution-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, .12);
}

.solution-clear {
  min-height: 50px;
  padding: 12px 18px;
  color: #35506f;
  border: 1px solid #d4dfec;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.solution-clear:hover,
.solution-clear:focus-visible {
  color: var(--blue);
  border-color: #9fbce0;
}

.solution-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scrollbar-width: thin;
}

.solution-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 13px;
  color: #3f5875;
  border: 1px solid #d4dfec;
  border-radius: 999px;
  background: #fff;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.solution-filter-button span {
  color: #8293a9;
  font-size: .68rem;
}

.solution-filter-button:hover,
.solution-filter-button:focus-visible {
  color: var(--blue);
  border-color: #91b7e5;
}

.solution-filter-button.is-active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 7px 18px rgba(22, 119, 255, .2);
}

.solution-filter-button.is-active span {
  color: #d8eaff;
}

.solution-results-bar {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 8px 0 18px;
  padding: 0 3px;
  color: #73839a;
  font-size: .78rem;
}

.solution-results-bar p {
  margin: 0;
}

.solution-results-bar p:first-child {
  color: #243c5b;
  font-weight: 800;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.solution-card {
  overflow: hidden;
  border: 1px solid #dce5f0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(32, 69, 115, .035);
}

.solution-card[hidden] {
  display: none;
}

.solution-card > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 148px;
  padding: 21px 22px;
  list-style: none;
  cursor: pointer;
}

.solution-card > summary::-webkit-details-marker {
  display: none;
}

.solution-card > summary:hover {
  background: #f9fbfe;
}

.solution-card > summary:focus-visible {
  outline: 3px solid rgba(22, 119, 255, .25);
  outline-offset: -3px;
}

.solution-card-heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.solution-category {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.solution-card-heading strong {
  overflow-wrap: anywhere;
  color: #142f52;
  font: 700 1.08rem/1.35 Manrope, sans-serif;
  letter-spacing: -.015em;
}

.solution-card-heading > span:last-child {
  margin-top: 8px;
  color: #637994;
  font-size: .82rem;
  line-height: 1.5;
}

.solution-card-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #edf4fd;
}

.solution-card-toggle::before,
.solution-card-toggle::after {
  position: absolute;
  top: 11px;
  left: 7px;
  width: 10px;
  height: 2px;
  content: "";
  background: #176ec9;
}

.solution-card-toggle::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.solution-card[open] {
  border-color: #b8cce4;
  box-shadow: 0 14px 34px rgba(32, 69, 115, .08);
}

.solution-card[open] > summary {
  border-bottom: 1px solid #e3eaf3;
  background: #f9fbfe;
}

.solution-card[open] .solution-card-toggle::after {
  transform: rotate(0);
}

.solution-card-body {
  display: grid;
  gap: 25px;
  padding: 27px 28px 31px;
}

.solution-card-label {
  margin: 0 0 8px;
  color: #1767bc;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.solution-challenge > p:not(.solution-card-label) {
  margin: 0;
  color: #405875;
  font-size: .9rem;
  line-height: 1.66;
}

.solution-delivery {
  padding: 21px 22px;
  border-radius: 13px;
  background: #eef5fd;
}

.solution-delivery .solution-partner-note {
  margin: 0 0 16px;
  padding: 13px 14px;
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  background: #fff;
  color: #405875;
  font-size: .82rem;
  line-height: 1.6;
}

.solution-partner-note strong {
  color: #173c63;
}

.solution-delivery ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding-left: 18px;
  color: #49627f;
  font-size: .8rem;
  line-height: 1.5;
}

.solution-delivery li::marker {
  color: var(--blue);
}

.solution-challenge .solution-example {
  margin-top: 16px !important;
  padding: 14px 15px;
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  background: #f2f7fd;
}

.solution-empty {
  padding: 55px 30px;
  border: 1px dashed #b8c9dd;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.solution-empty h3 {
  margin-bottom: 8px;
}

.solution-empty p {
  margin: 0;
  color: var(--muted);
}

.solutions-cta {
  padding: 68px 0;
  color: #fff;
  background: #08265f;
}

.solutions-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.solutions-cta .kicker {
  color: #75d2ff;
}

.solutions-cta h2 {
  margin: 0 0 13px;
}

.solutions-cta-inner > div > p:not(.kicker) {
  max-width: 760px;
  margin: 0;
  color: #bbd0e8;
}

.solutions-reference {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  font-weight: 700;
}

.solutions-reference span {
  margin-left: 8px;
}

.solutions-reference:hover {
  border-color: #fff;
}

.solutions-cta .button {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .solutions-main {
    padding-top: 84px;
  }

  .solutions-hero {
    padding: 38px 0 36px;
  }

  .solutions-hero h1 {
    white-space: normal;
  }

  .solutions-hero-inner,
  .solutions-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutions-catalog-heading {
    display: block;
  }

  .solutions-catalog-heading > p {
    margin-top: 16px;
  }

  .solutions-cta .button {
    width: max-content;
  }
}

@media (max-width: 600px) {
  .solutions-main {
    padding-top: 74px;
  }

  .solutions-hero {
    padding: 32px 0 30px;
  }

  .solutions-catalog {
    padding: 52px 0 62px;
  }

  .solution-controls {
    grid-template-columns: 1fr;
  }

  .solution-clear {
    width: 100%;
  }

  .solution-results-bar {
    display: block;
  }

  .solution-results-bar p + p {
    margin-top: 5px;
  }

  .solution-card > summary {
    min-height: 0;
    padding: 18px 16px;
  }

  .solution-card-body {
    padding: 23px 18px 26px;
  }

  .solution-delivery {
    padding: 19px;
  }

  .solution-delivery ul {
    grid-template-columns: 1fr;
  }

  .solutions-cta {
    padding: 54px 0;
  }

  .solutions-cta .button {
    width: 100%;
  }
}
