/* ========== RESET & VARIABLES ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a1a;
  --bg-secondary: #1a1a3a;
  --accent-gold: #FFD700;
  --accent-orange: #FFA500;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --success: #4CAF50;
  --danger: #FF6B6B;
  --radius-md: 16px;
  --radius-lg: 50px;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

/* Fixed background only on desktop (iOS не поддерживает) */
@media (min-width: 768px) {
  body {
    background-attachment: fixed;
  }
}

a { text-decoration: none; color: inherit; }

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1000;
}

.lang-switcher a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.2s ease;
}

.lang-switcher a:hover {
  color: var(--text-primary);
  border-color: var(--accent-gold);
}

.lang-switcher a.active {
  color: #000;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-color: transparent;
}

@media (max-width: 600px) {
  .lang-switcher {
    top: 15px;
    right: 15px;
  }
  
  .lang-switcher a {
    padding: 5px 10px;
    font-size: 12px;
  }
}

/* ========== АНИМАЦИЯ ПОЯВЛЕНИЯ СЕКЦИЙ ========== */
/* Fallback если JS не загрузился - показываем контент */
.section-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Анимация только когда JS готов */
.js-ready .section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-ready .section-animate.visible,
.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Задержки для последовательного появления */
.js-ready .section-animate:nth-child(2) { transition-delay: 0.1s; }
.js-ready .section-animate:nth-child(3) { transition-delay: 0.2s; }
.js-ready .section-animate:nth-child(4) { transition-delay: 0.3s; }

/* ========== ФОНОВЫЕ ЗВЁЗДЫ ========== */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 50%;
  animation: twinkle var(--duration, 2s) infinite ease-in-out var(--delay, 0s);
  will-change: transform, opacity;
}

.star--small { width: 2px; height: 2px; }
.star--large { width: 4px; height: 4px; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.shooting-star {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(270deg, var(--text-primary), transparent);
  border-radius: 2px;
  transform: rotate(45deg);
  opacity: 0;
  animation: shoot var(--duration, 4s) infinite ease-out var(--delay, 0s);
  will-change: transform, opacity;
}

@keyframes shoot {
  0% { transform: rotate(45deg) translateX(0); opacity: 0; }
  2% { opacity: 1; }
  25% { opacity: 0.8; }
  50% { transform: rotate(45deg) translateX(500px); opacity: 0; }
  100% { opacity: 0; }
}

/* ========== FLOATING ELEMENTS ========== */
.floating-elements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-item {
  position: absolute;
  font-size: 24px;
  opacity: 0.15;
  animation: floating-move var(--duration, 15s) ease-in-out infinite;
  filter: blur(1px);
  will-change: transform, opacity;
}

@keyframes floating-move {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1); 
  }
  25% { 
    transform: translateY(-30px) rotate(10deg) scale(1.1); 
  }
  50% { 
    transform: translateY(-15px) rotate(-5deg) scale(0.95); 
  }
  75% { 
    transform: translateY(-40px) rotate(5deg) scale(1.05); 
  }
}

/* ========== ОСНОВНОЙ КОНТЕНТ ========== */
.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

/* Контейнер для юридических страниц - выравнивание сверху */
.container--legal {
  justify-content: flex-start;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container--legal h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  text-align: center;
  margin-bottom: 32px;
}

.container--legal .back-link {
  align-self: center;
}

/* ========== LOGO ========== */
.logo {
  font-size: clamp(60px, 15vw, 100px);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
  animation: float 3s ease-in-out infinite, logo-glow 2s ease-in-out infinite alternate;
  cursor: pointer;
  transition: transform 0.2s;
}

.logo:hover { transform: scale(1.1); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes logo-glow {
  0% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4)); }
  100% { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 80px rgba(255, 165, 0, 0.3)); }
}

/* ========== TYPOGRAPHY ========== */
h1 {
  font-size: clamp(2.2rem, 10vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

/* ========== ANIMATED GRADIENT LOGO ========== */
.brand-stars {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B, #FFD700, #FFA500);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.brand-ei {
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}

.tagline {
  font-size: clamp(1rem, 4vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 520px;
  line-height: 1.5;
}

/* ========== SECTION BLOCKS ========== */
.section-block {
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 215, 0, 0.8);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ========== PAYMENT METHODS ========== */
.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.payment-badge span { font-size: 16px; }

.payment-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

/* ========== SERVICE CARDS ========== */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

@media (min-width: 600px) {
  .services { grid-template-columns: repeat(4, 1fr); max-width: 800px; }
}

.service-card {
  display: block;
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              background 0.3s ease, 
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.15);
}

.service-card:active {
  transform: translateY(-4px) scale(0.98);
}

.service-icon { 
  font-size: 36px; 
  margin-bottom: 12px; 
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(-5deg);
  animation: icon-bounce 0.6s ease-in-out;
}

@keyframes icon-bounce {
  0%, 100% { transform: scale(1.2) rotate(-5deg); }
  25% { transform: scale(1.3) rotate(5deg); }
  50% { transform: scale(1.15) rotate(-3deg); }
  75% { transform: scale(1.25) rotate(3deg); }
}

.service-name { font-size: 13px; font-weight: 600; color: var(--text-secondary); }

/* ========== CTA BUTTON ========== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3),
              0 0 20px rgba(255, 215, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3),
                0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3),
                0 0 0 10px rgba(255, 215, 0, 0);
  }
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B, #FFD700);
  background-size: 300% 300%;
  border-radius: inherit;
  z-index: -1;
  animation: gradient-shift 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-button:hover::before { opacity: 1; }

.cta-button:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4),
              0 0 40px rgba(255, 215, 0, 0.3),
              0 0 80px rgba(255, 165, 0, 0.2);
  animation: none;
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button svg { width: 24px; height: 24px; }

/* ========== BENEFITS ========== */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 24px;
  margin-top: 40px;
  list-style: none;
}

@media (min-width: 600px) {
  .benefits { grid-template-columns: repeat(4, auto); }
}

.benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.benefit-icon { color: var(--success); font-weight: bold; }

/* ========== TRUST STATS ========== */
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 24px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-number {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  width: 100%;
  max-width: 800px;
  margin: 48px 0;
}

.how-it-works h2 {
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; gap: 24px; padding-left: 30px; }
  
  .step .step-number {
    left: -15px;
    top: 20px;
    transform: none;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  }
}

.step {
  position: relative;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-align: center;
}

.step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

/* Цифры в шагах на главной странице */
.step .step-number {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-primary);
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.step .step-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.step-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== FAQ ========== */
.faq-section {
  width: 100%;
  max-width: 700px;
  margin: 48px auto;
}

.faq-section h2 {
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.faq-item {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateX(4px);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: none; /* По умолчанию без анимации - избегаем конфликта */
}

/* Анимация работает только когда wrapper раскрыт */
.faq-hidden-wrapper.expanded .faq-answer {
  transition: max-height 0.4s ease;
}

/* И для видимых вопросов (не в wrapper) */
.faq-list > .faq-item .faq-answer {
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Master Accordion - Wrapper for hidden items */
.faq-hidden-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-hidden-wrapper.expanded {
  max-height: 3000px;
}

/* Скрытые вопросы - начальное состояние */
.faq-hidden-wrapper .faq-item {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* При раскрытии - появляются каскадно (эффект занавеса) */
.faq-hidden-wrapper.expanded .faq-item {
  opacity: 1;
  transform: translateY(0);
}

/* Задержки для эффекта занавеса */
.faq-hidden-wrapper.expanded .faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(6) { transition-delay: 0.3s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(7) { transition-delay: 0.35s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(8) { transition-delay: 0.4s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(9) { transition-delay: 0.45s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(10) { transition-delay: 0.5s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(11) { transition-delay: 0.55s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(12) { transition-delay: 0.6s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(13) { transition-delay: 0.65s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(14) { transition-delay: 0.7s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(15) { transition-delay: 0.75s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(16) { transition-delay: 0.8s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(17) { transition-delay: 0.85s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(18) { transition-delay: 0.9s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(19) { transition-delay: 0.95s; }
.faq-hidden-wrapper.expanded .faq-item:nth-child(20) { transition-delay: 1.0s; }

.faq-expand-btn {
  display: block;
  margin: 8px auto;
  padding: 12px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: fit-content;
  max-width: calc(100% - 40px);
}

.faq-expand-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.faq-expand-icon {
  display: inline-block;
  font-size: 18px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: var(--accent-gold);
}

.faq-expand-btn.expanded .faq-expand-icon {
  transform: rotate(180deg);
}

/* ========== ARTICLES SECTION ========== */
.articles-section {
  width: 100%;
  max-width: 700px;
  margin: 48px 0;
}

.articles-section h2 {
  margin-bottom: 24px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.article-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.article-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.article-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-card:hover .article-title {
  color: var(--accent-gold);
}

.article-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ========== BLOG PAGE ========== */
/* Контейнер для страницы блога - выравнивание сверху */
.container--blog {
  justify-content: flex-start;
  padding-top: 60px;
}

.page-header {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.page-header .tagline {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #000;
  border-color: transparent;
}

.blog-grid {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 64px;
  min-height: 200px;
  /* Flexbox для CSS фильтрации */
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  min-height: 280px;
  /* Ширина для 3-колоночной сетки с gap 32px */
  width: calc((100% - 64px) / 3);
  /* Анимация появления */
  animation: cardFadeIn 0.3s ease forwards;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card.hidden {
  display: none;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    gap: 24px;
  }
  .blog-card {
    width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    gap: 20px;
  }
  .blog-card {
    width: 100%;
  }
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
  /* transform убран - конфликтует с Isotope */
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-badge {
  padding: 6px 14px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
}

.blog-date {
  font-size: 13px;
  color: var(--text-muted);
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.blog-title a:hover {
  color: var(--accent-gold);
}

.blog-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

.read-time {
  font-size: 14px;
  color: var(--text-muted);
}

.blog-link {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.blog-link:hover {
  text-decoration: underline;
}

/* CTA секции - единый стиль с жёлтым градиентом */
.cta-section {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  margin-bottom: 48px;
  max-width: 600px;
  width: 100%;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Большой CTA баннер (для главной) */
.cta-banner {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  margin: 80px 0;
  max-width: 800px;
  width: 100%;
}

.cta-banner .cta-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cta-banner h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 40px 20px;
    margin: 48px 0;
  }
  
  .cta-banner h3 {
    font-size: 24px;
  }
  
  .cta-banner p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .filter-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}

/* Blog preview секция на главной */
.blog-preview {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.03));
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 24px;
  padding: 48px 24px;
  margin: 64px 0;
  max-width: 800px;
  width: 100%;
}

.blog-preview-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-preview-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-preview h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.blog-preview > p,
.blog-preview-header p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .blog-preview {
    padding: 32px 20px;
  }
  
  .blog-preview h2 {
    font-size: 28px;
  }
}

/* Blog grid 3 columns - для главной страницы */
.blog-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .blog-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid-3col {
    grid-template-columns: 1fr;
  }
}

/* ========== GAME HINT ========== */
.game-hint {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid transparent;
}

.game-hint:hover { 
  color: var(--accent-gold); 
  opacity: 1;
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.game-hint span { animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ========== FOOTER ========== */
.footer {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.footer a:hover { color: var(--accent-gold); }

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Мобильная версия футера */
@media (max-width: 500px) {
  .footer-links {
    flex-direction: column;
    gap: 4px;
  }
  
  .footer-divider {
    display: none;
  }
  
  .footer-links a {
    display: block;
    padding: 4px 0;
  }
}

/* ========== OTHER SERVICES (для лендингов) ========== */
.other-services {
  width: 100%;
  max-width: 600px;
  margin: 48px 0;
}

.other-services h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 500px) {
  .other-services-grid { grid-template-columns: 1fr; }
}

.other-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.other-service-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--text-primary);
}

.other-service-link span:first-child {
  font-size: 20px;
}

/* ========== LANDING PAGE SPECIFIC ========== */
.landing-hero {
  max-width: 700px;
  margin-bottom: 32px;
}

.landing-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.landing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 600px;
  margin: 32px 0;
}

@media (max-width: 500px) {
  .landing-features { grid-template-columns: 1fr; }
}

.landing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  text-align: left;
}

.landing-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.landing-feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.landing-feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 13px;
  color: var(--text-muted);
  z-index: 10;
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--accent-gold);
}

.breadcrumbs span {
  margin: 0 8px;
  opacity: 0.5;
}

/* ========== МОБИЛЬНАЯ АДАПТАЦИЯ ЛЕНДИНГОВ ========== */
@media (max-width: 600px) {
  /* Хлебные крошки - скрываем на мобильных */
  .breadcrumbs {
    position: static;
    margin-bottom: 24px;
    padding: 0 10px;
  }
  
  /* Статистика доверия - вертикально */
  .trust-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .trust-item {
    flex-direction: row;
    gap: 16px;
    width: 100%;
    justify-content: center;
  }
  
  .trust-number {
    font-size: 1.5rem;
  }
  
  /* CTA кнопка - компактнее */
  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  /* Описание лендинга */
  .landing-description {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Преимущества */
  .landing-feature {
    padding: 16px;
  }
  
  .landing-feature-icon {
    font-size: 20px;
  }
  
  /* Способы оплаты */
  .payment-methods {
    gap: 8px;
  }
  
  .payment-badge {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .payment-badge span {
    font-size: 14px;
  }
  
  /* FAQ секция */
  .faq-question {
    padding: 16px 18px;
    font-size: 14px;
    text-align: left;
  }
  
  .faq-answer-content {
    padding: 0 18px 16px;
    font-size: 13px;
  }
  
  /* Другие услуги */
  .other-services {
    margin: 32px 0;
  }
  
  .other-service-link {
    padding: 14px;
    font-size: 14px;
  }
}

/* ========== ЮРИДИЧЕСКИЕ СТРАНИЦЫ ========== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.back-link:hover { 
  color: var(--accent-gold);
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
}

.back-link--bottom {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  text-align: center;
}

.logo-small {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
  animation: float 3s ease-in-out infinite;
  text-align: center;
  width: 100%;
}

.legal-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}

.legal-content ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.legal-content li { 
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--accent-gold);
  font-weight: bold;
}

/* Блок выделения в юридических документах */
.legal-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 165, 0, 0.08) 100%);
  border-left: 4px solid var(--accent-gold);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.legal-highlight p { 
  margin-bottom: 0; 
  font-weight: 500;
  color: var(--text-primary);
}

/* Мобильная адаптация юридических страниц */
@media (max-width: 600px) {
  .legal-content {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .legal-content h2 {
    font-size: 1.2rem;
  }
  
  .legal-content p,
  .legal-content li {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .legal-highlight {
    padding: 16px 18px;
  }
}

/* Footer для юридических страниц */
.footer--legal {
  margin-top: 48px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--card-border);
}

/* ========== СТАТЬИ (SEO страницы) ========== */
.container--article {
  justify-content: flex-start;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding-top: 50px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 60px;
}

.article-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.article-content ul,
.article-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-content ol {
  list-style-position: inside;
  padding-left: 0;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.article-content table,
.article-content .comparison-table,
.article-content .benefit-card,
.article-content .case-box,
.article-content .mistake-box,
.article-content .test-result-box {
  max-width: 100%;
  overflow-x: auto;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  font-size: 13px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 16px;
}

.article-lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.article-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.article-meta-line {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.article-meta-line .article-updated,
.article-meta-line .article-read-time {
  margin: 0;
}

/* Оглавление */
.article-toc {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 20px 28px;
  margin: 0 auto 40px;
  text-align: left;
}

.article-content > .article-toc {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toc-title {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.article-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-toc li {
  margin-bottom: 10px;
}

.article-toc a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.article-toc a:hover {
  color: var(--accent-gold);
}

/* Секции статьи */
.article-section {
  margin-bottom: 48px;
}

.article-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.article-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.article-section ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 16px 0;
  padding-left: 24px;
}

.article-section li {
  margin-bottom: 10px;
}

/* Сетка преимуществ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card--highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
  border-color: var(--accent-gold);
}

.benefit-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Шаги инструкции */
.steps-list {
  position: relative;
  margin: 24px 0;
}

.step-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.3s;
}

.step-item:hover {
  border-color: rgba(255, 215, 0, 0.2);
}

/* Скрываем цифры в шагах на страницах статей */
.steps-list .step-item .step-number {
  display: none !important;
}

.step-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.step-content a {
  color: var(--accent-gold);
}

/* CTA блок в статье */
.cta-block {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.cta-block-text {
  width: 100%;
}

.cta-block h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-weight: 600;
}

.cta-block p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

.cta-block .cta-button {
  width: 100%;
  max-width: 300px;
  padding: 12px 24px;
  font-size: 14px;
  margin-bottom: 0;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-block {
    padding: 14px;
  }
  
  .cta-block h3 {
    font-size: 14px;
  }
  
  .cta-block p {
    font-size: 12px;
  }
}

/* Опции оплаты */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-option {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.payment-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.payment-option h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.payment-option p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ========== КОМПОНЕНТЫ СТАТЕЙ (БЛОГ) ========== */

/* Info boxes - блоки предупреждений и подсказок */
.info-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  line-height: 1.6;
}

.info-box--warning {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.03));
  border-left: 4px solid #ef4444;
}

.info-box--tip {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(22, 163, 74, 0.03));
  border-left: 4px solid #22c55e;
}

.info-box--info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.03));
  border-left: 4px solid #3b82f6;
}

.info-box strong {
  color: var(--text-primary);
}

/* Comparison tables - таблицы сравнения */
.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 24px auto;
  border-collapse: collapse;
  font-size: 15px;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}

.comparison-table th {
  background: var(--card-bg);
  color: var(--text-primary);
  font-weight: 600;
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Section subtitles - подзаголовки */
.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text-primary);
}

/* Related section - блок "Читайте также" */
.related-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--card-border);
}

.related-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.related-card-emoji {
  font-size: 32px;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.related-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.related-card-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  padding-top: 8px;
  border-top: 1px solid var(--card-border);
}

@media (max-width: 768px) {
  .related-cards {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 13px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }
}

/* Связанные статьи (legacy) */
.related-links {
  border-top: 1px solid var(--card-border);
  padding-top: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-grid--wide {
  grid-template-columns: repeat(3, 1fr);
}

.related-links--highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), transparent);
  border-radius: 16px;
  padding: 24px;
  margin-top: 32px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.related-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--text-primary);
}

.related-card--primary {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--text-primary);
}

.related-card--primary:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.related-card span:first-child {
  font-size: 24px;
}

/* Блок выделения в статьях */
.highlight-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.08) 100%);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.highlight-box h4 {
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-size: 16px;
}

.highlight-box p {
  margin: 0;
  color: var(--text-secondary);
}

/* ========== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ СТАТЕЙ ========== */

/* Сетка использования (7 способов) */
.uses-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.use-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: all 0.3s;
}

.use-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateX(4px);
}

.use-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 14px;
  flex-shrink: 0;
}

.use-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.use-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ========== Карточки способов покупки ========== */
.buy-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .buy-methods-grid {
    grid-template-columns: 1fr;
  }
}

.buy-method-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.buy-method-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.buy-method-card--recommended {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 140, 0, 0.05));
}

.buy-method-card--recommended::before {
  content: '🏆 Рекомендуем';
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.buy-method-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.buy-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.buy-method-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.buy-method-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  counter-reset: step;
}

.buy-method-steps li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  counter-increment: step;
}

.buy-method-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
}

.buy-method-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--card-border);
}

.buy-method-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.buy-method-tag--pro {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.buy-method-tag--con {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}

/* ========== УНИВЕРСАЛЬНЫЕ БЛОКИ ДЛЯ СТАТЕЙ ========== */

/* --- Service Review Card --- */
.article-content .service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-border), transparent);
}

.service-card--winner {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 140, 0, 0.03));
}

.service-card--winner::before {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
}

.service-card--warning {
  border-color: #ef4444;
}

.service-card--warning::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.service-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px 0;
}

.service-card__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.service-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .service-card__stats {
    gap: 8px;
    padding: 12px;
  }
  
  .service-card__stat-value {
    font-size: 16px;
  }
  
  .service-card__stat-label {
    font-size: 10px;
  }
}

.service-card__stat {
  text-align: center;
}

.service-card__stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
}

.service-card__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card__content {
  margin-bottom: 0;
}

.service-card__content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* --- Pros & Cons Grid --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

@media (max-width: 640px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.pros-list,
.cons-list {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid var(--card-border);
}

.pros-list {
  border-top: 3px solid #4ade80;
}

.cons-list {
  border-top: 3px solid #f87171;
}

.pros-list__title,
.cons-list__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-list__title {
  color: #4ade80;
}

.cons-list__title {
  color: #f87171;
}

.pros-list ul,
.cons-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

/* --- Verdict Box --- */
.verdict-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
  border: 1px solid var(--accent-gold);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.verdict-box__icon {
  font-size: 32px;
  flex-shrink: 0;
}

.verdict-box__content {
  flex: 1;
}

.verdict-box__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 0 0 8px 0;
}

.verdict-box__text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.verdict-box--negative {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.1), rgba(239, 68, 68, 0.05));
  border-color: #f87171;
}

.verdict-box--negative .verdict-box__title {
  color: #f87171;
}

.verdict-box--neutral {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
  border-color: #3b82f6;
}

.verdict-box--neutral .verdict-box__title {
  color: #3b82f6;
}

/* --- Quote Block --- */
.quote-block {
  position: relative;
  background: var(--card-bg);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 12px 12px 0;
  padding: 24px 24px 24px 32px;
  margin: 32px 0;
  font-style: italic;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 48px;
  color: var(--accent-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-block__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.quote-block__author {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-block__author::before {
  content: '—';
}

/* --- Price Badge --- */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #000;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
}

.price-badge--large {
  font-size: 18px;
  padding: 12px 24px;
}

.price-badge--outline {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-item__content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.feature-item__content p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Highlight Number --- */
.highlight-number {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.highlight-number__value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.highlight-number__text {
  flex: 1;
}

.highlight-number__text strong {
  display: block;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.highlight-number__text span {
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Rating Stars --- */
.rating {
  display: inline-flex;
  gap: 2px;
}

.rating__star {
  color: var(--accent-gold);
  font-size: 16px;
}

.rating__star--empty {
  color: var(--card-border);
}

/* --- Comparison Row --- */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

@media (max-width: 640px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }
}

.comparison-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.comparison-item--winner {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), transparent);
}

.comparison-item__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.comparison-item__value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.comparison-item--winner .comparison-item__value {
  color: var(--accent-gold);
}

.comparison-item__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Alert Box --- */
.alert-box {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  margin: 24px 0;
  align-items: flex-start;
}

.alert-box--success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-box--warning {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.alert-box--danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-box__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.alert-box__content strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.alert-box__content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Типы баланса */
.balance-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.balance-type {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.balance-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.balance-type h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.balance-type p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Типы подарков */
.gift-types {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.gift-type {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.gift-emoji {
  font-size: 28px;
  flex-shrink: 0;
}

.gift-type h4 {
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.gift-type p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Официальные методы */
.official-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 700px) {
  .official-methods {
    grid-template-columns: 1fr;
  }
}

.method-card {
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.method-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.method-header span {
  font-size: 24px;
}

.method-header h4 {
  font-size: 15px;
  color: var(--text-primary);
}

.method-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.method-cons {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.con {
  font-size: 12px;
  color: var(--danger);
}

/* Список методов */
.methods-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.method-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.method-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.method-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.method-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.method-item a {
  color: var(--accent-gold);
}

/* Таблица сравнения (div-based grid) */
div.comparison-table {
  width: 100%;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

/* Строки внутри div-таблиц (не путать с .comparison-row для карточек сравнения) */
div.comparison-table .comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin: 0;
}

.comparison-table--4col .comparison-row {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.comparison-row .savings {
  color: #4CAF50;
  font-weight: 600;
}

.comparison-row > div {
  padding: 14px 16px;
  background: var(--card-bg);
  font-size: 14px;
  text-align: center;
}

.comparison-row.header > div {
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-row.highlight-row > div {
  background: rgba(255, 215, 0, 0.1);
}

.comparison-row .highlight {
  color: var(--accent-gold);
  font-weight: 600;
}

.table-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.table-note a {
  color: var(--accent-gold);
}

/* Бейджи для таблиц */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge--neutral {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.badge--small {
  background: rgba(76, 175, 80, 0.15);
  color: #81c784;
}

.badge--best {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.15));
  color: var(--accent-gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Адаптив для бейджей в таблице */
@media (max-width: 600px) {
  .badge {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .comparison-row > div:first-child .badge {
    display: block;
    margin-top: 4px;
    width: fit-content;
  }
}

/* ========== SEO СТРАНИЦЫ: Info и Warning боксы с иконками ========== */
/* Эти стили применяются ТОЛЬКО когда есть .info-icon внутри (SEO структура) */

/* Warning box - отдельный класс для предупреждений на SEO страницах */
.warning-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.25);
}

/* Info box с иконкой (SEO структура) - flex layout с зелёным фоном */
.info-box:has(.info-icon) {
  display: flex;
  gap: 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
}

/* Иконки внутри боксов */
.info-icon,
.warning-icon {
  font-size: 28px;
  flex-shrink: 0;
}

/* Текст внутри боксов с иконками */
.info-box:has(.info-icon) strong,
.warning-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.info-box:has(.info-icon) p,
.warning-box p,
.info-box:has(.info-icon) ul {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.info-box:has(.info-icon) ul {
  padding-left: 20px;
  margin-top: 8px;
}

.info-box:has(.info-icon) li {
  margin-bottom: 4px;
}

/* Highlight вариант (золотой, для SEO) */
.info-box--highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.05)) !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
}

.info-box--highlight strong {
  color: var(--accent-gold);
}

.info-box--highlight a {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* Статистика (О нас) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Отзывы (О нас) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
}

.review-rating {
  font-size: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* Premium опции */
.premium-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 600px) {
  .premium-options {
    grid-template-columns: 1fr;
  }
}

.premium-option {
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.premium-option h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.premium-option ol {
  padding-left: 20px;
  margin: 0;
}

.premium-option li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.5;
}

.premium-option a {
  color: var(--accent-gold);
}

/* CTA benefits */
.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 20px;
}

.cta-benefit {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Примечание */
.note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
}

/* Мобильная адаптация статей */
@media (max-width: 600px) {
  .container--article {
    padding-top: 30px;
  }
  
  .article-lead {
    font-size: 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .related-grid,
  .related-grid--wide {
    grid-template-columns: 1fr;
  }
  
  .related-links--highlight {
    padding: 16px;
  }
}

/* ========== ПЛАВАЮЩАЯ КНОПКА CTA ========== */
.floating-cta {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange)) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 9999 !important;
  text-decoration: none !important;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

.floating-cta:active {
  transform: scale(0.95);
}

.floating-cta svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

/* Мобильная адаптация плавающей кнопки */
@media (max-width: 600px) {
  .floating-cta {
    bottom: 20px !important;
    right: 20px !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
  }
  
  .floating-cta svg {
    width: 24px;
    height: 24px;
  }
}

/* ========== ПЛАВНЫЙ SCROLL ========== */
html {
  scroll-behavior: auto;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg-primary);
}

/* Отступ при скролле к якорям - для всех элементов с id */
[id] {
  scroll-margin-top: 100px;
}

/* Для статей блога - больше отступ */
.article-content [id] {
  scroll-margin-top: 120px;
}

/* ========== ARTICLE CTA БЛОКИ ========== */
.article-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 32px 0;
  text-align: center;
}

.article-cta p {
  margin: 0 0 12px;
  color: var(--text-secondary);
}

.article-cta p:first-child {
  color: var(--text-primary);
  font-size: 18px;
}

.article-cta .cta-button {
  margin-top: 8px;
  display: inline-flex;
}

.article-cta--accent {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
  border-color: var(--accent-gold);
}

@media (max-width: 768px) {
  .article-cta {
    padding: 20px;
    margin: 24px 0;
  }
  
  .article-cta p:first-child {
    font-size: 16px;
  }
}

/* ========== УЛУЧШЕННЫЕ HOVER-ЭФФЕКТЫ ========== */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
              rgba(255, 215, 0, 0.15) 0%, 
              transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}

.service-card:hover::after {
  opacity: 1;
}

/* Улучшенный hover для карточек преимуществ */
.landing-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Hover эффект для карточек статей - световая полоса */
.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.article-card:hover::before {
  left: 100%;
}

/* Анимация иконок при наведении */
.article-icon,
.step-icon,
.stat-icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.article-card:hover .article-icon,
.step:hover .step-icon,
.stat:hover .stat-icon {
  transform: scale(1.2);
}

/* Подсветка активного FAQ */
.faq-item.active {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

/* ========== МОБИЛЬНАЯ ОПТИМИЗАЦИЯ ========== */

/* Уменьшенные анимации для пользователей с настройкой */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .section-animate {
    opacity: 1;
    transform: none;
  }
}

/* Увеличенные области нажатия для мобильных */
@media (max-width: 768px) {
  .service-card,
  .article-card,
  .faq-question,
  .control-btn,
  .game-btn,
  .cta-button {
    min-height: 44px;
  }
  
  .faq-question {
    padding: 16px 20px;
  }
  
  /* Убираем hover-эффекты на мобильных для производительности */
  .service-card:hover,
  .article-card:hover,
  .faq-item:hover {
    transform: none;
  }
  
  .service-card:active {
    transform: scale(0.98);
  }
  
  .article-card:active {
    transform: scale(0.98);
  }
  
  /* Оптимизация content-visibility для секций ниже fold */
  .how-it-works,
  .faq-section,
  .articles-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 300px;
  }
}

/* touch-action: manipulation уже установлен в body */

/* Оптимизация перерисовки для игры */
.catcher,
.game-item {
  will-change: transform;
}

