.transformation-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 100px auto;
  padding: 0 60px;
  font-family: 'Montserrat', sans-serif;
  align-items: stretch;
}

/* Левая колонка — плашки */
.transformation-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.badge {
  width: 100%; /* если в flex/grid — можно оставить авто */
  max-width: 480px;        /* 👈 ограничиваем ширину */
  min-height: 100px;       /* 👈 увеличиваем высоту */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  padding: 28px 32px;      /* 👈 чуть больше внутренних отступов */
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12);
}


.badge span {
  font-size: 30px;
  line-height: 1;
}

.badge h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
  gap: 18px; 
}

.badge h4 i {
  margin-right: 16px;
}


.badge p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Правая колонка — треки */
.transformation-right h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.transformation-right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.track-card {
  background: #f9fbfd;
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12); /* 👈 при наведении */
}

.track-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #009C8F;
}

.track-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.5;
}

.track-btn {
  display: inline-block;
  background: #009C8F;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.track-btn:hover {
  background: #33B6A2;
}

.badge i {
  font-size: 32px;
  color: #009C8F;
  flex-shrink: 0;
  margin-top: 4px;
}

.track-card h3 i {
  color: #009C8F;
  margin-right: 10px;
}


.support-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-list li {
  font-size: 14px;
  color: #333;
}

.sla-note {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .transformation-section {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .transformation-left {
    order: 2;
  }

  .transformation-right {
    order: 1;
    text-align: center;
  }

  .transformation-right p,
  .track-card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .transformation-section {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }

  .transformation-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .badge {
    width: 100%;
    max-width: 340px;
    min-height: auto;
    padding: 20px 24px;
    border-radius: 14px;
  }

  .badge h4 {
    font-size: 16px;
    gap: 14px;
  }

  .badge h4 i {
    font-size: 24px;
  }
}

