/* Fonts loaded via <link> in HTML */
/* ═══════════════════════════════════════════════════════════
   OdiBets Kenya — Main Stylesheet
   Brand: Green #3DB518 | Yellow #F5C400 | Dark #0d1a00
   ═══════════════════════════════════════════════════════════ */

:root {
  --green:   #3DB518;
  --green-d: #2a8a00;
  --green-dd:#1a5500;
  --yellow:  #F5C400;
  --yellow-d:#c9a000;
  --bg-0:    #060d02;
  --bg-1:    #0d1a05;
  --bg-2:    #142208;
  --bg-3:    #1c2e0c;
  --card:    #162010;
  --border:  rgba(61,181,24,0.2);
  --text:    #e8f5e0;
  --muted:   #7aad55;
  --white:   #ffffff;
  --red:     #e03030;
  --font:    'Nunito', 'Segoe UI', Arial, sans-serif;
  --font-h:  'Exo 2', 'Arial Black', Arial, sans-serif;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow); }
ul { list-style: none; }
h1, h2, h3, h4, p, li, td, th, a, span, button { overflow-wrap: anywhere; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--yellow);
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ── Tracker bar ─────────────────────────────────────────── */
.tracker-bar {
  background: var(--green);
  padding: 9px 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  position: relative;
  z-index: 200;
}
.tracker-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tracker-bar span { color: #fff; }
.tracker-bar-cta {
  display: inline-block;
  background: var(--yellow);
  color: #0d1a00 !important;
  padding: 5px 18px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.84rem;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.tracker-bar-cta:hover { background: #fff; transform: scale(1.04); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,13,2,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}
.site-logo img { height: 46px; width: auto; }
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  display: block;
  padding: 7px 13px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--green);
  color: #fff;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: #0d1a00;
}
.btn-primary:hover { background: #fff; color: #0d1a00; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(245,196,0,0.4); }
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-d); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-sm { padding: 7px 16px; font-size: 0.84rem; }
.btn-block { width: 100%; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,13,2,0.97);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  padding: 12px 40px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: var(--green); color: #fff; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}
/* Mobile tracker bar in mobile nav */
.mobile-tracker {
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--green);
  border-radius: 30px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}
.mobile-tracker a { color: var(--yellow) !important; font-weight: 900; }

/* ── Hero sections ───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: stretch;
}
.hero-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── Sections ────────────────────────────────────────────── */
section { padding: 64px 0; }
.section-alt { background: var(--bg-1); }
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.section-title span { color: var(--yellow); }
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 640px;
}
.section-header { margin-bottom: 36px; }
.section-header .section-title { margin-bottom: 6px; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 0;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(61,181,24,0.2);
}
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 0.92rem; }

/* ── Grid layouts ────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 36px; align-items: start; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 36px; align-items: start; }

/* ── Tables ──────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.data-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.data-table thead th {
  background: var(--green);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 800;
  font-family: var(--font-h);
  white-space: nowrap;
}
.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.data-table tbody tr:hover { background: rgba(61,181,24,0.07); }
.data-table tbody td {
  padding: 11px 16px;
  color: var(--text);
  white-space: nowrap;
}
.data-table tbody td:first-child { font-weight: 700; color: #fff; }
.tag-good { color: var(--green); font-weight: 700; }
.tag-warn { color: var(--yellow); font-weight: 700; }
.tag-bad  { color: var(--red); font-weight: 700; }

.comparison-table th:first-child { width: 200px; }
.comparison-table td.highlight { background: rgba(61,181,24,0.12); font-weight: 700; color: var(--green); }

/* ── Charts / Canvas ─────────────────────────────────────── */
.chart-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 0;
  overflow: hidden;
}
.chart-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
canvas {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* ── Rating stars ────────────────────────────────────────── */
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; }
.rating-val {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.rating-label { color: var(--muted); font-size: 0.84rem; }

/* ── Score/stat boxes ────────────────────────────────────── */
.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.stat-box .num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
}
.stat-box .lbl { color: var(--muted); font-size: 0.84rem; margin-top: 4px; display: block; }
.stat-box .desc { color: var(--text); font-size: 0.78rem; margin-top: 6px; }

/* ── FAQ / Accordion ─────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--card);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: var(--font-h);
  text-align: left;
  transition: background var(--transition);
  gap: 12px;
}
.faq-q:hover { background: rgba(61,181,24,0.1); }
.faq-q[aria-expanded="true"] { background: rgba(61,181,24,0.15); color: var(--yellow); }
.faq-chevron { color: var(--green); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ── Pros/Cons ───────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros, .cons {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros h4 { color: var(--green); font-family: var(--font-h); font-size: 1rem; font-weight: 800; margin-bottom: 12px; }
.cons h4 { color: var(--red); font-family: var(--font-h); font-size: 1rem; font-weight: 800; margin-bottom: 12px; }
.pros li, .cons li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pros li:last-child, .cons li:last-child { border: none; }
.pros li::before { content: "✓"; color: var(--green); font-weight: 900; flex-shrink: 0; }
.cons li::before { content: "✗"; color: var(--red); font-weight: 900; flex-shrink: 0; }

/* ── Odds display ────────────────────────────────────────── */
.odds-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.odds-match { font-size: 0.9rem; font-weight: 700; color: #fff; }
.odds-league { font-size: 0.78rem; color: var(--muted); }
.odds-val {
  background: var(--green);
  color: #fff;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 8px;
  min-width: 56px;
  text-align: center;
}

/* ── Progress bars ───────────────────────────────────────── */
.progress-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.progress-label { min-width: 130px; font-size: 0.88rem; color: var(--text); }
.progress-track {
  flex: 1;
  min-width: 70px;
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  border-radius: 5px;
  transition: width 1.2s ease;
}
.progress-pct { min-width: 40px; font-size: 0.84rem; font-weight: 700; color: var(--yellow); text-align: right; }

/* ── Steps ───────────────────────────────────────────────── */
.steps { counter-reset: step-counter; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}
.step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background: var(--green);
  color: #fff;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 900;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.step-content p { color: var(--muted); font-size: 0.9rem; }

/* ── Badge / pill ────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 700;
}
.badge-green { background: rgba(61,181,24,0.2); color: var(--green); }
.badge-yellow { background: rgba(245,196,0,0.2); color: var(--yellow); }
.badge-red { background: rgba(224,48,48,0.2); color: var(--red); }

/* ── Affiliate notice ────────────────────────────────────── */
.affiliate-notice {
  background: rgba(61,181,24,0.07);
  border-top: 2px solid var(--green);
  padding: 8px 0;
  text-align: center;
}
.affiliate-notice p { font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.4; }
.affiliate-notice a { color: var(--green); text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-1);
  border-top: 2px solid var(--border);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 14px; line-height: 1.6; }
.footer-brand .footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.footer-col h4 {
  font-family: var(--font-h);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-col p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: var(--muted); font-size: 0.82rem; margin-bottom: 4px; }
.footer-bottom .rg { color: var(--green); font-size: 0.78rem; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Author box ──────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}
.author-box img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  flex-shrink: 0;
}
.author-box .author-info h4 { color: #fff; font-weight: 800; font-size: 0.96rem; }
.author-box .author-info p { color: var(--muted); font-size: 0.84rem; }
.author-box .author-info .date { color: var(--muted); font-size: 0.78rem; margin-top: 4px; }

/* ── Content (article text) ──────────────────────────────── */
.content h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.content h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 24px 0 10px;
}
.content p { color: var(--text); margin-bottom: 16px; line-height: 1.75; }
.content ul {
  list-style: none;
  margin-bottom: 16px;
}
.content ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}
.content ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.6rem;
  top: 10px;
}
.content strong { color: var(--yellow); }
.content a { color: var(--green); text-decoration: underline; }

/* ── Review score block ──────────────────────────────────── */
.review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  background: linear-gradient(135deg, var(--green-dd), var(--green-d));
  border-radius: var(--radius);
  text-align: center;
}
.review-score .big-score {
  font-family: var(--font-h);
  font-size: 4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.review-score .score-label { color: #fff; font-size: 0.9rem; margin-top: 4px; }
.review-score .stars { margin-top: 8px; font-size: 1.4rem; }

/* ── Misc ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow); }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.fw-900 { font-weight: 900; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.py-8 { padding: 8px 0; }
.cta-section {
  background: linear-gradient(135deg, var(--green-dd) 0%, var(--green-d) 100%);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  margin: 48px 0;
}
.cta-section h2 { color: #fff; font-family: var(--font-h); font-weight: 900; font-size: 1.8rem; margin-bottom: 10px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 22px; }

.seo-footer-block {
  padding: 32px 0 56px;
  background: var(--bg-0);
}
.seo-footer-inner {
  background: linear-gradient(135deg, rgba(61,181,24,0.16), rgba(245,196,0,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.seo-footer-inner h2 {
  color: #fff;
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.seo-footer-inner p {
  color: var(--text);
  max-width: 860px;
  margin-bottom: 20px;
}
.seo-footer-inner a:not(.btn) {
  color: var(--green);
  text-decoration: underline;
}


/* Slot photo cards */
.slot-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 24px;
}
.slot-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  min-height: 160px;
}
.slot-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition);
}
.slot-photo-card span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.slot-photo-card:hover img { transform: scale(1.04); }

/* Payment icons row */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pay-icon {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ──────────────────────────── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; }
  .hero-img img { height: 300px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-inner { gap: 10px; padding: 10px 14px; }
  .site-logo img { height: 38px; }
  .header-actions { margin-left: auto; gap: 7px; }
  .header-actions .btn-sm { padding: 7px 11px; font-size: 0.78rem; }
  .hero { padding: 38px 0 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-text { order: 1; }
  .hero-img {
    order: 2;
    display: block;
    border-radius: 10px;
    margin-top: 2px;
  }
  .hero-img img {
    height: clamp(190px, 58vw, 280px);
    border-radius: 10px;
  }
  .hero-actions { gap: 10px; }
  .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    min-height: 46px;
    white-space: normal;
    line-height: 1.2;
  }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .slot-photo-grid { grid-template-columns: 1fr; gap: 14px; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.95rem; }
  .hero p { font-size: 1rem; margin-bottom: 20px; }
  section { padding: 44px 0; }
  .data-table { font-size: 0.84rem; }
  .table-wrap {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    max-width: 100%;
    overflow: visible;
    border: none;
    background: transparent;
  }
  .data-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 10px;
  }
  .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .data-table tbody,
  .data-table tr,
  .data-table td {
    display: block;
    width: 100%;
  }
  .data-table tbody tr {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
  }
  .data-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(61,181,24,0.14);
    white-space: normal;
    text-align: right;
  }
  .data-table tbody td:last-child { border-bottom: none; }
  .data-table tbody td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 800;
    text-align: left;
    flex: 0 0 42%;
  }
  .comparison-table th:first-child { width: auto; }
  .author-box { align-items: flex-start; gap: 14px; padding: 16px; }
  .author-box img { width: 64px; height: 64px; }
  .card, .chart-wrap, .stat-box { padding: 18px; }
  .chart-wrap {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .chart-wrap canvas {
    min-height: 210px;
    object-fit: contain;
  }
  .progress-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 7px 10px;
    align-items: center;
  }
  .progress-label {
    min-width: 0;
    grid-column: 1 / -1;
  }
  .progress-track { grid-column: 1; width: 100%; }
  .progress-pct { grid-column: 2; min-width: 0; }
  .cta-section { margin: 24px 0; }
  .seo-footer-block { padding: 24px 0 40px; }
  .seo-footer-inner { padding: 22px 18px; }
  .seo-footer-inner h2 { font-size: 1.35rem; }
  canvas { max-width: 100% !important; height: auto !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-4 { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .tracker-bar-inner { gap: 8px; font-size: 0.8rem; }
  .tracker-bar-cta { padding: 5px 12px; }
  .header-actions .btn-outline { display: none; }
  .hero { padding: 30px 0 30px; }
  .hero h1 { font-size: 1.68rem; }
  .hero-tag { font-size: 0.72rem; letter-spacing: 0.4px; }
  .hero-img img { height: clamp(180px, 62vw, 230px); }
  .slot-photo-grid { grid-template-columns: 1fr; }
  .slot-photo-card { min-height: 0; }
  .cta-section { padding: 32px 20px; }
  .cta-section h2 { font-size: 1.42rem; }
  .seo-footer-inner .btn { width: 100%; white-space: normal; }
  .author-box { flex-direction: column; align-items: flex-start; }
  .stat-box .num { font-size: 1.55rem; }
  .stat-box .lbl { font-size: 0.78rem; }
  .stat-box .desc { font-size: 0.72rem; }
  .card, .chart-wrap, .stat-box { padding: 15px; }
  .chart-wrap { min-height: 238px; }
  .chart-wrap canvas { min-height: 188px; }
  canvas { min-width: 0 !important; }
}

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

/* ===== iOS Safe Area ===== */
.site-header {
  padding-top: max(0px, env(safe-area-inset-top));
}
.site-footer {
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}
