/* ── Page-specific overrides ── */

  .page-hero {
    padding: 40px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  /* Услуги-grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
  }

  .service-card {
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color, rgba(27,67,50,0.12));
    border-radius: 16px;
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27,67,50,0.12);
  }

  .service-card.featured {
    border-color: var(--gold, #c9a84c);
    box-shadow: 0 4px 24px rgba(201,168,76,0.15);
  }
  .service-card.featured::before {
    content: 'Популярное';
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold, #c9a84c);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .service-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
  }

  .service-name {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--heading-color, #1b4332);
  }

  .service-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted, #4a6d5c);
    margin-bottom: 24px;
  }

  .service-includes {
    list-style: none;
    padding: 0; margin: 0 0 28px;
  }
  .service-includes li {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--text-muted, #4a6d5c);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
  }
  .service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold, #c9a84c);
    font-weight: 700;
  }

  .service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color, rgba(27,67,50,0.1));
    padding-top: 20px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .service-price {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--heading-color, #1b4332);
    line-height: 1;
  }
  .service-price span {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: var(--text-muted, #4a6d5c);
    display: block;
    margin-top: 3px;
  }

   /* Формат работы */
  .format-strip {
    display: flex;
    gap: 0;
    border: 1px solid var(--border-color, rgba(27,67,50,0.12));
    border-radius: 12px;
    overflow: hidden;
    margin-top: 48px;
  }
  .format-item {
    flex: 1;
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--border-color, rgba(27,67,50,0.12));
    background: var(--card-bg, #fff);
  }
  .format-item:last-child { border-right: none; }
  .format-item .f-icon { font-size: 28px; margin-bottom: 10px; }
  .format-item .f-title {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color, #1b4332);
    margin-bottom: 6px;
  }
  .format-item .f-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--text-muted, #4a6d5c);
    line-height: 1.5;
  }

  /* Курсы */
  .course-section {
    margin-top: 64px;
  }
  .course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
  }
  .course-card {
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
  }
  .course-card.light {
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5f0 100%);
    border: 1px solid rgba(27,67,50,0.1);
  }
  .course-card.gold {
    background: linear-gradient(135deg, #fdf6e3 0%, #fdf0c8 100%);
    border: 1px solid rgba(201,168,76,0.25);
  }
  .course-badge {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold, #c9a84c);
    margin-bottom: 12px;
  }
  .course-name {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color, #1b4332);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .course-sessions {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--text-muted, #4a6d5c);
    margin-bottom: 16px;
  }
  .course-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
  }
  .course-price {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color, #1b4332);
  }
  .course-economy {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #2d9e6b;
    font-weight: 600;
  }

  /* Гарантия */
  .guarantee-box {
    margin-top: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .guarantee-icon { font-size: 56px; flex-shrink: 0; }
  .guarantee-title {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }
  .guarantee-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 560px;
  }

  /* Steps */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
    counter-reset: step-counter;
  }
  .step-item {
    text-align: center;
    padding: 28px 20px;
  }
  .step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold, #c9a84c);
    display: flex; align-items: center; justify-content: center;
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    margin: 0 auto 16px;
  }
  .step-title {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color, #1b4332);
    margin-bottom: 8px;
  }
  .step-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--text-muted, #4a6d5c);
    line-height: 1.6;
  }

  @media (max-width: 640px) {
    .format-strip { flex-direction: column; }
    .format-item { border-right: none; border-bottom: 1px solid var(--border-color, rgba(27,67,50,0.12)); }
    .format-item:last-child { border-bottom: none; }
    .guarantee-box { padding: 32px 24px; flex-direction: column; gap: 20px; }
    .guarantee-icon { font-size: 40px; }
  }
  
  .premium-subliminal-section {
  position: relative;
  background-color: #050507; /* Глубокий черный с едва уловимым синим оттенком */
  color: #ffffff;
  padding: 100px 20px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif; /* Рекомендуется использовать элегантный шрифт без засечек */
}

/* Контейнер для центрирования контента */
.subliminal-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- Анимированный фон (Глубокие вибрации) --- */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: breathe 10s infinite alternate ease-in-out;
  z-index: 0;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #4b3e8e 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #b8860b 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes breathe {
  0% { transform: scale(0.8) translate(0, 0); opacity: 0.3; }
  100% { transform: scale(1.2) translate(50px, -50px); opacity: 0.6; }
}

/* --- Заголовок и текст --- */
.subliminal-header {
  text-align: center;
  margin-bottom: 60px;
}

.premium-badge {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d4af37; /* Золотой цвет */
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: rgba(212, 175, 55, 0.05);
}

.subliminal-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.subliminal-subtitle {
  font-size: 1.1rem;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Сетка карточек (Эффект матового стекла) --- */
.subliminal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.3); /* Подсветка золотом при наведении */
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f5f5f5;
  font-weight: 400;
}

.glass-card p {
  color: #888;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* --- Премиальная кнопка --- */
.subliminal-cta-wrapper {
  text-align: center;
}

.premium-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  background: transparent;
  color: #d4af37;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #d4af37;
  border-radius: 50px;
  overflow: hidden;
  transition: color 0.4s ease;
}

.premium-btn .btn-text {
  position: relative;
  z-index: 2;
}

.premium-btn .btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.premium-btn:hover {
  color: #050507;
  background: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.premium-btn:hover .btn-glow {
  left: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
  .subliminal-title {
    font-size: 2.2rem;
  }
  .subliminal-grid {
    grid-template-columns: 1fr;
  }
}