/* Open Sans — variable font, local, v44 */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/open-sans-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/open-sans-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/open-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/open-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --c-bg: #0f0f0f;
  --c-surface: #161616;
  --c-card: #1e1e1e;
  --c-card-h: #252525;
  --c-accent: #c9ff57;
  --c-accent2: #b8ed46;
  --c-accent-dim: rgba(201,255,87,0.08);
  --c-accent-border: rgba(201,255,87,0.22);
  --c-text: #f0f0f0;
  --c-muted: #888888;
  --c-muted2: #666666;
  --c-border: #272727;
  --c-border2: #323232;
  --c-btn-fg: #0f0f0f;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --shadow: 0 6px 32px rgba(0,0,0,0.6);
  --shadow-accent: 0 0 36px rgba(201,255,87,0.18);
  --ease: 0.22s ease;
  --max: 1200px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--c-accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--c-accent2); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

ul { list-style: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.3px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--c-accent);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: var(--c-btn-fg);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(201,255,87,0.3);
}

.logo-accent { color: var(--c-accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: color var(--ease);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  transition: width var(--ease);
}

.site-nav a:hover { color: var(--c-text); }
.site-nav a:hover::after { width: 100%; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.mobile-nav {
  display: none;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 8px 24px 16px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: var(--c-muted);
  font-size: 16px;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--ease), padding-left var(--ease);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--c-accent); padding-left: 6px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 55%, #181818 0%, #0f0f0f 65%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9ff57' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #c9ff57;
  top: -180px;
  right: -140px;
  animation: orb1 14s ease-in-out infinite;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: #1d7a35;
  bottom: -120px;
  left: -100px;
  animation: orb2 18s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #a0cc00;
  top: 50%;
  left: 50%;
  opacity: 0.12;
  animation: orb3 24s ease-in-out infinite;
}

@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-50px,40px) scale(1.08); }
  66% { transform: translate(26px,-28px) scale(0.93); }
}

@keyframes orb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(60px,-40px) scale(1.07); }
  70% { transform: translate(-28px,50px) scale(0.9); }
}

@keyframes orb3 {
  0%,100% { transform: translate(-50%,-50%) scale(1) rotate(0deg); }
  50% { transform: translate(-50%,-50%) scale(1.3) rotate(180deg); }
}

@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-accent-dim);
  border: 1px solid var(--c-accent-border);
  border-radius: 4px;
  padding: 6px 18px;
  font-size: 11px;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero h1 {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 24px;
  letter-spacing: -2px;
  color: var(--c-text);
}

.hero h1 em {
  font-style: normal;
  color: var(--c-accent);
}

.hero-lead {
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1.75;
  margin: 0 auto 44px;
  max-width: 620px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-accent);
  color: var(--c-btn-fg);
  padding: 16px 44px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-accent);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-cta:hover {
  background: var(--c-accent2);
  color: var(--c-btn-fg);
  transform: translateY(-3px);
  box-shadow: 0 0 52px rgba(201,255,87,0.38);
}

/* hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
}

.hs-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.5px;
  line-height: 1;
}

.hs-label {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--c-border2);
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section { padding: 86px 0; }
.section-alt { background: var(--c-surface); }

.sec-head { margin-bottom: 52px; }
.sec-head.centered { text-align: center; }
.sec-head.centered .sec-sub { margin: 0 auto; }

.sec-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.sec-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 3px;
  margin-top: 10px;
}

.sec-head.centered .sec-title::after {
  margin-left: auto;
  margin-right: auto;
}

.sec-sub {
  font-size: 16px;
  color: var(--c-muted);
  max-width: 560px;
  margin-top: 6px;
}

/* ── ADVANTAGES ── */
.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--c-border);
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.adv-item {
  background: var(--c-card);
  padding: 42px 38px;
  transition: background var(--ease);
  position: relative;
  overflow: hidden;
}

.adv-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  opacity: 0.7;
  transition: opacity var(--ease);
}

.adv-item:hover { background: var(--c-card-h); }
.adv-item:hover::before { opacity: 1; }

.adv-icon {
  display: block;
  font-size: 11px;
  color: var(--c-accent);
  margin-bottom: 6px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.adv-num {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

.adv-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-text);
}

.adv-text {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── SLOTS ── */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.slot-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  cursor: default;
}

.slot-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-accent);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 20px rgba(201,255,87,0.1);
}

.slot-img-wrap {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.slot-img-wrap img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slot-card:hover .slot-img-wrap img {
  transform: scale(1.05);
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.slot-overlay span {
  width: 46px;
  height: 46px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-btn-fg);
  font-size: 16px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding-left: 3px;
}

.slot-card:hover .slot-overlay {
  background: rgba(0,0,0,0.35);
}

.slot-info { padding: 14px 16px 16px; }
.slot-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.slot-tag {
  font-size: 11px;
  color: var(--c-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── SLIDER ── */
.slider-outer { overflow: hidden; }

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.rev-card {
  flex: 0 0 calc(33.333% - 11px);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}

.rev-card:hover {
  border-color: var(--c-border2);
  transform: translateY(-2px);
}

.rev-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.rev-body { padding: 16px 20px 20px; }

.rev-badge {
  display: inline-block;
  background: var(--c-accent-dim);
  border: 1px solid var(--c-accent-border);
  border-radius: 3px;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.rev-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.rev-desc { font-size: 13px; color: var(--c-muted); line-height: 1.6; }

.slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.sl-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  border: 2px solid var(--c-accent);
  background: transparent;
  color: var(--c-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.sl-btn:hover { background: var(--c-accent); color: var(--c-btn-fg); transform: scale(1.05); }
.sl-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

.sl-dots { display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: wrap; }

.sl-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--c-border2);
  border: none;
  cursor: pointer;
  transition: background var(--ease), width var(--ease);
  padding: 0;
}

.sl-dot.active { background: var(--c-accent); width: 24px; }

/* ── STEPS ── */
.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 38px 30px;
  transition: border-color var(--ease), box-shadow var(--ease);
  position: relative;
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--c-accent), transparent);
  border-radius: 0 0 var(--r-md) var(--r-md);
  opacity: 0;
  transition: opacity var(--ease);
}

.step-card:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-accent);
}

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

.step-num {
  display: block;
  font-size: 50px;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
}

.step-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-text);
}

.step-text {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.7;
}

.step-arrow {
  font-size: 22px;
  color: var(--c-accent);
  display: flex;
  align-items: center;
  padding: 0 18px;
  flex-shrink: 0;
  opacity: 0.4;
  align-self: center;
}

/* ── BONUSES ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 22px;
}

.bonus-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-border2);
  border-radius: var(--r-md);
  padding: 30px 26px;
  transition: transform var(--ease), box-shadow var(--ease), border-top-color var(--ease);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-top-color: var(--c-accent);
}

.bonus-card.bonus-featured {
  border-top: 3px solid var(--c-accent);
  background: linear-gradient(160deg, #242420 0%, #1e1e1e 100%);
  box-shadow: 0 0 40px rgba(201,255,87,0.08);
  position: relative;
}

.bonus-card.bonus-featured::before {
  content: '★ Популярный';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--c-accent);
  color: var(--c-btn-fg);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}

.bonus-lbl {
  display: inline-block;
  background: var(--c-accent-dim);
  border: 1px solid var(--c-accent-border);
  border-radius: var(--r-sm);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.bonus-name { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.bonus-text { font-size: 14px; color: var(--c-muted); line-height: 1.7; margin-bottom: 22px; }

.btn-bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-accent);
  color: var(--c-btn-fg);
  padding: 9px 22px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--ease), transform var(--ease);
}

.btn-bonus:hover { background: var(--c-accent2); color: var(--c-btn-fg); transform: translateY(-1px); }

.bonus-note {
  font-size: 13px;
  color: var(--c-muted2);
  text-align: center;
  font-style: italic;
}

/* ── ABOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-body h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.about-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--c-accent);
  position: relative;
  padding-left: 14px;
}

.about-body h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  background: var(--c-accent);
  border-radius: 2px;
}

.about-body p {
  font-size: 15px;
  line-height: 1.84;
  color: var(--c-muted);
  margin-bottom: 16px;
}

.ov-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.ov-table th,
.ov-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}

.ov-table th {
  background: var(--c-card);
  color: var(--c-accent);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ov-table td:first-child {
  color: var(--c-text);
  font-weight: 600;
  width: 36%;
}

.ov-table td { background: var(--c-surface); color: var(--c-muted); }
.ov-table tr:last-child td { border-bottom: none; }
.ov-table tr:hover td { background: var(--c-card); }
.ov-table tr:hover td:first-child { color: var(--c-accent); }

.about-side { position: sticky; top: 76px; }

.side-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r-md);
  padding: 26px 22px;
  margin-bottom: 18px;
}

.side-box h3 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding-left: 0 !important;
}

.side-box h3::before { display: none !important; }

.side-box p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.side-box-cta {
  background: linear-gradient(135deg, #1e2215 0%, #1a1a1a 100%);
  border-color: var(--c-border2);
  border-left-color: var(--c-accent);
}

.btn-side {
  display: block;
  background: var(--c-accent);
  color: var(--c-btn-fg);
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--ease), transform var(--ease);
}

.btn-side:hover { background: var(--c-accent2); color: var(--c-btn-fg); transform: translateY(-1px); }

.chk-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.5;
}

.chk-list li:last-child { border-bottom: none; }
.chk-list li::before { content: '✓'; color: var(--c-accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--c-border);
  transition: border-color var(--ease);
}

.faq-item.open { border-color: var(--c-border2); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--ease);
  line-height: 1.4;
}

.faq-q:hover { color: var(--c-accent); }

.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  border: 2px solid var(--c-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--c-muted);
  transition: border-color var(--ease), color var(--ease), transform var(--ease), background var(--ease);
  line-height: 1;
}

.faq-item.open .faq-ico {
  border-color: var(--c-accent);
  color: var(--c-btn-fg);
  background: var(--c-accent);
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.78;
}

.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: #090909;
  border-top: 1px solid var(--c-border);
  padding: 68px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

.f-brand { max-width: 280px; }

.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 14px;
}

.f-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.72;
  margin-bottom: 14px;
}

.f-rg { font-size: 12px; color: var(--c-muted2); line-height: 1.6; }

.f-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.f-col ul li { margin-bottom: 12px; }
.f-col ul li a {
  font-size: 14px;
  color: var(--c-muted);
  transition: color var(--ease), padding-left var(--ease);
  display: inline-block;
}
.f-col ul li a:hover { color: var(--c-accent); padding-left: 4px; }

.f-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.f-copy { font-size: 13px; color: var(--c-muted2); }

.f-disc {
  font-size: 12px;
  color: var(--c-muted2);
  max-width: 400px;
  text-align: right;
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .rev-card { flex: 0 0 calc(50% - 8px); }
  .steps-row { flex-direction: column; gap: 16px; }
  .step-arrow { display: none; }
  .hero-stats { max-width: 100%; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .hero { min-height: 460px; padding: 70px 0 60px; }
  .hero h1 { font-size: 42px; letter-spacing: -1px; }
  .hero-lead { font-size: 16px; }
  .section { padding: 60px 0; }
  .sec-title { font-size: 28px; }
  .adv-grid { gap: 2px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .rev-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-brand { max-width: 100%; }
  .f-disc { text-align: left; }
  .ov-table th, .ov-table td { padding: 10px 12px; font-size: 13px; }
  .hero-stats { flex-direction: column; gap: 0; max-width: 280px; }
  .hero-stat-sep { width: 60%; height: 1px; }
}

@media (max-width: 480px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 32px; }
  .btn-cta { font-size: 14px; padding: 14px 28px; }
  .sec-title { font-size: 24px; }
  .adv-item { padding: 30px 24px; }
  .adv-num { font-size: 40px; }
  .about-body h2 { font-size: 22px; }
  .bonus-card.bonus-featured::before { font-size: 9px; }
}
