.solution-page {
  color: #18324f;
  background: #fff;
}

.solution-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 150px max(42px, calc((100vw - 1180px) / 2)) 72px;
  overflow: hidden;
  background: #0b1f3a center/cover no-repeat;
}

.solution-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 19, 38, .94), rgba(11, 31, 58, .72) 56%, rgba(11, 31, 58, .25)),
    linear-gradient(180deg, transparent 65%, rgba(5, 19, 38, .45));
}

.solution-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .16;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.solution-hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.solution-hero h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(40px, 4.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.solution-hero p:not(.eyebrow) {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.72;
}

.solution-hero .hero-actions {
  margin-top: 28px;
}

.solution-hero .button-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .08);
}

.solution-hero .button-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.solution-section {
  padding: 82px max(42px, calc((100vw - 1180px) / 2));
}

.solution-section.soft {
  background: #f2f6fa;
}

.solution-section.dark {
  color: #fff;
  background: #0b1f3a;
}

.solution-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.solution-heading.center {
  margin-inline: auto;
  text-align: center;
}

.solution-heading h2,
.solution-copy h2 {
  margin: 8px 0 14px;
  color: #18324f;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.solution-heading > p:last-child,
.solution-copy > p {
  margin: 0;
  color: #60758d;
  font-size: 16px;
  line-height: 1.75;
}

.solution-section.dark .solution-heading h2,
.solution-section.dark .solution-copy h2 {
  color: #fff;
}

.solution-section.dark .solution-heading > p:last-child,
.solution-section.dark .solution-copy > p {
  color: #b8c8da;
}

.solution-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid #d5e0eb;
}

.solution-metric {
  min-height: 146px;
  padding: 28px 24px;
  border-right: 1px solid #d5e0eb;
}

.solution-metric:last-child {
  border-right: 0;
}

.solution-metric strong {
  display: block;
  color: #2361ad;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.solution-metric span {
  display: block;
  margin-top: 12px;
  color: #5d7288;
  font-size: 13px;
  line-height: 1.5;
}

.solution-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 62px;
  align-items: center;
}

.solution-media {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 72% 24%, rgba(69, 177, 103, .18), transparent 28%),
    linear-gradient(145deg, #e9f1f8, #f9fbfd);
}

.solution-media img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(15, 45, 76, .16));
}

.solution-copy {
  width: 100%;
  max-width: none;
  padding-right: 0;
  color: #60758d;
  font-size: 16px;
  line-height: 1.8;
}

.solution-copy > p {
  max-width: none;
}

.solution-copy ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.solution-copy li {
  position: relative;
  padding-left: 24px;
}

.solution-copy li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: #45b167;
  box-shadow: 0 0 0 5px rgba(69, 177, 103, .12);
}

.solution-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #d9e4ef;
}

.solution-feature {
  min-height: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    ". description";
  column-gap: 14px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid #d9e4ef;
  border-radius: 0;
  background: transparent;
}

.solution-feature:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid #d9e4ef;
}

.solution-feature:nth-child(even) {
  padding-left: 28px;
}

.solution-feature span {
  grid-area: number;
  align-self: center;
  color: #45a962;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.solution-feature h3 {
  grid-area: title;
  margin: 0;
  color: #18324f;
  font-size: 20px;
  line-height: 1.35;
}

.solution-feature p {
  grid-area: description;
  margin: 5px 0 0;
  color: #60758d;
  font-size: 14px;
  line-height: 1.55;
}

.solution-factory-layout {
  display: grid;
  gap: 36px;
}

.solution-factory-layout .solution-copy {
  max-width: none;
}

.solution-factory-layout .solution-feature-grid {
  border-top-color: rgba(255, 255, 255, .14);
}

.solution-factory-layout .solution-feature {
  min-height: 0;
  border-bottom-color: rgba(255, 255, 255, .14);
  background: transparent;
}

.solution-factory-layout .solution-feature:nth-child(odd) {
  border-right-color: rgba(255, 255, 255, .14);
}

.solution-factory-layout .solution-feature h3 {
  color: #fff;
}

.solution-factory-layout .solution-feature p {
  color: #b8c8da;
}

.solution-engineering {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .14);
}

.solution-engineering article {
  min-height: 245px;
  padding: 30px;
  background: #0b1f3a;
}

.solution-engineering strong {
  color: #6bd789;
  font-size: 12px;
}

.solution-engineering h3 {
  margin: 48px 0 10px;
  color: #fff;
  font-size: 21px;
}

.solution-engineering p {
  margin: 0;
  color: #b8c8da;
  font-size: 14px;
  line-height: 1.65;
}

.solution-table-wrap {
  overflow-x: auto;
  border: 1px solid #d8e3ee;
  border-radius: 16px;
}

.solution-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.solution-table th,
.solution-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e1e9f1;
  text-align: left;
}

.solution-table th {
  width: 29%;
  color: #18324f;
  background: #edf4fa;
  font-size: 14px;
}

.solution-table td {
  color: #536b83;
  font-size: 14px;
  line-height: 1.55;
}

.solution-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-use {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 17px;
  background: #18324f center/cover no-repeat;
}

.solution-use::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgba(5, 19, 38, .92));
}

.solution-use div {
  position: relative;
  z-index: 1;
  padding: 25px;
}

.solution-use h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 20px;
}

.solution-use p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.55;
}

.solution-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-product {
  color: inherit;
}

.solution-product__image {
  height: 240px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #d8e4ef;
  border-radius: 15px;
  background: #fff;
}

.solution-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.solution-product:hover img {
  transform: scale(1.04);
}

.solution-product span {
  display: block;
  margin-top: 14px;
  color: #45a962;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-product h3 {
  margin: 7px 0 0;
  color: #18324f;
  font-size: 17px;
  line-height: 1.45;
}

.solution-faq {
  max-width: 920px;
  margin: 0 auto;
}

.solution-faq details {
  padding: 21px 0;
  border-bottom: 1px solid #d8e3ee;
}

.solution-faq summary {
  color: #18324f;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.solution-faq p {
  margin: 12px 0 0;
  color: #60758d;
  line-height: 1.7;
}

.solution-contact {
  background:
    linear-gradient(rgba(11, 31, 58, .9), rgba(11, 31, 58, .9)),
    url("../page-media/contact-background.webp") center/cover;
}

.solution-contact__inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: start;
}

.solution-contact h2 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: clamp(32px, 3vw, 48px);
}

.solution-contact p {
  color: #c4d1df;
  line-height: 1.7;
}

.solution-contact .custom-contact-form-panel {
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .97);
}

.solution-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-index-card {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 19px;
  color: #fff;
  background: #0b1f3a center/cover no-repeat;
}

.solution-index-card:first-child {
  grid-column: 1 / -1;
  min-height: 440px;
}

.solution-index-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 15%, rgba(5, 19, 38, .92));
}

.solution-index-card div {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: 30px;
}

.solution-index-card span {
  color: #83e39d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.solution-index-card h2 {
  margin: 9px 0;
  color: #fff;
  font-size: 30px;
}

.solution-index-card p {
  margin: 0;
  color: #c8d5e3;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .solution-engineering,
  .solution-use-grid,
  .solution-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-metric:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .solution-split,
  .solution-contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .solution-hero {
    min-height: 500px;
    padding: 125px 20px 54px;
  }

  .solution-section {
    padding: 62px 20px;
  }

  .solution-feature-grid,
  .solution-engineering,
  .solution-use-grid,
  .solution-product-grid,
  .solution-index-grid {
    grid-template-columns: 1fr;
  }

  .solution-feature:nth-child(odd),
  .solution-feature:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .solution-index-card:first-child {
    grid-column: auto;
    min-height: 390px;
  }

  .solution-metric {
    min-height: 125px;
  }

  .solution-media,
  .solution-media img {
    min-height: 300px;
    height: 300px;
  }
}
