/* =====================================================
   TUFAN HEALTH REVIEWS — Main Stylesheet
   Domain: tufanmondal.com
   Updated: 04-06-2026
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --primary: #1a6fb0;
  --primary-dark: #145a8f;
  --primary-light: #e8f2fb;
  --secondary: #2da060;
  --secondary-dark: #238050;
  --secondary-light: #e6f7ee;
  --accent: #f5a623;
  --accent-dark: #d4880e;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a68;
  --text-muted: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f0f4f8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --max-width: 1120px;
  --content-width: 780px;
  --transition: 0.2s ease;
}

[data-theme="dark"] {
  --primary: #4da3e8;
  --primary-dark: #70b8f0;
  --primary-light: #1a2a3a;
  --secondary: #3dba74;
  --secondary-light: #1a2d22;
  --text-primary: #e8eaf0;
  --text-secondary: #a8b0c0;
  --text-muted: #6b7890;
  --bg-primary: #0f1117;
  --bg-secondary: #161b26;
  --bg-tertiary: #1c2333;
  --border: #2a3446;
  --border-light: #1e2a38;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background var(--transition), color var(--transition);
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  padding-left: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.content-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* ── Header ── */
.site-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
}

.logo-text span {
  color: var(--primary);
}

.logo-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  letter-spacing: 0.04em;
}

/* ── Nav ── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
  font-family: inherit;
}

.icon-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 200;
  padding: 4.5rem 1.5rem 2rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}

.overlay.active {
  display: block;
}

/* ── Search Overlay ── */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-overlay.active {
  display: flex;
}

.search-box {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: min(600px, 92vw);
  box-shadow: var(--shadow-lg);
}

.search-box input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition);
}

.search-box input:focus {
  border-color: var(--primary);
}

.search-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  float: right;
  margin-bottom: 0.5rem;
  font-family: inherit;
}

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  color: var(--border);
}

/* ── Hero ── */
.site-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #1a6fb0 55%, #1a8060 100%);
  color: #ffffff;
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-hero h1 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.site-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ── Category Pills ── */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.cat-pill {
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.cat-pill:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.cp-reviews  { background: #fff3e0; color: #c66000; border-color: #f5a623; }
.cp-weight   { background: #e8f5e9; color: #1b5e20; border-color: #4caf50; }
.cp-brain    { background: #e8eaf6; color: #283593; border-color: #5c6bc0; }
.cp-hearing  { background: #fce4ec; color: #880e4f; border-color: #e91e63; }
.cp-gut      { background: #e0f7fa; color: #006064; border-color: #00bcd4; }
.cp-general  { background: var(--bg-tertiary); color: var(--text-secondary); border-color: var(--border); }

/* ── Section Header ── */
.sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.sec-header h2 {
  font-size: 1.35rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sec-header h2::before {
  content: '';
  width: 4px;
  height: 1.2rem;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}

.sec-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

/* ── Cards ── */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  background: var(--primary);
  color: #ffffff;
}

.cb-review  { background: var(--accent); }
.cb-weight  { background: #4caf50; }
.cb-brain   { background: #5c6bc0; }
.cb-hearing { background: #e91e63; }

.card-body {
  padding: 1.25rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title a {
  color: inherit;
}

.card-title a:hover {
  color: var(--primary);
}

.card-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 0.7rem;
}

.card-meta .ml {
  margin-left: auto;
}

/* ── Featured Card ── */
.card-feat {
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.card-feat .card-img {
  aspect-ratio: 4 / 3;
}

.card-feat .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-feat .card-title {
  font-size: 1.2rem;
  -webkit-line-clamp: 3;
}

.card-feat .card-excerpt {
  -webkit-line-clamp: 3;
}

/* ── Stars ── */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  color: #fbbf24;
  font-size: 0.9rem;
}

.stars .empty {
  color: var(--border);
}

.rating-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: 0.25rem;
}

/* ── Review Score Card ── */
.score-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.score-big {
  text-align: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  min-width: 100px;
}

.score-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.score-lbl {
  font-size: 0.72rem;
  opacity: 0.85;
  margin-top: 0.2rem;
}

.score-bars h4 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.bar-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  min-width: 120px;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

.bar-val {
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 28px;
  text-align: right;
}

/* ── Pros / Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pros-box,
.cons-box {
  border-radius: var(--radius-md);
  padding: 1.2rem;
  border: 1px solid;
}

.pros-box {
  background: var(--secondary-light);
  border-color: #a5d6a7;
}

.cons-box {
  background: #fef2f2;
  border-color: #fca5a5;
}

[data-theme="dark"] .cons-box {
  background: #2d1b1b;
  border-color: #7f1d1d;
}

.pros-box h4,
.cons-box h4 {
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pros-box h4 { color: var(--secondary-dark); }
.cons-box h4 { color: #dc2626; }

.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 0;
}

.pros-box li,
.cons-box li {
  font-size: 0.875rem;
  padding: 0.25rem 0;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  line-height: 1.5;
}

.pros-box li::before { content: '✓'; color: var(--secondary); font-weight: 700; flex-shrink: 0; }
.cons-box li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.price-card.popular {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 99px;
  white-space: nowrap;
}

.price-supply {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-amount span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-total  { font-size: 0.78rem; color: var(--text-muted); margin: 0.25rem 0 0.75rem; }
.price-save   { font-size: 0.8rem; color: var(--secondary); font-weight: 600; margin-bottom: 0.75rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  line-height: 1.3;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-cta {
  background: linear-gradient(135deg, #f5a623 0%, #e08700 100%);
  color: #ffffff;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.45);
  color: #ffffff;
}

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

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-full  { width: 100%; text-align: center; }
.btn-lg    { font-size: 1.1rem; padding: 1rem 2.25rem; }

/* ── CTA Block ── */
.cta-block {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-block h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.cta-block p  { color: var(--text-secondary); margin-bottom: 1.2rem; font-size: 0.95rem; }

.cta-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

/* ── FAQ ── */
.faq-list {
  margin-bottom: 2rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.45rem;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.2rem;
  background: var(--bg-secondary);
  border: none;
  cursor: pointer;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  transition: background var(--transition);
  font-family: inherit;
  line-height: 1.4;
}

.faq-q:hover {
  background: var(--bg-tertiary);
}

.faq-q[aria-expanded="true"] {
  background: var(--primary-light);
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.25s;
  font-style: normal;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-a.open {
  display: block;
}

/* ── Ingredient Table ── */
.ing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.ing-table th {
  background: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.83rem;
  font-weight: 600;
}

.ing-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.ing-table tr:last-child td {
  border-bottom: none;
}

.ing-table tr:nth-child(even) td {
  background: var(--bg-secondary);
}

.ing-table tr:hover td {
  background: var(--primary-light);
}

/* ── Article ── */
.article-header {
  padding: 2rem 0 1.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.author-chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-secondary);
  padding: 0.2rem 0.65rem 0.2rem 0.35rem;
  border-radius: 99px;
  border: 1px solid var(--border);
}

.author-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  background: var(--bg-tertiary);
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.article-body h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
}

.article-body h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.article-body h4 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.2rem;
}

.article-body li {
  margin-bottom: 0.3rem;
}

.article-body strong {
  color: var(--text-primary);
}

.article-body blockquote {
  border-left: 4px solid var(--primary);
  margin: 1.5rem 0;
  padding: 0.75rem 1.2rem;
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.article-body th {
  background: var(--bg-tertiary);
  padding: 0.7rem;
  border: 1px solid var(--border);
  font-weight: 600;
}

.article-body td {
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border);
}

.article-body tr:nth-child(even) td {
  background: var(--bg-secondary);
}

/* ── TOC ── */
.toc {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
}

.toc-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.toc ol {
  padding-left: 1.25rem;
}

.toc li {
  padding: 0.18rem 0;
}

.toc a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.toc a:hover {
  color: var(--primary);
}

/* ── Verdict ── */
.verdict {
  background: linear-gradient(135deg, #f0fdf4, #e8f5fe);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

[data-theme="dark"] .verdict {
  background: linear-gradient(135deg, #1a2d1a, #1a2a3a);
}

.verdict h3 {
  color: var(--secondary-dark);
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.verdict p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Alert ── */
.alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
  font-size: 0.875rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  border: 1px solid;
  line-height: 1.5;
}

.alert-info    { background: var(--primary-light); border-color: #93c5fd; color: var(--text-primary); }
.alert-warn    { background: #fffbeb; border-color: #fcd34d; color: #92400e; }
.alert-ok      { background: var(--secondary-light); border-color: #86efac; color: #166534; }

[data-theme="dark"] .alert-warn { background: #2d2000; color: #fcd34d; border-color: #92400e; }
[data-theme="dark"] .alert-ok   { background: #1a2d1a; color: #86efac; }

.alert-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Related ── */
.related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.related h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

/* ── Disclaimer ── */
.disclaimer {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 3rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.65rem;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  padding: 0.22rem 0;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ── Section Spacing ── */
.section-pad    { padding: 3rem 0; }
.section-pad-sm { padding: 2rem 0; }
.divider        { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Pagination ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem 0;
}

.page-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
}

.page-link:hover,
.page-link.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .card-feat { grid-template-columns: 1fr; }
  .site-hero { padding: 2rem 0 1.75rem; }
  .score-card { grid-template-columns: 1fr; }
  .score-big { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 0.6rem; }
  .cta-block { padding: 1.5rem; }
}
