.solutions-page {
  background-color: #ffffff;
}

.solutions-page-top {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.solutions-page-top__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/solutions-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.solutions-page-top__bg::before,
.solutions-page-top__bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 280px;
  pointer-events: none;
}

.solutions-page-top__bg::before {
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.solutions-page-top__bg::after {
  bottom: 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.solutions-page-top__content {
  position: relative;
  z-index: 1;
}

.solutions-hero {
  padding: 160px 0 56px;
  text-align: center;
}

.solutions-hero-title {
  margin: 0 auto 20px;
  max-width: 1063px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(36px, 7vw, 94px);
  line-height: 98%;
  letter-spacing: 0;
  font-weight: 300;
  text-align: center;
}

.solutions-hero-title__base {
  color: #585858;
}

.solutions-hero-title__accent {
  background: linear-gradient(90deg, #fb580c 33.65%, #ffa073 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.solutions-hero-subtitle {
  margin: 0;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(18px, 3vw, 33px);
  line-height: 98.4%;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: capitalize;
  background: linear-gradient(90deg, #fb580c 0%, #ffa073 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.solutions-teams {
  padding: 24px 0 90px;
}

.solutions-teams-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 120px;
  max-width: 1530px;
  margin: 0 auto;
  justify-content: center;
}

.solutions-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 430px;
  min-height: 420px;
  margin: 0 auto;
  padding: 40px 28px 36px;
  background: #ffffff;
  border: 0;
  border-radius: 33px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  box-sizing: border-box;
}

.solutions-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 87px;
  height: 78px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.solutions-card-icon svg {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  flex-shrink: 0;
}

.solutions-card-title {
  margin: 0 0 18px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  font-weight: 600;
  color: #fb580c;
}

.solutions-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 313px;
  width: 100%;
}

.solutions-card-list li {
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.4;
  font-weight: 400;
  color: #585858;
}

/* Design line breaks only on large screens */
.solutions-card-br {
  display: none;
}

@media (min-width: 1600px) {
  .solutions-teams-grid {
    grid-template-columns: repeat(3, 430px);
    gap: 120px;
    max-width: none;
  }

  .solutions-card {
    width: 430px;
    max-width: 430px;
    height: 499px;
    min-height: 499px;
    padding: 48px 36px 40px;
  }

  .solutions-card-title {
    font-size: 30px;
  }

  .solutions-card-list li {
    font-size: 20px;
  }

  .solutions-card-br {
    display: inline;
  }
}

.solutions-why {
  position: relative;
  z-index: 1;
  padding: 56px 0 96px;
  background: #ffffff;
  text-align: center;
}

.solutions-why-title {
  margin: 0 0 36px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 98%;
  letter-spacing: 0;
  font-weight: 400;
  color: #585858;
}

.solutions-why-banner {
  background: linear-gradient(90deg, #fb580c 0%, #ffa073 100%);
  padding: 28px 24px;
  margin-bottom: 36px;
}

.solutions-why-banner p {
  margin: 0;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(20px, 3.5vw, 41px);
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.solutions-why-actions {
  display: flex;
  justify-content: center;
}

.solutions-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb580c 0%, #ffa073 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.solutions-cta:hover {
  opacity: 0.92;
}

@media (max-width: 1199px) {
  .solutions-teams-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    max-width: 900px;
  }

  .solutions-card {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .solutions-hero {
    padding: 120px 0 32px;
  }

  .solutions-hero-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .solutions-hero-subtitle {
    font-size: clamp(16px, 4.5vw, 22px);
  }

  .solutions-teams {
    padding: 16px 0 48px;
  }

  .solutions-teams-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 24px;
  }

  .solutions-card {
    min-height: auto;
    max-width: 100%;
    padding: 32px 24px 28px;
  }

  .solutions-why {
    padding: 24px 0 64px;
  }

  .solutions-why-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .solutions-why-banner {
    padding: 20px 16px;
  }

  .solutions-why-banner p {
    font-size: clamp(18px, 5vw, 24px);
  }

  .solutions-cta {
    width: 100%;
    max-width: 420px;
    font-size: 16px;
  }
}
