/* ==========================================================================
   Lucky Bear 2 — EDITORIAL INK
   Light newspaper/info-portal aesthetic. Source Serif 4 + Source Sans 3.
   Independent review portal — no glow, no neon, no pulse.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400;1,8..60,600&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* -----------------------------------------------------------------
   CSS variables — Editorial Ink palette
   ----------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg: #FAFAF7;
  --bg-alt: #F4F1EC;
  --bg-card: #FFFFFF;
  --bg-dim: #EFEBE3;

  /* Text */
  --text: #1A1A1A;
  --text2: #3D3D3D;
  --text-muted: #767676;
  --text-inverse: #FAFAF7;

  /* Accents */
  --accent: #B91C2F;
  --accent-hover: #991827;
  --accent-soft: rgba(185, 28, 47, 0.08);

  /* Links */
  --link: #0F5A9C;
  --link-hover: #084680;
  --link-visited: #5A3A8C;

  /* Borders */
  --border: #E5E1DA;
  --border-strong: #C9C3B8;
  --border-hair: #EFECE6;

  /* Highlights & states */
  --highlight: #FFF6E1;
  --success: #1B7F3D;
  --success-soft: #E8F3EC;
  --warning: #B85300;
  --warning-soft: #FBEFDD;
  --danger: #B91C2F;
  --danger-soft: rgba(185, 28, 47, 0.06);

  /* Radii — small and serious, not pill */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 8px;

  /* Shadows — paper-like, very subtle */
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-cta: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-cta-hover: 0 4px 12px rgba(0, 0, 0, 0.14);
  --shadow-inset: inset 0 -1px 0 var(--border);

  /* Typography scale */
  --f-h1: clamp(32px, 4.5vw, 52px);
  --f-h2: clamp(26px, 3vw, 36px);
  --f-h3: clamp(20px, 2vw, 24px);
  --f-h4: clamp(18px, 1.5vw, 20px);
  --f-body: clamp(16px, calc(1.05vw + 12px), 18px);
  --f-small: clamp(14px, 0.8vw + 10px, 15px);
  --f-xs: 13px;

  /* Spacing */
  --pad-block: clamp(40px, 5vw, 72px);
  --gap: clamp(16px, 2vw, 28px);
  --gap-sm: 12px;
  --container: 1200px;
  --article-width: 720px;
  --sidebar-width: 260px;
}

/* -----------------------------------------------------------------
   Reset + base
   ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: light;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--f-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'calt';
  padding-bottom: env(safe-area-inset-bottom);
}

img, svg, video { max-width: 100%; height: auto; display: block; }

/* Numbers use tabular figures */
.stat-num, .bonus-num, .stat-val, time,
.bonus-cell, .stat-card {
  font-feature-settings: 'tnum', 'lnum';
  font-variant-numeric: tabular-nums lining-nums;
}

/* -----------------------------------------------------------------
   Typography — Source Serif 4 for headings, Source Sans 3 body
   ----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif 4', 'Merriweather', Georgia, 'Times New Roman', serif;
  color: var(--text);
  margin: 0 0 0.6em;
  font-optical-sizing: auto;
}

h1 {
  font-size: var(--f-h1);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.4em;
}

h2 {
  font-size: var(--f-h2);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 1.6em;
  padding-top: 0.4em;
}

h3 {
  font-size: var(--f-h3);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1.4em;
}

h4 {
  font-size: var(--f-h4);
  font-weight: 600;
  line-height: 1.35;
}

p {
  margin: 0 0 1.1em;
  color: var(--text2);
  font-size: var(--f-body);
}

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
a:hover { color: var(--link-hover); text-decoration-thickness: 2px; }
a:focus-visible { outline: 2px solid var(--link); outline-offset: 2px; border-radius: var(--radius-xs); }

strong, b { font-weight: 700; color: var(--text); }
em, i { font-style: italic; }

small, .micro { font-size: var(--f-xs); color: var(--text-muted); }

hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 2.4em 0;
}

::selection { background: var(--accent); color: #fff; }

/* -----------------------------------------------------------------
   Utilities
   ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
}

.mb-0 { margin-bottom: 0 !important; }
.mt-lg { margin-top: clamp(32px, 4vw, 56px) !important; }

.eyebrow, .article-eyebrow {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: var(--bg);
  padding: 10px 16px;
  z-index: 100;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Kill sticky bottom CTA if present in HTML */
.sticky-cta, .sticky-bottom-cta { display: none !important; }

/* -----------------------------------------------------------------
   Header + navigation
   ----------------------------------------------------------------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: env(safe-area-inset-top);
}

.topnav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}

.brand, .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand:hover, .logo:hover { color: var(--accent); }

.brand-icon, .logo-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.nav, .nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a, .nav a, .nav-menu a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--text2);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-sm);
  min-height: 44px;
  line-height: 24px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover, .nav a:hover, .nav-menu a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}
.nav-links a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  font-size: 15px;
}
.nav-cta:hover { background: var(--accent-hover); color: #fff !important; }

.nav-toggle, .hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg, .hamburger svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-toggle, .hamburger { display: inline-flex; }
  .nav-links, .nav-menu {
    position: fixed;
    inset: 60px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 24px clamp(16px, 5vw, 32px);
    border-top: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
    overflow-y: auto;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
  .nav-links[data-open="true"],
  .nav-menu[data-open="true"],
  .nav-links.is-open,
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a, .nav-menu a {
    width: 100%;
    padding: 14px 4px;
    font-size: 17px;
    border-bottom: 1px solid var(--border-hair);
    border-radius: 0;
  }
  .nav-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
}

/* -----------------------------------------------------------------
   Page shell
   ----------------------------------------------------------------- */
.page {
  min-height: 100vh;
}

.page-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px) var(--pad-block);
}

.page-head, .article-header {
  max-width: var(--article-width);
  margin: 0 auto clamp(32px, 4vw, 56px);
  padding-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.crumb-sep { margin: 0 8px; color: var(--border-strong); }

.lede, .article-deck {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-size: clamp(19px, 1.4vw + 8px, 22px);
  line-height: 1.5;
  color: var(--text2);
  margin: 0 0 1.2em;
  letter-spacing: -0.005em;
}

/* -----------------------------------------------------------------
   Article header extras (byline stripe)
   ----------------------------------------------------------------- */
.article-byline, .author-block {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  margin: 20px 0 0;
}
.article-byline strong,
.author-block strong,
.author-name { color: var(--text); font-weight: 600; }
.author-role { color: var(--text-muted); font-size: 13px; }
.author-bio { font-size: 14px; color: var(--text2); margin-top: 6px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
}
.author-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 24px 0;
}
.reading-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.reading-time::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
}

/* -----------------------------------------------------------------
   Section blocks
   ----------------------------------------------------------------- */
.section, .section-block, .faq-section, .cta-section, .cta-final-section, .section-final {
  max-width: var(--article-width);
  margin: clamp(40px, 5vw, 60px) auto;
}
.section-block > *:first-child { margin-top: 0; }

.section-block + .section-block {
  border-top: 1px solid var(--border);
  padding-top: clamp(32px, 4vw, 48px);
}

/* Article body typography (paragraphs inside sections) */
.section-block p,
.article-body p {
  max-width: var(--article-width);
}

.section-block ul,
.section-block ol,
.article-body ul,
.article-body ol {
  padding-left: 1.4em;
  margin: 0 0 1.2em;
  color: var(--text2);
}
.section-block li,
.article-body li {
  margin-bottom: 0.5em;
  line-height: 1.65;
}
.section-block ul li::marker { color: var(--accent); }

/* Drop cap for first paragraph if class applied */
.drop-cap::first-letter,
.section-block > p.lede::first-letter {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  float: left;
  font-size: 4.4em;
  line-height: 0.85;
  padding: 0.08em 0.12em 0 0;
  margin-right: 4px;
  color: var(--accent);
}

/* -----------------------------------------------------------------
   Hero / Article opening fold
   ----------------------------------------------------------------- */
.hero, .hero-fold {
  position: relative;
  max-width: var(--article-width);
  margin: 0 auto clamp(32px, 4vw, 48px);
  padding: clamp(24px, 4vw, 40px) 0 clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.hero-fold h1, .hero h1 { margin-top: 8px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-utp {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(18px, 1.3vw + 8px, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text2);
  margin: 0 0 24px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 14px 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.trust-badges .badge,
.trust-badges > * {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  background: var(--bg-alt);
  color: var(--text2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------
   CTA buttons — quiet editorial style
   ----------------------------------------------------------------- */
.btn, .btn-cta, .btn-primary, .btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  background: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
  box-shadow: var(--shadow-cta);
  letter-spacing: 0;
  text-transform: none;
}
.btn:hover, .btn-cta:hover, .btn-primary:hover, .btn-lg:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: var(--shadow-cta-hover);
  text-decoration: none;
}
.btn:active, .btn-cta:active { transform: translateY(1px); }
.btn:focus-visible, .btn-cta:focus-visible {
  outline: 3px solid var(--link);
  outline-offset: 3px;
}

.btn-cta-hero,
.btn-cta-large,
.btn-cta-lead {
  min-height: 52px;
  padding: 14px 32px;
  font-size: 17px;
}

.btn-cta-secondary,
.btn-cta-secondary-hero {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  box-shadow: none;
}
.btn-cta-secondary:hover, .btn-cta-secondary-hero:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cta-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.hero-cta-row, .hero-cta-wrap, .cta-row, .cta-row-final {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 24px 0 8px;
  align-items: center;
}

.cta-block, .cta-section, .cta-final-section {
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  margin: clamp(32px, 4vw, 48px) auto;
}
.cta-block h2, .cta-section h2, .cta-final-section h2 { margin-top: 0; }

.cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--link);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cta-inline:hover { color: var(--link-hover); }

.cta-sub, .cta-lede {
  font-size: 14px;
  color: var(--text-muted);
  margin: 8px 0 0;
  line-height: 1.55;
}

/* -----------------------------------------------------------------
   Stat grid
   ----------------------------------------------------------------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  margin: clamp(24px, 3vw, 40px) 0;
}
.stat-card, .stat {
  padding: 20px 18px;
  text-align: left;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.stat-card:last-child { border-right: none; }
@media (max-width: 640px) {
  .stat-card { border-right: none; }
}

.stat-num, .stat-val {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.stat-label, .stat-lbl {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* -----------------------------------------------------------------
   Info cards / step cards / grids
   ----------------------------------------------------------------- */
.info-card,
.step-card,
.feature-card,
.rule-card,
.decision-card,
.decision-card-alt {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 24px);
  margin: 0;
}
.decision-card-alt { background: var(--bg-alt); }

.card-title, .step-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.step-list, .steps-list, .steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.step-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  counter-increment: step;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.step-body { min-width: 0; }
.step-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.steps-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-left: 0;
  list-style: none;
}

.grid, .decision-grid, .rules-grid, .feature-grid, .footer-grid {
  display: grid;
  gap: var(--gap);
}
.decision-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.rules-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.feature-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.feature-icon, .rule-icon, .qs-icon, .ico, .fl-icon, .cl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

/* -----------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------- */
.faq, .faq-block {
  display: grid;
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 8px 18px 4px;
  cursor: pointer;
  list-style: none;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  line-height: 1.35;
  min-height: 48px;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--accent); }

.faq-body {
  padding: 0 8px 20px 4px;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.7;
}
.faq-body p:last-child { margin-bottom: 0; }

/* -----------------------------------------------------------------
   Feature list / bullets / check lists
   ----------------------------------------------------------------- */
.feature-list, .check-list, .checklist, .bullets, .pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
  display: grid;
  gap: 10px;
}
.fl-item, .check-list li, .checklist li, .feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text2);
  line-height: 1.6;
}
.fl-item::before,
.check-list li::before,
.checklist li::before,
.feature-list li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 700;
  line-height: 1.6;
  font-size: 17px;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-list li {
  padding: 4px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: var(--text2);
}
.pill-list li::before { content: none; }

.check, .cl-icon { color: var(--success); }
.cl-warn { color: var(--warning); }
.warn { color: var(--warning); font-weight: 600; }

/* -----------------------------------------------------------------
   Pros / Cons
   ----------------------------------------------------------------- */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
  margin: 24px 0;
}
.pros, .cons, .pc-col {
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pros { border-left: 3px solid var(--success); }
.cons, .pc-bad { border-left: 3px solid var(--warning); }
.pros h3, .cons h3, .pc-col h3 {
  margin-top: 0;
  font-size: 18px;
  font-family: 'Source Serif 4', serif;
}
.pros h3 { color: var(--success); }
.cons h3, .pc-bad h3 { color: var(--warning); }
.pros ul, .cons ul, .pc-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.pros li, .cons li, .pc-col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
}
.pros li::before { content: "+"; color: var(--success); font-weight: 700; }
.cons li::before, .pc-bad li::before { content: "\2212"; color: var(--warning); font-weight: 700; }

/* Quick summary */
.quick-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 24px 0;
  overflow: hidden;
}
.qs-item {
  padding: 16px 18px;
  border-right: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text2);
}
.qs-item:last-child { border-right: none; }
.qs-good { color: var(--success); }
.qs-bad { color: var(--warning); }
.qs-neutral { color: var(--text-muted); }

/* -----------------------------------------------------------------
   Bonus table (editorial data table)
   ----------------------------------------------------------------- */
.bonus-table {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
  background: var(--bg-card);
}
.bonus-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.bonus-row:last-child { border-bottom: none; }
.bonus-row:nth-child(even) { background: var(--bg-alt); }

.bonus-cell { font-size: 15px; color: var(--text2); }
.bonus-num {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.bonus-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 560px) {
  .bonus-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .bonus-note { text-align: left; }
}

/* -----------------------------------------------------------------
   Generic table wrap (rwd tables)
   ----------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 24px 0;
  background: var(--bg-card);
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.table-wrap th, .table-wrap td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.table-wrap th {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border-strong);
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:hover { background: var(--bg-alt); }

/* -----------------------------------------------------------------
   Reviews (customer testimonials)
   ----------------------------------------------------------------- */
.reviews-grid, .related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin: 24px 0;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  right: 18px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 56px;
  line-height: 1;
  color: var(--border-strong);
  font-style: italic;
}
.review-header, .rc-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-name, .rc-name {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}
.review-city, .rc-user, .rc-meta {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.review-stars, .rc-stars {
  color: #C89A2E;
  font-size: 15px;
  letter-spacing: 2px;
}
.review-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-text, .rc-text {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  font-family: 'Source Serif 4', Georgia, serif;
}
.rc-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------
   Callouts / info boxes / warning boxes / editorial notes
   ----------------------------------------------------------------- */
.callout, .info-box {
  padding: 18px 22px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--link);
  border-radius: var(--radius-sm);
  margin: 24px 0;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.65;
}
.callout p:last-child, .info-box p:last-child { margin-bottom: 0; }

.callout-warn, .warning-box {
  background: var(--warning-soft);
  border-color: var(--warning);
  border-left-color: var(--warning);
  color: var(--text);
}
.callout-success {
  background: var(--success-soft);
  border-left-color: var(--success);
  color: var(--text);
}

/* "Key facts" editorial info box */
.info-facts {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  position: relative;
}
.info-facts::before {
  content: "Ключевые факты";
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.info-facts ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.info-facts li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text2);
}
.info-facts li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

/* "Editorial opinion" box */
.editorial-note {
  padding: 24px 28px;
  background: var(--highlight);
  border: 1px solid #E8D590;
  border-radius: var(--radius);
  margin: 28px 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  position: relative;
}
.editorial-note::before {
  content: "Мнение редакции";
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 1.6vw + 8px, 26px);
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.005em;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

blockquote {
  border-left: 4px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}

/* -----------------------------------------------------------------
   Table of contents (sticky sidebar on desktop)
   ----------------------------------------------------------------- */
.toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 14px;
}
.toc summary,
.toc > strong,
.toc-title {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.toc ol, .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  display: grid;
  gap: 6px;
}
.toc li {
  counter-increment: toc;
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
}
.toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
}
.toc a, .toc-item {
  color: var(--text);
  text-decoration: none;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
}
.toc a:hover, .toc-item:hover { color: var(--accent); text-decoration: underline; }

@media (min-width: 1100px) {
  .toc-sticky {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}

/* -----------------------------------------------------------------
   Related articles
   ----------------------------------------------------------------- */
.related, .related-articles {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 2px solid var(--text);
}
.related-articles h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.related-articles-grid,
.related-articles > .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.related-card:hover {
  border-color: var(--accent);
  text-decoration: none;
}
.related-card .article-eyebrow { margin-bottom: 4px; font-size: 11px; }
.related-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
}
.related-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.related-card .cover,
.related-card figure {
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0 0 12px;
}

/* -----------------------------------------------------------------
   Bracket / separators / decorative
   ----------------------------------------------------------------- */
.bracket, .sep {
  color: var(--border-strong);
  margin: 0 8px;
  font-weight: 400;
}
.dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
}

/* Foot note */
.foot-note, .disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

/* -----------------------------------------------------------------
   Footer
   ----------------------------------------------------------------- */
.site-footer, .page-foot {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: clamp(32px, 4vw, 48px) 0 calc(clamp(24px, 3vw, 32px) + env(safe-area-inset-bottom));
  margin-top: clamp(48px, 6vw, 80px);
}
.site-footer .container,
.page-foot .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: 32px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}
.footer-links a:hover { color: var(--accent); text-decoration: underline; }

.footer-note, .footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.footer-note p, .footer-legal p { margin: 0 0 8px; }

/* -----------------------------------------------------------------
   Responsive tweaks
   ----------------------------------------------------------------- */
@media (max-width: 720px) {
  .hero-cta-row, .cta-row { flex-direction: column; align-items: stretch; }
  .btn, .btn-cta, .btn-cta-secondary { width: 100%; }
  .pros-cons { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .quick-summary { grid-template-columns: 1fr; }
  .qs-item { border-right: none; border-bottom: 1px solid var(--border); }
  .qs-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .article-byline, .author-block { font-size: 13px; }
  .drop-cap::first-letter { font-size: 3.6em; }
}

/* -----------------------------------------------------------------
   Motion preferences
   ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------------------------------------------------
   Print
   ----------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-cta-row, .cta-block,
  .cta-section, .related-articles, .sticky-cta { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  h1, h2, h3 { page-break-after: avoid; }
  .section-block { page-break-inside: avoid; }
}
