.solution-page {
  background: #fff;
  color: #151515;
  font-family: var(--site-font-body, "Roboto", "Poppins", "Helvetica Neue", Arial, sans-serif);
}

.solution-page *,
.solution-page *::before,
.solution-page *::after {
  box-sizing: border-box;
}

.solution-page .container {
  width: min(85%, 1920px);
  margin-right: auto;
  margin-left: auto;
}

.solution-tabs {
  border-bottom: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.06);
}

.solution-tabs .container {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 5vw, 88px);
  min-height: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}

.solution-tabs .container::-webkit-scrollbar {
  display: none;
}

.solution-tabs__link {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #181818;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.22s ease;
}

.solution-tabs__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #ef4b00;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.solution-tabs__link:hover,
.solution-tabs__link:focus-visible,
.solution-tabs__link.is-active {
  color: #ef4b00;
}

.solution-tabs__link:hover::after,
.solution-tabs__link:focus-visible::after,
.solution-tabs__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.solution-tabs--pills {
  padding: 18px 0;
  border-bottom: 0;
  box-shadow: none;
}

.solution-tabs--pills .container {
  gap: 14px;
  min-height: auto;
}

.solution-tabs--pills .solution-tabs__link {
  justify-content: center;
  min-width: 168px;
  min-height: 36px;
  border: 1px solid #1f1f1f;
  border-radius: 999px;
  color: #121212;
  font-size: 12px;
}

.solution-tabs--pills .solution-tabs__link::after {
  display: none;
}

.solution-tabs--pills .solution-tabs__link:hover,
.solution-tabs--pills .solution-tabs__link:focus-visible,
.solution-tabs--pills .solution-tabs__link.is-active {
  border-color: #ef4b00;
  background: #ef4b00;
  color: #fff;
}

.solution-section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.solution-section-heading h2 {
  position: relative;
  display: inline-flex;
  margin: 0;
  padding-bottom: 14px;
  color: #111;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-section-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: #ef4b00;
  transform: translateX(-50%);
}

.solution-oem-section,
.solution-material-section {
  padding: clamp(42px, 5vw, 76px) 0;
  background: #fff;
}

.solution-oem__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.solution-oem__intro,
.solution-oem__visual {
  min-width: 0;
}

.solution-oem__intro h3,
.solution-oem__visual h3 {
  margin: 0 0 16px;
  color: #111;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
  font-weight: 900;
}

.solution-oem__intro p {
  margin: 0 0 26px;
  color: #333a40;
  font-size: 15px;
  line-height: 1.75;
}

.solution-oem__intro h4 {
  margin: 0 0 16px;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 22px;
}

.solution-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.solution-capability-card {
  min-height: 142px;
  padding: 18px 14px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-capability-card:hover {
  border-color: rgba(239, 75, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(20, 20, 20, 0.1);
}

.solution-capability-card .dashicons {
  width: 30px;
  height: 30px;
  color: #ef4b00;
  font-size: 30px;
}

.solution-capability-card h5 {
  margin: 10px 0 6px;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.solution-capability-card p {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}

.solution-testimonial {
  margin-top: 24px;
  color: #333;
}

.solution-testimonial span {
  color: #ef4b00;
  letter-spacing: 2px;
}

.solution-industry-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

.solution-industry-card {
  text-align: center;
}

.solution-industry-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  border-radius: 8px;
  object-fit: cover;
}

.solution-industry-card h4 {
  margin: 9px 0 0;
  font-size: 12px;
}

.solution-process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
  border-bottom: 5px solid #ef4b00;
}

.solution-process-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.solution-process-step .dashicons {
  width: 40px;
  height: 40px;
  color: #c66a2b;
  font-size: 40px;
}

.solution-process-step strong {
  font-size: 12px;
  line-height: 1.2;
}

.solution-matrix {
  display: grid;
  /* grid-template-columns: 170px minmax(0, 1fr); */
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.solution-matrix img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.solution-matrix table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.solution-matrix__table-wrap {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.solution-matrix th,
.solution-matrix td {
  border: 1px solid #777;
  padding: 7px 8px;
}

.solution-matrix td {
  background: transparent;
  text-align: center;
  vertical-align: middle;
}

.solution-matrix td span {
  display: block;
  min-width: 54px;
  color: #16232b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.solution-matrix .is-ok {
  background: #59bb72;
}

.solution-matrix .is-mid {
  background: #f2d36b;
}

.solution-matrix .is-bad {
  background: #d9f2d0;
}

.solution-message-panel {
  margin-top: clamp(36px, 5vw, 70px);
}

.solution-message-panel--standalone {
  margin-top: 0;
  padding: clamp(42px, 5vw, 72px) 0;
  background: #fff;
}

.solution-message-panel h3,
.solution-message-heading span {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  color: #a85a25;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-message-panel h3::after,
.solution-message-heading span::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #c77843;
}

.solution-message-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.solution-message-form textarea {
  grid-column: 1 / -1;
}

.solution-message-form input,
.solution-message-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.solution-message-form input {
  min-height: 42px;
  padding: 0 13px;
}

.solution-message-form textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.solution-message-form input:focus,
.solution-message-form textarea:focus {
  border-color: #ef4b00;
  box-shadow: 0 0 0 3px rgba(239, 75, 0, 0.1);
}

.solution-message-form button {
  grid-column: 1 / -1;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #ef4b00;
  color: #fff;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.solution-message-form button:hover,
.solution-message-form button:focus-visible {
  background: #151515;
  transform: translateY(-2px);
}

.solution-inline-breadcrumb {
  min-height: 42px;
  margin-bottom: 28px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f5f6f7;
}

.solution-material-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 80%, rgba(239, 75, 0, 0.08), transparent 22%),
    linear-gradient(165deg, #ffffff00 0, #fff 58%, #f1f2f3 58%, #fff 100%);
}

.solution-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 30px);
  /* max-width: 1040px; */
  margin: 0 auto;
}

.solution-material-card {
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-material-card:hover {
  border-color: rgba(239, 75, 0, 0.32);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(20, 20, 20, 0.12);
}

.solution-material-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.82;
  object-fit: cover;
}

.solution-material-card__body {
  padding: 18px;
}

.solution-material-card h2 {
  margin: 0 0 8px;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 26px;
  line-height: 1;
}

.solution-material-card ul {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #333;
  font-size: 13px;
  line-height: 1.45;
}

.solution-material-card li {
  position: relative;
  padding-left: 13px;
}

.solution-material-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4b00;
}

.solution-material-card p {
  min-height: 2.8em;
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.4;
}

.solution-material-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #b96b34;
  border-radius: 999px;
  color: #b35f25;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.solution-material-card a:hover,
.solution-material-card a:focus-visible {
  background: #ef4b00;
  color: #fff;
}

.solution-material-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 920px;
  margin: clamp(42px, 6vw, 76px) auto 0;
}

.solution-material-step {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.solution-material-step__visual {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.1);
}

.solution-material-step__visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.solution-material-step__visual .solution-material-step__index {
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 40px;
  font-weight: 700;
  color: #bd6a32;
}

.solution-material-step strong {
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 20px;
}

.solution-material-process__arrow {
  position: relative;
  display: block;
  width: 58px;
  height: 2px;
  background: #cc7438;
}

.solution-material-process__arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ef4b00;
  transform: translateY(-50%);
}

.solution-material-process__arrow::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 6px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.solution-certification-section {
  padding: clamp(50px, 6vw, 92px) 0;
  background:
    radial-gradient(circle at 88% 50%, rgba(239, 75, 0, 0.07), transparent 32%),
    #fff;
}

.solution-certification-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.solution-certification-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.solution-certification-item img {
  width: 50%;
  /*height: 64px;*/
  object-fit: contain;
}

.solution-certification-item strong {
  font-size: 14px;
}

.solution-custom-section {
  padding: clamp(46px, 5vw, 82px) 0;
  background:
    linear-gradient(135deg, rgba(239, 75, 0, 0.92) 0 35%, rgba(255, 255, 255, 0) 35% 100%),
    linear-gradient(180deg, #f6f7f8 0, #fff 100%);
}

.solution-custom {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.45fr);
  gap: 22px;
  align-items: stretch;
}

.solution-custom__showcase,
.solution-custom__details {
  min-width: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(20, 20, 20, 0.12);
}

.solution-custom__showcase {
  padding: 18px;
}

.solution-custom__main-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.16;
  border-radius: 6px;
  object-fit: cover;
}

.solution-custom__sample-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.solution-custom-sample {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 7px;
  background: #f5f1ed;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.solution-custom-sample:hover {
  background: #fff4ec;
  transform: translateY(-2px);
}

.solution-custom-sample img {
  display: block;
  width: 92px;
  height: 72px;
  border-radius: 5px;
  object-fit: cover;
}

.solution-custom-sample h3 {
  margin: 0 0 3px;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 13px;
  line-height: 1.25;
}

.solution-custom-sample p {
  display: -webkit-box;
  margin: 0 0 4px;
  overflow: hidden;
  color: #555;
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.solution-custom-sample a {
  color: #cf5b16;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.solution-custom__details {
  padding: clamp(20px, 3vw, 34px);
}

.solution-custom-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

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

.solution-custom-feature .dashicons {
  width: 36px;
  height: 36px;
  color: #b96532;
  font-size: 36px;
}

.solution-custom-feature h3 {
  margin: 0 0 6px;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 16px;
  line-height: 1.2;
}

.solution-custom-feature p {
  margin: 0;
  color: #3c3c3c;
  font-size: 12px;
  line-height: 1.45;
}

.solution-specification {
  margin-top: 28px;
}

.solution-specification h2 {
  margin: 0 0 12px;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 22px;
}

.solution-specification__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.solution-specification table {
  display: flex;
  width: 100%;
  font-size: 12px;
  text-align: center;
}

.solution-specification thead {
  flex-shrink: 0;
}

.solution-specification thead tr {
  display: flex;
  flex-direction: column;
}

.solution-specification tbody {
  display: flex;
  flex: 1;
  min-width: 0;
}

.solution-specification tbody tr {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 0;
}

.solution-specification th,
.solution-specification td {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid #b9b9b9;
  min-height: 44px;
  box-sizing: border-box;
  white-space: nowrap;
}

.solution-specification th {
  border-color: #d75b13;
  background: #ef4b00;
  color: #fff;
  font-weight: 700;
}

.solution-specification td {
  color: #1d1d1d;
}

.solution-specification td.is-ok {
  background: #59bb72;
}

.solution-specification td.is-mid {
  background: #f2d36b;
}

.solution-specification td.is-bad {
  background: #ea6c65;
}

.solution-specification td.is-orange {
  background: #ef4b00;
}

.solution-support-section {
  padding: clamp(42px, 5vw, 76px) 0;
  background:
    linear-gradient(135deg, rgba(184, 184, 184, 0.08) 25%, transparent 25%) 0 0 / 24px 24px,
    #f7f8f8;
}

.solution-support-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.solution-support-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(130px, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 260px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-support-card:hover {
  border-color: rgba(239, 75, 0, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(20, 20, 20, 0.12);
}

.solution-support-card--wide {
  grid-column: span 3;
}

.solution-support-card__copy {
  min-width: 0;
}

.solution-support-card .dashicons {
  width: 48px;
  height: 48px;
  color: #b96532;
  font-size: 48px;
}

.solution-support-card h2 {
  margin: 12px 0 8px;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.solution-support-card p {
  margin: 0;
  color: #2d2d2d;
  font-size: 13px;
  line-height: 1.45;
}

.solution-support-card img {
  display: block;
  width: 100%;
  max-height: 188px;
  object-fit: contain;
}

.solution-process-section {
  overflow: hidden;
  padding: clamp(44px, 5vw, 84px) 0;
  background:
    radial-gradient(circle at 10% 36%, rgba(239, 75, 0, 0.08), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(20, 20, 20, 0.06), transparent 28%),
    #f7f8fa;
}

.solution-process-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px) clamp(44px, 5vw, 76px);
}

.solution-process-board::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -9vw;
  left: -9vw;
  height: 240px;
  border: 1px solid rgba(80, 86, 95, 0.13);
  border-right: 0;
  border-left: 0;
  border-radius: 50%;
  transform: translateY(-50%) rotate(-7deg);
  pointer-events: none;
}

.solution-process-card {
  position: relative;
  z-index: 1;
  min-height: 292px;
  padding: 48px 18px 18px;
  border: 1px solid #e1e4e8;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.solution-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(20, 20, 20, 0.16);
}

.solution-process-card__number {
  position: absolute;
  top: -25px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #fff8f3;
  color: #c35e22;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(180, 96, 44, 0.22);
  transform: translateX(-50%);
}

.solution-process-card__icons {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  color: #bd6a32;
}

.solution-process-card__icons .dashicons {
  width: 42px;
  height: 42px;
  font-size: 42px;
}

.solution-process-card__arrow {
  position: relative;
  width: 32px;
  height: 2px;
  background: #9aa0a6;
}

.solution-process-card__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #9aa0a6;
  border-right: 2px solid #9aa0a6;
  transform: translateY(-50%) rotate(45deg);
}

.solution-process-card h2 {
  margin: 14px 0 6px;
  font-family: var(--site-font-primary, "Poppins", sans-serif);
  font-size: 20px;
  line-height: 1.15;
}

.solution-process-card p {
  margin: 0 0 14px;
  color: #2f3337;
  font-size: 13px;
  line-height: 1.45;
}

.solution-process-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3.55;
  border-radius: 6px;
}

@media screen and (max-width: 1120px) {
  .solution-oem__grid,
  .solution-matrix {
    grid-template-columns: 1fr;
  }

  .solution-capability-grid,
  .solution-material-grid,
  .solution-custom,
  .solution-custom-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-support-card,
  .solution-support-card--wide {
    grid-column: span 3;
  }

  .solution-process-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-industry-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-certification-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 820px) {
  .solution-page .container {
    width: min(92%, 680px);
  }

  .solution-tabs .container {
    justify-content: flex-start;
    min-height: 50px;
    gap: 28px;
  }

  .solution-oem-section,
  .solution-material-section,
  .solution-certification-section,
  .solution-custom-section,
  .solution-support-section,
  .solution-process-section {
    padding: 34px 0;
  }

  .solution-capability-grid,
  .solution-material-grid,
  .solution-custom,
  .solution-custom-feature-grid,
  .solution-message-form {
    grid-template-columns: 1fr;
  }

  .solution-tabs--pills .container {
    padding-bottom: 4px;
  }

  .solution-tabs--pills .solution-tabs__link {
    min-width: 150px;
  }

  .solution-custom-section {
    background:
      linear-gradient(180deg, rgba(239, 75, 0, 0.88) 0 180px, rgba(255, 255, 255, 0) 180px 100%),
      #f6f7f8;
  }

  .solution-custom-sample {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .solution-custom-sample img {
    width: 82px;
    height: 66px;
  }

  .solution-support-grid,
  .solution-process-board {
    grid-template-columns: 1fr;
  }

  .solution-support-card,
  .solution-support-card--wide {
    grid-column: auto;
  }

  .solution-support-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solution-support-card img {
    max-height: 210px;
  }

  .solution-process-board::before {
    display: none;
  }

  .solution-process-card {
    min-height: auto;
  }

  .solution-industry-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .solution-industry-card {
    flex: 0 0 150px;
  }

  .solution-process-line {
    grid-template-columns: 1fr;
    border-bottom: 0;
    border-left: 4px solid #ef4b00;
    padding-left: 18px;
  }

  .solution-process-step {
    justify-items: start;
    grid-template-columns: 48px minmax(0, 1fr);
    text-align: left;
  }

  .solution-matrix table {
    min-width: 620px;
  }

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

  .solution-material-process__arrow {
    width: 2px;
    height: 38px;
    margin: 0 auto;
  }

  .solution-material-process__arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(-50%);
  }

  .solution-material-process__arrow::before {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 5px;
    transform: translateX(-50%) rotate(135deg);
  }

  .solution-certification-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 520px) {
  .solution-capability-card {
    min-height: auto;
  }

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

  .solution-custom__showcase,
  .solution-custom__details,
  .solution-process-card {
    border-radius: 8px;
  }

  .solution-process-card {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Optional per-page background selected in the page editor. */
.solution-page[style*="--solution-page-background"] {
  /* background-image: linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)), var(--solution-page-background); */
  background-image: var(--solution-page-background);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.solution-page[style*="--solution-page-background"] > section:not(.product-hero),
.solution-page[style*="--solution-page-background"] > nav {
  background-color: transparent;
}
@media screen and (max-width: 820px) {
  .solution-page[style*="--solution-page-background"] { background-attachment: scroll; }
}