/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --blue-900: #0f172a;
  --blue-800: #1e293b;
  --blue-700: #1e3a5f;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --green-600: #16a34a;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --red-100: #fecaca;
  --red-50: #fef2f2;
  --red-800: #991b1b;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --amber-800: #92400e;
  --purple-600: #7c3aed;
  --purple-100: #ede9fe;
  --purple-800: #5b21b6;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 50px -12px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--slate-900); line-height: 1.7; background: var(--slate-50); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: all .2s ease; }
a:hover { color: var(--blue-500); }

/* ===== LAYOUT ===== */
.container { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.wide-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ======================================================
   HEADER
   ====================================================== */
.site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.6);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .wide-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue-900);
  letter-spacing: -.03em;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.site-logo span { color: var(--blue-600); }
.site-logo .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: .9rem;
}
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  color: var(--slate-600);
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  transition: all .15s ease;
}
.site-nav a:hover { color: var(--blue-600); background: var(--blue-50); }
.site-nav .nav-cta {
  background: var(--blue-600);
  color: white;
  font-weight: 600;
  margin-left: .5rem;
}
.site-nav .nav-cta:hover { background: var(--blue-500); color: white; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--slate-700); border-radius: 2px;
  transition: all .2s; margin: 5px 0;
}

/* ======================================================
   HERO - HOMEPAGE
   ====================================================== */
.hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #1d4ed8 100%);
  color: white;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .wide-container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.125rem;
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: white;
  color: var(--blue-700);
  padding: .875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  color: var(--blue-600);
}
.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  padding: .875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,.18);
  color: white;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { text-align: left; }
.hero-stat .number {
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  letter-spacing: -.02em;
}
.hero-stat .label {
  font-size: .8rem;
  opacity: .6;
  font-weight: 500;
}

/* Hero feature cards */
.hero-features {
  display: grid;
  gap: 1rem;
}
.hero-feature {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.hero-feature:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateX(4px);
}
.hero-feature .feat-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.hero-feature h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.hero-feature p {
  font-size: .8rem;
  opacity: .65;
  line-height: 1.5;
}

/* ======================================================
   TRUST BAR
   ====================================================== */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--slate-200);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--slate-500);
  font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; }

/* ======================================================
   SECTION STYLES
   ====================================================== */
.section { padding: 4rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ======================================================
   FEATURED ARTICLE
   ====================================================== */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  margin-bottom: 3rem;
  transition: all .3s;
}
.featured-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.featured-visual {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-visual::after {
  content: '';
  position: absolute;
  top: -30%; right: -30%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.featured-visual .vs-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.featured-visual .vs-item {
  background: rgba(255,255,255,.15);
  padding: .75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}
.featured-visual .vs-divider {
  font-weight: 900;
  font-size: 1.2rem;
  color: rgba(255,255,255,.5);
}
.featured-visual .tag-visual {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: white;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.featured-body p {
  color: var(--slate-600);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.featured-meta span {
  font-size: .8rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.read-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue-600);
  color: white;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
  width: fit-content;
}
.read-btn:hover { background: var(--blue-500); color: white; transform: translateY(-1px); }

/* ======================================================
   ARTICLE CARDS (homepage grid)
   ====================================================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  background: white;
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.card-accent {
  height: 4px;
  width: 100%;
}
.card-accent.comparatif { background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); }
.card-accent.test { background: linear-gradient(90deg, var(--green-600), #34d399); }
.card-accent.guide { background: linear-gradient(90deg, var(--amber-500), #fbbf24); }
.card-accent.top { background: linear-gradient(90deg, var(--purple-600), #a78bfa); }

.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  margin-bottom: .875rem;
  width: fit-content;
}
.tag-comparatif { background: var(--blue-100); color: var(--blue-600); }
.tag-test { background: var(--green-100); color: var(--green-600); }
.tag-guide { background: var(--amber-100); color: var(--amber-800); }
.tag-top { background: var(--purple-100); color: var(--purple-800); }

.article-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.35;
  margin-bottom: .5rem;
}
.article-card h3 a { color: inherit; }
.article-card h3 a:hover { color: var(--blue-600); }
.article-card p {
  color: var(--slate-500);
  font-size: .875rem;
  line-height: 1.6;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}
.card-date { font-size: .75rem; color: var(--slate-400); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  font-size: .85rem;
  color: var(--blue-600);
}
.card-link svg { transition: transform .2s; }
.card-link:hover svg { transform: translateX(3px); }

/* ======================================================
   CATEGORIES NAV
   ====================================================== */
.category-nav {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  background: white;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  cursor: pointer;
  transition: all .15s;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--blue-600);
  color: white;
  border-color: var(--blue-600);
}

/* ======================================================
   NEWSLETTER / CTA SECTION
   ====================================================== */
.newsletter-section {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  border-radius: 20px;
  padding: 3.5rem;
  margin: 3rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.newsletter-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: .75rem;
  position: relative;
}
.newsletter-section p {
  opacity: .75;
  font-size: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}
.newsletter-form input {
  flex: 1;
  padding: .875rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: all .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--blue-400); background: rgba(255,255,255,.12); }
.newsletter-form button {
  padding: .875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  background: white;
  color: var(--blue-700);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.newsletter-form button:hover { background: var(--blue-50); transform: translateY(-1px); }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--blue-900);
  color: var(--slate-400);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .site-logo span { color: var(--blue-400); }
.footer-brand p { font-size: .875rem; color: var(--slate-400); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-400);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .625rem; }
.footer-col a { color: var(--slate-400); font-size: .875rem; transition: all .15s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(148,163,184,.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; }
.affiliate-disclosure {
  font-size: .8rem;
  color: var(--slate-500);
  background: rgba(255,255,255,.03);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148,163,184,.1);
}

/* ======================================================
   ARTICLE PAGE STYLES
   ====================================================== */
.article-header {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #1d4ed8 100%);
  color: white;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.article-header .container { position: relative; z-index: 1; }
.breadcrumb { font-size: .85rem; opacity: .6; margin-bottom: 1.25rem; }
.breadcrumb a { color: white; opacity: .8; }
.breadcrumb a:hover { opacity: 1; color: white; }
.article-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.article-meta { font-size: .9rem; opacity: .7; display: flex; gap: 1.5rem; }

.article-body {
  background: white;
  border-radius: 16px 16px 0 0;
  margin-top: -1.5rem;
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: 0 -8px 30px rgba(0,0,0,.06);
}
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-900);
  margin: 2.75rem 0 1rem;
  padding-bottom: .625rem;
  border-bottom: 2px solid var(--slate-100);
  letter-spacing: -.01em;
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-700);
  margin: 2rem 0 .75rem;
}
.article-body p { margin-bottom: 1.25rem; color: var(--slate-700); }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: .5rem; color: var(--slate-700); }
.article-body strong { color: var(--slate-900); }

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: .875rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th {
  background: var(--blue-900);
  color: white;
  padding: .875rem 1.125rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.comparison-table td {
  padding: .875rem 1.125rem;
  border-bottom: 1px solid var(--slate-100);
}
.comparison-table tr:nth-child(even) { background: var(--slate-50); }
.comparison-table tr:hover { background: var(--blue-50); }
.comparison-table .winner { color: var(--green-600); font-weight: 600; }

.badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-green { background: var(--green-100); color: var(--green-600); }
.badge-blue { background: var(--blue-100); color: var(--blue-600); }
.badge-orange { background: var(--amber-100); color: var(--amber-800); }

/* ===== PROS/CONS ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros, .cons { padding: 1.5rem; border-radius: var(--radius); }
.pros { background: var(--green-50); border: 1px solid #bbf7d0; }
.cons { background: var(--red-50); border: 1px solid var(--red-100); }
.pros h4, .cons h4 { font-size: 1rem; margin-bottom: .875rem; font-weight: 700; }
.pros h4 { color: var(--green-600); }
.cons h4 { color: var(--red-800); }
.pros li { color: #15803d; }
.cons li { color: #b91c1c; }

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border: 2px solid #93c5fd;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.cta-box h3 { color: var(--blue-700); margin-bottom: .5rem; font-size: 1.25rem; font-weight: 800; }
.cta-box p { color: var(--slate-600); margin-bottom: 1.25rem; font-size: .95rem; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue-600);
  color: white;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(37,99,235,.25);
}
.cta-btn:hover { background: var(--blue-500); transform: translateY(-2px); color: white; box-shadow: 0 8px 20px rgba(37,99,235,.3); }

/* ===== VERDICT BOX ===== */
.verdict-box {
  background: var(--slate-50);
  border-left: 4px solid var(--blue-600);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.verdict-box h3 { color: var(--blue-700); margin-bottom: .5rem; font-weight: 700; }
.verdict-box p { color: var(--slate-600); margin-bottom: 0; }

/* ===== RATING ===== */
.rating { display: flex; align-items: center; gap: .5rem; margin: .75rem 0; }
.rating .stars { color: var(--amber-500); font-size: 1.2rem; letter-spacing: 2px; }
.rating .score { font-weight: 800; color: var(--blue-900); font-size: 1.1rem; }

/* ===== FAQ ===== */
.faq { margin: 2.5rem 0; }
.faq-item { border: 1px solid var(--slate-200); border-radius: var(--radius-sm); margin-bottom: .625rem; overflow: hidden; }
.faq-q {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--blue-900);
  cursor: pointer;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  transition: background .15s;
}
.faq-q:hover { background: var(--slate-50); }
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--slate-400); font-weight: 300; }
.faq-item.open .faq-q { background: var(--blue-50); }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; }
.faq-item.open .faq-a { max-height: 500px; padding: 1rem 1.25rem; }

/* ===== SIDEBAR TOC ===== */
.article-layout { display: grid; grid-template-columns: 1fr 260px; gap: 2.5rem; align-items: start; }
.toc {
  position: sticky;
  top: 80px;
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.toc h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-400); margin-bottom: .875rem; font-weight: 700; }
.toc ul { list-style: none; }
.toc li { margin-bottom: .5rem; }
.toc a { color: var(--slate-500); font-size: .825rem; font-weight: 500; line-height: 1.4; }
.toc a:hover { color: var(--blue-600); }

/* ===== AFFILIATE DISCLOSURE (article) ===== */
.disclosure {
  background: var(--amber-100);
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: .875rem 1.125rem;
  font-size: .8rem;
  color: var(--amber-800);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-features { display: grid; grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .wide-container { padding: 0 1.25rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-btn-primary, .hero-btn-secondary { text-align: center; justify-content: center; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-header h1 { font-size: 1.6rem; }
  .article-layout { grid-template-columns: 1fr; }
  .toc { display: none; }
  .pros-cons { grid-template-columns: 1fr; }
  .article-body { padding: 2rem 1.5rem; }
  .comparison-table { font-size: .8rem; }
  .comparison-table th, .comparison-table td { padding: .6rem .75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-section { padding: 2.5rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .site-nav { display: none; }
  .menu-toggle { display: block; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: white; padding: 1rem; border-bottom: 1px solid var(--slate-200); box-shadow: var(--shadow-lg); }
  .category-nav { gap: .375rem; }
  .cat-btn { font-size: .8rem; padding: .45rem 1rem; }
}
