/* Extra custom styles on top of Tailwind CDN utilities */
body {
  -webkit-font-smoothing: antialiased;
}
.drop-shadow-glow {
  text-shadow: 0 0 18px rgba(124, 130, 255, 0.35);
}
.shadow-glow {
  box-shadow: 0 0 25px rgba(124, 130, 255, 0.35);
}

/* Неоновая карточка, как в старом макете */
.card-neon {
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease;
}

.monitoring-section {
  width: 100%;
  background: radial-gradient(
      800px circle at top left,
      rgba(124, 130, 255, 0.12),
      transparent 40%
    ),
    radial-gradient(
      600px circle at bottom right,
      rgba(52, 209, 198, 0.08),
      transparent 45%
    ),
    #070814;
}

.monitoring-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./img/world-map.jpg") center / cover no-repeat;
  opacity: 0.3; /* КЛЮЧЕВО */
  pointer-events: none;
  z-index: 0;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4232c2, #6a5cff);
  box-shadow: 0 0 0 4px rgba(66, 50, 194, 0.15);
  flex-shrink: 0;
}

.background-section {
  background: radial-gradient(
      circle at 30% 40%,
      rgba(124, 130, 255, 0.12),
      transparent 25%
    ),
    radial-gradient(circle at 65% 55%, rgba(52, 209, 198, 0.1), transparent 30%);
}

.background-image {
  background-image: radial-gradient(
      circle at 15% 10%,
      rgb(94 101 240 / 45%),
      transparent 49%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(52, 209, 198, 0.18),
      transparent 30%
    );
}

/* Светлая тема: аккуратная панель с лёгким glow */
html:not(.dark) .card-neon {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4); /* slate-400-ish */
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Тёмная тема: неоновая панель как в чекере */
html.dark .card-neon {
  background: rgba(21, 23, 40, 0.95);
  border: 1px solid rgba(124, 130, 255, 0.35);
  box-shadow: 0 0 25px rgba(124, 130, 255, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
}

/* Ховер для обеих тем – лёгкий подъём и усиление свечения */
.card-neon:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(124, 130, 255, 0.28),
    0 22px 55px rgba(0, 0, 0, 0.95);
}

/* Чтоб текст внутри не был серым и блеклым */

/* Постоянно светящаяся карточка — glow включён всегда */
.card-neon-static {
  position: relative;
}

/* Светлая тема – чуть сильнее тень */
html:not(.dark) .card-neon-static {
  box-shadow: 0 0 40px rgba(124, 130, 255, 0.25),
    0 22px 55px rgba(15, 23, 42, 0.25);
}

/* Тёмная тема – усиленный неоновый glow */
html.dark .card-neon-static {
  box-shadow: 0 0 45px rgba(124, 130, 255, 0.5), 0 25px 65px rgba(0, 0, 0, 1);
}

/* Базовая карточка тарифа: общие настройки */
.pricing-card {
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease;
}

/* Светлая тема: мягкая карточка, лёгкая тень */
html:not(.dark) .pricing-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4); /* что-то вроде slate-400 */
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* Тёмная тема: неоновая карточка */
html.dark .pricing-card {
  background: rgba(21, 23, 40, 0.95);
  border: 1px solid rgba(124, 130, 255, 0.35);
  box-shadow: 0 0 25px rgba(124, 130, 255, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.85);
}

/* Ховер: лёгкий подъём и усиление тени в обеих темах */
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(124, 130, 255, 0.28),
    0 22px 55px rgba(0, 0, 0, 0.95);
}

/* ——— Выделенный (средний) тариф — сильнее glow ——— */

/* Базовый класс усиленного тарифа */
.pricing-card-featured {
  position: relative;
  overflow: hidden;
}

/* Светлая тема: градиентная заливка + сильнее тень */
html:not(.dark) .pricing-card-featured {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border-color: rgba(124, 130, 255, 0.6);
  box-shadow: 0 0 45px rgba(124, 130, 255, 0.4),
    0 24px 60px rgba(15, 23, 42, 0.25);
}

/* Тёмная тема: неоновый градиент */
html.dark .pricing-card-featured {
  background: radial-gradient(
      circle at 0 0,
      rgba(124, 130, 255, 0.5),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(52, 209, 198, 0.28),
      transparent 60%
    ),
    rgba(15, 18, 40, 0.98);
  border-color: rgba(124, 130, 255, 0.7);
  box-shadow: 0 0 60px rgba(124, 130, 255, 0.65), 0 28px 70px rgba(0, 0, 0, 1);
}

/* Ховер у выделенного тарифа ещё чуть сильнее */
.pricing-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 75px rgba(124, 130, 255, 0.75), 0 32px 80px rgba(0, 0, 0, 1);
}

/* Неоновая кнопка для выбранного тарифа */
.btn-glow {
  background: linear-gradient(135deg, #a855ff, #6366f1);
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(124, 130, 255, 0.6);
  transition: all 0.25s ease;
  text-align: center;
  display: inline-block;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(124, 130, 255, 0.9);
}

/* FAQ animation */
.faq-inner {
  overflow: hidden;
  height: 0;
  transition: height 350ms ease;
}

.list-disc {
  list-style: none;
  margin: 0;
  padding: 0;
}
