.suppliers-subhero .subhero-bg {
  background: url("../img/hero-dostawcy.webp") center 44% / cover no-repeat;
}

.suppliers-subhero .subhero-content {
  bottom: 11%;
}

.suppliers-lead {
  padding-top: 86px;
  padding-bottom: 54px;
}

.suppliers-lead-box {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.suppliers-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #7a9d1e;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.suppliers-eyebrow::before,
.suppliers-eyebrow::after {
  content: "";
  width: clamp(42px, 10vw, 96px);
  height: 1px;
  border-radius: 999px;
  background: rgba(172, 207, 62, 0.88);
}

.suppliers-lead-box h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  font-weight: 300;
}

.suppliers-lead-box p {
  color: #4f555a;
  font-size: 1.08rem;
}

.suppliers-benefits {
  padding-top: 22px;
  padding-bottom: 94px;
  background: #fff;
}

.benefits-list {
  position: relative;
  display: grid;
  gap: 18px;
}

.benefits-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(
    to bottom,
    rgba(172, 207, 62, 0.18),
    rgba(172, 207, 62, 0.8),
    rgba(172, 207, 62, 0.18)
  );
}

.benefit-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.benefit-content {
  width: min(100%, 620px);
  background: #fff;
  border: 1px solid #e2e7d6;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.07);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}

.benefit-item.is-left .benefit-content {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.benefit-item.is-right .benefit-content {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.benefit-spacer {
  display: none;
}

.benefit-item:nth-child(even) .benefit-spacer {
  display: none;
}

.benefit-content h3 {
  color: #16210d;
  font-size: clamp(1.22rem, 1.6vw, 1.62rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.benefit-content p {
  color: #52585d;
  line-height: 1.76;
  font-size: 1rem;
}

.benefit-icon {
  grid-column: 2;
  justify-self: center;
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  align-self: center;
  border-radius: 50%;
  border: 2px solid rgba(172, 207, 62, 0.8);
  background: #fff;
  color: #81a620;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.benefit-item.is-active .benefit-content {
  transform: translateY(-8px);
  border-color: rgba(172, 207, 62, 0.72);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.12);
}

.benefit-item.is-active .benefit-icon {
  animation: timeline-icon-pulse 1.35s ease-in-out infinite;
  box-shadow: 0 0 0 8px rgba(172, 207, 62, 0.18), 0 14px 24px rgba(0, 0, 0, 0.14);
}

@keyframes timeline-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-content,
  .benefit-icon {
    transition: none;
  }

  .benefit-item.is-active .benefit-content {
    transform: none;
  }

  .benefit-item.is-active .benefit-icon {
    animation: none;
  }
}

.suppliers-contact {
  padding-top: 92px;
  padding-bottom: 96px;
  background: #fafafa;
}

.suppliers-contact-box {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #dce4cb;
  background: #fff;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
  padding: clamp(24px, 4.4vw, 48px);
  text-align: center;
}

.suppliers-contact-box h2 {
  margin: 14px 0 20px;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  font-weight: 400;
}

.suppliers-contact-list {
  display: grid;
  gap: 8px;
}

.suppliers-contact-list a {
  color: #5b7c11;
  font-size: clamp(1.04rem, 1.8vw, 1.26rem);
  font-weight: 700;
}

.suppliers-contact-list a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .benefits-list::before {
    left: 28px;
    transform: none;
  }

  .benefit-item {
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
  }

  .benefit-icon,
  .benefit-item.is-left .benefit-icon,
  .benefit-item.is-right .benefit-icon {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-top: 6px;
  }

  .benefit-item .benefit-content,
  .benefit-item.is-left .benefit-content,
  .benefit-item.is-right .benefit-content {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    justify-self: stretch;
  }

  .benefit-spacer,
  .benefit-item:nth-child(even) .benefit-spacer {
    display: none;
  }
}

@media (max-width: 560px) {
  .suppliers-lead {
    padding-top: 66px;
    padding-bottom: 40px;
  }

  .suppliers-benefits {
    padding-bottom: 72px;
  }

  .benefit-content {
    padding: 18px 16px;
  }

  .benefit-content p {
    font-size: 0.95rem;
  }

  .suppliers-contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
