/* Homepage solution finder — pixel-faithful rebuild from the 2026-07-14 target reference. */
html:has(body.home-page),
body.home-page {
  overflow-x: clip;
}

.home-page .solution-finder,
.home-page .solution-finder * {
  box-sizing: border-box;
}

.home-page .solution-finder {
  width: min(calc(100% - 142px), 1530px);
  margin-inline: auto;
  padding: 28px 0 18px;
  scroll-margin-top: 76px;
  font-family: var(--font-family, 'Cerebri Sans'), Inter, system-ui, sans-serif;
}

.home-page .solution-finder::before {
  border: 0;
  background:
    radial-gradient(ellipse 52% 38% at 4% 52%, rgba(229, 233, 255, .62), transparent 68%),
    radial-gradient(ellipse 48% 44% at 94% 57%, rgba(235, 232, 255, .56), transparent 67%),
    linear-gradient(180deg, #fff 0%, #fff 89%, #fbfbff 100%);
}

.home-page .solution-finder__intro {
  max-width: 860px;
  margin: 0 auto 27px;
  text-align: center;
}

.home-page .solution-finder__intro .section-eyebrow {
  margin: 0 0 18px;
  color: #2419ef;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-page .solution-finder__intro h2 {
  max-width: 700px;
  margin: 0 auto;
  color: #080a43;
  font-size: 48px;
  line-height: .95;
  font-weight: 300;
  letter-spacing: -0.052em;
  text-wrap: wrap;
}

.home-page .solution-finder__intro p:not(.section-eyebrow) {
  max-width: 720px;
  margin: 27px auto 0;
  color: #293779;
  font-size: 16.5px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.012em;
  text-wrap: balance;
}

.home-page .solution-finder__tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
  margin: 0 0 18px;
}

.home-page .solution-tab {
  position: relative;
  min-width: 0;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 18px 29px 20px;
  border: 1px solid #dfe2f2;
  border-radius: 14px;
  color: #090a43;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(25, 27, 104, .035);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-page .solution-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 16, 243, .32);
  box-shadow: 0 16px 34px rgba(25, 27, 104, .08);
}

.home-page .solution-tab.is-active {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 82% 84%, rgba(62, 45, 255, .72), transparent 44%),
    linear-gradient(138deg, #1616a6 0%, #2d12ff 100%);
  box-shadow: 0 15px 28px rgba(42, 23, 231, .22);
}

.home-page .solution-tab.is-active::after {
  content: '';
  position: absolute;
  left: 40%;
  right: 40%;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: #2510f3;
}

.home-page .solution-tab__top {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.home-page .solution-tab__index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  border-radius: 9px;
  color: #2510f3;
  background: #eeedff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.home-page .solution-tab.is-active .solution-tab__index {
  color: #fff;
  background: rgba(255, 255, 255, .19);
}

.home-page .solution-tab__top > svg {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  fill: none;
  stroke: #2419ef;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .solution-tab.is-active .solution-tab__top > svg {
  stroke: #fff;
}

.home-page .solution-tab__windows,
.home-page .solution-addon__windows {
  display: grid;
  grid-template-columns: repeat(2, 13px);
  grid-template-rows: repeat(2, 13px);
  gap: 2px;
}

.home-page .solution-tab__windows i,
.home-page .solution-addon__windows i {
  background: #2510f3;
}

.home-page .solution-tab__copy {
  min-width: 0;
  display: block;
  margin-top: 8px;
}

.home-page .solution-tab strong,
.home-page .solution-tab small {
  display: block;
}

.home-page .solution-tab strong {
  color: inherit;
  font-size: 16.2px;
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: -.025em;
}

.home-page .solution-tab small {
  margin-top: 8px;
  color: #33417e;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: -.01em;
}

.home-page .solution-tab.is-active small {
  color: rgba(255, 255, 255, .87);
}

.home-page .solution-panel[hidden] {
  display: none !important;
}

.home-page .solution-panel {
  position: relative;
  width: 100%;
  height: 373px;
  min-height: 373px;
  display: grid;
  grid-template-columns: minmax(470px, 590px) minmax(620px, 1fr);
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: 42px;
  padding: 34px 38px;
  border: 1px solid rgba(89, 82, 255, .27);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 68% 20%, rgba(45, 52, 255, .42), transparent 30%),
    radial-gradient(circle at 98% 45%, rgba(30, 23, 184, .38), transparent 38%),
    radial-gradient(circle at 41% 102%, rgba(37, 16, 243, .28), transparent 36%),
    linear-gradient(112deg, #081147 0%, #101467 43%, #15117f 72%, #080b50 100%);
  box-shadow: 0 25px 58px rgba(22, 19, 106, .14);
}

.home-page .solution-panel::before,
.home-page .solution-panel::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(122, 121, 255, .16);
  border-radius: 50%;
}

.home-page .solution-panel::before {
  width: 650px;
  height: 520px;
  left: 210px;
  bottom: -430px;
  transform: rotate(25deg);
}

.home-page .solution-panel::after {
  width: 690px;
  height: 390px;
  right: -290px;
  top: 22px;
  transform: rotate(18deg);
}

.home-page .solution-panel__copy,
.home-page .solution-panel__route {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-page .solution-panel__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-page .solution-panel__kicker {
  margin: 0 0 12px;
  color: #71b7ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .135em;
  text-transform: uppercase;
}

.home-page .solution-panel h3 {
  max-width: 525px;
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.054em;
  text-wrap: balance;
}

.home-page .solution-panel__copy > p:not(.solution-panel__kicker) {
  max-width: 525px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 15.6px;
  line-height: 1.39;
  font-weight: 500;
  letter-spacing: -.008em;
}

.home-page .solution-panel__copy ul,
.home-page .solution-panel__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.home-page .solution-panel__copy li,
.home-page .solution-panel__benefits li {
  min-height: 33px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .075);
  font-size: 11.2px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.home-page .solution-panel__benefits li > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .solution-panel__flag {
  width: 17px;
  height: 13px;
  flex: 0 0 17px;
  border-radius: 2px;
  background: linear-gradient(90deg, #111 0 33.33%, #f7d313 33.33% 66.66%, #ed2839 66.66%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}

.home-page .solution-panel__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: auto;
}

.home-page .solution-panel__actions .btn--light {
  min-width: 204px;
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border-radius: 8px;
  color: #2510f3;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
  font-size: 13.2px;
  font-weight: 900;
}

.home-page .solution-panel__actions .btn--light svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .solution-panel__diagnostic {
  color: #fff;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  white-space: nowrap;
}

.home-page .solution-panel__route {
  display: block;
  grid-template-columns: none;
  align-self: center;
  width: 100%;
  max-width: 760px;
  padding-top: 0;
  transform: translateY(24px);
}

.home-page .solution-route__primary {
  display: grid;
  grid-template-columns: minmax(132px, 1fr) 44px minmax(132px, 1fr) 44px minmax(132px, 1fr) 44px minmax(132px, 1fr);
  align-items: center;
}

.home-page .solution-node {
  min-width: 0;
  height: 132px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 10px 14px;
  border: 1px solid rgba(180, 187, 255, .45);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(150deg, rgba(77, 81, 188, .42), rgba(52, 45, 155, .3));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  text-align: center;
}

.home-page .solution-node.is-start {
  border-color: #6cb8ff;
  box-shadow: 0 0 22px rgba(60, 124, 255, .42), inset 0 0 0 1px rgba(108, 184, 255, .18);
}

.home-page .solution-node small {
  color: #d8d8ff;
  font-size: 9.5px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .145em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .solution-node > svg {
  width: 28px;
  height: 28px;
  margin-top: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .solution-node strong {
  max-width: 100%;
  margin-top: 8px;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .solution-route-arrow {
  color: #fff;
  font-size: 29px;
  line-height: 1;
  font-weight: 300;
  text-align: center;
}

.home-page .solution-route__connectors {
  width: 100%;
  height: 52px;
  display: block;
  overflow: visible;
}

.home-page .solution-route__connectors path {
  fill: none;
  stroke: rgba(217, 217, 255, .9);
  stroke-width: 1.15;
  stroke-dasharray: 4 5;
}

.home-page .solution-route__secondary {
  display: grid;
  grid-template-columns: repeat(2, 218px);
  justify-content: center;
  gap: 24px;
}

.home-page .solution-addon {
  min-width: 0;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  border: 1px solid rgba(174, 181, 255, .42);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(150deg, rgba(79, 79, 180, .42), rgba(65, 53, 160, .28));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.home-page .solution-addon__windows {
  grid-template-columns: repeat(2, 13px);
  grid-template-rows: repeat(2, 13px);
  flex: 0 0 auto;
}

.home-page .solution-addon__windows i:nth-child(1) { background: #f25022; }
.home-page .solution-addon__windows i:nth-child(2) { background: #7fba00; }
.home-page .solution-addon__windows i:nth-child(3) { background: #00a4ef; }
.home-page .solution-addon__windows i:nth-child(4) { background: #ffb900; }

.home-page .solution-addon__neoo {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: 0 0 33px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(140deg, #b725ff, #6a15db);
  box-shadow: 0 7px 14px rgba(128, 30, 225, .3);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}

.home-page .solution-addon > span:last-child {
  min-width: 0;
}

.home-page .solution-addon strong,
.home-page .solution-addon small {
  display: block;
  color: #fff;
}

.home-page .solution-addon strong {
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.home-page .solution-addon small {
  margin-top: 6px;
  font-size: 9.8px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.home-page .solution-panel__route--compact {
  padding-top: 0;
}

.home-page .solution-panel__route--compact .solution-node {
  height: 142px;
  min-height: 142px;
}

.home-page .solution-panel__route--compact .solution-node strong {
  white-space: normal;
}

.home-page .solution-finder__help {
  width: 100%;
  min-height: 89px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 273px 214px;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 12px 35px 12px 30px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 66% 45%, rgba(76, 57, 255, .12), transparent 24%),
    linear-gradient(105deg, #f7f6ff 0%, #f0efff 58%, #f8f7ff 100%);
}

.home-page .solution-help__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #ececfa;
  border-radius: 50%;
  color: #2510f3;
  background: #fff;
  box-shadow: 0 10px 22px rgba(38, 27, 160, .13);
}

.home-page .solution-help__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .solution-finder__help h3 {
  margin: 0;
  color: #080a43;
  font-size: 17.8px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.025em;
}

.home-page .solution-finder__help p {
  margin: 7px 0 0;
  color: #253273;
  font-size: 12.8px;
  line-height: 1.25;
  font-weight: 500;
}

.home-page .solution-help__primary,
.home-page .solution-help__secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.home-page .solution-help__primary {
  padding: 0 24px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #2c1aff, #2b12e8);
  box-shadow: 0 12px 24px rgba(48, 24, 239, .26);
  font-size: 14px;
}

.home-page .solution-help__primary svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .solution-help__secondary {
  justify-content: flex-end;
  padding-inline: 8px;
  color: #080a43;
  font-size: 12.5px;
}

.home-page .solution-help__secondary > span:last-child {
  margin-left: 13px;
  color: #080a43;
  font-size: 22px;
  font-weight: 400;
}

.home-page .solution-tab:focus-visible,
.home-page .solution-panel a:focus-visible,
.home-page .solution-finder__help a:focus-visible {
  outline: 3px solid rgba(68, 50, 255, .35);
  outline-offset: 3px;
}

@media (min-width: 1501px) {
  .home-page .solution-tab {
    height: 185px;
  }

  html[lang="nl-BE"] .home-page .solution-tab strong {
    font-size: 14.5px;
    line-height: 1.1;
  }

  html[lang="nl-BE"] .home-page .solution-tab small {
    margin-top: 7px;
    font-size: 11.3px;
    line-height: 1.34;
  }
}

@media (max-width: 1500px) {
  .home-page .solution-finder {
    width: min(calc(100% - 48px), 1338px);
  }

  .home-page .solution-finder__intro h2 {
    font-size: 48px;
  }

  .home-page .solution-tab {
    height: 175px;
    min-height: 175px;
    padding: 15px 18px;
  }

  .home-page .solution-tab__top {
    min-height: 36px;
  }

  .home-page .solution-tab__index {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .home-page .solution-tab__top > svg {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .home-page .solution-tab strong {
    font-size: 14px;
    line-height: 1.08;
  }

  .home-page .solution-tab small {
    margin-top: 7px;
    font-size: 10.8px;
    line-height: 1.34;
  }

  .home-page .solution-panel {
    grid-template-columns: minmax(430px, 540px) minmax(560px, 1fr);
    gap: 28px;
    padding-inline: 30px;
  }

  .home-page .solution-panel h3 {
    font-size: 35px;
  }

  .home-page .solution-panel__copy > p:not(.solution-panel__kicker) {
    font-size: 14.5px;
  }

  .home-page .solution-panel__copy li,
  .home-page .solution-panel__benefits li {
    padding-inline: 10px;
    font-size: 10.5px;
  }

  .home-page .solution-panel__actions {
    gap: 22px;
  }

  .home-page .solution-route__primary {
    grid-template-columns: minmax(118px, 1fr) 30px minmax(118px, 1fr) 30px minmax(118px, 1fr) 30px minmax(118px, 1fr);
  }

  .home-page .solution-node strong {
    font-size: 16px;
  }

  .home-page .solution-finder__help {
    grid-template-columns: 68px minmax(0, 1fr) 248px 185px;
    padding-inline: 24px;
  }
}

@media (max-width: 1180px) {
  .home-page .solution-finder {
    width: min(calc(100% - 40px), 980px);
    padding-block: 58px 42px;
  }

  .home-page .solution-finder__tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .solution-tab {
    height: auto;
    min-height: 150px;
  }

  .home-page .solution-panel {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 38px;
  }

  .home-page .solution-panel h3,
  .home-page .solution-panel__copy > p:not(.solution-panel__kicker) {
    max-width: 650px;
  }

  .home-page .solution-panel__actions {
    margin-top: 24px;
  }

  .home-page .solution-panel__route {
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
    padding-top: 0;
    transform: none;
  }

  .home-page .solution-finder__help {
    grid-template-columns: 68px minmax(0, 1fr) 250px;
  }

  .home-page .solution-help__secondary {
    grid-column: 2 / -1;
    justify-self: end;
    min-height: 32px;
  }
}

@media (max-width: 760px) {
  .home-page .solution-finder {
    width: min(calc(100% - 28px), 560px);
    padding: 48px 0 38px;
  }

  .home-page .solution-finder__intro {
    margin-bottom: 24px;
  }

  .home-page .solution-finder__intro .section-eyebrow {
    font-size: 10px;
  }

  .home-page .solution-finder__intro h2 {
    max-width: 100%;
    font-size: clamp(36px, 10.6vw, 44px);
    line-height: .98;
  }

  .home-page .solution-finder__intro p:not(.section-eyebrow) {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.48;
  }

  .home-page .solution-finder__tabs {
    width: calc(100% + 14px);
    display: flex;
    gap: 10px;
    margin-right: -14px;
    padding: 0 14px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-page .solution-finder__tabs::-webkit-scrollbar {
    display: none;
  }

  .home-page .solution-tab {
    width: min(78vw, 278px);
    min-width: min(78vw, 278px);
    min-height: 148px;
    flex: 0 0 min(78vw, 278px);
    padding: 18px 20px;
    scroll-snap-align: start;
  }

  .home-page .solution-tab.is-active::after {
    bottom: -8px;
  }

  .home-page .solution-tab__copy {
    margin-top: 8px;
  }

  .home-page .solution-tab strong {
    font-size: 15px;
  }

  .home-page .solution-tab small {
    margin-top: 7px;
    font-size: 12px;
  }

  .home-page .solution-panel {
    gap: 34px;
    padding: 28px 20px;
    border-radius: 20px;
  }

  .home-page .solution-panel__kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .home-page .solution-panel h3 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.02;
  }

  .home-page .solution-panel__copy > p:not(.solution-panel__kicker) {
    max-width: 100%;
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .home-page .solution-panel__copy ul,
  .home-page .solution-panel__benefits {
    gap: 7px;
    margin-top: 20px;
  }

  .home-page .solution-panel__copy li,
  .home-page .solution-panel__benefits li {
    min-height: 32px;
    font-size: 10.5px;
    white-space: normal;
  }

  .home-page .solution-panel__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-top: 24px;
  }

  .home-page .solution-panel__actions .btn--light {
    width: 100%;
    min-width: 0;
  }

  .home-page .solution-panel__diagnostic {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .home-page .solution-route__primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-page .solution-route-arrow,
  .home-page .solution-route__connectors {
    display: none;
  }

  .home-page .solution-node,
  .home-page .solution-panel__route--compact .solution-node {
    height: 112px;
    min-height: 112px;
    padding: 14px 8px;
  }

  .home-page .solution-node small {
    font-size: 8px;
  }

  .home-page .solution-node > svg {
    width: 24px;
    height: 24px;
    margin-top: 9px;
  }

  .home-page .solution-node strong {
    font-size: 15px;
  }

  .home-page .solution-route__secondary {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .home-page .solution-addon {
    height: 70px;
  }

  .home-page .solution-finder__help {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 15px;
    margin-top: 14px;
    padding: 20px;
    border-radius: 20px;
  }

  .home-page .solution-help__icon {
    width: 54px;
    height: 54px;
  }

  .home-page .solution-help__icon svg {
    width: 30px;
    height: 30px;
  }

  .home-page .solution-finder__help h3 {
    font-size: 17px;
  }

  .home-page .solution-finder__help p {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.35;
  }

  .home-page .solution-help__primary,
  .home-page .solution-help__secondary {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-page .solution-help__secondary {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .solution-tab {
    transition: none;
  }
}
