.bpp-page {
  --bpp-pink: #e71485;
  --bpp-black: #151515;
  --bpp-text: #191919;
  --bpp-muted: #6d6d6d;
  --bpp-light: #f5f5f6;
  --bpp-border: #e7e7e9;
  width: 100%;
  color: var(--bpp-text);
}

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

.bpp-page a {
  text-decoration: none;
}

.bpp-nav {
  margin-bottom: 28px;
}

.bpp-nav-desktop {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--bpp-border);
  border-radius: 18px;
  background: #fff;
}

.bpp-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  color: #555 !important;
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
  transition: background .18s ease, color .18s ease;
}

.bpp-nav-link:hover {
  background: var(--bpp-light);
  color: var(--bpp-black) !important;
}

.bpp-nav-link.is-active {
  background: var(--bpp-black);
  color: #fff !important;
}

.bpp-nav-mobile {
  display: none;
}

.bpp-sales-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 36px;
  align-items: stretch;
  padding: 44px 46px;
  border-radius: 26px;
  background: var(--bpp-black);
  color: #fff;
}

.bpp-sales-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--bpp-pink);
  opacity: .1;
  pointer-events: none;
}

.bpp-kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 16px;
  color: var(--bpp-pink);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.bpp-sales-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(43px, 6vw, 70px);
  line-height: .97;
  font-weight: 800;
  letter-spacing: -.045em;
}

.bpp-sales-hero h1 strong {
  color: var(--bpp-pink);
  font-weight: 800;
}

.bpp-sales-hero p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 22px 0 0;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
}

.bpp-b2b-card {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 25px;
  border: 1px solid #363636;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s ease, border-color .2s ease;
}

.bpp-b2b-card:hover {
  transform: translateY(-2px);
  border-color: #555;
}

.bpp-b2b-card > span {
  color: #8c8c8c;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
}

.bpp-b2b-card > strong {
  color: var(--bpp-pink);
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.05em;
}

.bpp-b2b-card > small {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 750;
}

.bpp-b2b-card i {
  color: var(--bpp-pink);
  font-style: normal;
}

.bpp-team-section {
  margin-top: 48px;
}

.bpp-team-heading {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin-bottom: 21px;
}

.bpp-team-heading > span {
  color: #d2d2d6;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.bpp-team-heading small {
  display: block;
  margin-bottom: 5px;
  color: var(--bpp-pink);
  font-size: 9px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .13em;
}

.bpp-team-heading h2 {
  margin: 0;
  color: var(--bpp-black);
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}

.bpp-team-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--bpp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bpp-people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bpp-person-card {
  overflow: hidden;
  min-width: 0;
  min-height: 290px;
  border: 1px solid var(--bpp-border);
  border-radius: 22px;
  background: #fff;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bpp-person-card:hover {
  transform: translateY(-2px);
  border-color: #d7d7da;
  box-shadow: 0 14px 34px rgba(0,0,0,.055);
}

.bpp-person-card__media {
  min-height: 290px;
  background: var(--bpp-light);
  overflow: hidden;
}

.bpp-person-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  object-position: center top;
}

.bpp-person-card__initials {
  width: 100%;
  height: 100%;
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bpp-pink);
  font-size: 43px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.bpp-person-card__body {
  min-width: 0;
  padding: 27px 27px 24px;
  display: flex;
  flex-direction: column;
}

.bpp-person-card__role {
  display: block;
  margin-bottom: 9px;
  color: var(--bpp-pink);
  font-size: 9px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bpp-person-card h3 {
  margin: 0;
  color: var(--bpp-black);
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.035em;
}

.bpp-person-card__scope {
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 14px;
  background: var(--bpp-light);
}

.bpp-person-card__scope small {
  display: block;
  margin-bottom: 5px;
  color: #97979b;
  font-size: 8px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.bpp-person-card__scope p {
  margin: 0;
  color: #5f5f5f;
  font-size: 12px;
  line-height: 1.55;
}

.bpp-person-card__contacts {
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  gap: 7px;
}

.bpp-person-card__contacts a {
  min-width: 0;
  padding-top: 8px;
  border-top: 1px solid var(--bpp-border);
  color: var(--bpp-black) !important;
}

.bpp-person-card__contacts span {
  display: block;
  margin-bottom: 2px;
  color: #9a9a9d;
  font-size: 8px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bpp-person-card__contacts strong {
  display: block;
  min-width: 0;
  color: var(--bpp-black);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.bpp-person-card__contacts a:hover strong {
  color: var(--bpp-pink);
}

.bpp-empty {
  margin-top: 34px;
  padding: 26px;
  border: 1px dashed #d7d7da;
  border-radius: 18px;
  background: var(--bpp-light);
  color: #777;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.bpp-admin-section {
  margin-top: 52px;
  padding: 32px;
  border: 1px solid var(--bpp-border);
  border-radius: 24px;
  background: #fff;
}

.bpp-admin-section__intro {
  max-width: 820px;
  margin-bottom: 24px;
}

.bpp-admin-section__intro h2 {
  margin: 0 0 8px;
  color: var(--bpp-black);
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}

.bpp-admin-section__intro p {
  margin: 0;
  color: #686868;
  font-size: 13px;
  line-height: 1.65;
}

.bpp-admin-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bpp-admin-contact {
  min-width: 0;
  padding: 18px;
  border-radius: 15px;
  background: var(--bpp-light);
}

.bpp-admin-contact__name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bpp-admin-contact__name img,
.bpp-admin-contact__name > span {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.bpp-admin-contact__name img {
  object-fit: cover;
  object-position: center top;
}

.bpp-admin-contact__name > span {
  background: #fff;
  color: var(--bpp-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}

.bpp-admin-contact__name strong {
  display: block;
  color: var(--bpp-black);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.bpp-admin-contact__name small {
  display: block;
  margin-top: 2px;
  color: #818181;
  font-size: 10px;
  line-height: 1.4;
}

.bpp-admin-contact__scope {
  margin: 13px 0 0;
  color: #737373;
  font-size: 11px;
  line-height: 1.55;
}

.bpp-admin-contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.bpp-admin-contact__links a {
  min-width: 0;
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--bpp-black) !important;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.bpp-admin-contact__links a:hover {
  color: var(--bpp-pink) !important;
}

.bpp-return {
  margin-top: 24px;
}

.bpp-return a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid var(--bpp-border);
  border-radius: 999px;
  background: #fff;
  color: var(--bpp-black) !important;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.bpp-return a span {
  color: var(--bpp-pink);
  font-size: 17px;
}

@media (max-width: 1050px) {
  .bpp-people-grid {
    grid-template-columns: 1fr;
  }

  .bpp-person-card {
    grid-template-columns: 175px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .bpp-nav-desktop {
    display: none;
  }

  .bpp-nav-mobile {
    display: block;
    margin: 0;
  }

  .bpp-nav-mobile > summary {
    position: relative;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 17px;
    background: var(--bpp-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    list-style: none;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
  }

  .bpp-nav-mobile > summary::-webkit-details-marker {
    display: none;
  }

  .bpp-nav-mobile > summary span {
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
  }

  .bpp-nav-mobile > summary em {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--bpp-pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    line-height: 1;
    font-style: normal;
    transition: transform .2s ease, border-radius .2s ease;
  }

  .bpp-nav-mobile[open] > summary em {
    transform: rotate(45deg);
    border-radius: 50%;
  }

  .bpp-nav-mobile-panel {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bpp-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.07);
  }

  .bpp-nav-mobile-panel a {
    position: relative;
    min-height: 44px;
    padding: 0 13px;
    border-radius: 11px;
    color: var(--bpp-black) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 750;
  }

  .bpp-nav-mobile-panel a + a {
    margin-top: 3px;
  }

  .bpp-nav-mobile-panel a:hover {
    background: var(--bpp-light);
  }

  .bpp-nav-mobile-panel a.is-active {
    background: #fff4fa;
    box-shadow: inset 3px 0 0 var(--bpp-pink);
    color: var(--bpp-pink) !important;
  }

  .bpp-nav-mobile-panel i {
    color: var(--bpp-pink);
    font-style: normal;
    font-size: 17px;
  }

  .bpp-sales-hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 34px 26px;
    border-radius: 22px;
  }

  .bpp-sales-hero h1 {
    font-size: 46px;
  }

  .bpp-sales-hero p {
    font-size: 14px;
  }

  .bpp-b2b-card {
    min-height: 145px;
  }

  .bpp-b2b-card > strong {
    font-size: 46px;
  }

  .bpp-team-section {
    margin-top: 40px;
  }

  .bpp-team-heading {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 8px;
  }

  .bpp-team-heading > span {
    font-size: 23px;
  }

  .bpp-team-heading h2 {
    font-size: 29px;
  }

  .bpp-person-card {
    grid-template-columns: 115px minmax(0, 1fr);
    min-height: 250px;
    border-radius: 19px;
  }

  .bpp-person-card__media,
  .bpp-person-card__media img,
  .bpp-person-card__initials {
    min-height: 250px;
  }

  .bpp-person-card__body {
    padding: 22px 18px 20px;
  }

  .bpp-person-card h3 {
    font-size: 24px;
  }

  .bpp-admin-section {
    margin-top: 42px;
    padding: 28px 23px;
    border-radius: 20px;
  }

  .bpp-admin-contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .bpp-person-card {
    display: block;
  }

  .bpp-person-card__media {
    height: 260px;
    min-height: 0;
  }

  .bpp-person-card__media img,
  .bpp-person-card__initials {
    height: 260px;
    min-height: 0;
  }

  .bpp-person-card__body {
    padding: 24px 22px 22px;
  }

  .bpp-person-card__contacts {
    margin-top: 20px;
  }

  .bpp-admin-contact__links {
    display: grid;
  }
}

@media (max-width: 390px) {
  .bpp-sales-hero {
    padding: 30px 22px;
  }

  .bpp-sales-hero h1 {
    font-size: 40px;
  }

  .bpp-team-heading {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .bpp-team-heading h2 {
    font-size: 26px;
  }

  .bpp-person-card__media,
  .bpp-person-card__media img,
  .bpp-person-card__initials {
    height: 235px;
  }
}


/* =========================================================
   HUB DLA PARTNEROW
========================================================= */

.bpp-hub-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 50px;
  border-radius: 26px;
  background: var(--bpp-black);
  color: #fff;
}

.bpp-hub-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--bpp-pink);
  opacity: .11;
  pointer-events: none;
}

.bpp-hub-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.05em;
}

.bpp-hub-hero h1 strong {
  color: var(--bpp-pink);
  font-weight: 800;
}

.bpp-hub-hero > p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 25px 0 0;
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.75;
}

.bpp-hub-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.bpp-hub-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid #383838;
  border-radius: 999px;
  color: #aaa;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
}

.bpp-hub-section {
  margin-top: 46px;
}

.bpp-hub-section-head {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.bpp-hub-section-head > span {
  color: #d6d6da;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.bpp-hub-section-head small {
  display: block;
  margin-bottom: 5px;
  color: var(--bpp-pink);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .13em;
}

.bpp-hub-section-head h2 {
  margin: 0;
  color: var(--bpp-black);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}

.bpp-hub-feature {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  padding: 38px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  color: #fff !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

.bpp-hub-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.07);
}

.bpp-hub-feature--pink {
  background: var(--bpp-pink);
}

.bpp-hub-feature span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.bpp-hub-feature h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
}

.bpp-hub-feature p {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.bpp-hub-feature > i,
.bpp-hub-eco > i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  color: var(--bpp-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
}

.bpp-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bpp-hub-card {
  position: relative;
  min-height: 245px;
  padding: 31px;
  border: 1px solid var(--bpp-border);
  border-radius: 22px;
  background: var(--bpp-light);
  color: var(--bpp-black) !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

a.bpp-hub-card:hover {
  transform: translateY(-2px);
  border-color: #d6d6da;
  box-shadow: 0 13px 32px rgba(0,0,0,.05);
}

.bpp-hub-card > span {
  display: block;
  margin-bottom: 38px;
  color: #999;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .13em;
}

.bpp-hub-card h3 {
  max-width: 470px;
  margin: 0 0 12px;
  color: var(--bpp-black);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
}

.bpp-hub-card p {
  max-width: 500px;
  margin: 0;
  padding-right: 50px;
  color: #666;
  font-size: 13px;
  line-height: 1.65;
}

.bpp-hub-card > i {
  position: absolute;
  right: 25px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--bpp-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
  font-style: normal;
}

.bpp-hub-card > em {
  position: absolute;
  right: 24px;
  bottom: 25px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ededee;
  color: #999;
  font-size: 9px;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.bpp-hub-card.is-disabled {
  opacity: .72;
}

.bpp-hub-eco {
  min-height: 280px;
  padding: 39px;
  border: 1px solid #d9e5d7;
  border-radius: 24px;
  background: #eef4ed;
  color: #20251f !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.bpp-hub-eco:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 32px rgba(0,0,0,.05);
}

.bpp-hub-eco > div > span {
  display: block;
  margin-bottom: 25px;
  color: #4f754a;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .13em;
}

.bpp-hub-eco h3 {
  margin: 0 0 8px;
  color: #20251f;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
}

.bpp-hub-eco strong {
  display: block;
  margin-bottom: 13px;
  color: #4f754a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.bpp-hub-eco p {
  max-width: 680px;
  margin: 0;
  color: #60695e;
  font-size: 14px;
  line-height: 1.7;
}

.bpp-hub-eco > i {
  background: #4f754a;
  color: #fff;
}

.bpp-hub-b2b {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 42px;
  border-radius: 24px;
  background: var(--bpp-black);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
}

.bpp-hub-b2b::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--bpp-pink);
  opacity: .10;
  pointer-events: none;
}

.bpp-hub-b2b > div,
.bpp-hub-b2b > a {
  position: relative;
  z-index: 1;
}

.bpp-hub-b2b span {
  display: block;
  margin-bottom: 10px;
  color: var(--bpp-pink);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .13em;
}

.bpp-hub-b2b h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.035em;
}

.bpp-hub-b2b p {
  margin: 0;
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
}

.bpp-hub-b2b > a {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--bpp-pink);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.bpp-hub-b2b i {
  font-style: normal;
}

@media (max-width: 700px) {
  .bpp-hub-hero {
    margin-bottom: 38px;
    padding: 34px 26px;
    border-radius: 22px;
  }

  .bpp-hub-hero h1 {
    font-size: 46px;
  }

  .bpp-hub-hero > p {
    font-size: 14px;
  }

  .bpp-hub-section {
    margin-top: 38px;
  }

  .bpp-hub-section-head {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 8px;
  }

  .bpp-hub-section-head > span {
    font-size: 23px;
  }

  .bpp-hub-section-head h2 {
    font-size: 29px;
  }

  .bpp-hub-feature {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 50px;
    gap: 16px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .bpp-hub-feature span {
    margin-bottom: 26px;
  }

  .bpp-hub-feature > i,
  .bpp-hub-eco > i {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

  .bpp-hub-grid {
    grid-template-columns: 1fr;
  }

  .bpp-hub-card {
    min-height: 220px;
    padding: 27px 24px;
    border-radius: 19px;
  }

  .bpp-hub-card > span {
    margin-bottom: 30px;
  }

  .bpp-hub-eco {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .bpp-hub-b2b {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 38px;
    padding: 31px 24px;
    border-radius: 20px;
  }

  .bpp-hub-b2b > a {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .bpp-hub-hero {
    padding: 31px 22px;
  }

  .bpp-hub-hero h1 {
    font-size: 40px;
  }

  .bpp-hub-card,
  .bpp-hub-feature,
  .bpp-hub-eco,
  .bpp-hub-b2b {
    border-radius: 18px;
  }
}


/* =========================================================
   LOGISTYKA
========================================================= */

.bpp-log-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 34px;
  align-items: stretch;
  padding: 44px 46px;
  border-radius: 26px;
  background: var(--bpp-black);
  color: #fff;
}

.bpp-log-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--bpp-pink);
  opacity: .1;
  pointer-events: none;
}

.bpp-log-hero__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.bpp-log-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(43px, 6vw, 70px);
  line-height: .97;
  font-weight: 800;
  letter-spacing: -.045em;
}

.bpp-log-hero h1 strong {
  color: var(--bpp-pink);
  font-weight: 800;
}

.bpp-log-hero__copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
}

.bpp-log-b2b {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 25px;
  border: 1px solid #363636;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s ease, border-color .2s ease;
}

.bpp-log-b2b:hover {
  transform: translateY(-2px);
  border-color: #555;
  color: #fff !important;
}

.bpp-log-b2b > span {
  color: #8c8c8c;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
}

.bpp-log-b2b > strong {
  color: var(--bpp-pink);
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.05em;
}

.bpp-log-b2b > small {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 750;
}

.bpp-log-b2b i {
  color: var(--bpp-pink);
  font-style: normal;
}

.bpp-log-section {
  margin-top: 48px;
}

.bpp-log-section__head {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin-bottom: 22px;
}

.bpp-log-section__head > span {
  color: #d2d2d6;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.bpp-log-section__head small {
  display: block;
  margin-bottom: 5px;
  color: var(--bpp-pink);
  font-size: 9px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .13em;
}

.bpp-log-section__head h2 {
  margin: 0;
  color: var(--bpp-black);
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}

.bpp-log-section__head p {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--bpp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bpp-log-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bpp-log-step {
  min-width: 0;
  min-height: 235px;
  padding: 25px 23px;
  border: 1px solid var(--bpp-border);
  border-radius: 20px;
  background: #fff;
}

.bpp-log-step > span {
  display: block;
  margin-bottom: 48px;
  color: #d0d0d4;
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.bpp-log-step h3 {
  margin: 0 0 10px;
  color: var(--bpp-black);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.015em;
}

.bpp-log-step p {
  margin: 0;
  color: #6c6c6c;
  font-size: 12px;
  line-height: 1.65;
}

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

.bpp-log-info-card {
  min-width: 0;
  min-height: 220px;
  padding: 28px;
  border-radius: 20px;
  background: var(--bpp-light);
}

.bpp-log-info-card > span {
  display: block;
  margin-bottom: 34px;
  color: var(--bpp-pink);
  font-size: 9px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .12em;
}

.bpp-log-info-card h3 {
  margin: 0 0 10px;
  color: var(--bpp-black);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}

.bpp-log-info-card p {
  margin: 0;
  color: #686868;
  font-size: 12.5px;
  line-height: 1.68;
}

.bpp-log-note {
  margin-top: 18px;
  padding: 28px 30px;
  border: 1px solid #ead8e2;
  border-radius: 20px;
  background: #fff8fc;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.bpp-log-note__mark {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: #fff;
  color: var(--bpp-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, serif;
  font-style: italic;
}

.bpp-log-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--bpp-pink);
  font-size: 9px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .12em;
}

.bpp-log-note h3 {
  margin: 0 0 8px;
  color: var(--bpp-black);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.015em;
}

.bpp-log-note p {
  max-width: 850px;
  margin: 0;
  color: #6b6066;
  font-size: 12.5px;
  line-height: 1.65;
}

.bpp-log-contact {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 38px;
  border-radius: 24px;
  background: var(--bpp-black);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.bpp-log-contact::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--bpp-pink);
  opacity: .1;
  pointer-events: none;
}

.bpp-log-contact__copy,
.bpp-log-contact__actions {
  position: relative;
  z-index: 1;
}

.bpp-log-contact__copy > span {
  display: block;
  margin-bottom: 9px;
  color: var(--bpp-pink);
  font-size: 9px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .13em;
}

.bpp-log-contact h2 {
  margin: 0 0 11px;
  color: #fff;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}

.bpp-log-contact p {
  max-width: 690px;
  margin: 0;
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.65;
}

.bpp-log-contact__actions {
  display: grid;
  gap: 9px;
  min-width: 220px;
}

.bpp-log-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, opacity .2s ease;
}

.bpp-log-button:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.bpp-log-button--pink {
  background: var(--bpp-pink);
  color: #fff !important;
}

.bpp-log-button--outline {
  border: 1px solid #414141;
  background: transparent;
  color: #fff !important;
}

.bpp-log-button span {
  font-size: 17px;
}

@media (max-width: 1050px) {
  .bpp-log-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .bpp-log-hero {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bpp-log-b2b {
    min-height: 145px;
  }

  .bpp-log-b2b > strong {
    font-size: 46px;
  }

  .bpp-log-info-grid {
    grid-template-columns: 1fr;
  }

  .bpp-log-info-card {
    min-height: 0;
  }

  .bpp-log-contact {
    grid-template-columns: 1fr;
  }

  .bpp-log-contact__actions {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .bpp-log-hero {
    padding: 34px 26px;
    border-radius: 22px;
  }

  .bpp-log-hero h1 {
    font-size: 46px;
  }

  .bpp-log-hero__copy > p {
    font-size: 14px;
  }

  .bpp-log-section {
    margin-top: 40px;
  }

  .bpp-log-section__head {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 8px;
  }

  .bpp-log-section__head > span {
    font-size: 23px;
  }

  .bpp-log-section__head h2 {
    font-size: 29px;
  }

  .bpp-log-step {
    min-height: 215px;
    padding: 23px 21px;
    border-radius: 18px;
  }

  .bpp-log-step > span {
    margin-bottom: 36px;
  }

  .bpp-log-info-card {
    padding: 24px 22px;
    border-radius: 18px;
  }

  .bpp-log-info-card > span {
    margin-bottom: 24px;
  }

  .bpp-log-note {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 22px;
    border-radius: 18px;
  }

  .bpp-log-note__mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 20px;
  }

  .bpp-log-contact {
    margin-top: 40px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .bpp-log-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .bpp-log-steps {
    grid-template-columns: 1fr;
  }

  .bpp-log-step {
    min-height: 0;
  }

  .bpp-log-step > span {
    margin-bottom: 25px;
  }

  .bpp-log-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .bpp-log-hero {
    padding: 30px 22px;
  }

  .bpp-log-hero h1 {
    font-size: 40px;
  }

  .bpp-log-section__head {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .bpp-log-section__head h2 {
    font-size: 26px;
  }
}
