.global-solutions {
  background: #fff;
  color: #071b3d;
  overflow: hidden;
  padding: 96px 0 100px;
  position: relative;
}

.global-solutions::before {
  background: linear-gradient(90deg, #ff6a18, #ff9c5c);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28%;
}

.solutions-heading {
  align-items: flex-end;
  border-bottom: 1px solid #d7dee6;
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
  padding-bottom: 28px;
}

.solutions-heading > div > span {
  color: #ff6a18;
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.solutions-heading h2 {
  font-size: clamp(36px, 3.3vw, 54px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
}

.solutions-heading p { color: #5d6978; line-height: 1.65; margin: 0 0 2px; max-width: 430px; }
.solutions-carousel { padding: 8px 0 14px; position: relative; }
.solutions-carousel:focus-visible { outline: 3px solid rgba(255, 106, 24, .35); outline-offset: 8px; }
.solutions-viewport { overflow: hidden; padding: 16px 0 24px; touch-action: pan-y; }

.solutions-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.solution-card {
  background: linear-gradient(145deg, #0b68b9 0%, #06467f 62%, #022b54 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(4, 55, 102, .18);
  color: #fff;
  flex: 0 0 calc((100% - 72px) / 4);
  min-height: 370px;
  overflow: hidden;
  padding: 32px 29px 30px;
  position: relative;
  transform: translateY(0);
  transition: box-shadow .3s ease, transform .3s ease;
}

.solution-card:focus-visible {
  outline: 3px solid #ff8a4b;
  outline-offset: 4px;
}

.solution-card::before {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  content: "";
  height: 170px;
  position: absolute;
  right: -90px;
  top: -90px;
  width: 170px;
}

.solution-card::after {
  background: #ff6a18;
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  width: 100%;
}

.solution-card:hover { box-shadow: 0 24px 44px rgba(4, 55, 102, .28); transform: translateY(-8px); }
.solution-card:hover::after { transform: scaleX(1); }

.solution-symbol {
  background: #041d48;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0, 18, 48, .28);
  height: 112px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  width: 112px;
}

.solution-symbol img {
  display: block;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .35s ease;
  width: 100%;
}

.solution-card:hover .solution-symbol img { transform: scale(1.11); }

.solution-card > span { color: #ffb385; display: block; font-size: 10px; font-weight: 900; letter-spacing: .15em; margin-bottom: 8px; }
.solution-card h3 { color: #fff; font-size: 24px; letter-spacing: -.025em; line-height: 1.15; margin: 0 0 14px; }
.solution-card p { color: rgba(255, 255, 255, .76); font-size: 14px; line-height: 1.62; margin: 0; }

.solutions-arrow {
  align-items: center;
  background: #fff;
  border: 1px solid #dfe5eb;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(7, 27, 61, .18);
  color: #073f77;
  cursor: pointer;
  display: flex;
  height: 54px;
  justify-content: center;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  width: 54px;
  z-index: 4;
}

.solutions-arrow span { font-size: 38px; font-weight: 200; line-height: 1; margin-top: -4px; }
.solutions-arrow:hover, .solutions-arrow:focus-visible { background: #ff6a18; color: #fff; transform: translateY(-50%) scale(1.07); }
.solutions-arrow:focus-visible { outline: 3px solid rgba(255, 106, 24, .25); outline-offset: 4px; }
.solutions-prev { left: -27px; }
.solutions-next { right: -27px; }

.solutions-progress { align-items: center; color: #7c8794; display: flex; font-size: 11px; font-weight: 900; gap: 12px; justify-content: flex-end; letter-spacing: .12em; }
.solutions-progress i { background: #d8e0e7; border-radius: 99px; display: block; height: 4px; overflow: hidden; position: relative; width: 100px; }
.solutions-progress i::after { background: #ff6a18; border-radius: inherit; content: ""; height: 100%; left: 0; position: absolute; top: 0; transition: width .4s ease; width: var(--solutions-progress, 9.09%); }
.solutions-current { color: #073f77; }

@media (max-width: 1200px) {
  .solution-card { flex-basis: calc((100% - 48px) / 3); }
  .solutions-prev { left: 8px; }
  .solutions-next { right: 8px; }
}

@media (max-width: 900px) {
  .global-solutions { padding: 78px 0 82px; }
  .solutions-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .solutions-heading p { max-width: 620px; }
  .solution-card { flex-basis: calc((100% - 24px) / 2); }
}

@media (max-width: 650px) {
  .solutions-heading { margin-bottom: 28px; }
  .solution-card { flex-basis: calc((100% - 24px) / 2); min-height: 350px; padding: 28px 22px; }
  .solution-symbol { height: 96px; width: 96px; }
  .solutions-progress { justify-content: center; }
}

@media (max-width: 430px) {
  .global-solutions { padding: 62px 0 66px; }
  .solutions-heading h2 { font-size: 35px; }
  .solutions-heading p { font-size: 14px; }
  .solution-card { flex-basis: 100%; min-height: 342px; padding: 30px 26px; }
  .solution-card h3 { font-size: 22px; }
  .solution-card p { font-size: 13px; }
  .solutions-arrow { height: 46px; width: 46px; }
  .solutions-arrow span { font-size: 33px; }
  .solutions-prev { left: 5px; }
  .solutions-next { right: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-track, .solution-card, .solution-card::after, .solutions-arrow { transition: none; }
}
