/* =====================================================
   MOSTBET KG — Design System
   Colors: Blue #1a3cff, Yellow #f5c518, Dark Navy #0d1b3e
   Market: Kyrgyzstan (KG) | Language: Russian
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --blue: #1652d4;
  --blue-dark: #1040b0;
  --blue-light: #e6effe;
  --yellow: #f5c518;
  --yellow-dark: #d4a900;
  --yellow-light: #fffbe6;
  --navy: #0d2461;
  --navy-card: #0f2a6e;
  --navy-border: #1a3878;
  --text: #1a2332;
  --text-muted: #5a6a7e;
  --white: #ffffff;
  --light-bg: #f4f7fb;
  --success: #22c55e;
  --gold: #f5c518;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── TOP BAR ── */
.topbar {
  background: var(--blue);
  padding: 9px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}
.topbar-text { flex-shrink: 1; overflow: hidden; text-overflow: ellipsis; }
.topbar a {
  color: var(--navy);
  text-decoration: none;
  background: var(--yellow);
  border: 1px solid var(--yellow-dark);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.topbar a:hover { background: var(--yellow-dark); color: var(--navy); }

/* ── HEADER ── */
.site-header {
  background: #1652d4;
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: none;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
/* Буква M */
.logo-letter-m {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  color: #0a1f6e;
  letter-spacing: -1px;
  line-height: 1;
  margin-right: -1px;
}
/* Круг со звездой (вместо O) */
.logo-circle-o {
  width: 33px;
  height: 33px;
  background: #e85d1a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 1px;
}
.logo-star-o {
  color: #1a4fd4;
  font-size: 17px;
  line-height: 1;
  font-style: normal;
}
/* Буквы STBET */
.logo-letter-rest {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  color: #0a1f6e;
  letter-spacing: -1px;
  line-height: 1;
  margin-left: -1px;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.main-nav a.active { background: var(--yellow); color: var(--navy); font-weight: 700; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.2s;
  width: 260px;
  text-align: center;
}
.mobile-nav a:hover { background: var(--blue); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--navy) !important;
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,197,24,0.5); }

.btn-blue {
  background: var(--blue);
  color: white !important;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,60,255,0.4); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn-outline:hover { background: var(--yellow); color: var(--navy); }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0d2461 0%, #1652d4 60%, #1040b0 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,60,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.2);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--yellow); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--yellow);
  padding: 18px 0;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ── SECTION ── */
.section { padding: 72px 0; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--navy); color: white; }
.section-blue { background: var(--blue); color: white; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-label.blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-dark .section-title, .section-blue .section-title { color: white; }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 620px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.70); }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef6;
  transition: all 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-dark {
  background: var(--navy-card);
  border-color: var(--navy-border);
  color: white;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.card-icon.blue { background: var(--blue-light); }

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.card-dark h3 { color: white; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.card-dark p { color: rgba(255,255,255,0.65); }

/* ── TABLE ── */
.kk-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 24px 0;
  font-size: 14px;
}
.kk-table thead th {
  background: var(--blue);
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kk-table tbody tr { background: white; transition: background 0.15s; }
.kk-table tbody tr:nth-child(even) { background: #f8fafd; }
.kk-table tbody tr:hover { background: var(--blue-light); }
.kk-table tbody td { padding: 13px 18px; border-bottom: 1px solid #edf2f7; }
.kk-table .check { color: var(--success); font-weight: 700; font-size: 16px; }
.kk-table .cross { color: #ef4444; font-weight: 700; font-size: 16px; }

/* ── BONUS CARD ── */
.bonus-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0e1fa8 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.bonus-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--yellow);
}
.bonus-sub { font-size: 18px; opacity: 0.9; }
.bonus-list { list-style: none; margin-top: 16px; }
.bonus-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 4px 0; }
.bonus-list li::before { content: '✓'; background: rgba(255,255,255,0.25); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

/* ── STEPS ── */
.steps { counter-reset: steps; display: grid; gap: 20px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--yellow);
  counter-increment: steps;
}
.step-num {
  min-width: 40px;
  height: 40px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.step-content h4 { font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--navy); }
.step-content p { font-size: 14px; color: var(--text-muted); }

/* ── PROS CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.pros, .cons {
  border-radius: var(--radius);
  padding: 24px;
}
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fff1f2; border: 1px solid #fecdd3; }
.pros h3 { color: #166534; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 17px; }
.cons h3 { color: #9f1239; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 17px; }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { padding: 6px 0; font-size: 14px; display: flex; gap: 8px; }
.pros li::before { content: '✓'; color: #16a34a; font-weight: 800; }
.cons li::before { content: '✗'; color: #dc2626; font-weight: 800; }

/* ── FAQ ── */
.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid #e8eef6;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-bg);
  color: var(--navy);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--blue-light); }
.faq-q::after { content: '+'; font-size: 22px; color: var(--blue); font-weight: 400; }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-q { background: var(--blue-light); color: var(--blue-dark); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-item.open .faq-a { max-height: 400px; padding: 16px 22px; }

/* ── AUTHOR BLOCK ── */
.author-block {
  background: linear-gradient(135deg, #f8fafd 0%, var(--blue-light) 100%);
  border: 1px solid #c8d8ff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 48px 0 0;
}
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
  flex-shrink: 0;
}
.author-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: var(--blue-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.author-info p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.author-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.author-tag {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #a7c0ff;
}
.author-updated {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── ARTICLE LAYOUT ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: flex-start;
}
.article-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--yellow);
}
.article-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.article-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}
.article-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.article-content ul, .article-content ol {
  margin: 14px 0 20px 24px;
  font-size: 15px;
  line-height: 1.7;
}
.article-content li { margin-bottom: 6px; }
.article-content a:not(.btn) { color: var(--blue); font-weight: 600; text-decoration: underline; }
.article-content a:not(.btn):hover { color: var(--blue-dark); }
.article-content .btn { color: var(--navy) !important; }
.article-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.article-content strong { color: var(--navy); }
.article-content blockquote {
  border-left: 4px solid var(--blue);
  background: var(--blue-light);
  padding: 16px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--blue-dark);
}

/* ── HIGHLIGHT BOX ── */
.highlight {
  background: var(--yellow-light);
  border: 1px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.65;
}

/* SIDEBAR */
.sidebar { position: sticky; top: 88px; }
.sidebar-widget {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef6;
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--blue), #0e1fa8);
  color: white;
  text-align: center;
  border-radius: var(--radius);
  padding: 28px 20px;
  margin-bottom: 24px;
}
.sidebar-cta .cta-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--yellow);
}
.sidebar-cta p { font-size: 13px; opacity: 0.9; margin-bottom: 18px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.sidebar-nav a:hover { background: var(--blue-light); color: var(--blue-dark); }

/* ── CHART ── */
.chart-container { margin: 32px 0; }
.chart-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.bar-chart { display: grid; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 14px; }
.bar-label { min-width: 160px; font-size: 13px; font-weight: 600; color: var(--text); }
.bar-track {
  flex: 1;
  height: 28px;
  background: #edf2f7;
  border-radius: 14px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  transition: width 1s ease;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.bar-fill.yellow { background: linear-gradient(90deg, var(--yellow), var(--yellow-dark)); color: var(--navy); }
.bar-score { min-width: 50px; text-align: right; font-size: 14px; font-weight: 700; color: var(--navy); }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0d2461 0%, #1652d4 100%);
  padding: 52px 0;
  color: white;
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero h1 .accent { color: var(--yellow); }
.page-hero p { font-size: 17px; opacity: 0.80; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 18px;
  opacity: 0.70;
}
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.80);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand { color: white; }
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-logo span { color: var(--yellow); }
.footer-desc { font-size: 13px; line-height: 1.7; opacity: 0.65; margin-bottom: 20px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
}
.footer-col h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  line-height: 1.6;
}
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── RESPONSIVE ── */

/* Таблицы — горизонтальный скролл на мобиле */
.kk-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Защита контента от вылезания */
.article-content, .container, .container-narrow {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

img { max-width: 100%; height: auto; }

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 36px; }
  .hero-image { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 26px; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .bonus-hero { grid-template-columns: 1fr; padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar-inner { gap: 12px; }

  /* Бары рейтинга */
  .bar-row { flex-wrap: wrap; gap: 8px; }
  .bar-label { min-width: unset; width: 100%; }
  .bar-track { width: 100%; }
  .bar-score { min-width: unset; }

  /* Автор блок */
  .author-block { padding: 24px; gap: 20px; }

  /* Шаги */
  .step { padding: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .hero { padding: 40px 0 30px; }
  .hero h1 { font-size: 26px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .section { padding: 48px 0; }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }
  .page-hero h1 { font-size: 28px; }
  .page-hero { padding: 36px 0; }

  /* Топбар — перенос на двух строках */
  .topbar { flex-wrap: wrap; gap: 6px; white-space: normal; }

  /* Таблицы — уменьшаем padding ячеек */
  .kk-table thead th,
  .kk-table tbody td { padding: 10px 12px; font-size: 13px; }

  /* Бонус-карта */
  .bonus-hero { padding: 20px 16px; }
  .bonus-amount { font-size: 42px; }

  /* Сайдбар */
  .sidebar-cta { padding: 20px 16px; }
  .sidebar-cta .cta-amount { font-size: 30px; }
}


/* === SIDEBAR CTA EXTENDED === */
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin: 6px 0 16px;
  line-height: 1.4;
}
.sidebar-cta .cta-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  text-align: left;
}
.sidebar-cta .cta-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  padding: 6px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.4;
  display: flex !important;
  align-items: center;
  gap: 8px;
  list-style: none !important;
  list-style-type: none !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
}
.sidebar-cta .cta-list li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #22c55e;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M10 3L5 8.5 2 5.5l-1 1 4 4 6-7z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.sidebar-cta .cta-list li:last-child { border-bottom: none; }
.cta-note {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 10px 0 0;
  text-align: center;
}
