/* ==========================================================================
   Общие стили
   ========================================================================== */
[v-cloak] {
  display: none;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
  color: white;
  padding: 0.9rem 2.5rem;
  border-radius: 0.375rem; /* 6px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 7px 20px rgba(236, 72, 153, 0.4);
}

.practice-card {
  background-color: #1f2937; /* gray-800 */
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #374151; /* gray-700 */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media (hover: hover) {
  .practice-card:hover {
    transform: translateY(-8px);
    border-color: #a855f7; /* fuchsia-500 */
    background-color: #374151;
  }
}

.testimonial-card {
  background-color: #1f2937;
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid #a855f7;
}

/* ==========================================================================
   Модальные окна
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 1000;
}

.modal-content {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  width: 100%;
  max-width: 550px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* Стили для текста внутри модалок */
.prose p {
  margin-bottom: 1em;
}

/* ==========================================================================
   Мобильное меню
   ========================================================================== */
.mobile-menu-panel {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.98);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Cookie Баннер
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111827;
  color: #d1d5db;
  border-top: 1px solid #374151;
  padding: 1rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.cookie-banner-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.cookie-banner-text button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #a855f7;
  font-weight: 600;
}

.cookie-banner-button {
  background-color: #a855f7;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.cookie-banner-button:hover {
  background-color: #9333ea;
}

/* ==========================================================================
   Адаптация для больших экранов
   ========================================================================== */
@media (min-width: 768px) {
  .modal-content {
    padding: 2.5rem;
  }
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    text-align: left;
  }
}