/* ============================================================== */
/* Казик онлайн — светлый медиа-обзорный стиль                    */
/* ============================================================== */

:root {
  --bg: #faf8f3;
  --bg-card: #ffffff;
  --bg-muted: #f2efe8;
  --border: #e5dfd0;
  --border-strong: #d4cbb3;
  --text: #1a1814;
  --text-muted: #6b6558;
  --text-soft: #8b8474;
  --accent: #0d8f4f;
  --accent-dark: #0a6e3c;
  --accent-soft: #e8f5ed;
  --gold: #c89b2a;
  --gold-soft: #fdf3d8;
  --warn: #b91c1c;
  --warn-soft: #fdecea;
  --link: #0d8f4f;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(20, 18, 12, 0.04);
  --shadow: 0 4px 14px -6px rgba(20, 18, 12, 0.12);
  --shadow-lg: 0 18px 40px -20px rgba(20, 18, 12, 0.25);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
    "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.has_sticky_promo { padding-bottom: 100px; }
@media (max-width: 640px) {
  body.has_sticky_promo { padding-bottom: 92px; }
}

img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 14px;
}
h1 { font-size: 44px; font-weight: 700; }
h2 { font-size: 30px; font-weight: 700; }
h3 { font-size: 21px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 14px; }

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

/* === Header === */
.site_header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site_header_inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 60px;
}
.site_logo {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site_logo_dot { color: var(--accent); }
.site_nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  align-items: center;
}
.site_nav a {
  color: var(--text);
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site_nav a:hover { color: var(--accent); border-bottom-color: var(--accent); text-decoration: none; }
.site_nav a.is_active { color: var(--accent); border-bottom-color: var(--accent); }
.header_cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s;
}
.header_cta:hover { background: #2e2a22; text-decoration: none; color: #fff; }
.header_cta_primary {
  background: var(--accent);
  height: 40px;
  padding: 0 22px;
  font-size: 14px;
  margin-left: auto;
}
.header_cta_primary:hover { background: var(--accent-dark); color: #fff; }

/* === Review page warning (низкий рейтинг / не в топе) === */
.review_warning {
  background: #fff7ed;
  border-bottom: 1px solid #fed7aa;
}
.review_warning_inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.review_warning_icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fb923c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.review_warning_text { flex: 1; min-width: 0; line-height: 1.45; }
.review_warning_text strong {
  display: block;
  color: #9a3412;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.review_warning_text span {
  color: #7c2d12;
  font-size: 14px;
}
.review_warning_link {
  color: #9a3412;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.review_warning_link:hover { color: var(--warn); }
@media (max-width: 640px) {
  .review_warning_inner { padding: 12px 0; gap: 12px; flex-wrap: wrap; }
  .review_warning_icon { width: 32px; height: 32px; font-size: 16px; }
  .review_warning_text strong { font-size: 14px; }
  .review_warning_text span { font-size: 13px; }
  .review_warning_link { flex: 1 1 100%; }
  .site_header .header_cta_primary { display: inline-flex; height: 36px; padding: 0 16px; font-size: 13px; }
}

/* === Hero === */
.hero { padding: 36px 0 32px; }
.hero_grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.hero_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero_eyebrow_dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 143, 79, 0.18);
}
.hero_title {
  font-size: 50px;
  line-height: 1.05;
  margin: 14px 0 14px;
}
.hero_subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 22px;
  font-family: Georgia, serif;
}
.hero_stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero_stats > div { display: flex; flex-direction: column; gap: 2px; }
.hero_stats b {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero_stats span {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === Hero featured pick === */
.hero_pick {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.hero_pick_label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero_pick_brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.hero_pick_logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.hero_pick_name { font-family: Georgia, serif; font-size: 22px; font-weight: 700; line-height: 1.1; }
.hero_pick_rating { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.hero_pick_score { font-family: Georgia, serif; font-weight: 700; font-size: 15px; }
.hero_pick_stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.hero_pick_bonus {
  background: var(--accent-soft);
  border: 1px solid #b9dcc6;
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 16px;
}
.hero_pick_bonus_value {
  display: block;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.2;
}
.hero_pick_bonus_label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.hero_pick_facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
}
.hero_pick_facts > div { display: flex; flex-direction: column; gap: 2px; }
.hero_pick_facts dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); }
.hero_pick_facts dd { margin: 0; font-size: 13px; font-weight: 600; color: var(--text); }
.hero_pick_actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero_pick_actions .btn { flex: 1; min-width: 160px; }

/* === Strip === */
.strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip_inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}
.strip_label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-right: 4px;
}

/* === Sections === */
.section { padding: 48px 0; }
.section_dark { background: #1a1814; color: #d9d3c3; padding: 48px 0; }
.section_dark h2, .section_dark h4 { color: #fff; }
.section_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.section_head h2 { margin: 0 0 6px; }
.section_head_sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0;
}
.section_head_light .section_head_sub_light {
  color: #a8a292;
  font-size: 15px;
  max-width: 520px;
  margin: 0;
}
.section_kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}
.section_kicker_light { color: var(--gold); }

/* === Rating === */
.rating_list { display: flex; flex-direction: column; gap: 10px; }

.rating_featured {
  display: grid;
  grid-template-columns: auto 1fr 280px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, var(--gold-soft) 0%, #fff 55%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 4px;
}
.rating_featured_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 84px;
}
.rating_featured_rank { text-align: center; }
.rating_featured_rank_num {
  display: block;
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating_featured_rank_label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-top: 4px;
}
.rating_featured_logo {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.rating_featured_main h3 { margin: 0 0 6px; font-size: 26px; }
.rating_featured_main h3 a { color: var(--text); }
.rating_featured_main h3 a:hover { color: var(--accent); text-decoration: none; }
.rating_featured_main p { margin: 0 0 12px; color: var(--text-muted); font-size: 15px; line-height: 1.55; }
.rating_featured_tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.rating_featured_facts {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.rating_featured_facts b { color: var(--text); font-weight: 600; }
.rating_featured_side { display: flex; flex-direction: column; gap: 10px; text-align: center; }
.rating_featured_score { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 2px; }
.rating_featured_score_value {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.rating_featured_score_stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.rating_featured_bonus {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-dark);
  padding: 8px 12px;
  background: var(--accent-soft);
  border-radius: var(--radius);
}
.rating_featured_side .btn_link { font-size: 13px; color: var(--text-muted); }

.rating_row {
  display: grid;
  grid-template-columns: 36px 48px minmax(0, 1.6fr) 90px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.rating_row:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.rating_row_trust { border-left-color: var(--accent); }
.rating_row_warn {
  border-left-color: var(--warn);
  background: #fcf7f5;
  opacity: 0.96;
}
.rating_row_warn .rating_row_logo { filter: grayscale(0.7); opacity: 0.75; }
.rating_row_warn .rating_row_rank { color: #c5b6a3; }
.rating_row_warn .rating_row_score_value { color: var(--warn); }
.rating_row_warn .rating_row_bonus { color: var(--text-soft); }
.rating_row_warn .rating_row_main h3 a { color: var(--text-muted); }
.rating_row_warn .btn_primary { background: #6b6558; }
.rating_row_warn .btn_primary:hover { background: var(--warn); }

.rating_row_rank {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-soft);
  text-align: center;
  line-height: 1;
}
.rating_row_logo {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.rating_row_main h3 { margin: 0 0 4px; font-size: 17px; }
.rating_row_main h3 a { color: var(--text); }
.rating_row_main h3 a:hover { color: var(--accent); text-decoration: none; }
.rating_row_text {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}
.rating_row_tags { display: flex; gap: 6px; flex-wrap: wrap; }
.rating_row_score { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.rating_row_score_value {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.rating_row_score_stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.rating_row_bonus { font-size: 14px; color: var(--text); font-weight: 600; }
.rating_row_actions { display: flex; min-width: 130px; }
.rating_row_actions .btn { width: 100%; height: 46px; padding: 0 22px; font-size: 14px; font-weight: 700; }
.rating_empty {
  padding: 22px 24px;
  background: #fff;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
  margin: 0;
}

/* === Rating cluster dividers === */
.rating_divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 6px;
  padding: 0 4px;
}
.rating_divider::before,
.rating_divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.rating_divider span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}
.rating_divider_warn span {
  color: var(--warn);
  background: var(--warn-soft);
  border-color: #f0c4bd;
}

/* === Новые казики === */
.new_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.new_card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.new_card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
  text-decoration: none;
}
.new_card_head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.new_card_logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.new_card_head_main { flex: 1; min-width: 0; }
.new_card_name { font-family: Georgia, serif; font-size: 17px; font-weight: 700; line-height: 1.15; color: var(--text); }
.new_card_launch { font-size: 12px; color: var(--text-soft); margin-top: 2px; }
.new_card_badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  align-self: flex-start;
}
.new_card_text { font-size: 13px; line-height: 1.5; color: var(--text-muted); margin: 0 0 12px; }
.new_card_facts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text);
}
.new_card_facts b {
  display: inline-block;
  min-width: 70px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.new_card_more { font-size: 13px; font-weight: 600; color: var(--accent); margin-top: auto; }

/* === Логотип-картинка (общий стиль для всех _img вариантов) === */
.hero_pick_logo_img,
.rating_row_logo_img,
.rating_featured_logo_img,
.new_card_logo_img,
.sticky_promo_logo_img {
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.hero_pick_logo_img img,
.rating_row_logo_img img,
.rating_featured_logo_img img,
.new_card_logo_img img,
.sticky_promo_logo_img img,
.review_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review_logo.review_logo_img {
  padding: 0;
  background: #fff;
  overflow: hidden;
}

/* === Slots === */
.slots_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.slot_card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.slot_card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.slot_card_art {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-family: Georgia, serif;
  text-align: center;
  padding: 16px;
}
.slot_card_art_label {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
  line-height: 1.05;
}
.slot_card_art_kicker {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
}
.slot_card_body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.slot_card_title {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.slot_card_meta {
  font-size: 12px;
  color: var(--text-soft);
}
.slot_card_facts {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.slot_card_facts b { color: var(--text); font-weight: 600; }
.slot_card_btn {
  margin-top: auto;
  width: 100%;
  height: 42px;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 980px) {
  .slots_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .slots_grid { grid-template-columns: 1fr; }
}

/* === Tags === */
.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--bg-muted);
  color: var(--text-muted);
}
.tag_gold { background: var(--gold-soft); color: #8b6914; }
.tag_green { background: var(--accent-soft); color: var(--accent-dark); }
.tag_red { background: var(--warn-soft); color: var(--warn); }
.tag_blue { background: #e3f1fb; color: #1c6aa4; }
.tag_purple { background: #efeaf9; color: #5b3eb6; }

/* === Stars (CSS half-fill) === */
.stars {
  --fill: 100%;
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
  color: #d8d0bd;
  white-space: nowrap;
}
.stars::before { content: "★★★★★"; }
.stars::after {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--fill);
  overflow: hidden;
  color: var(--gold);
}
.rating_featured_score_stars { font-size: 18px; letter-spacing: 3px; }
.rating_row_score_stars { font-size: 13px; letter-spacing: 1.5px; }
.hero_pick_stars { font-size: 14px; letter-spacing: 2px; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}
.btn_primary { background: var(--accent); color: #fff; }
.btn_primary:hover { background: var(--accent-dark); text-decoration: none; color: #fff; }
.btn_ghost { background: #fff; border-color: var(--border-strong); color: var(--text); }
.btn_ghost:hover { border-color: var(--text); text-decoration: none; }
.btn_lg { height: 50px; padding: 0 26px; font-size: 15px; }
.btn_link {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}
.btn_link:hover { color: var(--accent); text-decoration: none; }

/* === About === */
.about_grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.about_aside h2 { margin: 0 0 10px; }
.about_aside_meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--text-soft); }
.about_body p { font-size: 16px; line-height: 1.65; color: #2a2820; margin-bottom: 14px; }
.about_checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about_checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
.about_checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_checklist b { color: var(--text); }

/* === Methodology (dark) === */
.method_steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.method_steps li {
  padding: 20px;
  background: #25221d;
  border: 1px solid #2e2a22;
  border-radius: var(--radius-lg);
}
.method_steps_num {
  display: block;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.method_steps h4 { font-family: Georgia, serif; color: #fff; font-size: 16px; margin: 0 0 6px; }
.method_steps p { margin: 0; font-size: 13px; color: #a8a292; line-height: 1.55; }

/* === Compare table === */
.compare_wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
}
.compare_table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare_table th,
.compare_table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare_table thead th {
  background: var(--bg-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.compare_table tbody tr:last-child td { border-bottom: none; }
.compare_table tbody tr:hover td { background: #fcfaf3; }
.compare_table td a { color: var(--text); font-weight: 600; }
.compare_table td a:hover { color: var(--accent); }
.compare_yes { color: var(--accent); font-weight: 700; }
.compare_no { color: var(--warn); font-weight: 700; }

/* === FAQ === */
.faq_grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.faq_intro h2 { margin: 0 0 10px; }
.faq_intro p { color: var(--text-muted); font-size: 15px; margin: 0; }
.faq_list { display: flex; flex-direction: column; gap: 10px; }
.faq_item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.15s;
}
.faq_item[open] { border-color: var(--border-strong); }
.faq_item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq_item summary::-webkit-details-marker { display: none; }
.faq_item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--text-soft);
  flex-shrink: 0;
  line-height: 1;
}
.faq_item[open] summary::after { content: "−"; }
.faq_item p { margin: 10px 0 0; color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* === SEO bottom === */
.seo_text { padding: 48px 0; background: var(--bg-muted); border-top: 1px solid var(--border); }
.seo_text h2 { font-size: 24px; margin-top: 28px; }
.seo_text h2:first-child { margin-top: 0; }
.seo_text p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* === Footer === */
.site_footer { background: #1a1814; color: #c9c3b3; padding: 44px 0 28px; }
.site_footer_grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 28px;
}
.site_footer_reviews ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.site_footer h4 {
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.site_footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site_footer a { color: #c9c3b3; font-size: 14px; }
.site_footer a:hover { color: #fff; }
.site_footer_bottom {
  padding-top: 22px;
  border-top: 1px solid #2e2a22;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #807a6c;
  gap: 16px;
  flex-wrap: wrap;
}
.site_footer_disclaimer { max-width: 720px; line-height: 1.5; }

/* === Sticky promo bar === */
.sticky_promo {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 36px -12px rgba(20, 18, 12, 0.28);
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.sticky_promo.is_hidden { transform: translateY(140%); }
.sticky_promo_inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  max-width: none;
}
.sticky_promo_brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
/* Бренд-блок (лого+название) кликабелен — оборачиваем JS-ом в <a>. На десктопе тоже без подчёркивания. */
.sticky_promo_brand_link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
}
.sticky_promo_brand_link:hover { opacity: 0.85; text-decoration: none; }
.sticky_promo_logo {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.sticky_promo_text { min-width: 0; }
.sticky_promo_name {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sticky_promo_rank {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 3px 8px;
  border-radius: 999px;
}
.sticky_promo_meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky_promo_actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sticky_promo_actions .btn { height: 40px; padding: 0 24px; }
.sticky_promo_close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 18px;
  line-height: 1;
  color: var(--text-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s, color 0.15s;
}
.sticky_promo_close:hover { border-color: var(--text); color: var(--text); }

@media (max-width: 640px) {
  .sticky_promo { left: 8px; right: 8px; bottom: 8px; border-radius: 16px; }
  /* Бар повыше, чтоб кнопка не выглядела «на всё ебало». Специфичностью .sticky_promo .sticky_promo_inner перебиваем .container */
  .sticky_promo .sticky_promo_inner { padding: 16px 16px; gap: 12px; align-items: center; min-height: 72px; max-width: none; }
  .sticky_promo_brand { gap: 12px; min-width: 0; flex: 1 1 auto; align-items: center; padding-right: 0; }
  /* Brand стал кликабельной ссылкой — снимаем подчёркивание и наследуем цвет */
  .sticky_promo_brand_link { display: flex; text-decoration: none; color: inherit; }
  .sticky_promo_brand_link:hover { text-decoration: none; }
  .sticky_promo_logo { width: 48px; height: 48px; font-size: 16px; border-radius: 11px; flex-shrink: 0; }
  .sticky_promo_text { min-width: 0; flex: 1; }
  .sticky_promo_name { font-size: 14.5px; font-weight: 700; gap: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }
  .sticky_promo_rank { display: none; }
  .sticky_promo_meta { font-size: 11.5px; line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-top: 3px; }
  /* Увеличили gap между кнопкой и крестиком + явный margin у крестика — чтобы не нажимать его случайно */
  .sticky_promo_actions { gap: 14px; flex-shrink: 0; align-self: center; }
  .sticky_promo_actions .sticky_promo_close { margin-left: 4px; }
  /* Кнопка — пропорциональная бару, не растягиваем */
  .sticky_promo_actions .btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    white-space: nowrap;
  }
  /* Закрыть-крестик: компактный, в потоке, не перекрывает кнопку */
  .sticky_promo_close {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-soft);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .sticky_promo_close:hover { color: var(--text); border-color: transparent; }
}

/* Совсем узкие экраны (iPhone SE и тд) — режем чуть-чуть, но бар оставляем нормальной высоты */
@media (max-width: 380px) {
  .sticky_promo_inner { padding: 14px 12px; gap: 10px; min-height: 68px; }
  .sticky_promo_logo { width: 44px; height: 44px; }
  .sticky_promo_actions .btn { padding: 0 14px; font-size: 13.5px; height: 38px; }
  .sticky_promo_meta { display: none; } /* остаётся только название казика */
}

/* Дополнительный буфер снизу страницы, чтобы бар не закрывал контент */
@media (max-width: 640px) {
  body.has_sticky_promo { padding-bottom: 100px; }
}

/* === Review page === */
.review_hero { padding: 40px 0 28px; background: #fff; border-bottom: 1px solid var(--border); }
.review_hero_grid {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 28px;
  align-items: center;
}
.review_logo {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.review_hero h1 { font-size: 36px; margin: 8px 0; }
.review_meta_row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}
.review_meta_row strong { color: var(--text); }

.review_layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 40px 0;
}
.review_aside { position: sticky; top: 80px; align-self: start; }
.review_aside_card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
}
.review_aside_card h4 {
  font-family: inherit;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.review_aside dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin: 0; font-size: 14px; }
.review_aside dt { color: var(--text-muted); }
.review_aside dd { margin: 0; color: var(--text); font-weight: 500; }

.review_content h2 { margin-top: 36px; font-size: 26px; }
.review_content h2:first-child { margin-top: 0; }
.review_content p { font-size: 16px; line-height: 1.7; color: #2a2820; }

.pros_cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 16px 0;
}
.pros, .cons { padding: 20px; border-radius: var(--radius); border: 1px solid; }
.pros { background: var(--accent-soft); border-color: #c8e6d2; }
.cons { background: var(--warn-soft); border-color: #f0d4c8; }
.pros h4, .cons h4 { font-family: inherit; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.pros h4 { color: var(--accent-dark); }
.cons h4 { color: var(--warn); }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li { font-size: 14px; line-height: 1.5; padding-left: 22px; position: relative; margin-bottom: 6px; }
.pros li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.cons li::before { content: "−"; position: absolute; left: 0; color: var(--warn); font-weight: 700; }

/* === Адаптив === */
@media (max-width: 1080px) {
  .rating_featured { grid-template-columns: auto 1fr; }
  .rating_featured_side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 18px;
    row-gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    text-align: left;
  }
  .rating_featured_score {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    margin: 0;
  }
  .rating_featured_score_value { font-size: 28px; }
  .rating_featured_bonus { margin: 0; text-align: left; }
  .rating_featured_side .btn { grid-column: 1 / -1; width: 100%; min-width: 0; }
  .rating_row {
    grid-template-columns: 32px 44px 1fr auto;
    row-gap: 10px;
  }
  .rating_row_score, .rating_row_bonus { grid-column: 2 / 4; }
  .rating_row_actions { grid-column: 1 / -1; flex-direction: row; }
  .rating_row_actions .btn { flex: 1; }
}

@media (max-width: 980px) {
  h1 { font-size: 32px; }
  .hero_title { font-size: 34px; }
  .hero_grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-top: 28px; }
  .hero_stats { gap: 22px; }
  .about_grid, .faq_grid { grid-template-columns: 1fr; gap: 24px; }
  .method_steps { grid-template-columns: 1fr 1fr; }
  .site_footer_grid { grid-template-columns: 1fr; gap: 28px; }
  .site_footer_reviews ul { grid-template-columns: 1fr 1fr; }
  .review_layout { grid-template-columns: 1fr; gap: 28px; }
  .review_aside { position: static; }
  .review_hero_grid { grid-template-columns: 64px 1fr; gap: 16px; }
  .review_hero_grid .btn { grid-column: 1 / -1; }
  .review_logo { width: 64px; height: 64px; font-size: 26px; }
  .rating_featured { grid-template-columns: 1fr; padding: 20px; gap: 16px; }
  .rating_featured_left { flex-direction: row; justify-content: flex-start; gap: 16px; }
  .rating_featured_rank_num { font-size: 42px; }
  .rating_featured_logo { width: 56px; height: 56px; font-size: 24px; }
}

@media (max-width: 640px) {
  .container, .container_narrow { padding: 0 16px; }
  .site_header_inner { gap: 12px; }
  .site_nav { gap: 12px; }
  .site_nav a { font-size: 13px; }
  .header_cta { display: none; }
  h2 { font-size: 22px; }
  .hero_title { font-size: 28px; }
  .hero_subtitle { font-size: 16px; }
  .section { padding: 36px 0; }
  .section_dark { padding: 36px 0; }
  .hero_stats b { font-size: 22px; }
  .hero_pick { padding: 18px; }
  .hero_pick_facts { grid-template-columns: 1fr 1fr; }
  .hero_pick_actions { flex-direction: column; align-items: stretch; }
  .pros_cons { grid-template-columns: 1fr; }
  .method_steps { grid-template-columns: 1fr; }
  .site_footer_grid { grid-template-columns: 1fr; }
  .compare_table th, .compare_table td { padding: 10px 12px; font-size: 13px; }
  .rating_row { padding: 12px 14px; gap: 10px; }
  .rating_row_logo { width: 38px; height: 38px; font-size: 17px; }
  .rating_row_actions .btn { height: 50px; font-size: 15px; font-weight: 700; }
  .rating_featured_side { gap: 10px 16px; }
  .rating_featured_side .btn { font-size: 15px; }
  .rating_featured_score { flex: 0 0 auto; }
  .rating_featured_bonus { font-size: 15px; padding: 7px 12px; }
  .rating_featured_facts { gap: 12px; font-size: 12px; }
  .rating_divider span { font-size: 11px; padding: 4px 10px; }
}
