.product-extra-blocks {
  max-width: 980px;
  margin: 32px auto 0;
  font-family: Arial, sans-serif;
}

.product-cards-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-info-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(24, 64, 120, 0.08);
  padding: 24px;
  box-sizing: border-box;
}

.product-info-card__title {
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 16px;
}

.product-info-card__value {
  font-size: 28px;
  font-weight: 700;
  color: #0b67c2;
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.product-btn--primary {
  background: #0b67c2;
  color: #ffffff;
  border: 2px solid #0b67c2;
}

.product-btn--primary:hover {
  background: #0957a4;
  border-color: #0957a4;
}

.product-btn--outline {
  background: #ffffff;
  color: #0b67c2;
  border: 2px solid #0b67c2;
}

.product-btn--outline:hover {
  background: #f2f8ff;
}

.product-btn__icon {
  font-size: 16px;
  line-height: 1;
}

.product-features-box {
  display: flex;
  gap: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(24, 64, 120, 0.08);
  padding: 28px 24px;
  flex-wrap: wrap;
}

.product-feature-item {
  flex: 1 1 220px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.product-feature-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #0b67c2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.product-feature-item__title {
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.product-feature-item__text {
  font-size: 16px;
  color: #4b4b4b;
  line-height: 1.5;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .product-cards-row {
    flex-direction: column;
  }

  .product-features-box {
    flex-direction: column;
  }

  .product-info-card__value {
    font-size: 24px;
  }
}