.hero {
  position: relative;
  padding-top: 5rem;      /* бывшее md:pt-20 */
  padding-bottom: 8rem;   /* бывшее md:pb-32 */
  overflow: hidden;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: row;    /* раньше md:flex-row */
  align-items: center;
  gap: 1rem;
}

.hero-content {
  width: 50%;             /* бывшее md:w-1/2 */
  margin-bottom: 0;       /* бывшее md:mb-0 */
  z-index: 10;
}

.hero-text {
  font-size: 1.25rem;     /* text-xl — базовый размер для больших экранов */
  color: #d1d5db;         /* text-gray (пример из Tailwind — gray-500) */
  margin-bottom: 2rem;    /* mb-8 → 8 * 0.25rem */
  max-width: 32rem;       /* max-w-lg → 32rem */
}

.hero-highlight {
  font-weight: 500;   /* font-medium */
  color: #ffffff;     /* text-white */
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem; /* gap-4 */
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column; /* flex-col для мобильных */
  }
}

/* Основная кнопка с градиентом */
.hero-btn-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;          
  border-radius: 9999px;       
  font-weight: 500;           
  color: #ffffff;       
  background: var(--primary-gradient);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: hero-pulse 2s infinite;
}

.hero-btn-outline {
    background: transparent;
    border: 2px solid var(--indigo-500);
    color: #f8fafc;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.hero-btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
}

/* 🔽 Адаптация для мобильных (до 768px) */
@media (max-width: 768px) {
  .hero {
    padding-top: 3rem;     /* pt-16 */
    padding-bottom: 5rem;  /* pb-20 */
  }

  .hero-section {
    flex-direction: column; /* flex-col */
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  .hero-content {
    width: 100%;           /* вместо 50% */
    margin-bottom: 4rem;   /* mb-16 */
  }

  .hero-text {
    font-size: 1.125rem;  /* text-lg для мобильных */
  }
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

