/* =====================================================
   OSTIEGEAR — Design System
   Palette: Noir #0a0a0f | Violet #8b5cf6 | Or #d4af37
   ===================================================== */

:root {
  --bg:          #0a0a0f;
  --bg-card:     #111118;
  --bg-card2:    #16161f;
  --bg-elevated: #1c1c28;
  --violet:      #8b5cf6;
  --violet-light:#a78bfa;
  --violet-dim:  #2d1f5e;
  --gold:        #d4af37;
  --gold-light:  #f0d060;
  --gold-dim:    #3d3010;
  --text:        #e2e8f0;
  --text-muted:  #94a3b8;
  --text-dim:    #475569;
  --border:      rgba(139, 92, 246, 0.15);
  --border-gold: rgba(212, 175, 55, 0.3);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a { text-decoration: none; color: inherit; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.logo-icon { color: var(--violet); font-size: 1.5rem; }
.logo-accent { color: var(--violet); }
.main-nav { display: flex; gap: 32px; }
.nav-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--violet);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover { color: var(--violet-light); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-active { color: var(--text) !important; }
.nav-active::after { transform: scaleX(1) !important; }

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 1px;
  transition: all 0.25s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,15,0.97);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 24px;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.mobile-link:hover { background: rgba(139,92,246,0.06); color: var(--text); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 64px;
  text-align: center;
  overflow: hidden;
}
.hero-badge {
  display: inline-block;
  background: var(--violet-dim);
  color: var(--violet-light);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--violet-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Section Reviews ─────────────────────────────────── */
.reviews-section { padding: 0 0 80px; }
.section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.section-count {
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* ── Cards Viewport ──────────────────────────────────── */
.cards-viewport {
  overflow: auto;
  max-height: 75vh;
  cursor: grab;
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}
.cards-viewport:active { cursor: grabbing; }
.cards-viewport.is-dragging { cursor: grabbing; user-select: none; }

/* ── Cards Grid ──────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
  padding: 16px;
  width: max-content;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.5);
  box-shadow: var(--shadow-glow);
}
.card:hover .card-hover-glow { opacity: 1; }
.card-hover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(139,92,246,0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
}
.card-score-badge {
  background: linear-gradient(135deg, var(--gold-dim), rgba(212,175,55,0.15));
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 4px 10px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.score-number { font-size: 1.2rem; font-weight: 800; color: var(--gold); }
.score-denom { font-size: 0.7rem; color: var(--text-muted); }

.card-body { flex: 1; margin-bottom: 16px; }
.card-product {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.card-title {
  font-size: 0.85rem;
  color: var(--violet-light);
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.4;
}
.card-accroche {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg-card2);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
}
.spec-tag { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.spec-key { font-size: 0.72rem; color: var(--text-dim); white-space: nowrap; }
.spec-val { font-size: 0.78rem; color: var(--text-muted); text-align: right; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 140px; }

.card-scores-mini { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.score-mini-item { display: flex; align-items: center; gap: 8px; }
.score-mini-label { font-size: 0.7rem; color: var(--text-dim); width: 90px; flex-shrink: 0; }
.score-mini-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.score-mini-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
  border-radius: 2px;
  transition: width 0.6s ease;
}
.score-mini-val { font-size: 0.72rem; color: var(--text-muted); width: 22px; text-align: right; }

.card-price-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.card-price { font-weight: 700; color: var(--gold); font-size: 1rem; }
.card-cta-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-light);
  transition: color 0.2s;
}
.card:hover .card-cta-btn { color: #fff; }

/* ── Empty state ─────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text); }
.empty-state code {
  background: var(--bg-elevated);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--violet-light);
}

/* ── Affiliate Button ────────────────────────────────── */
.affiliate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0a0f;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.affiliate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.45);
}
.affiliate-btn-large {
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
}
.aff-btn-arrow { font-size: 0.85rem; opacity: 0.8; }
.affiliate-btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.4);
}

/* ── Review Hero ─────────────────────────────────────── */
.review-page { padding-bottom: 80px; }
.review-hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
}
.review-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(139,92,246,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.review-hero-glow {
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at top right, rgba(139,92,246,0.1), transparent 70%);
  pointer-events: none;
}
.back-link {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--violet-light); }

.review-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-tag {
  background: var(--violet-dim);
  color: var(--violet-light);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-date { font-size: 0.8rem; color: var(--text-dim); }
.review-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #fff;
}
.review-accroche {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 640px;
}
.affiliate-block {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.affiliate-price { display: flex; flex-direction: column; }
.aff-label { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 2px; }
.aff-price { font-size: 1.4rem; font-weight: 800; color: var(--gold); }

/* ── Score Circle ────────────────────────────────────── */
.review-hero-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 240px;
}
.score-circle-wrap {
  position: relative;
  width: 140px;
  height: 140px;
}
.score-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 8; }
.ring-fill {
  fill: none;
  stroke: url(#scoreGrad);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}
.score-circle-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-big { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.score-big-denom { font-size: 0.8rem; color: var(--text-dim); }
.score-big-label { font-size: 0.65rem; color: var(--text-dim); margin-top: 2px; }

.score-breakdown { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.score-row { display: flex; align-items: center; gap: 10px; }
.score-row-label { font-size: 0.75rem; color: var(--text-muted); width: 90px; flex-shrink: 0; }
.score-row-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.score-row-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}
.fill-gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.fill-violet { background: linear-gradient(90deg, var(--violet), var(--violet-light)); }
.fill-muted { background: var(--text-dim); }
.score-row-val { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); width: 24px; text-align: right; }

/* ── Specs Section ───────────────────────────────────── */
.specs-section { padding: 0 0 48px; }
.block-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.block-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s;
}
.spec-card:hover { border-color: rgba(139,92,246,0.4); }
.spec-card-key { font-size: 0.72rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.spec-card-val { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* ── Pros / Cons ─────────────────────────────────────── */
.proscons-section { padding: 0 0 48px; }
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-block, .cons-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid;
}
.pros-block { border-color: rgba(52, 211, 153, 0.2); }
.cons-block { border-color: rgba(248, 113, 113, 0.2); }
.proscons-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-title { color: #34d399; }
.cons-title { color: #f87171; }
.proscons-icon { font-size: 1rem; }
.proscons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pro-item, .con-item {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  color: var(--text-muted);
}
.pro-item::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: #34d399; }
.con-item::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: #f87171; }

/* ── Content Sections ────────────────────────────────── */
.content-sections { padding: 0 0 48px; }
.content-block {
  border-left: 3px solid var(--violet);
  padding: 20px 24px;
  margin-bottom: 24px;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.content-block-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--violet-light);
  margin-bottom: 12px;
}
.content-block-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Verdict ─────────────────────────────────────────── */
.verdict-section { padding: 0; }
.verdict-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(139,92,246,0.05) 100%);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.verdict-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.verdict-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-light);
}
.verdict-score-badge {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.verdict-score-badge span { font-size: 1rem; color: var(--text-dim); }
.verdict-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.verdict-cible {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 28px;
}
.cible-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--violet-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-top: 2px;
}
.cible-text { font-size: 0.875rem; color: var(--text-muted); }
.verdict-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.verdict-price-info { display: flex; flex-direction: column; gap: 2px; }
.verdict-price-label { font-size: 0.72rem; color: var(--text-dim); }
.verdict-price { font-size: 1.75rem; font-weight: 900; color: var(--gold); }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  margin-top: 64px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}
.footer-brand {}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-logo-icon { color: var(--violet); font-size: 1.4rem; }
.footer-logo-text {}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-nav-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav-link:hover { color: var(--violet-light); }
.footer-email { color: var(--gold) !important; }
.footer-email:hover { color: var(--gold-light) !important; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer-affiliation {
  font-size: 0.78rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.6;
}
.footer-copyright { font-size: 0.78rem; color: var(--text-dim); }

/* ── SVG Gradient def (hidden) ───────────────────────── */
body::after {
  content: '';
  position: fixed;
  width: 0; height: 0;
  overflow: hidden;
}

/* ── Search bar ──────────────────────────────────────── */
.search-wrap {
  margin-bottom: 32px;
}
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.search-box:focus-within {
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
.search-icon {
  padding: 0 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  padding: 14px 8px;
  font-family: 'Inter', sans-serif;
}
.search-input::placeholder { color: var(--text-dim); }
.search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 6px;
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 6px;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.search-clear:hover { background: rgba(255,255,255,0.1); color: var(--text); }

.search-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.search-empty .empty-icon { font-size: 2.5rem; margin-bottom: 12px; }
.search-empty h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
.search-empty p { font-size: 0.875rem; }
.search-empty span { color: var(--violet-light); font-style: italic; }

/* ── Static pages (À propos, Contact) ───────────────── */
.static-page {}
.static-hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
.static-hero-inner { max-width: 640px; }
.static-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 16px 0 12px;
  line-height: 1.15;
}
.static-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── À propos ────────────────────────────────────────── */
.about-content { padding-bottom: 80px; }
.about-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.about-block-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--violet-dim);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-block-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.about-block-text {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* Étapes processus */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 12px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.process-step:hover { border-color: rgba(139,92,246,0.4); }
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--violet), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.step-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* CTA About */
.about-cta-block {
  background: linear-gradient(135deg, var(--violet-dim), rgba(212,175,55,0.05));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.about-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-cta-text { color: var(--text-muted); font-size: 0.925rem; line-height: 1.7; margin-bottom: 24px; }
.about-cta-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.about-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.about-email-link:hover { color: var(--gold-light); }
.about-email-icon { font-size: 1rem; }

/* ── Contact ─────────────────────────────────────────── */
.contact-content { padding-bottom: 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-required { color: var(--violet-light); }
.form-input {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus {
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
.form-input.input-error {
  border-color: rgba(248,113,113,0.6);
  box-shadow: 0 0 0 3px rgba(248,113,113,0.08);
}
.form-input::placeholder { color: var(--text-dim); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--violet), #6d28d9);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
  align-self: flex-start;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,92,246,0.45);
}
.submit-arrow { font-size: 0.9rem; }

/* Form success */
.form-success {
  background: var(--bg-card);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}
.success-icon {
  width: 56px; height: 56px;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 50%;
  font-size: 1.5rem;
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.success-text { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.success-again {
  font-size: 0.85rem;
  color: var(--violet-light);
  border-bottom: 1px solid rgba(139,92,246,0.3);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.success-again:hover { color: var(--text); }

/* Contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card, .contact-faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-info-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  background: var(--violet-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 2px; }
.contact-info-value { font-size: 0.875rem; color: var(--text); font-weight: 500; }
a.contact-info-value { color: var(--gold); transition: color 0.2s; }
a.contact-info-value:hover { color: var(--gold-light); }
.faq-item { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-q { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.faq-a { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── 404 ─────────────────────────────────────────────── */
.error-page {
  position: relative;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.error-inner {
  text-align: center;
  padding: 80px 24px;
  width: 100%;
}
.error-code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.error-code {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--violet-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.error-icon-center {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--violet);
  opacity: 0.5;
  line-height: 1;
}
.error-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.error-text {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-link-secondary {
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.error-link-secondary:hover { color: var(--text); }
.error-suggestions { margin-top: 8px; }
.error-suggestions-label { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 12px; }
.error-suggestions-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.error-suggestion-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.error-suggestion-chip:hover { border-color: rgba(139,92,246,0.4); color: var(--violet-light); }
.error-glow-left {
  position: absolute; top: 50%; left: 0;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.1), transparent 70%);
  pointer-events: none;
}
.error-glow-right {
  position: absolute; top: 50%; right: 0;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.07), transparent 70%);
  pointer-events: none;
}

/* ── Commentaires ───────────────────────────────────── */
.comments-section {
  padding: 64px 0 80px;
  border-top: 1px solid var(--border);
}
.comments-charte {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(139,92,246,0.07);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 36px;
}
.charte-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.comments-charte p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.comments-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.comments-loading { font-size: 0.875rem; color: var(--text-dim); }
.no-comments { font-size: 0.875rem; color: var(--text-dim); }
.comments-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.comment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
  flex-wrap: wrap;
}
.comment-pseudo {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--violet-light);
}
.comment-date {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.comment-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  white-space: pre-wrap;
}

/* Résumé communauté */
.community-summary {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 20px;
}
.summary-stars { font-size: 1.2rem; letter-spacing: 2px; }
.summary-text  { font-size: 0.9rem; color: var(--gold); font-weight: 600; }
.star-filled   { color: #d4af37; }
.star-empty    { color: var(--text-dim); }

/* Étoiles dans les commentaires approuvés */
.comment-header-left { display: flex; align-items: center; gap: 8px; }
.comment-stars { font-size: 0.95rem; letter-spacing: 1px; }
.comment-stars .star-filled { color: #d4af37; }
.comment-stars .star-empty  { color: var(--text-dim); }

/* Sélecteur étoiles dans le formulaire */
.star-selector {
  display: flex;
  gap: 6px;
  cursor: pointer;
  padding: 4px 0;
}
.star-selector .star {
  font-size: 1.6rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.1s;
  line-height: 1;
  user-select: none;
}
.star-selector .star.active,
.star-selector .star.hovered { color: #d4af37; }

/* Rating communauté sur les cards */
.card-community-rating {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.cr-count { color: var(--text-dim); font-weight: 400; }

/* Formulaire commentaire */
.comment-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 640px;
}
.comment-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.comment-form-success {
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #34d399;
}
.comment-form { display: flex; flex-direction: column; gap: 18px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.cf-required { color: var(--violet-light); }
.cf-input {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}
.cf-input:focus { outline: none; border-color: var(--violet); }
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-counter { font-size: 0.72rem; color: var(--text-dim); text-align: right; }
.cf-submit {
  align-self: flex-start;
  background: var(--violet);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.cf-submit:hover { background: var(--violet-light); transform: translateY(-1px); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
  .contact-info-card, .contact-faq-card { flex: 1; min-width: 260px; }
}

@media (max-width: 768px) {
  .review-hero-inner { grid-template-columns: 1fr; }
  .review-hero-score { flex-direction: row; align-items: flex-start; min-width: unset; }
  .score-circle-wrap { width: 100px; height: 100px; flex-shrink: 0; }
  .score-big { font-size: 1.5rem; }
  .proscons-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 200px); grid-auto-rows: minmax(200px, auto); }
  .main-nav { display: none; }
  .nav-burger { display: flex; }
  .affiliate-block { flex-direction: column; align-items: flex-start; }
  .verdict-cta-wrap { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .about-block { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-cta-block { padding: 24px; }
}

@media (max-width: 480px) {
  /* Process & error (existant) */
  .process-steps { grid-template-columns: 1fr; }
  .error-code-wrap { gap: 4px; }

  /* Container */
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 48px 0 32px; }
  .hero-sub { font-size: 0.95rem; }

  /* Score mini labels */
  .score-mini-label { width: 75px; font-size: 0.65rem; }

  /* Footer */
  .site-footer { padding: 36px 0 24px; margin-top: 40px; }
  .footer-top { gap: 20px; }
  .footer-brand { text-align: center; }
  .footer-logo-link { justify-content: center; }
  .footer-tagline { text-align: center; }
  .footer-nav-col { align-items: center; text-align: center; }
}
