/* Общий контейнер */
.bnpl-banner {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  margin: 40px auto;
}

/* Внутренняя сетка */
.bnpl-inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.bnpl-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bnpl-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Тексты */
.bnpl-title {
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
  color: #0b95c8; /* основной голубой Sokolov */
}

.bnpl-subtitle {
  margin: 0;
  font-size: 18px;
  color: #1c1f23;
}

/* Логотипы сервисов */
.bnpl-services {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bnpl-service {
  border: 1px solid rgba(11, 149, 200, 0.25);
  border-radius: 12px;
  padding: 10px 22px;
  background: #ffffff;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.bnpl-service:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  border-color: #0b95c8;
}

.bnpl-service img {
  height: 24px;
  display: block;
}

/* График платежей */
.bnpl-schedule {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.bnpl-col {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f5fbfe; /* светлый голубой фон */
  border: 1px solid transparent;
}

.bnpl-col-active {
  background: #e1f4fb;
  border-color: #0b95c8;
}

.bnpl-label {
  display: block;
  font-size: 13px;
  opacity: 0.8;
  color: #4a4e55;
}

.bnpl-value {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  font-size: 16px;
  color: #0f4661; /* темно синий под твой стиль */
}

/* Подписи и кнопка */
.bnpl-note {
  margin: 6px 0 0;
  font-size: 12px;
  opacity: 0.7;
  color: #4a4e55;
}

.bnpl-cta {
  margin-top: 16px;
  padding: 18px 24px;
  border-radius: 999px;
  border: none;
  background: #0b95c8;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bnpl-cta:hover {
  background: #0a82ae;
  box-shadow: 0 8px 22px rgba(11, 149, 200, 0.4);
  transform: translateY(-1px);
}

.bnpl-footnote {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.7;
  color: #4a4e55;
}

/* Правая часть с рукой */
.bnpl-arm-bg {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #0b95c8,
    #31a9d5,
    #7bc8e7,
    #c4e6f6
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.bnpl-arm-bg img {
  max-width: 100%;
  height: auto;
}

/* Адаптив */
@media (max-width: 900px) {
  .bnpl-inner {
    flex-direction: column;
  }

  .bnpl-banner {
    padding: 24px 20px;
    margin: 20px 10px;
  }

  .bnpl-schedule {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
