/* ============================================================
   GARAGE Poker Club — дизайн-система
   Тёмная тема, неоново-зелёный акцент, mobile-first
   ============================================================ */

:root {
  /* Фон и поверхности — брендбук GARAGE */
  --bg:          #0A0A0A;
  --bg-2:        #111111;
  --surface:     #1A1A1A;
  --surface-2:   #0F1B24;
  --line:        rgba(0, 255, 106, 0.18);
  --line-soft:   rgba(255, 255, 255, 0.08);

  /* Бренд */
  --green:       #00FF6A;   /* акценты, кнопки, цифры */
  --green-2:     #00CC8A;   /* крупные заливки и градиенты */
  --green-dim:   rgba(0, 255, 106, 0.10);
  --blue:        #00B2FF;
  --navy:        #0F1B24;
  --gold:        #F5C044;

  /* Текст */
  --text:        #F2F5F3;
  --text-2:      #A8B4AC;
  --text-3:      #8A9A90;

  /* Метрики */
  --radius:      18px;
  --radius-sm:   12px;
  --maxw:        1180px;
  --header-h:    68px;

  --shadow:      0 18px 50px rgba(0, 0, 0, 0.6);
  --glow:        0 0 32px rgba(0, 255, 106, 0.28);

  /* Фирменный паттерн «печатная плата» */
  --circuit: linear-gradient(rgba(0,255,106,.05) 1px, transparent 1px) 0 0 / 44px 44px,
             linear-gradient(90deg, rgba(0,255,106,.05) 1px, transparent 1px) 0 0 / 44px 44px;

  --font:        'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: var(--font);
}

/* ---------- Сброс ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  /* иначе заголовок секции прячется под шапкой при переходе по якорю */
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Фоновая подсветка страницы */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(0, 255, 106, 0.09), transparent 62%),
    radial-gradient(760px 460px at 92% 4%, rgba(0, 178, 255, 0.07), transparent 60%),
    var(--circuit);
  opacity: 0.9;
}

img { max-width: 100%; height: auto; display: block; }
p, li, h1, h2, h3, h4, td, th { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1, h2 { text-transform: uppercase; letter-spacing: 0.005em; }

h1 { font-size: clamp(30px, 6.4vw, 60px); }
h2 { font-size: clamp(25px, 4.4vw, 40px); }
h3 { font-size: clamp(18px, 2.4vw, 23px); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Каркас ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

section { padding: 64px 0; position: relative; z-index: 1; }
@media (min-width: 768px) { section { padding: 88px 0; } }

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-2); font-size: 17px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section-head.center .eyebrow::before { display: none; }

.accent { color: var(--green); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #04120A;
  box-shadow: 0 10px 32px rgba(0, 255, 106, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(0, 255, 106, 0.42); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--green); background: var(--green-dim); }

.btn-wa { background: #25D366; color: #04120A; }
.btn-wa:hover { box-shadow: 0 14px 40px rgba(37, 211, 102, 0.38); }

.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Ссылка «к содержимому» ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--green);
  color: #04120A;
  font-weight: 700;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Шапка ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 0.3s ease;
}
.header.scrolled { border-bottom-color: var(--line); }

.header .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo { display: flex; align-items: center; gap: 11px; flex: none; }
.logo img { width: 38px; height: 38px; border-radius: 50%; }
.logo-txt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-txt span { display: block; font-size: 11.5px; letter-spacing: 0.28em; color: var(--green); font-weight: 600; margin-top: 3px; }

.nav { display: none; margin-left: auto; gap: 4px; }
.nav a {
  padding: 9px 11px;
  border-radius: 10px;
  font-size: 16px;
  white-space: nowrap;   /* иначе «X-Poker» ломается по дефису на две строки */
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.18s ease, background 0.18s ease;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav a.active { color: var(--green); }

.header-cta { display: none; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
}

/* Бургер */
.burger {
  margin-left: auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .burger { display: none; } }

/* Мобильное меню */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(18px);
  padding: 22px 18px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav a {
  display: block;
  padding: 17px 4px;
  min-height: 44px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a.active { color: var(--green); }
.mobile-nav .btn { margin-top: 22px; }
body.locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { padding: 44px 0 56px; position: relative; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 76px 0 84px; } }

.hero-grid { display: grid; gap: 38px; align-items: center; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 52px; }
  .hero-art img { width: min(100%, 430px); }
}

.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--green-dim);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
}
.badge.blue { color: var(--blue); border-color: rgba(0, 178, 255, 0.24); background: rgba(0, 178, 255, 0.08); }

.hero h1 { margin-bottom: 12px; }
.hero-tagline {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(15.5px, 2.1vw, 18.5px);
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-note { font-size: 15.5px; color: var(--text-3); }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-art picture { display: contents; }
.hero-art img { width: min(100%, 360px); filter: drop-shadow(0 26px 60px rgba(0, 255, 106, 0.24)); }
.hero-art::after {
  content: '';
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 106, 0.20), transparent 68%);
  z-index: -1;
}

/* ---------- Полоса доверия ---------- */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 18px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.trust span {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
}
.trust span::before {
  content: '';
  position: absolute;
  left: 4px; top: 8px;
  width: 7px; height: 11px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- Статистика ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.stat {
  padding: 26px 18px;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 38px);
  line-height: 1;
  color: var(--green);
  margin-bottom: 8px;
}
.stat span { font-size: 15.5px; color: var(--text-2); }

@media (min-width: 1024px) { .nav { margin-left: 0; } .header .wrap > .nav { margin-left: auto; } }

/* ---------- Словарь терминов ---------- */
.glossary { display: grid; gap: 12px; }
@media (min-width: 760px) { .glossary { grid-template-columns: repeat(2, 1fr); } }
.term {
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.term b { display: block; font-size: 15.5px; color: var(--green); margin-bottom: 6px; }
.term span { font-size: 16px; color: var(--text-2); }

/* ---------- Блок выплат ---------- */
.payouts {
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(0, 255, 106, 0.10), rgba(0, 178, 255, 0.05) 60%, var(--surface));
}
@media (min-width: 900px) { .payouts { padding: 40px 38px; } }
.payout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}
@media (min-width: 860px) { .payout-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; } }
.payout b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 4.6vw, 38px);
  font-weight: 800;
  line-height: 1;
  color: var(--green);
  margin-bottom: 9px;
}
.payout span { font-size: 15.5px; color: var(--text-2); display: block; }
.payouts-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 15.5px;
  color: var(--text-3);
}

/* ---------- Отзывы ---------- */
.review {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.review:hover { border-color: var(--line); transform: translateY(-3px); }
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.review-who { display: flex; align-items: center; gap: 11px; }
.review-ava {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--green);
  flex: none;
}
.review-who b { display: block; font-size: 15px; font-weight: 700; }
.review-who span { font-size: 15px; color: var(--text-3); }
.review-score {
  flex: none;
  padding: 5px 11px;
  border-radius: 9px;
  background: var(--green-dim);
  border: 1px solid var(--line);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--green);
}
.review-score.mid { color: var(--gold); border-color: rgba(245, 192, 68, 0.3); background: rgba(245, 192, 68, 0.08); }
.review p { font-size: 16px; color: var(--text-2); flex: 1; }
.review p::before { content: '«'; }
.review p::after { content: '»'; }

/* ---------- Сетки карточек ---------- */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.card:hover { border-color: var(--line); transform: translateY(-3px); background: var(--surface-2); }
.card h3 { margin-bottom: 10px; font-size: 18.5px; }
.card p { color: var(--text-2); font-size: 16px; }

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  background: var(--green-dim);
  border: 1px solid var(--line);
  font-size: 21px;
}

/* ---------- Карточки платформ ---------- */
.platform-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.platform-card:hover { border-color: var(--green); transform: translateY(-4px); }
.platform-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 106, 0.14), transparent 70%);
}
.platform-card .tag {
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--green-dim);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.platform-card h3 { font-size: 22px; margin-bottom: 8px; }
.platform-card p { color: var(--text-2); font-size: 16px; flex: 1; }
.platform-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}
.platform-card .meta span {
  padding: 5px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 15px;
  color: var(--text-2);
}
.platform-card .more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
}
.platform-card .more::after { content: '→'; transition: transform 0.2s ease; }
.platform-card:hover .more::after { transform: translateX(4px); }

/* ---------- Клубы ---------- */
.club-card {
  padding: 24px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.club-card:hover { border-color: var(--line); transform: translateY(-3px); }
.club-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.club-head h3 { margin: 0; font-size: 19px; }
.club-id {
  flex: none;
  padding: 6px 12px;
  border-radius: 9px;
  background: var(--green-dim);
  border: 1px solid var(--line);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 19px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.club-card p { font-size: 16px; color: var(--text-2); margin-bottom: 14px; }
.club-specs { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.club-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line-soft);
}
.club-specs li:last-child { border-bottom: none; padding-bottom: 0; }
.club-specs span:first-child { color: var(--text-3); }
.club-specs span:last-child { font-weight: 600; text-align: right; }

/* ---------- Шаги ---------- */
.steps { display: grid; gap: 16px; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding: 30px 22px 26px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: 22px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #04120A;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 255, 106, 0.3);
}
.step h3 { margin-top: 14px; font-size: 18px; }
.step p { color: var(--text-2); font-size: 16px; }

/* ---------- Таблицы ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 460px; }
th, td { padding: 15px 18px; text-align: left; font-size: 16px; border-bottom: 1px solid var(--line-soft); }
th { font-weight: 700; color: var(--text-3); font-size: 15px; letter-spacing: 0.09em; text-transform: uppercase; background: rgba(255, 255, 255, 0.02); }
tr:last-child td { border-bottom: none; }
td:first-child { color: var(--text-2); width: 42%; }
td:last-child { font-weight: 600; }

/* ---------- Подбор клуба ---------- */
.quiz {
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(0,178,255,.07), rgba(0,255,106,.06) 60%, var(--surface));
}
@media (min-width: 900px) { .quiz { padding: 40px 38px; } }
.quiz-step { margin-bottom: 24px; }
.quiz-step:last-of-type { margin-bottom: 28px; }
.quiz-step > p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 13px;
}
.quiz-num {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  flex: none;
  border-radius: 8px;
  background: var(--green-dim);
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
}
.quiz-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.quiz-opt {
  padding: 12px 18px;
  min-height: 44px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: var(--text-2);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
}
.quiz-opt:hover { border-color: var(--line); color: var(--text); }
.quiz-opt[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
  color: #04120A;
}
.quiz-result {
  display: none;
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.quiz-result.show { display: block; }
.quiz-result .rec { font-size: 15.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.quiz-result h3 { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 12px; }
.quiz-result .why { color: var(--text-2); font-size: 15px; margin-bottom: 18px; }
.quiz-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.quiz-hint { font-size: 15.5px; color: var(--text-3); }

/* ---------- Сравнение платформ ---------- */
.compare td:first-child { color: var(--text); font-weight: 700; width: auto; }
.compare th:first-child { min-width: 116px; }
.compare .pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 7px;
  background: var(--green-dim);
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.compare td { vertical-align: top; }
.compare .muted { color: var(--text-2); font-weight: 400; font-size: 16px; }

/* ---------- Расписание активности ---------- */
.hours { display: grid; gap: 12px; }
@media (min-width: 760px) { .hours { grid-template-columns: repeat(3, 1fr); } }
.hour-card {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--surface);
}
.hour-card.primary { border-color: var(--line); background: linear-gradient(160deg, rgba(0,255,106,.10), var(--surface)); }
.hour-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}
.hour-card span { display: block; font-size: 16px; color: var(--text-2); }
.hour-card em { display: block; margin-top: 8px; font-style: normal; font-size: 15px; color: var(--text-3); }

/* ---------- Списки преимуществ ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; font-size: 15px; color: var(--text-2); }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--green-dim);
  border: 1px solid var(--line);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 7px; top: 11px;
  width: 6px; height: 10px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-list li b { color: var(--text); font-weight: 700; }

/* Плюсы / минусы */
.pros-cons { display: grid; gap: 16px; }
@media (min-width: 760px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pc-box { padding: 24px 22px; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--surface); }
.pc-box.pros { border-color: rgba(0, 255, 106, 0.22); }
.pc-box.cons { border-color: rgba(245, 192, 68, 0.20); }
.pc-box h3 { font-size: 17px; margin-bottom: 16px; }
.pc-box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.pc-box li { position: relative; padding-left: 26px; font-size: 16px; color: var(--text-2); }
.pc-box.pros li::before { content: '+'; position: absolute; left: 0; top: -1px; color: var(--green); font-weight: 800; font-size: 17px; }
.pc-box.cons li::before { content: '–'; position: absolute; left: 0; top: -1px; color: var(--gold); font-weight: 800; font-size: 17px; }

/* ---------- Двухколоночный макет страниц платформ ---------- */
.page-layout { display: grid; gap: 30px; align-items: start; }
/* без этого широкая таблица растягивает колонку и текст обрезается на телефоне */
.page-layout > * { min-width: 0; }
@media (min-width: 1024px) { .page-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; } }

.sidebar { display: grid; gap: 16px; }
@media (min-width: 1024px) { .sidebar { position: sticky; top: calc(var(--header-h) + 20px); } }

.side-box {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.side-box h3 { font-size: 15.5px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.side-box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.side-box li { display: flex; justify-content: space-between; gap: 10px; font-size: 15.5px; color: var(--text-2); }
.side-box li b { color: var(--text); font-weight: 600; text-align: right; }
.side-box.cta { background: linear-gradient(165deg, rgba(0, 255, 106, 0.11), var(--surface)); border-color: var(--line); }
.side-box.cta p { font-size: 16px; color: var(--text-2); margin-bottom: 16px; }
.side-box .btn + .btn { margin-top: 9px; }

.content-block { margin-bottom: 46px; }
.content-block:last-child { margin-bottom: 0; }
.content-block h2 { margin-bottom: 18px; }
.content-block > p { color: var(--text-2); font-size: 15.6px; }

.ordered { counter-reset: num; list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.ordered li { position: relative; padding-left: 42px; font-size: 15px; color: var(--text-2); }
.ordered li b { color: var(--text); }
.ordered li::before {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--green-dim);
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 15.5px;
  font-weight: 700;
}

.install-grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .install-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }

/* ---------- Баннер сотрудничества ---------- */
.promo {
  position: relative;
  overflow: hidden;
  padding: 38px 26px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(0, 255, 106, 0.14), rgba(0, 178, 255, 0.06) 55%, var(--surface));
}
@media (min-width: 900px) { .promo { padding: 52px 46px; } }
.promo h2 { margin-bottom: 14px; }
.promo > p { color: var(--text-2); max-width: 620px; font-size: 16px; margin-bottom: 26px; }
.promo-list { display: grid; gap: 14px; margin-bottom: 30px; }
@media (min-width: 760px) { .promo-list { grid-template-columns: repeat(2, 1fr); } }
.promo-item { display: flex; gap: 13px; align-items: flex-start; }
.promo-item .ic { font-size: 21px; line-height: 1; flex: none; }
.promo-item b { display: block; font-size: 15px; margin-bottom: 2px; }
.promo-item span { font-size: 15.5px; color: var(--text-2); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 11px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color 0.2s ease; }
.faq-item.open { border-color: var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15.6px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q .ico { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .ico::before, .faq-q .ico::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--green);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-q .ico::before { width: 13px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 13px; }
.faq-item.open .faq-q .ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a-inner { padding: 0 20px 20px; color: var(--text-2); font-size: 15px; }

/* ---------- Блог ---------- */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.post-card:hover { border-color: var(--line); transform: translateY(-3px); }
.post-cover {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(0, 255, 106, 0.16), rgba(0, 178, 255, 0.08));
  font-size: 42px;
}
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--text-3); margin-bottom: 11px; }
.post-cat { padding: 4px 10px; border-radius: 999px; background: var(--green-dim); color: var(--green); font-weight: 700; }
.post-card h3 { font-size: 18px; margin-bottom: 9px; }
.post-card p { font-size: 16px; color: var(--text-2); flex: 1; }
.post-card .more { margin-top: 16px; font-weight: 700; font-size: 16px; color: var(--green); }

/* ---------- Контакты ---------- */
.contact-grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  padding: 28px 22px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { border-color: var(--green); transform: translateY(-3px); }
.contact-card .ic { font-size: 30px; margin-bottom: 12px; }
.contact-card b { display: block; font-size: 16.5px; margin-bottom: 5px; }
.contact-card span { font-size: 16px; color: var(--text-2); }

/* ---------- Подвал ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: 52px 0 96px;
  position: relative;
  z-index: 1;
}
.footer-grid { display: grid; gap: 30px; margin-bottom: 34px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; } }
.footer-about p { font-size: 16px; color: var(--text-2); margin-top: 16px; max-width: 380px; }
.footer h4 { font-family: var(--font); font-size: 15.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-links a { font-size: 16px; color: var(--text-2); transition: color 0.18s ease; }
.footer-links a:hover { color: var(--green); }

.disclaimer {
  padding: 20px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 22px;
}
.disclaimer b { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 15.5px;
  color: var(--text-3);
}
.age-badge {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  flex: none;
}

/* ---------- Плавающая мобильная кнопка ---------- */
.float-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  gap: 10px;
}
.float-cta a {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}
.float-cta a:hover { transform: scale(1.07); }
.float-cta .tg { background: linear-gradient(135deg, #37BBFE, #007DBB); }
.float-cta .wa { background: #25D366; }
.float-cta svg { width: 26px; height: 26px; fill: #fff; }
@media (min-width: 1024px) {
  .float-cta { display: none; }
  .footer { padding-bottom: 28px; }
}

/* ---------- Нижняя панель связи на телефоне ----------
   Круглые кнопки висели поверх текста и закрывали то, на что человек
   смотрит. Панель во всю ширину ничего не перекрывает (у body есть
   отступ снизу), подписана словами и попадает пальцем с первого раза. */
@media (max-width: 1023px) {
  body { padding-bottom: 84px; }

  .float-cta {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 9px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    background: rgba(8, 10, 9, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .float-cta a {
    flex: 1;
    width: auto;
    height: 56px;          /* палец взрослого человека — не меньше */
    gap: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    box-shadow: none;
  }
  .float-cta a:active { transform: scale(0.97); }
  .float-cta a:hover { transform: none; }
  .float-cta .tg { flex: 1.5; }   /* Telegram — основной канал, шире */
  .float-cta svg { width: 22px; height: 22px; flex: none; }

  /* кнопка «наверх» не должна лезть под панель */
  .to-top { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 360px) {
  .float-cta a { font-size: 15px; }
  .float-cta .wa span { display: none; }
}

/* ---------- Хлебные крошки ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 15.5px; color: var(--text-3); padding-top: 22px; }
.crumbs a { color: var(--text-2); }
.crumbs a:hover { color: var(--green); }
.crumbs span { opacity: 0.5; }

/* ---------- Анимация появления ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* --- Кнопки скачивания приложений --- */
.store-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 17px 9px 14px;
  min-height: 52px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.store-btn:hover,
.store-btn:focus-visible {
  border-color: var(--green);
  background: var(--green-dim);
  transform: translateY(-2px);
}
.store-btn .si { font-size: 22px; line-height: 1; }
.store-btn > span:last-child { font-weight: 700; font-size: 15px; line-height: 1.2; }
.store-btn small {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}

.dl-list { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.dl-item {
  padding: 22px 22px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}
.dl-head b { display: block; font-size: 19px; font-weight: 800; }
.dl-head span { display: block; margin-top: 4px; font-size: 15.5px; color: var(--text-3); }
.dl-item .store-row { margin-top: 16px; }

@media (max-width: 420px) {
  .store-btn { width: 100%; }
}

.header-cta { white-space: nowrap; }
.header-tg { padding: 14px 22px; }
.header-tg svg { width: 18px; height: 18px; fill: currentColor; }
.header-wa { padding: 16px 0; width: 52px; min-width: 52px; }
.header-wa svg { width: 21px; height: 21px; fill: #25D366; }
.header-wa:hover svg { fill: #fff; }

/* ---------- Иконки приложений ---------- */
/* picture — лишняя обёртка во flex-строке: без этого иконка сжимается текстом рядом */
.platform-head picture, .dl-head picture { display: contents; }
.app-icon {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 13px;
  border: 1px solid var(--line-soft);
  background: #000;
  object-fit: cover;
}
.platform-head { display: flex; align-items: center; gap: 13px; margin-bottom: 8px; }
.platform-head h3 { margin: 0; }
.platform-card:hover .app-icon { border-color: var(--green); }

.dl-head { display: flex; align-items: center; gap: 14px; }
.dl-head .app-icon { width: 44px; height: 44px; border-radius: 11px; }

.page-icon { margin-bottom: 16px; }
.app-icon-lg { width: 72px; height: 72px; border-radius: 17px; }


/* ---------- Крупнее на больших экранах ---------- */
@media (min-width: 1100px) {
  .hero-art img { width: min(100%, 500px); }
  .hero { padding: 84px 0 92px; }
}
@media (min-width: 1400px) {
  .hero-art img { width: min(100%, 560px); }
}

/* Длинная строка тяжело читается — ограничиваем и увеличиваем текст */
.payouts-note { font-size: 15px; max-width: 78ch; line-height: 1.65; }
.section-head p { max-width: 74ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Мелкие подписи были на грани читаемости */
.store-btn small { font-size: 14px; }
th { font-size: 15.5px; }
.eyebrow { font-size: 15px; }
.payout span { font-size: 16px; }
.hero-note { font-size: 16px; }

/* Четыре платформы в три колонки оставляли одну карточку одну в ряду */
@media (min-width: 900px) {
  .dl-list { grid-template-columns: 1fr 1fr; }
}

/* Кнопка «наверх»: страница длинная */
.to-top {
  position: fixed;
  left: 20px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 14, 11, 0.92);
  color: var(--green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  cursor: pointer;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--green-dim); border-color: var(--green); }
.to-top svg { width: 20px; height: 20px; fill: currentColor; }


/* ---------- Правки после проверки на ПК и телефоне ---------- */

/* Заголовок первого экрана на телефоне был мелковат */
h1 { font-size: clamp(34px, 8.2vw, 60px); }
h2 { font-size: clamp(27px, 4.6vw, 40px); }

/* Ссылки в подвале: по ним трудно попасть пальцем */
@media (max-width: 759px) {
  .footer-links { gap: 2px; }
  .footer-links a {
    display: block;
    padding: 11px 0;
    font-size: 15.5px;
    min-height: 44px;
  }
}

/* Подсказка, что широкую таблицу можно листать вбок */
.table-wrap { position: relative; }
.table-hint {
  display: none;
  margin: 10px 2px 0;
  font-size: 15.5px;
  color: var(--text-3);
}
@media (max-width: 900px) {
  .table-hint { display: block; }
}

/* Чуть крупнее подписи под цифрами и в карточках */
.stat span { font-size: 16px; }
.card p { font-size: 15.5px; }

/* Таблицы не должны раздвигать свои контейнеры */
.table-wrap { max-width: 100%; }
.content-block, .content-block > * { min-width: 0; }



/* ---------- Мобильная версия: короче и спокойнее ----------
   На телефоне страница шла 36 экранов подряд — длинные секции
   теперь показывают часть карточек, остальное открывается кнопкой. */
.collapse-btn {
  grid-column: 1 / -1;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  color: var(--green);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.collapse-btn:hover, .collapse-btn:focus-visible { background: var(--green-dim); border-color: var(--green); }

@media (max-width: 900px) {
  section { padding: 46px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: clamp(23px, 6.2vw, 30px); }
  .grid { gap: 12px; }
  .card, .club-card, .review, .dl-item { padding: 18px 16px; }
  .hero { padding: 26px 0 34px; }
  .hero-actions { gap: 10px; }
  .badge-row { gap: 8px; margin-bottom: 14px; }
  .stats-row { gap: 10px; }
}


/* карточки имеют свой display — без !important атрибут hidden не сработает */
[hidden] { display: none !important; }

@media (max-width: 900px) {
  section { padding: 38px 0; }
  .platform-card { padding: 18px 16px; }
  .platform-card .meta { margin: 12px 0 14px; }
  .hero-art img { max-height: 340px; width: auto; margin: 0 auto; }
  .store-row { gap: 8px; }
  .store-btn { flex: 1 1 calc(50% - 4px); min-height: 48px; padding: 8px 12px; }
  .payouts, .trust { padding: 18px 16px; }
  .section-head p { font-size: 17px; }
}
@media (max-width: 420px) {
  .store-btn { width: auto; }
}


/* ---------- Таблицы на телефоне ----------
   Горизонтальный скролл на узком экране читается плохо: половина
   колонок за краем. Поэтому до 900px каждая строка становится
   карточкой «подпись — значение». На ПК таблица остаётся таблицей. */
@media (max-width: 900px) {
  /* min-width: 460px нужен широким таблицам на десктопе. На телефоне он
     заставляет листать вбок даже таблицу из двух колонок, которая и так
     помещается. Скролл у обёртки остаётся как страховка. */
  table { min-width: 0; }
  th, td { padding: 13px 12px; }   /* боковые отступы 18px не давали таблице влезть в экран */

  /* minmax(320px, …) шире экрана на узких телефонах — сетка вылезала вправо */
  .dl-list { grid-template-columns: minmax(0, 1fr); }

  /* Карточки клубов и строки таблиц занимали по пол-экрана каждая:
     характеристики шли в столбик по одной. Ставим их в две колонки —
     ничего не скрыто, но секция клубов короче почти вдвое. */
  .club-card { padding: 18px 16px; }
  .club-specs { gap: 6px; }
  .club-specs li { padding-bottom: 6px; font-size: 15.5px; }
  .club-specs li span:last-child { font-weight: 600; text-align: right; }
  .club-card p { margin-bottom: 12px; }

  /* Рамка и фон переезжают на карточки-строки, иначе рамка в рамке. */
  .table-wrap:has(.compare) {
    overflow: visible;
    border: 0;
    background: none;
    border-radius: 0;
  }

  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  /* min-width: 460px задан всем таблицам ради скролла на десктопе — здесь он лишний */
  .compare { min-width: 0; }

  .compare tr {
    padding: 16px 16px 12px;
    margin-bottom: 12px;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--surface);
  }
  .compare tr:last-child { margin-bottom: 0; }

  .compare td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 7px 0;
    border: 0;
    border-top: 1px solid var(--line-soft);
    text-align: right;
    font-size: 17px;
  }
  .compare td::before {
    content: attr(data-label);
    flex: none;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-3);
  }

  .compare td.cell-title {
    display: block;
    padding: 0 0 10px;
    border-top: 0;
    text-align: left;
    font-size: 19px;
    font-weight: 800;
    color: var(--green);
  }
  .compare td.cell-title::before { display: none; }
}


/* ---------- Читаемость на телефоне ----------
   Аудитория 35+: после сорока хрусталик хуже фокусируется вблизи,
   и всё мельче 16px читается с прищуром. Поэтому на телефоне текст
   крупнее, строки короче, а нажимать есть куда. */
@media (max-width: 900px) {
  body { font-size: 17px; line-height: 1.6; }

  p, li { font-size: 17px; }
  .card p, .club-card p, .review p, .faq-a-inner, .content-block p { font-size: 17px; }
  .hero-sub { font-size: 18px; }
  .hero-note { font-size: 15.5px; }
  .payouts-note { font-size: 16px; }
  .club-specs li, .club-specs span { font-size: 16px; }
  .store-btn > span:last-child { font-size: 16px; }
  .store-btn small { font-size: 13.5px; }
  .badge { font-size: 15px; }
  .crumbs { font-size: 15px; }
  .footer-links a, .footer p, .disclaimer { font-size: 16px; }

  /* по ссылке в тексте нужно попадать пальцем, а не ногтем */
  .faq-q { min-height: 56px; font-size: 17px; }
  .quiz-opt { min-height: 52px; font-size: 16.5px; }
  .btn { min-height: 52px; font-size: 17px; }
  .btn-lg { min-height: 56px; font-size: 17.5px; }
  .club-id { min-height: 40px; display: inline-flex; align-items: center; }

  /* WhatsApp есть в нижней панели постоянно — вторая такая же кнопка
     на первом экране только удлиняет его и заставляет выбирать */
  .hero-actions .btn[href*="wa.me"] { display: none; }

  /* Первый экран на телефоне: чем меньше слов до кнопки, тем выше она
     оказывается. Слоган и бонусный бейдж не несут фактов, а бонус,
     обещанный до объяснения кто мы такие, у 35+ читается как развод. */
  .hero-tagline { display: none; }
  .badge-row .badge.blue { display: none; }
  .only-desktop { display: none; }
}
.only-mobile { display: none; }
@media (max-width: 900px) { .only-mobile { display: block; } }


/* ---------- Мелкий текст на телефоне ----------
   Всё, что мельче 16px, аудитория 35+ читает с прищуром.
   Служебные подписи оставляем мельче, но не ниже 14px и цветом посветлее. */
@media (max-width: 900px) {
  /* Граница в 8% белого поверх тёмной карточки даёт контраст 1.04:1 —
     на маленьком экране карточки сливались в сплошное полотно и было
     не видно, где кончается один блок и начинается другой.
     Только для телефона: на большом экране разделение и так читается. */
  :root { --line-soft: rgba(255, 255, 255, 0.16); }

  .faq-a-inner { font-size: 17px; }
  .check-list li,
  .ordered li,
  .quiz-result .why,
  .promo-item b,
  .promo-item span,
  .review-who b,
  .review-who span,
  .payout span,
  .stat span { font-size: 16px; }

  .platform-card .tag,
  .store-btn small { font-size: 14px; color: var(--text-2); }

  /* подписи в карточках-таблицах были 13px — самый мелкий текст на сайте */
  .compare td::before { font-size: 14px; color: var(--text-2); }

  /* инлайновые font-size:14px в разметке перебиваем здесь */
  .wrap p[style*="font-size:14px"] { font-size: 16px !important; color: var(--text-2) !important; }
}
