/* ====== СЕКЦИЯ: КАК ПОЛУЧИТЬ / КАК ПОГАСИТЬ ====== */
.how-get {
  padding: 80px 0;

  min-height: calc(100vh - 280px);

  background:
    radial-gradient(circle at top left, rgba(0, 188, 212, 0.18) 0, transparent 55%),
    radial-gradient(circle at bottom right, rgba(47, 123, 255, 0.22) 0, transparent 55%),
    var(--bg-section-dark-top, #0F2748);
  color: #E5ECFF;
}


.how-get-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Заголовок страницы */
.how-get-inner h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 46px;
  color: #F9FBFF; 
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ====== КАРТОЧКИ СПОСОБОВ ====== */
.how-get-box {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 28px 30px 24px;
  margin-bottom: 26px;
  text-align: left;

  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  overflow: hidden;
}

/* внутри карточки возвращаем фирменные тёмные цвета */
.how-get-box h2,
.how-get-box p {
  color: var(--text-main);
}

.how-get-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(var(--brand-blue-rgb), 0.16);
  border-color: rgba(var(--brand-blue-rgb), 0.35);
  background:
    radial-gradient(circle at top right,
      rgba(var(--brand-teal-rgb), 0.14) 0,
      transparent 65%),
    var(--card-bg);
}

/* Шапка карточки: иконка + заголовок */
.box-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

/* Иконка из админки */
.how-get-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(var(--brand-blue-rgb), 0.35));
}

/* Заголовок способа */
.how-get-box h2 {
  color: var(--brand-blue);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Текст */
.how-get-box p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.2rem;
}

.how-get-box .box-short p,
.how-get-box .box-full p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Полный текст (аккордеон) */
.box-full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 4px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.how-get-box.open .box-full {
  max-height: 1000px;
  opacity: 1;
}


/* ====== АДАПТИВ ====== */
@media (max-width: 1024px) {
  .how-get-inner {
    width: 90%;
  }

  .how-get-box {
    padding: 24px 22px;
  }

  .how-get-box h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .how-get {
    padding: 60px 0;
  }

  .how-get-inner h1 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .how-get-box {
    padding: 22px 18px;
    margin-bottom: 22px;
    border-radius: 16px;
  }

  .box-head {
    gap: 12px;
  }

  .how-get-icon-img {
    width: 30px;
    height: 30px;
  }

  .how-get-box h2 {
    font-size: 1.02rem;
  }

  .how-get-box p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn.more-toggle {
    font-size: 0.86rem;
    padding: 9px 20px;
  }
}

@media (max-width: 480px) {
  .how-get {
    padding: 48px 0;
  }

  .how-get-inner h1 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .how-get-box {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .how-get-box h2 {
    font-size: 1rem;
  }

  .how-get-box p {
    font-size: 0.86rem;
  }

  .btn.more-toggle {
    font-size: 0.82rem;
    padding: 8px 16px;
  }
}
