/* --- CHOOSE YOUR PLAN SECTION --- */

.plans-section {
  text-align: center;
  padding: 80px 20px;
  background: #000;
}

.plans-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.plans-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.plan-btn {
  padding: 14px 32px;
  border-radius: 14px;
  border: 1px solid #272727;
  background: #0b0b0b;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.plan-btn:hover {
  background: #111;
  border-color: #3a3a3a;
  transform: translateY(-3px);
}

/* Адаптив */
@media (max-width: 600px) {
  .plans-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .plan-btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}
