/* =========================================================
   FatbikeWijzer.nl — Redesign 2026
   Premium Dark Theme + Glassmorphism + Cinematic Layout
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg: #08080c;
  --bg-surface: #12121a;
  --bg-elevated: #1a1a28;
  --primary: #ff6b2b;
  --primary-light: #ff8f5c;
  --primary-dark: #e55a1f;
  --primary-rgb: 255, 107, 43;
  --glow: rgba(255, 107, 43, 0.35);
  --glow-soft: rgba(255, 107, 43, 0.12);
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-medium: rgba(255, 255, 255, 0.06);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-padding: clamp(5rem, 10vw, 9rem);
  --container: min(1240px, 92vw);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
}

/* --- 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;
  }
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--text-primary); }

/* --- Utility --- */
.container { width: var(--container); margin: 0 auto; }
.section { padding: var(--section-padding) 0; position: relative; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 9999;
  background: transparent; pointer-events: none;
}
.scroll-progress-bar {
  height: 100%; width: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(var(--progress, 0)); transform-origin: left;
  box-shadow: 0 0 12px var(--glow);
}

/* --- Noise Overlay --- */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1rem 0;
  background: rgba(8, 8, 12, 0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(8, 8, 12, 0.92);
  border-bottom-color: var(--glass-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: var(--container); margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem;
  color: var(--text-primary); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta .btn { font-size: 0.82rem; padding: 0.55rem 1.3rem; }
.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; z-index: 1001;
}
.nav-mobile-toggle span {
  display: block; height: 2px; width: 100%; background: var(--text-primary);
  transition: all 0.3s var(--ease); transform-origin: center;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: rgba(8, 8, 12, 0.97); backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
  color: var(--text-primary); transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.8rem; border-radius: var(--radius-md);
  transition: all 0.4s var(--ease); position: relative; overflow: hidden; cursor: pointer;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 30px rgba(var(--primary-rgb), 0.45);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.btn-ghost:hover {
  border-color: var(--primary); color: var(--primary);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
}
.btn-lg { font-size: 1.05rem; padding: 1rem 2.2rem; }
.btn-sm { font-size: 0.82rem; padding: 0.5rem 1.1rem; }
.magnetic-btn { transition: transform 0.15s; }

/* =========================================================
   HERO — Cinematic
   ========================================================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 0 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(var(--primary-rgb), 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(100, 60, 255, 0.04) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; top: -50%; right: -25%; width: 80%; height: 200%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.025) 0%, transparent 60%);
  transform: rotate(-12deg); z-index: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem;
  width: var(--container); margin: 0 auto; position: relative; z-index: 2;
}
.hero-content { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1rem; border-radius: 100px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.2rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), #ffb88c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 480px; margin-bottom: 1.8rem; line-height: 1.7;
}
.hero-stats {
  display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.hero-stat {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-border);
  font-size: 0.82rem; font-weight: 500; color: var(--text-secondary);
  backdrop-filter: blur(10px);
}
.hero-stat strong { color: var(--primary); font-weight: 700; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-bike-wrap {
  position: relative; width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-glow {
  position: absolute; width: 65%; height: 65%; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
  filter: blur(60px); animation: heroGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 1; }
}
.hero-bike-img {
  position: relative; z-index: 2; width: 105%; max-width: 600px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  transition: transform 0.6s var(--ease);
}
.hero-bike-wrap:hover .hero-bike-img { transform: scale(1.03) rotate(-1deg); }

.hero-float {
  position: absolute; z-index: 3;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-md);
  background: rgba(18, 18, 26, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem; white-space: nowrap;
  animation: floatCard 3s ease-in-out infinite alternate;
}
.hero-float strong { color: var(--primary); }
.hero-float--1 { top: 12%; right: 5%; animation-delay: -1s; }
.hero-float--2 { bottom: 28%; left: 2%; animation-delay: -0.5s; }
.hero-float--3 { bottom: 8%; right: 15%; animation-delay: -1.5s; }
@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .hero { padding: 6rem 0 3rem; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 1rem; }
  .hero-bike-img { width: 75%; max-width: 380px; }
  .hero-float { display: none; }
}

/* =========================================================
   SHOWCASE — Horizontal Scroll
   ========================================================= */
.showcase { overflow: hidden; }
.showcase-track {
  display: flex; gap: 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem; scrollbar-width: none;
}
.showcase-track::-webkit-scrollbar { display: none; }

.showcase-card {
  flex: 0 0 310px; scroll-snap-align: start;
  background: var(--bg-surface); border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border); overflow: hidden;
  transition: all 0.4s var(--ease); position: relative;
}
.showcase-card:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(var(--primary-rgb), 0.08);
  transform: translateY(-5px);
}
.showcase-card.featured {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: linear-gradient(135deg, var(--bg-surface), rgba(var(--primary-rgb), 0.03));
}
.showcase-card.featured::after {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 200%; z-index: -1; padding: 2px;
  animation: gradientBorder 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.showcase-card-img {
  height: 210px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
  padding: 1.5rem;
}
.showcase-card-img img { max-height: 100%; width: auto; object-fit: contain; transition: transform 0.5s var(--ease); }
.showcase-card:hover .showcase-card-img img { transform: scale(1.08); }
.showcase-card-body { padding: 1.3rem 1.5rem 1.5rem; }
.showcase-card-rank {
  font-size: 0.7rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.showcase-card-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.25rem; }
.showcase-card-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.5; }
.showcase-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--glass-border);
}
.showcase-card-price { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; }
.showcase-card-score {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.9rem; color: var(--primary);
}

/* =========================================================
   EDITORIAL FEATURE
   ========================================================= */
.editorial {
  overflow: hidden; background: var(--bg-surface);
  border-radius: var(--radius-xl); border: 1px solid var(--glass-border);
}
.editorial-inner { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 480px; }
.editorial-image { position: relative; overflow: hidden; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.editorial:hover .editorial-image img { transform: scale(1.04); }
.editorial-badge {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-sm);
  background: var(--primary); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.editorial-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.editorial-score {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.8rem 1.2rem; border-radius: var(--radius-lg);
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  margin-bottom: 1.5rem; width: fit-content;
}
.editorial-score-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.editorial-score-meta { font-size: 0.8rem; color: var(--text-secondary); }
.editorial-score-stars { color: var(--primary); letter-spacing: 2px; font-size: 0.85rem; }
.editorial h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 0.4rem; }
.editorial-subtitle { font-size: 1rem; color: var(--text-secondary); font-style: italic; margin-bottom: 1.3rem; }
.editorial-specs { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
.editorial-spec {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: var(--text-secondary);
}
.editorial-spec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.editorial-spec strong { color: var(--text-primary); }
.editorial-footer { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.editorial-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; }

@media (max-width: 768px) {
  .editorial-inner { grid-template-columns: 1fr; }
  .editorial-image { height: 280px; }
  .editorial-content { padding: 1.8rem; }
}

/* =========================================================
   COMPARE TEASER
   ========================================================= */
.compare-teaser {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, var(--bg-surface) 100%);
  padding: 3.5rem 2.5rem; text-align: center;
}
.compare-teaser-grid {
  position: relative; z-index: 2;
  background-image:
    linear-gradient(var(--glass-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 40px 40px; padding: 2.5rem; margin-bottom: 2rem;
  border-radius: var(--radius-lg);
}
.compare-bikes { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.compare-thumb {
  width: 100px; height: 100px; border-radius: var(--radius-lg);
  background: var(--bg-elevated); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  padding: 0.8rem; overflow: hidden;
}
.compare-thumb img { max-height: 100%; width: auto; object-fit: contain; }
.compare-vs {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--primary);
  text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4); }
  50% { text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.7); }
}
.compare-teaser h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.5rem;
  position: relative; z-index: 2;
}
.compare-teaser p {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 520px; margin: 0 auto 2rem; position: relative; z-index: 2;
}

/* =========================================================
   BENTO CATEGORIES
   ========================================================= */
.bento-cats {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr;
}
.bento-cat {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  min-height: 240px; display: flex; align-items: flex-end;
  transition: all 0.5s var(--ease); border: 1px solid var(--glass-border);
}
.bento-cat:first-child { grid-row: 1 / 3; min-height: 500px; }
.bento-cat-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s var(--ease);
}
.bento-cat:hover .bento-cat-bg { transform: scale(1.06); }
.bento-cat::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 25%, rgba(8,8,12,0.92) 100%);
}
.bento-cat-content { position: relative; z-index: 2; padding: 2rem; width: 100%; }
.bento-cat-label {
  font-size: 0.72rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.bento-cat h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.bento-cat:first-child h3 { font-size: 1.9rem; }
.bento-cat p { color: var(--text-secondary); font-size: 0.9rem; }
.bento-cat .btn {
  margin-top: 0.8rem; opacity: 0; transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.bento-cat:hover .btn { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .bento-cats { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-cat:first-child { grid-row: auto; min-height: 280px; }
  .bento-cat .btn { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band { position: relative; padding: 5rem 0; overflow: hidden; }
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(100,60,255,0.03) 0%, transparent 60%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative; z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.stat-divider {
  width: 36px; height: 2px; background: rgba(var(--primary-rgb), 0.2);
  margin: 0.7rem auto 0; border-radius: 2px;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

/* =========================================================
   HOW WE TEST — Sticky Scroll
   ========================================================= */
.test-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.test-visual {
  position: sticky; top: 7rem; height: fit-content;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--glass-border);
}
.test-visual img { width: 100%; height: 420px; object-fit: cover; }
.test-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.test-step {
  padding-left: 1.8rem; border-left: 2px solid var(--glass-border);
  transition: border-color 0.4s var(--ease);
}
.test-step.active { border-left-color: var(--primary); }
.test-step-num {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
  color: rgba(var(--primary-rgb), 0.12); line-height: 1;
  transition: color 0.4s var(--ease);
}
.test-step.active .test-step-num { color: rgba(var(--primary-rgb), 0.35); }
.test-step h3 { font-size: 1.2rem; margin: 0.4rem 0; }
.test-step p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }
.test-disclaimer {
  margin-top: 2.5rem; padding: 1.2rem 1.5rem;
  background: rgba(var(--primary-rgb), 0.04);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.88rem; color: var(--text-secondary);
}
.test-disclaimer strong { color: var(--text-primary); }

@media (max-width: 900px) {
  .test-inner { grid-template-columns: 1fr; }
  .test-visual { position: relative; top: 0; margin-bottom: 2rem; }
}

/* =========================================================
   REVIEWS MASONRY
   ========================================================= */
.reviews-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.review-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--glass-border); background: var(--bg-surface);
  transition: all 0.4s var(--ease); display: block;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(var(--primary-rgb), 0.2);
}
.review-card.tall { grid-row: span 2; }
.review-card-img {
  height: 190px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elevated); padding: 1.2rem;
}
.review-card.tall .review-card-img { height: 280px; }
.review-card-img img { max-height: 100%; width: auto; object-fit: contain; transition: transform 0.5s var(--ease); }
.review-card:hover .review-card-img img { transform: scale(1.06); }
.review-card-score {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(18,18,26,0.9); backdrop-filter: blur(10px);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.82rem; color: var(--primary);
  box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.25);
}
.review-card-body { padding: 1.1rem 1.3rem 1.3rem; }
.review-card-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; margin-bottom: 0.15rem; }
.review-card-desc { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.6rem; }
.review-card-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.review-card-price { font-weight: 700; font-size: 0.92rem; }
.review-card-arrow {
  color: var(--primary); font-size: 0.82rem; font-weight: 600;
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-5px);
}
.review-card:hover .review-card-arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card.tall { grid-row: auto; }
  .review-card.tall .review-card-img { height: 190px; }
  .review-card-arrow { opacity: 1; transform: translateX(0); }
}
@media (max-width: 500px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   VERSUS BATTLES
   ========================================================= */
.versus-track {
  display: flex; gap: 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; scrollbar-width: none;
}
.versus-track::-webkit-scrollbar { display: none; }
.versus-card {
  flex: 0 0 280px; scroll-snap-align: start;
  background: var(--bg-surface); border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  padding: 1.3rem; transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.versus-card:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.versus-images { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.versus-thumb {
  flex: 1; height: 72px; border-radius: var(--radius-md);
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  padding: 0.4rem; overflow: hidden;
}
.versus-thumb img { max-height: 100%; width: auto; object-fit: contain; }
.versus-vs {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.12); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.65rem; color: var(--primary);
  box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.2);
}
.versus-card h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.versus-card p { font-size: 0.82rem; color: var(--text-secondary); flex-grow: 1; }
.versus-card-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.8rem; font-size: 0.82rem; font-weight: 600; color: var(--primary);
}

/* =========================================================
   TRUST STATEMENT
   ========================================================= */
.trust-statement {
  padding: 5rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.trust-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.trust-quote {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.4; margin-bottom: 2rem; position: relative;
}
.trust-quote::before {
  content: '\201C'; position: absolute; top: -2.5rem; left: 50%; transform: translateX(-50%);
  font-size: 5rem; color: rgba(var(--primary-rgb), 0.12); line-height: 1;
  font-family: Georgia, serif;
}
.trust-badges { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.trust-badge-item { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.trust-badge-item::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary);
  margin-right: 0.5rem; vertical-align: middle;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; font-family: var(--font-heading); font-weight: 600;
  font-size: 1rem; color: var(--text-primary); text-align: left;
  transition: color 0.3s;
}
.faq-trigger:hover { color: var(--primary); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary); flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.faq-trigger.open .faq-icon { transform: rotate(45deg); background: rgba(var(--primary-rgb), 0.1); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-answer-inner {
  padding-bottom: 1.3rem; color: var(--text-secondary);
  font-size: 0.92rem; line-height: 1.7;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final { text-align: center; padding: 6rem 0; position: relative; }
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%);
}
.cta-final h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -0.03em; margin-bottom: 0.8rem; position: relative; z-index: 2;
}
.cta-final p {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 480px; margin: 0 auto 2rem; position: relative; z-index: 2;
}
.cta-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--glass-border); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; margin-bottom: 0.7rem; }
.footer-brand span { color: var(--primary); }
.footer-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; max-width: 300px; }
.footer-col-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 0.9rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-legal { font-size: 0.78rem; color: var(--text-muted); max-width: 600px; line-height: 1.6; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="left"].visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="right"].visible { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.95); }
[data-reveal="scale"].visible { transform: scale(1); }

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-head { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.section-sub { font-size: 1rem; color: var(--text-secondary); max-width: 520px; margin-bottom: 2.5rem; }
.section-sub.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  background: var(--bg-surface); border-top: 1px solid var(--glass-border);
  padding: 1rem 2rem; display: none; backdrop-filter: blur(20px);
}
.cookie-banner.show { display: flex; }
.cookie-inner {
  width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.85rem; color: var(--text-secondary); max-width: 680px; }
.cookie-inner p a { color: var(--primary); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.6rem; }

/* =========================================================
   SUBPAGE HERO
   ========================================================= */
.sub-hero {
  padding: 8rem 0 4rem; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.sub-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(var(--primary-rgb), 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(100, 60, 255, 0.03) 0%, transparent 50%);
}
.sub-hero-inner { position: relative; z-index: 2; }
.sub-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.sub-hero-desc {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 560px; line-height: 1.7; margin-bottom: 1.5rem;
}
.sub-hero-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.breadcrumb { margin-bottom: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-secondary); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { margin: 0 0.4rem; }
.breadcrumb-current { color: var(--text-primary); }

.tag-pill {
  display: inline-block; padding: 0.35rem 0.8rem; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-border);
  font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
}

.section-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem;
}

/* =========================================================
   AFFILIATE NOTICE
   ========================================================= */
.affiliate-notice {
  padding: 1rem 1.3rem; border-radius: var(--radius-md);
  background: rgba(var(--primary-rgb), 0.03);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  font-size: 0.85rem; color: var(--text-secondary);
  margin-bottom: 3rem; line-height: 1.6;
}
.affiliate-notice strong { color: var(--text-primary); }

/* =========================================================
   PODIUM — Top 3 Cards
   ========================================================= */
.podium {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 1.5rem;
  align-items: end; margin-top: 2.5rem; margin-bottom: 1rem;
}
.podium-card {
  background: var(--bg-surface); border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border); padding: 1.5rem;
  text-align: center; transition: all 0.4s var(--ease); position: relative;
}
.podium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.podium-gold {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: linear-gradient(135deg, var(--bg-surface), rgba(var(--primary-rgb), 0.04));
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.08);
}
.podium-crown {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.3rem 0.9rem; border-radius: 100px;
  background: var(--primary); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}
.podium-rank {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 3rem; color: rgba(var(--primary-rgb), 0.1); line-height: 1;
}
.podium-gold .podium-rank { color: rgba(var(--primary-rgb), 0.2); }
.podium-img {
  height: 140px; display: flex; align-items: center; justify-content: center;
  margin: 0.5rem 0;
}
.podium-gold .podium-img { height: 170px; }
.podium-img img { max-height: 100%; width: auto; object-fit: contain; }
.podium-info { margin-bottom: 0.5rem; }
.podium-info h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.podium-gold .podium-info h3 { font-size: 1.25rem; }
.podium-score {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1); border: 2px solid var(--primary);
  font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; color: var(--primary);
}
.podium-gold .podium-score { width: 52px; height: 52px; font-size: 1.05rem; box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.25); }
.podium-price {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  margin: 0.6rem 0 0.3rem;
}
.podium-tag {
  font-size: 0.72rem; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.podium-link {
  display: inline-block; margin-top: 0.8rem; font-size: 0.85rem;
  font-weight: 600; color: var(--primary); transition: opacity 0.3s;
}
.podium-link:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .podium { grid-template-columns: 1fr; gap: 1rem; }
  .podium-card:nth-child(2) { order: -1; }
  .podium-gold .podium-img { height: 140px; }
}

/* =========================================================
   RANKING LIST — Full Top 10
   ========================================================= */
.ranking-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.ranking-card {
  display: grid; grid-template-columns: 60px 130px 1fr auto;
  align-items: center; gap: 1.5rem;
  background: var(--bg-elevated); border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.5rem; transition: all 0.4s var(--ease);
}
.ranking-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: translateX(4px);
}
.ranking-card--gold {
  border-color: rgba(var(--primary-rgb), 0.25);
  background: linear-gradient(135deg, var(--bg-elevated), rgba(var(--primary-rgb), 0.04));
}
.ranking-position { text-align: center; }
.ranking-num {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.8rem; color: rgba(var(--primary-rgb), 0.15);
}
.ranking-card--gold .ranking-num { color: var(--primary); }
.ranking-image {
  height: 90px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-surface); border-radius: var(--radius-lg);
  padding: 0.5rem; overflow: hidden;
}
.ranking-image img { max-height: 100%; width: auto; object-fit: contain; }
.ranking-content { min-width: 0; }
.ranking-badges { display: flex; gap: 0.4rem; margin-bottom: 0.3rem; flex-wrap: wrap; }
.badge {
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: 100px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.badge--gold { background: rgba(var(--primary-rgb), 0.12); color: var(--primary); }
.badge--silver { background: rgba(192,192,192,0.12); color: #c0c0c0; }
.badge--green { background: rgba(34,197,94,0.12); color: #22c55e; }
.badge--outline { background: transparent; border: 1px solid var(--glass-border); color: var(--text-muted); }
.ranking-title { font-size: 1.15rem; margin-bottom: 0.2rem; }
.ranking-specs {
  display: flex; gap: 1rem; font-size: 0.82rem; color: var(--text-secondary); flex-wrap: wrap;
}
.ranking-specs span { position: relative; padding-right: 1rem; }
.ranking-specs span:not(:last-child)::after {
  content: '·'; position: absolute; right: 0; color: var(--text-muted);
}
.ranking-right { text-align: center; min-width: 120px; }
.ranking-score-ring {
  position: relative; width: 64px; height: 64px; margin: 0 auto 0.4rem;
}
.ranking-score-ring svg { width: 100%; height: 100%; }
.ranking-score-value {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--primary);
}
.ranking-price {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .ranking-card { grid-template-columns: 50px 100px 1fr; gap: 1rem; }
  .ranking-right { grid-column: 1 / -1; display: flex; align-items: center; gap: 1rem; justify-content: center; }
  .ranking-score-ring { margin: 0; width: 50px; height: 50px; }
}
@media (max-width: 600px) {
  .ranking-card { grid-template-columns: 40px 1fr; gap: 0.8rem; padding: 1rem; }
  .ranking-image { display: none; }
  .ranking-right { flex-wrap: wrap; }
}

/* =========================================================
   DATA TABLE
   ========================================================= */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--glass-border); }
.data-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
  background: var(--bg-surface);
}
.data-table thead { background: var(--bg-elevated); }
.data-table th {
  padding: 0.9rem 1rem; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); text-align: left; white-space: nowrap;
}
.data-table td {
  padding: 0.8rem 1rem; border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
}
.data-table tbody tr { transition: background 0.3s; }
.data-table tbody tr:hover { background: rgba(var(--primary-rgb), 0.03); }
.data-table-highlight { background: rgba(var(--primary-rgb), 0.04); }
.data-table-highlight td { color: var(--text-primary); }
.data-table-rank { font-family: var(--font-heading); font-weight: 800; color: var(--primary); }
.data-table-name { font-weight: 600; color: var(--text-primary); white-space: nowrap; }
.data-table-price { font-weight: 600; color: var(--text-primary); }
.score-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.25rem 0.6rem; border-radius: 100px;
  background: rgba(var(--primary-rgb), 0.1);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.82rem; color: var(--primary);
}
.score-pill--lg { padding: 0.35rem 0.8rem; font-size: 0.88rem; }

/* =========================================================
   ARTICLE GRID — Content + Sidebar
   ========================================================= */
.article-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start;
}
.article-main h3 {
  font-size: 1.2rem; margin: 2rem 0 0.6rem; color: var(--text-primary);
}
.article-main h3:first-of-type { margin-top: 1.5rem; }
.article-main p {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem;
}

.criteria-grid { display: flex; flex-direction: column; gap: 0.8rem; margin: 1rem 0 1.5rem; }
.criteria-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.7rem 1rem; border-radius: var(--radius-md);
  background: var(--glass); border: 1px solid var(--glass-border);
}
.criteria-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 0.35rem;
}
.criteria-item strong { color: var(--text-primary); display: block; font-size: 0.9rem; }
.criteria-item span { color: var(--text-secondary); font-size: 0.85rem; }

.score-legend { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.score-legend-item {
  display: flex; align-items: center; gap: 0.8rem;
}
.score-legend-item strong { color: var(--text-primary); display: block; font-size: 0.9rem; }
.score-legend-item span { color: var(--text-secondary); font-size: 0.82rem; }

/* Sidebar */
.article-sidebar { position: sticky; top: 6rem; }
.sidebar-card {
  background: var(--bg-elevated); border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border); padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.sidebar-card--accent {
  border-color: rgba(var(--primary-rgb), 0.15);
  background: linear-gradient(135deg, var(--bg-elevated), rgba(var(--primary-rgb), 0.03));
}
.sidebar-card h4 {
  font-size: 1.05rem; margin-bottom: 1rem;
  padding-bottom: 0.7rem; border-bottom: 1px solid var(--glass-border);
}
.sidebar-card h5 {
  font-size: 0.72rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 1rem 0 0.5rem;
}
.sidebar-card h5:first-of-type { margin-top: 0; }
.sidebar-picks { display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-pick {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.45rem 0; border-bottom: 1px solid var(--glass-border);
}
.sidebar-pick:last-child { border-bottom: none; }
.sidebar-pick-label { font-size: 0.82rem; color: var(--text-muted); }
.sidebar-pick-name {
  font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
  transition: color 0.3s;
}
.sidebar-pick-name:hover { color: var(--primary); }
.sidebar-pick-name span {
  font-weight: 500; color: var(--primary); margin-left: 0.3rem;
  font-size: 0.78rem;
}

.sidebar-tips p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 0.7rem; padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--glass-border);
}
.sidebar-tips p:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-tips strong { color: var(--text-primary); }

@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { position: relative; top: 0; }
}

/* ===== KOOPGIDS COMPONENTS ===== */

/* Info Cards Grid */
.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; margin: 2rem 0;
}
.info-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 1.5rem;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s;
}
.info-card:hover {
  border-color: rgba(var(--primary-rgb), 0.25);
  transform: translateY(-2px);
}
.info-card h4 {
  font-family: var(--font-heading); font-size: 1.05rem;
  color: var(--text-primary); margin-bottom: 0.6rem;
}
.info-card p {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 0.6rem;
}
.info-card-examples {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem;
}
.info-card-examples span {
  font-size: 0.75rem; padding: 0.25rem 0.65rem;
  background: rgba(var(--primary-rgb), 0.08); color: var(--primary);
  border-radius: 20px; border: 1px solid rgba(var(--primary-rgb), 0.15);
}

/* Tip Box */
.tip-box {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb), 0.02));
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-left: 3px solid var(--primary);
  border-radius: 12px; padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
.tip-box strong {
  color: var(--primary); display: block; margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.tip-box p {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6;
  margin: 0;
}

/* Spec Breakdown */
.spec-breakdown {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin: 1.5rem 0;
}
.spec-row {
  display: grid; grid-template-columns: 140px 1fr auto;
  align-items: center; gap: 1rem;
  padding: 0.8rem 1rem; border-radius: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
}
.spec-label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-primary);
  font-family: var(--font-heading);
}
.spec-value {
  font-size: 0.85rem; color: var(--text-secondary);
}
.spec-tier {
  font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.spec-tier--budget {
  background: rgba(59, 130, 246, 0.1); color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.spec-tier--mid {
  background: rgba(var(--primary-rgb), 0.1); color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}
.spec-tier--premium {
  background: rgba(234, 179, 8, 0.1); color: #fbbf24;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

/* Law Grid */
.law-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.law-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 1.8rem;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.law-card h4 {
  font-family: var(--font-heading); font-size: 1.15rem;
  color: var(--text-primary); margin-bottom: 1rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--glass-border);
}
.law-rules {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.law-rule {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5;
}
.law-rule::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  border-radius: 50%; background: var(--primary);
  margin-top: 0.45rem;
}

/* Budget Grid */
.budget-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem; margin: 2rem 0;
}
.budget-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s;
}
.budget-card:hover {
  transform: translateY(-3px);
}
.budget-card--featured {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.08);
}
.budget-header {
  padding: 1rem 1.2rem; text-align: center;
}
.budget-header--budget { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05)); }
.budget-header--mid { background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.05)); }
.budget-header--premium { background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(234, 179, 8, 0.05)); }
.budget-header--ultra { background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05)); }
.budget-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.3rem;
}
.budget-header--budget .budget-label { color: #60a5fa; }
.budget-header--mid .budget-label { color: var(--primary); }
.budget-header--premium .budget-label { color: #fbbf24; }
.budget-header--ultra .budget-label { color: #a78bfa; }
.budget-range {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--text-primary);
}
.budget-picks {
  padding: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.budget-picks p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;
  margin: 0; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.budget-picks p:last-child { border-bottom: none; padding-bottom: 0; }
.budget-picks strong { color: var(--text-primary); }

/* Shop Grid */
.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; margin: 2rem 0;
}
.shop-grid .info-card { text-align: center; }
.shop-grid .info-card h4 { font-size: 1.1rem; }

/* Sidebar TOC */
.sidebar-toc {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.sidebar-toc-item {
  display: block; font-size: 0.84rem; color: var(--text-muted);
  text-decoration: none; padding: 0.4rem 0.7rem;
  border-radius: 6px; border-left: 2px solid transparent;
  transition: all 0.25s;
}
.sidebar-toc-item:hover {
  color: var(--primary); background: rgba(var(--primary-rgb), 0.05);
  border-left-color: var(--primary);
}

/* Criteria Grid */
.criteria-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.criteria-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.8rem; border-radius: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
}
.criteria-dot {
  width: 8px; height: 8px; min-width: 8px; border-radius: 50%;
  background: var(--primary); margin-top: 0.35rem;
}
.criteria-item span {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5;
}
.criteria-item strong {
  color: var(--text-primary); display: block; margin-bottom: 0.15rem;
}

/* Score Legend */
.score-legend {
  display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1rem 0;
}
.score-legend-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-muted);
}
.score-legend-item .score-pill { margin: 0; }

/* ===== RESPONSIVE: KOOPGIDS ===== */
@media (max-width: 768px) {
  .info-cards { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .spec-tier { justify-self: start; }
  .law-grid { grid-template-columns: 1fr; }
  .budget-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .budget-grid { grid-template-columns: 1fr; }
}
