.bitrix-box-section {
  
  padding: 96px 64px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Заголовок */
.bitrix-box-header {
 text-align: center;
  margin: 0 auto;
  max-width: 720px;
}

.box-heading {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.box-subheading {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Преимущества */
.box-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.box-benefit-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 360px;
  margin: 0 auto;
}

.box-benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}


.box-benefit-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  
  display: flex;
  align-items: center;
  gap: 12px;
}

.box-benefit-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  max-width: 360px;
}

/* Таблица сравнения */
.box-comparison {
  overflow-x: auto;
}

.comparison-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.comparison-table th {
  background-color: #f0f0f0;
  font-weight: 600;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: #555;
  width: 180px;
}

/* Кнопка */
.box-cta {
  margin-top: 16px;
  text-align: center;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #02dece;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.consult-btn:hover {
  background: #00c7bb;
}

/* Иконки Font Awesome */
.box-benefit-item i,
.consult-btn i,
.comparison-table th i {
  
  font-size: 16px;
}

@media (max-width: 768px) {
  .bitrix-box-section {
    padding: 64px 24px;
    gap: 48px;
  }

  .box-heading {
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
  }

  .box-subheading {
    font-size: 14px;
    text-align: center;
  }

  .box-benefits {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .box-benefit-item {
    max-width: 100%;
    padding: 20px;
    border-radius: 14px;
  }

  .box-benefit-item h3 {
    font-size: 17px;
    gap: 10px;
  }

  .box-benefit-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  .comparison-title {
    font-size: 18px;
    text-align: center;
  }

  .comparison-table {
    font-size: 13px;
    overflow-x: auto;
    display: block;
  }

  .comparison-table td:first-child {
    width: auto;
  }

  .consult-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    padding: 10px 18px;
    width: auto;         /* Не на всю ширину */
    margin: 0 auto;      /* Центрирование */
    border-radius: 10px;
  }

  .box-cta {
    text-align: center;
  }
}
