/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

:root {
  --red: #E8001F;
  --red-dark: #B5001A;
  --red-light: #FF2244;
  --bg: #0A0A0C;
  --bg-card: #111116;
  --bg-card2: #18181E;
  --bg-card3: #1E1E26;
  --border: rgba(232,0,31,0.18);
  --border-light: rgba(255,255,255,0.07);
  --text: #FFFFFF;
  --text-muted: #8888A0;
  --text-dim: #55556A;
  --gold: #FFB800;
  --green: #00C853;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-red: 0 0 30px rgba(232,0,31,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── HEADER ─────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(10,10,12,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px; height: 76px;
  display: flex; align-items: center; gap: 24px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img,
.header-logo-img { height: 58px; width: auto; object-fit: contain; }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; }
.header-nav { display: flex; gap: 4px; margin-left: auto; }
.header-nav a {
  padding: 7px 14px; border-radius: 8px;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.header-nav a:hover, .header-nav a.active { color: var(--text); background: var(--bg-card3); }
.header-cta {
  background: var(--red); color: #fff !important;
  padding: 8px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.header-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
/* mobile-only CTA shown between logo and burger */
.header-mob-cta {
  display: none;
  margin-left: auto;
  background: var(--red); color: #fff !important;
  padding: 7px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  text-decoration: none;
}
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-reg-btn {
  display: inline-flex; align-items: center;
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border-light); color: var(--text-muted);
  text-decoration: none; white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.header-reg-btn:hover { border-color: var(--red); color: var(--red); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 12px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 0; border-bottom: 1px solid var(--border-light);
  color: var(--text-muted); font-size: 15px; font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta {
  margin-top: 10px; background: var(--red); color: #fff !important;
  text-align: center; padding: 12px; border-radius: 8px; font-weight: 700;
}

/* ── FOOTER ─────────────────────────────────────── */
#site-footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand img { height: 80px; margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: var(--text); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 13px; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px; text-align: center;
}
.footer-bottom p { color: var(--text-dim); font-size: 12px; line-height: 1.7; max-width: 900px; margin: 0 auto; }
.footer-bottom strong { color: var(--text-muted); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800; margin-bottom: 12px;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 480px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,12,.95) 40%, rgba(10,10,12,.6) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 20px;
  max-width: 640px; padding-left: 40px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,0,31,.15); border: 1px solid var(--border);
  border-radius: 50px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--red);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.hero h1 span { color: var(--red); }
.hero p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; max-width: 500px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 10px;
  transition: all .2s; box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card3); border: 1px solid var(--border-light);
  color: var(--text); font-weight: 600; font-size: 14px;
  padding: 13px 22px; border-radius: 10px; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; margin-bottom: 8px; }
.section-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 40px; }
.red { color: var(--red); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── CARDS ───────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px; transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--border); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,0,31,.12); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ── RATING ──────────────────────────────────────── */
.rating-box {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
}
.overall-score {
  display: flex; align-items: center; gap: 24px; margin-bottom: 28px;
}
.score-num { font-size: 72px; font-weight: 900; color: var(--red); line-height: 1; }
.score-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rating-row span:first-child { width: 160px; font-size: 13px; color: var(--text-muted); flex-shrink: 0; }
.rating-bar { flex: 1; height: 6px; background: var(--bg-card3); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--red); border-radius: 3px; transition: width 1s ease; }
.rating-val { width: 32px; font-size: 13px; font-weight: 700; text-align: right; }

/* ── TABLES ──────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-light); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { background: var(--bg-card2); color: var(--text-muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-light); }
td { padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }
.td-check { color: var(--green); font-size: 16px; }
.td-cross { color: #666; font-size: 16px; }
.td-red { color: var(--red); font-weight: 700; }
.td-gold { color: var(--gold); font-weight: 700; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-red { background: rgba(232,0,31,.15); color: var(--red); }
.badge-green { background: rgba(0,200,83,.12); color: var(--green); }
.badge-gold { background: rgba(255,184,0,.12); color: var(--gold); }

/* ── BAR CHARTS ──────────────────────────────────── */
.chart-container { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; }
.chart-title { font-size: 16px; font-weight: 700; margin-bottom: 24px; }
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-item label { font-size: 13px; color: var(--text-muted); display: flex; justify-content: space-between; margin-bottom: 6px; }
.bar-item label span { color: var(--text); font-weight: 700; }
.bar-track { height: 8px; background: var(--bg-card3); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--red-dark), var(--red)); }
.bar-fill.green { background: linear-gradient(90deg, #00952a, var(--green)); }
.bar-fill.gold { background: linear-gradient(90deg, #cc9000, var(--gold)); }

/* ── DONUT ───────────────────────────────────────── */
.donut-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.donut-item { text-align: center; }
.donut {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  position: relative; margin: 0 auto 10px;
}
.donut-label { font-size: 12px; color: var(--text-muted); }

/* ── STEPS ───────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; position: relative; padding-bottom: 32px; }
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; position: relative; z-index: 1;
}
.step::before {
  content: ''; position: absolute;
  left: 20px; top: 40px; bottom: 0;
  width: 1px; background: var(--border);
}
.step:last-child::before { display: none; }
.step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; margin-top: 8px; }
.step-content p { color: var(--text-muted); font-size: 14px; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-section { background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 15px;
  gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-icon { color: var(--red); font-size: 20px; flex-shrink: 0; transition: transform .3s; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── AUTHOR BLOCK ────────────────────────────────── */
.author-block {
  background: var(--bg-card2); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 24px; align-items: flex-start;
  margin: 48px 0 0;
}
.author-block img {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-meta { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.author-name { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.author-name a { color: var(--text); }
.author-name a:hover { color: var(--red); }
.author-title { font-size: 13px; color: var(--red); margin-bottom: 10px; font-weight: 600; }
.author-bio { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── INFO BOX ────────────────────────────────────── */
.info-box {
  background: rgba(232,0,31,.07); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-box-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.info-box h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.info-box p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── PROS/CONS ───────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros, .cons { background: var(--bg-card); border-radius: var(--radius); padding: 24px; }
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros h4, .cons h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em; }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros li, .cons li { font-size: 13px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: flex-start; gap: 8px; }
.pros li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✕'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── SEO ARTICLE TEXT ────────────────────────────── */
.article-content {
  min-width: 0;        /* critical for grid overflow */
  overflow: hidden;
}
.article-content h2 { font-size: clamp(1.3rem,2.5vw,1.7rem); font-weight: 800; margin: 40px 0 14px; clear: both; }
.article-content h3 { font-size: clamp(1.1rem,2vw,1.35rem); font-weight: 700; margin: 28px 0 10px; color: var(--text); }
.article-content p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; line-height: 1.75; overflow-wrap: break-word; word-break: break-word; }
.article-content strong { color: var(--text); }
.article-content ul, .article-content ol { margin: 12px 0 20px 18px; }
.article-content li { color: var(--text-muted); font-size: 15px; margin-bottom: 8px; line-height: 1.6; }

/* ── PAYMENT METHODS ─────────────────────────────── */
.payment-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.payment-item {
  background: var(--bg-card2); border: 1px solid var(--border-light);
  border-radius: 10px; padding: 12px 18px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  transition: border-color .2s;
}
.payment-item:hover { border-color: var(--red); }
.payment-icon { font-size: 20px; }

/* ── HIGHLIGHT BOX ───────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(232,0,31,.12) 0%, rgba(232,0,31,.04) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; text-align: center;
}
.highlight-box .amount { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; color: var(--red); }
.highlight-box .amount-sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ── BREADCRUMB ──────────────────────────────────── */
.breadcrumb {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 20px; display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim);
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--text-muted); }

/* ── CHIPS / TAGS ────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--bg-card3); border: 1px solid var(--border-light);
  border-radius: 6px; padding: 4px 12px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
}

/* ── STAT BLOCKS ─────────────────────────────────── */
.stats-row { display: flex; flex-wrap: wrap; gap: 20px; }
.stat-item {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 20px 28px;
  flex: 1; min-width: 140px; text-align: center;
}
.stat-num { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 900; color: var(--red); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ── COMPARISON TABLE ────────────────────────────── */
.comp-table th:first-child { min-width: 160px; }
.comp-winner { background: rgba(232,0,31,.07) !important; }
.comp-winner td { border-bottom-color: rgba(232,0,31,.1) !important; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .header-mob-cta { display: inline-flex; }
  .burger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .author-block { flex-direction: column; }
  .hero-inner { padding: 60px 20px; max-width: 100%; }
  .overall-score { flex-direction: column; text-align: center; }
  .faq-section { padding: 24px; }
  .feat-img-wrap { float: none !important; width: 100% !important; margin: 16px 0 !important; }
  .feat-img-wrap img { height: 200px; }
  /* homepage 2-col grid → 1 col on mobile, hide sidebar */
  [style*="grid-template-columns:1fr 340px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 340px"] aside { display: none; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { gap: 12px; }
  .donut-grid { gap: 14px; }
}

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── FEATURE IMAGES ──────────────────────────────── */
.feat-img-wrap {
  float: right;
  width: 280px;
  margin: 0 0 16px 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  position: relative;
  flex-shrink: 0;
}
.feat-img-wrap img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.feat-img-wrap:hover img { transform: scale(1.04); }
.feat-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,10,12,.9));
  padding: 14px 12px 8px;
  font-size: 11px; color: var(--text-muted);
  pointer-events: none; line-height: 1.3;
}
/* clear float after article sections — already on h2 above */
.feat-img-clear { clear: both; }

/* ── MISC ────────────────────────────────────────── */
.divider { height: 1px; background: var(--border-light); margin: 40px 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
