/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ===================== TOKENS ===================== */
:root {
  --purple:     #534AB7;
  --purple-dark: #3C3489;
  --purple-light: #EEEDFE;
  --purple-mid:  #AFA9EC;
  --coral:      #FF5757;
  --coral-dark: #E03E3E;
  --tg-blue:    #2AABEE;
  --text:       #1a1a2e;
  --text-muted: #6b6b8a;
  --text-light: #9999b3;
  --bg:         #ffffff;
  --bg-soft:    #f7f7fc;
  --border:     #e8e8f0;
  --green-bg:   #eaf3de;
  --green-text: #27500a;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm:  0 1px 3px rgba(83,74,183,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(83,74,183,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 32px rgba(83,74,183,0.16), 0 4px 16px rgba(0,0,0,0.08);
}

/* ===================== NAVIGATION ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.4px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--purple); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-nav-secondary {
  font-size: 14px;
  color: var(--purple);
  background: transparent;
  border: 1.5px solid var(--purple-mid);
  border-radius: 22px;
  padding: 8px 18px;
  transition: all 0.2s;
}
.btn-nav-secondary:hover { background: var(--purple-light); }
.btn-nav-primary {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--coral);
  border: none;
  border-radius: 22px;
  padding: 9px 20px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(255,87,87,0.3);
}
.btn-nav-primary:hover { background: var(--coral-dark); transform: translateY(-1px); }
.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text);
  padding: 4px;
}

/* ===================== HERO ===================== */
.hero {
  background: var(--purple-light);
  padding: 72px 40px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(83,74,183,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--purple-mid);
  border-radius: 22px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--purple); }
.hero h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--purple-dark);
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--coral); }
.hero-sub {
  font-size: 16px;
  color: #534AB7;
  opacity: 0.75;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 26px;
  padding: 14px 28px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(255,87,87,0.35);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,87,87,0.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--purple);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--purple-mid);
  border-radius: 26px;
  padding: 14px 28px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--purple-light); }
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--purple-dark);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}
.hero-stat-divider {
  width: 1px;
  background: var(--purple-mid);
  opacity: 0.4;
  align-self: stretch;
}

/* Hero visual side */
.hero-visual {
  position: relative;
}
.hero-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #d8d5f5;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #c8c4f0 0%, #a8a2e8 100%);
}
.hero-img-placeholder svg { width: 48px; height: 48px; fill: rgba(255,255,255,0.6); }
.hero-img-placeholder span { font-size: 13px; color: rgba(255,255,255,0.8); text-align: center; padding: 0 24px; }
.hero-badge-float {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hbf-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--purple);
  flex-shrink: 0;
}
/* 👉 ЗАМЕНИ src на реальное фото ведущего */
.hbf-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hbf-name { font-size: 13px; font-weight: 500; color: var(--text); }
.hbf-earn { font-size: 12px; color: var(--green-text); background: var(--green-bg); padding: 2px 8px; border-radius: 12px; font-weight: 500; }

/* ===================== SECTION COMMON ===================== */
.section { padding: 72px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
}

/* ===================== EARNINGS ===================== */
.earnings { background: var(--bg-soft); }
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.earn-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.earn-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.earn-card.featured {
  border: 2px solid var(--purple);
  box-shadow: var(--shadow-md);
}
.earn-featured-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.earn-hours {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.earn-amount {
  font-size: 34px;
  font-weight: 600;
  color: var(--purple-dark);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.earn-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.earn-divider { height: 1px; background: var(--border); margin: 16px 0; }

/* 👉 Блок под скриншот выплаты */
.earn-screenshot {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--purple-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px dashed var(--purple-mid);
}
.earn-screenshot img { width: 100%; height: 100%; object-fit: cover; }
.earn-screenshot-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; width: 100%; height: 100%;
}
.earn-screenshot-placeholder svg { width: 24px; height: 24px; fill: var(--purple-mid); }
.earn-screenshot-placeholder span { font-size: 11px; color: var(--purple-mid); text-align: center; padding: 0 12px; }

/* ===================== HOW IT WORKS ===================== */
.how { background: #fff; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.how-step:last-child { border-bottom: none; }
.how-step:hover { padding-left: 8px; }
.how-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple-light);
  border: 1.5px solid var(--purple-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s;
}
.how-step.active .how-step-num { background: var(--purple); color: #fff; border-color: var(--purple); }
.how-step-title { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.how-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* 👉 Блок под скриншот шага (приложение или бот) */
.how-visual-frame {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}
.how-visual-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.how-visual-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; width: 100%; height: 100%;
}
.how-visual-placeholder svg { width: 40px; height: 40px; fill: var(--purple-mid); }
.how-visual-placeholder span { font-size: 13px; color: var(--text-muted); text-align: center; }

/* ===================== PERKS ===================== */
.perks { background: var(--purple-light); }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.perk-card {
  background: #fff;
  border: 1px solid rgba(83,74,183,0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.25s var(--ease, ease), transform 0.25s var(--ease, ease);
}
.perk-card:hover { box-shadow: 0 16px 36px -12px rgba(83,74,183,0.28); transform: translateY(-6px); }
.perk-icon {
  width: 44px; height: 44px;
  background: var(--purple-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.perk-icon svg { width: 22px; height: 22px; fill: var(--purple); }
.perk-title { font-size: 15px; font-weight: 500; color: var(--purple-dark); margin-bottom: 6px; }
.perk-desc { font-size: 13px; color: #534AB7; opacity: 0.75; line-height: 1.55; }

/* ===================== GALLERY ===================== */
.gallery { background: #fff; }
.gallery-sub { margin-bottom: 32px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
/* 👉 Каждый элемент — фото ведущего за эфиром */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--purple-light);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--purple-mid);
  transition: transform 0.2s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px; text-align: center;
}
.gallery-item-placeholder svg { width: 28px; height: 28px; fill: var(--purple-mid); }
.gallery-item-placeholder span { font-size: 12px; color: var(--purple-mid); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; min-height: 240px; }

/* ===================== REVIEWS ===================== */
.reviews { background: var(--bg-soft); }
.reviews-slider-wrap { position: relative; margin-top: 36px; }
.reviews-slider { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
  transition: box-shadow 0.25s var(--ease, ease), transform 0.25s var(--ease, ease);
}
.review-card:hover { box-shadow: 0 16px 36px -12px rgba(83,74,183,0.22); transform: translateY(-6px); }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(83,74,183,0.12);
  transition: all 0.2s;
  font-size: 18px;
  color: var(--purple);
}
.slider-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }
.slider-btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple-mid); border: none; cursor: pointer;
  transition: all 0.2s; padding: 0;
}
.slider-dot.active { background: var(--purple); width: 24px; border-radius: 4px; }
.review-header { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: var(--purple);
  flex-shrink: 0;
  overflow: hidden;
}
/* 👉 Замени initials на img с реальным фото */
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-size: 14px; font-weight: 500; color: var(--text); }
.review-city { font-size: 12px; color: var(--text-muted); }
.review-earn-badge {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-text);
  background: var(--green-bg);
  padding: 4px 12px;
  border-radius: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}
.review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.review-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }
/* 👉 Скриншот выплаты под отзывом */
.review-screenshot {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 8px;
  overflow: hidden;
  background: var(--purple-light);
  border: 1px dashed var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}
.review-screenshot img { width: 100%; height: 100%; object-fit: cover; }
.review-screenshot span { font-size: 11px; color: var(--purple-mid); }
.review-screenshot svg { width: 16px; height: 16px; fill: var(--purple-mid); flex-shrink: 0; }

/* ===================== FAQ ===================== */
.faq { background: #fff; }
.faq-list { margin: 36px auto 0; max-width: 680px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--purple); transition: transform 0.25s; }
.faq-item.open .faq-icon { background: var(--purple); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { fill: #fff; }
.faq-answer {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 18px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ===================== CTA / FORM ===================== */
.cta-section { background: var(--purple-light); padding: 80px 40px; }
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-text .section-title { font-size: 36px; }
.cta-bullets { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.cta-bullet { display: flex; align-items: flex-start; gap: 10px; }
.cta-bullet-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cta-bullet-icon svg { width: 12px; height: 12px; fill: #fff; }
.cta-bullet-text { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.form-card {
  background: #fff;
  border: 1px solid rgba(83,74,183,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(83,74,183,0.1); background: #fff; }
.form-group input::placeholder { color: var(--text-light); }
.btn-form-submit {
  width: 100%;
  background: var(--coral);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  border-radius: 22px;
  padding: 13px;
  margin-top: 4px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(255,87,87,0.3);
}
.btn-form-submit:hover { background: var(--coral-dark); transform: translateY(-1px); }
.form-divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin: 16px 0;
  position: relative;
}
.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }
.btn-telegram {
  width: 100%;
  background: var(--tg-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  border-radius: 22px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-telegram:hover { filter: brightness(1.08); }
.btn-telegram svg { width: 18px; height: 18px; fill: #fff; }
.form-note { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 12px; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--purple-mid); }
.footer-desc { font-size: 13px; line-height: 1.65; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  font-size: 13px; color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-social:hover { background: rgba(255,255,255,0.2); color: #fff; }
.footer-col-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===================== STICKY MOBILE CTA ===================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}
.sticky-cta .btn-primary { width: 100%; justify-content: center; }

/* ===================== ICONS SVG (inline) ===================== */
.icon-broadcast { /* see SVG inline in HTML */ }

/* ===================== MOBILE ===================== */
@media (max-width: 900px) {
  .nav { padding: 0 20px; height: 58px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-actions .btn-nav-secondary { display: none; }

  .hero { padding: 48px 20px 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 30px; }
  .hero-content { order: -1; }
  .hero-visual { order: 1; }
  .hero-img-frame { max-height: 280px; aspect-ratio: 16/9; }

  .section { padding: 48px 20px; }
  .section-title { font-size: 24px; }

  .earnings-grid { grid-template-columns: 1fr; }
  .earn-card.featured { order: -1; }

  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-visual-frame { aspect-ratio: auto; max-height: none; min-height: 360px; height: auto; padding: 32px 20px; }
  .how-panel { height: auto; padding: 8px 4px; }
  .how-store-btns { max-width: 100%; }

  .perks-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }

  .review-card { flex: 0 0 100%; }
  .slider-btn.prev { left: 4px; }
  .slider-btn.next { right: 4px; }

  .cta-section { padding: 48px 20px; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-text .section-title { font-size: 26px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .sticky-cta { display: block; }
  .cta-section { padding-bottom: 100px; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 26px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .perks-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .hero-stats { gap: 12px; }
}

/* ===================== ANIMATIONS ===================== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}

/* ===================== PHONE WALL (выплаты) ===================== */
.payouts { background: #ffffff; padding: 72px 40px; }
.payouts-inner { max-width: 1100px; margin: 0 auto; }
.pay-swipe-wrap { position: relative; max-width: 1100px; margin: 40px auto 0; padding: 0 40px; }
.pay-swipe-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px; scrollbar-width: none; }
.pay-swipe-track::-webkit-scrollbar { display: none; }


.pay-phone { flex: none; width: 200px; border-radius: 22px; background: #14141f; padding: 6px; box-shadow: 0 12px 28px -8px rgba(83,74,183,0.25); cursor: pointer; scroll-snap-align: start; transition: transform 0.2s ease; }
.pay-phone:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(83,74,183,0.32); }
.pay-screen { border-radius: 17px; overflow: hidden; width: 188px; height: 334px; background: var(--purple-light); position: relative; display: flex; flex-direction: column; }
.pay-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pay-screen-fallback { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: linear-gradient(155deg, #534AB7, #26215C); }
.pay-screen-fallback .pf-amt { font-size: 26px; font-weight: 600; color: #fff; letter-spacing: -0.5px; }
.pay-screen-fallback .pf-lbl { font-size: 11px; color: rgba(255,255,255,0.7); }
.pay-screen-fallback .pf-tag { position: absolute; bottom: 10px; left: 10px; right: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border-radius: 10px; padding: 5px 8px; font-size: 10px; color: #fff; text-align: center; }
.pay-caption { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; font-size: 13px; color: var(--text-muted); }
.pay-caption .dot { width: 6px; height: 6px; border-radius: 50%; background: #3bb273; }
@media (max-width: 900px) {
  .payouts { padding: 56px 20px; }
  .pay-phone { width: 124px; }
}

/* ===================== TOPICS (тематики эфиров) ===================== */
.topics { background: #ffffff; }
.topic-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.topic-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-soft); border: 1px solid rgba(83,74,183,0.1); border-radius: 100px; padding: 11px 20px; font-size: 14.5px; font-weight: 500; color: #1a1a2e; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.topic-tag:hover { background: var(--purple-light); border-color: var(--purple-mid); transform: translateY(-2px); }
.topic-tag i { font-size: 18px; color: var(--purple); }
.topics-note { margin-top: 28px; font-size: 13.5px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.topics-note i { font-size: 17px; color: var(--purple); }

/* ===================== VIDEO REVIEWS (видео-отзывы) ===================== */
.video-reviews { background: var(--bg-soft); }
.vreviews-wrap { position: relative; max-width: 1100px; margin: 44px auto 0; padding: 0 40px; }
.vreviews-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px; scrollbar-width: none; }
.vreviews-track::-webkit-scrollbar { display: none; }
.vrev-card { position: relative; flex: 0 0 240px; width: 240px; height: 427px; border-radius: 18px; overflow: hidden; background: #14141f; cursor: pointer; scroll-snap-align: start; box-shadow: 0 12px 28px -10px rgba(83,74,183,0.25); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.vrev-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(83,74,183,0.35); }
.vrev-card video { width: 100%; height: 100%; object-fit: cover; }
.vrev-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(20,20,31,0.1) 0%, rgba(20,20,31,0) 40%, rgba(20,20,31,0.55) 100%); transition: opacity 0.3s; }
.vrev-card.playing .vrev-overlay { opacity: 0; pointer-events: none; }
.vrev-play { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; transition: transform 0.25s; }
.vrev-card:hover .vrev-play { transform: scale(1.08); }
.vrev-play i { font-size: 24px; color: #14141f; margin-left: 2px; }
.vrev-meta { position: absolute; bottom: 16px; left: 16px; display: flex; flex-direction: column; gap: 1px; }
.vrev-name { font-size: 14px; font-weight: 600; color: #fff; }
.vrev-city { font-size: 12px; color: rgba(255,255,255,0.8); }
.vrev-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1.5px solid var(--purple-mid, #AFA9EC); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; box-shadow: 0 4px 12px rgba(83,74,183,0.15); transition: background 0.2s, border-color 0.2s; }
.vrev-arrow:hover { background: var(--purple-light, #EEEDFE); border-color: var(--purple, #534AB7); }
.vrev-arrow svg { width: 18px; height: 18px; color: var(--purple, #534AB7); }
.vrev-arrow.prev { left: 0; }
.vrev-arrow.next { right: 0; }
.vrev-arrow:disabled { opacity: 0.3; pointer-events: none; }
@media (max-width: 900px) {
  .vreviews-wrap { padding: 0 20px; }
  .vrev-card { flex: 0 0 260px; width: 260px; height: 462px; }
  .vrev-arrow { display: none; }
}

/* ===================== HERO VIDEO WALL ===================== */
.hwall { position: relative; height: 480px; overflow: hidden; display: flex; gap: 12px; justify-content: center; align-items: flex-start; -webkit-mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent); }
.hwall-col { display: flex; flex-direction: column; gap: 12px; flex: none; }
.hwall-col.up { animation: hwallUp 32s linear infinite; }
.hwall-col.down { animation: hwallDown 32s linear infinite; }
.hwall:hover .hwall-col { animation-play-state: paused; }
@keyframes hwallUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes hwallDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.hwall-v { position: relative; width: 150px; height: 267px; flex: none; border-radius: 16px; overflow: hidden; cursor: pointer; background: #14141f; box-shadow: 0 8px 20px -8px rgba(83,74,183,0.25); transition: transform 0.25s ease; }
.hwall-v:hover { transform: scale(1.04); }
.hwall-v video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hwall-pl { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(20,20,31,0.05), rgba(20,20,31,0) 40%, rgba(20,20,31,0.3)); opacity: 0.55; transition: opacity 0.25s; }
.hwall-v:hover .hwall-pl { opacity: 1; }
.hwall-pl i { font-size: 28px; color: rgba(255,255,255,0.95); }

/* ===================== STREAMS BLOCK (как выглядят эфиры) ===================== */
.streams { background: var(--bg-soft); }
.streams-wrap { position: relative; max-width: 1100px; margin: 44px auto 0; padding: 0 40px; }
.streams-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px; scrollbar-width: none; }
.streams-track::-webkit-scrollbar { display: none; }
.streams-card { position: relative; flex: none; width: 200px; height: 356px; border-radius: 16px; overflow: hidden; background: #14141f; cursor: pointer; scroll-snap-align: start; box-shadow: 0 12px 28px -10px rgba(83,74,183,0.22); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.streams-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(83,74,183,0.32); }
.streams-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.streams-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(20,20,31,0.15), rgba(20,20,31,0) 35%, rgba(20,20,31,0.5)); transition: opacity 0.3s; }
.streams-card.playing .streams-overlay { opacity: 0; pointer-events: none; }
.streams-live { position: absolute; top: 12px; left: 12px; display: flex; align-items: center; gap: 4px; background: var(--coral, #FF5757); color: #fff; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 6px; letter-spacing: 0.3px; }
.streams-live .d { width: 4px; height: 4px; border-radius: 50%; background: #fff; }
.streams-play { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; transition: transform 0.25s; }
.streams-card:hover .streams-play { transform: scale(1.08); }
.streams-play i { font-size: 21px; color: #14141f; margin-left: 2px; }
.streams-tag { position: absolute; bottom: 12px; left: 12px; background: rgba(255,255,255,0.18); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: #fff; font-size: 11px; font-weight: 500; padding: 4px 11px; border-radius: 20px; }
.streams-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1.5px solid var(--purple-mid, #AFA9EC); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; box-shadow: 0 4px 12px rgba(83,74,183,0.15); transition: background 0.2s, border-color 0.2s; }
.streams-arrow:hover { background: var(--purple-light, #EEEDFE); border-color: var(--purple, #534AB7); }
.streams-arrow svg { width: 18px; height: 18px; color: var(--purple, #534AB7); }
.streams-arrow.prev { left: 0; }
.streams-arrow.next { right: 0; }
.streams-arrow:disabled { opacity: 0.3; pointer-events: none; }
@media (max-width: 900px) {
  .hwall { height: 380px; }
  .hwall-v { width: 116px; height: 206px; flex: none; }
  .streams-wrap { padding: 0 20px; }
  .streams-card { flex: none; width: 220px; height: 391px; }
  .streams-arrow { display: none; }
}

/* ===================== REVIEWS SWIPE (листание как эфиры) ===================== */
.rev-swipe-wrap { position: relative; margin-top: 44px; }
.rev-swipe-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px; scrollbar-width: none; }
.rev-swipe-track::-webkit-scrollbar { display: none; }
.rev-swipe-track .review-card { flex: none; width: 340px; scroll-snap-align: start; }
@media (max-width: 900px) {
  .rev-swipe-track .review-card { width: 82%; }
}


/* ===================== LIGHTBOX ===================== */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(10,10,15,0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 32px; cursor: zoom-out; }
.lightbox.open { display: flex; animation: lbFade 0.2s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); cursor: default; }
.lightbox-close { position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; font-size: 28px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.pay-caption { margin-top: 28px; }
@media (max-width: 900px) {
  .pay-swipe-wrap { padding: 0 20px; }
  .pay-phone { width: 180px; }
  .pay-screen { width: 168px; height: 298px; }
  .lightbox { padding: 16px; }
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease, cubic-bezier(.16,1,.3,1));
  padding: 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 22px;
  font-weight: 500;
  color: var(--purple-dark, #26215C);
  padding: 12px 0;
  letter-spacing: -0.3px;
}
.mobile-menu a:active { color: var(--coral, #FF5757); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 34px;
  line-height: 1;
  color: var(--purple-dark, #26215C);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-cta {
  margin-top: 20px;
  background: var(--coral, #FF5757);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 32px;
  border-radius: 100px;
  width: 100%;
  max-width: 320px;
}
body.menu-open { overflow: hidden; }

/* ===================== LANG SWITCH ===================== */
.lang-switch { display: flex; align-items: center; gap: 2px; background: var(--purple-light, #EEEDFE); border-radius: 100px; padding: 3px; margin-right: 4px; }
.lang-switch a { font-size: 12px; font-weight: 500; color: var(--purple, #534AB7); padding: 5px 10px; border-radius: 100px; transition: background 0.2s, color 0.2s; }
.lang-switch a.lang-active { background: #fff; color: var(--purple-dark, #26215C); box-shadow: 0 1px 3px rgba(83,74,183,0.15); }
.lang-switch a:hover:not(.lang-active) { color: var(--purple-dark, #26215C); }
.mobile-lang { display: none; gap: 6px; margin-top: 24px; }
.mobile-lang a { font-size: 15px; font-weight: 500; color: var(--purple, #534AB7); padding: 8px 18px; border: 1px solid var(--purple-mid, #AFA9EC); border-radius: 100px; }
.mobile-lang a.lang-active { background: var(--purple, #534AB7); color: #fff; border-color: var(--purple, #534AB7); }
@media (max-width: 900px) {
  .lang-switch { display: flex; margin-right: 0; }
  .nav-actions .btn-nav-primary { display: none; }
  .mobile-lang { display: flex; }
}

/* ===================== HOW PANELS (интерактив шагов) ===================== */
.how-visual-frame { position: relative; }
.how-panel { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; padding: 40px 32px; gap: 4px; }
.how-panel.active { display: flex; animation: howFade 0.35s var(--ease, ease); }
@keyframes howFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.how-panel-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--purple-light, #EEEDFE); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.how-panel-icon i { font-size: 28px; color: var(--purple, #534AB7); }
.how-panel-title { font-size: 19px; font-weight: 600; color: var(--purple-dark, #26215C); letter-spacing: -0.3px; }
.how-panel-text { font-size: 14px; color: #534AB7; opacity: 0.75; line-height: 1.55; max-width: 320px; margin-top: 4px; }
.how-store-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; width: 100%; max-width: 280px; }
.store-btn { display: flex; align-items: center; justify-content: center; gap: 12px; background: #14141f; color: #fff; padding: 12px 20px; border-radius: 14px; transition: transform 0.2s var(--ease, ease), background 0.2s; }
.store-btn:hover { transform: translateY(-2px); background: #26215C; }
.store-btn i { font-size: 26px; }
.store-btn span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; font-size: 16px; font-weight: 600; }
.store-btn span small { font-size: 10px; font-weight: 400; opacity: 0.8; }
.how-panel-cta { margin-top: 24px; background: var(--coral, #FF5757); color: #fff; font-size: 15px; font-weight: 500; padding: 13px 32px; border-radius: 100px; transition: transform 0.2s var(--ease, ease), box-shadow 0.2s; }
.how-panel-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(255,87,87,0.4); }

/* ===================== ПЛЮШКИ ===================== */

80% { opacity: 0.6; }
  100% { transform: translateY(-105vh) rotate(30deg); opacity: 0; }
}

/* Прогресс-бар скролла */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple, #534AB7), var(--coral, #FF5757));
  z-index: 300;
  border-radius: 0 3px 3px 0;
  transition: width 0.1s linear;
}

/* Конфетти */
.confetti-layer { position: fixed; inset: 0; pointer-events: none; z-index: 500; overflow: hidden; }
.confetti-bit {
  position: absolute;
  top: 60%;
  width: 10px; height: 10px;
  border-radius: 2px;
  opacity: 0;
  animation: confettiFly 2.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes confettiFly {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(0.6); opacity: 0; }
}

/* Плавность tilt-карточек */
.earn-card, .perk-card, .review-card { transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s; will-change: transform; }




/* Две Telegram-кнопки в форме */
.tg-buttons { display: flex; flex-direction: column; gap: 10px; }
.btn-telegram-bot i { font-size: 18px; }

/* Honeypot — поле-ловушка для ботов, невидимо для людей */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ===================== КОНВЕРСИОННЫЕ ЭЛЕМЕНТЫ ===================== */

/* Плавающая Telegram-кнопка */
.tg-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2AABEE;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(42, 171, 238, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: tgPulse 2.6s ease-in-out infinite;
}
.tg-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px -6px rgba(42, 171, 238, 0.65); animation-play-state: paused; }
.tg-float svg { width: 28px; height: 28px; color: #fff; margin-left: -2px; }
@keyframes tgPulse {
  0%, 100% { box-shadow: 0 8px 24px -6px rgba(42,171,238,0.55), 0 0 0 0 rgba(42,171,238,0.35); }
  50% { box-shadow: 0 8px 24px -6px rgba(42,171,238,0.55), 0 0 0 12px rgba(42,171,238,0); }
}
@media (max-width: 900px) {
  /* на мобильном поднимаем над sticky-CTA */
  .tg-float { bottom: 86px; right: 16px; width: 52px; height: 52px; }
}

/* Строка доверия в форме */
.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted, #6b6b8a);
  margin: 14px 0 4px;
  justify-content: center;
  text-align: center;
}
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3bb273;
  flex-shrink: 0;
  animation: trustBlink 2s ease-in-out infinite;
}
@keyframes trustBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

/* CTA после блока выплат */
.pay-cta { text-align: center; margin-top: 36px; }
.pay-cta-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--purple-dark, #26215C);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}


.faq-list { text-align: left; }
