/* Рестайл-превью по референсам 21st.dev (Pricing Cards, Multi-Platform Grid, Accordion).
   Точечные акценты в токенах самого сайта; моушен-хореография не затронута. */

/* Прайсинг: выделенный годовой тариф + бейдж + hover ячеек */
.price { position: relative; transition: background-color 0.15s ease; }
.price:hover { background: rgba(139, 123, 255, 0.06); }
.price[data-checkout-plan="365"] {
  background: linear-gradient(160deg, rgba(107, 92, 231, 0.30), rgba(74, 63, 181, 0.14) 60%, transparent);
}
.price[data-checkout-plan="365"]:hover {
  background: linear-gradient(160deg, rgba(107, 92, 231, 0.38), rgba(74, 63, 181, 0.20) 60%, rgba(139, 123, 255, 0.06));
}
.price[data-checkout-plan="365"] .price-sum { color: var(--violet-soft); }
.price-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--violet-cta);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .price-badge { top: 12px; right: 16px; }
}

/* Карточки платформ и магазинов: подъём + плитка-стрелка */
.pf-card, .store-link {
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.pf-card:hover, .store-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.pf-go {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--bg-raise-2);
  font-size: 1rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.pf-card:hover .pf-go { background: var(--violet-cta); color: #ffffff; }

/* FAQ: открытый вопрос подсвечен */
.faq-item { transition: border-color 0.2s ease, background-color 0.2s ease; }
.faq-item[open] { border-color: var(--violet); background: rgba(139, 123, 255, 0.07); }

/* Мобильный sticky-CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  transform: translateY(110%);
  transition: transform 0.25s ease;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(23, 23, 28, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sticky-cta.is-on { transform: translateY(0); }
.sticky-cta-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--shell);
  margin: 0 auto;
}
.sticky-cta-text { display: grid; line-height: 1.25; }
.sticky-cta-text strong { font-size: 0.9375rem; }
.sticky-cta-text small { color: var(--ink-mute); font-size: 0.78125rem; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}
