
.bpcta-section {
  position: relative;
  z-index: 1000;
	top:-100px;
  padding: 0 24px;
}

.bpcta-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.bpcta-box {
  background: linear-gradient(180deg, #f6f6f7 0%, #efeff1 100%);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  padding: 48px 34px 34px;
}

.bpcta-head {
  text-align: center;
  margin-bottom: 28px;
}

.bpcta-title {
  margin: 0;
  color: #222;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.bpcta-subtitle {
  margin: 18px 0 0;
  color: #7b7b7b;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

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

.bpcta-card {
 
  border-radius: 14px;
  overflow: hidden;
  position: relative;
 
  padding: 28px 28px 28px;
}

.bpcta-card--light {
  background: linear-gradient(180deg, #f7f7f8 0%, #ececee 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.bpcta-card--blue {
  background: linear-gradient(135deg, #53627c 0%, #3d4860 55%, #374156 100%);
}

.bpcta-card--green {
  background: linear-gradient(135deg, #74a96a 0%, #5a9461 55%, #4e8658 100%);
}

.bpcta-card__icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  float:left;
}

.bpcta-card__icon img {
  max-width: 84px;
  max-height: 84px;
  width: auto;
  height: auto;
  display: block;
}

.bpcta-card__content {
  flex: 1 1 auto;
  min-height: 120px;
  float:right;
  width:calc(100% - 90px)
}

.bpcta-card__title {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.bpcta-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

.bpcta-card--light .bpcta-card__title,
.bpcta-card--light .bpcta-card__text {
  color: #1f1f1f;
}

.bpcta-card--blue .bpcta-card__title,
.bpcta-card--blue .bpcta-card__text,
.bpcta-card--green .bpcta-card__title,
.bpcta-card--green .bpcta-card__text {
  color: rgba(255,255,255,0.96);
}

.bpcta-card__action {
  padding-top: 26px;
  width:100%;
}

.bpcta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, opacity .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.bpcta-btn:hover {
  transform: translateY(-1px);
  opacity: .98;
}

.bpcta-btn--red {
  color: #fff;
  background: linear-gradient(180deg, #ef5635 0%, #db3f24 100%);
  border-color: rgba(0,0,0,0.02);
  box-shadow: 0 10px 24px rgba(220, 63, 36, 0.24);
}

.bpcta-btn--ghost {
  color: #fff;
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.24);
}

.bpcta-card--blue .bpcta-btn--ghost:hover,
.bpcta-card--green .bpcta-btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.34);
}

@media (max-width: 1180px) {
  .bpcta-section {
    margin-top: -90px;
  }

  .bpcta-card {
    min-height: 390px;
    padding: 24px;
  }

  .bpcta-card__title {
    font-size: 30px;
  }
}

@media (max-width: 980px) {
  .bpcta-section {
    margin: 40px 0;
    padding: 0 18px;
  }

  .bpcta-box {
    padding: 34px 22px 22px;
  }

  .bpcta-grid {
    grid-template-columns: 1fr;
  }

  .bpcta-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .bpcta-title {
    font-size: 24px;
  }

  .bpcta-subtitle {
    font-size: 15px;
    margin-top: 14px;
  }

  .bpcta-card {
    padding: 22px 20px;
  }

  .bpcta-card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
  }

  .bpcta-card__icon img {
    max-width: 72px;
    max-height: 72px;
  }

  .bpcta-card__title {
    font-size: 28px;
  }

  .bpcta-card__text {
    font-size: 16px;
    line-height: 1.75;
  }

  .bpcta-btn {
    min-height: 58px;
    font-size: 18px;
  }
}