/* ============================================
   robotstofzuiger-test.nl — Design System v1.0
   Light + clean, mobile-first, teal accent
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-latin-700.woff2') format('woff2');
}

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

:root {
  --bg: #FAFAFA;
  --bg-white: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-light: #EFF6FF;
  --cta: #F97316;
  --cta-hover: #EA580C;
  --success: #10B981;
  --success-light: #ECFDF5;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 960px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.logo:hover { color: var(--text); }
.logo:hover .logo-mark { background: var(--accent-hover); }

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
  transition: var(--transition);
}

.logo-text { color: var(--text); }
.logo-text strong { font-weight: 700; }
.logo-tld { color: var(--text-muted); font-size: 14px; margin-left: -4px; }

.header-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding: 8px 16px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--accent);
  color: white;
}

/* --- Navigation Dropdowns --- */
.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.header-nav > a,
.nav-dropdown > .nav-trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 6px 12px;
  border-radius: var(--radius);
}

.header-nav > a:hover,
.nav-dropdown:hover > .nav-trigger {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  margin-top: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  font-weight: 400;
  line-height: 1.4;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.nav-dropdown-menu .nav-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px 4px;
}

.nav-dropdown-menu .nav-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 8px;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  border-radius: var(--radius);
}

.mobile-menu-btn:hover {
  background: var(--accent-light);
  color: var(--accent);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.header-nav.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  gap: 4px;
  z-index: 150;
}

.header-nav.mobile-open .nav-dropdown-menu {
  display: none;
  position: static;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0 0 0 12px;
}

.header-nav.mobile-open .nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

@media (max-width: 767px) {
  .header {
    position: relative;
  }
}

/* --- Hero --- */
.hero {
  padding: 48px 0 40px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-badge svg { flex-shrink: 0; }

.hero h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 460px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

.hero-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

.hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta svg { color: var(--success); flex-shrink: 0; }

/* --- Hero Visual (split layout right side) --- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* --- Social Proof --- */
.social-proof {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.social-proof-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-item svg { flex-shrink: 0; }
.proof-item strong { color: var(--text); }

/* --- Quiz Section --- */
.quiz-section {
  padding: 48px 0;
  display: none;
}

.quiz-section.active { display: block; }

.quiz-progress {
  max-width: 560px;
  margin: 0 auto 32px;
}

.quiz-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.quiz-progress-text {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.quiz-step {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quiz-step p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* --- Option Cards --- */
.options-grid {
  display: grid;
  gap: 12px;
}

.options-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.options-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.options-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }

.option-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.option-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
}

.option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  background: var(--accent);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.option-icon,
.option-visual {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.option-card:hover .option-visual,
.option-card.selected .option-visual {
  color: var(--accent-hover);
}

.option-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.option-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- Quiz Navigation --- */
.quiz-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-primary:disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* --- Results Section --- */
.results-section {
  padding: 16px 0 64px;
  display: none;
}

.results-section.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.results-profile {
  text-align: center;
  margin-bottom: 16px;
}

.results-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-light);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.results-profile h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.profile-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.profile-tag {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* --- Robot Cards Grid --- */
.racket-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
  align-items: stretch;
}

.racket-col {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

.racket-col:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.racket-col--best {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.10);
  padding: 36px 20px 24px;
}

.racket-col-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.racket-col-rank {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  opacity: 0.6;
}

.racket-col-brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.racket-col-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}

.racket-col--best .racket-col-name { font-size: 18px; }

.racket-col-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.rc-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.racket-col-highlight {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 0 4px;
}

.racket-col-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  margin-top: auto;
}

.racket-col-cta:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.racket-col-cta--primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
}

.racket-col-cta--primary:hover {
  background: var(--accent-hover, #1d4ed8);
  border-color: var(--accent-hover, #1d4ed8);
  color: white;
}

/* --- Retry CTA --- */
.retry-section {
  text-align: center;
  padding: 32px 0;
}

.retry-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* --- How It Works --- */
.how-it-works {
  padding: 48px 0;
  text-align: center;
}

.how-it-works h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card { padding: 24px 16px; }

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-section { padding: 48px 0; }

.faq-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
  color: var(--accent);
}

.faq-answer {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 16px;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* --- Footer --- */
.footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

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

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

.footer-inner {
  text-align: center;
}

.footer-disclaimer {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  font-size: 14px;
}

.cookie-banner.hidden { display: none; }

.cookie-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept { background: var(--accent); color: white; }
.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 640px) {
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 20px; }
  .options-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .racket-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .racket-col--best {
    transform: none;
    order: -1 !important;
  }

  .racket-col { order: 0 !important; }
}

@media (max-width: 767px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-content { text-align: center; }

  .hero-visual-card { margin: 0 auto; }
}

@media (max-width: 639px) {
  .hero { padding: 32px 0; }
  .hero h1 { font-size: 28px; }

  .hero-visual { display: none; }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .options-grid.cols-3 { grid-template-columns: 1fr; }

  .option-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 16px;
  }

  .option-icon,
  .option-visual {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .social-proof-inner {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================
   Content Pages (beste, gids, reviews, blog)
   ============================================ */

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(37,99,235,0.35);
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--accent-hover); }
.breadcrumbs .sep { color: var(--text-muted); margin: 0 2px; font-size: 0.9em; }
.breadcrumbs .current { color: var(--text-muted); font-weight: 500; }

/* --- Article Layout --- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0 48px;
}
.article-header { margin-bottom: 32px; }
.article-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.article h1 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.article-intro {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.article-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Article Body --- */
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-top: 8px;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.article-body p { margin-bottom: 16px; line-height: 1.7; }
.article-body ul, .article-body ol { margin-bottom: 16px; padding-left: 24px; }
.article-body li { margin-bottom: 8px; line-height: 1.6; }
.article-body strong { font-weight: 700; }
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.article-body a:hover { color: var(--accent-hover); }

/* --- Category Grid (product cards) --- */
.category-grid { display: grid; gap: 16px; margin: 24px 0; }
.category-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  position: relative;
}
.category-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.category-card-rank {
  position: absolute;
  top: 12px; left: 12px;
  width: 28px; height: 28px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.category-card:first-child .category-card-rank { background: var(--cta); }
.category-card-body { padding-left: 40px; }
.category-card h3 { font-size: 18px; margin: 0 0 4px; }
.category-card h3 a { color: var(--text); text-decoration: none; }
.category-card h3 a:hover { color: var(--accent); }
.category-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.category-card p { margin-bottom: 12px; line-height: 1.6; font-size: 15px; }
.category-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.category-card-tag {
  font-size: 12px;
  font-weight: 600;
  background: var(--bg);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 20px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}
.category-card-cta:hover { background: var(--accent-hover); }

/* --- Tip Box --- */
.tip-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 15px;
}
.tip-box strong { display: block; margin-bottom: 4px; color: var(--accent); }

/* --- Warning Box --- */
.warning-box {
  background: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 15px;
}
.warning-box strong { display: block; margin-bottom: 4px; color: #B45309; }

/* --- Specs Table --- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.specs-table th {
  text-align: left;
  padding: 10px 16px;
  background: var(--bg);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.specs-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.specs-table td:first-child { font-weight: 600; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  overflow-x: auto;
}
.comparison-table th {
  text-align: center;
  padding: 12px 8px;
  background: var(--accent-light);
  font-weight: 700;
  font-size: 13px;
  border-bottom: 2px solid var(--accent);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 13px;
}
.comparison-table .winner { color: var(--accent); font-weight: 700; }

/* --- Verdict Box --- */
.verdict-box {
  background: var(--bg-white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.verdict-box h3 { margin: 0 0 12px; font-size: 20px; }
.verdict-box p { margin-bottom: 0; }

/* --- Pro/Con Lists --- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.pros { padding: 16px; border-radius: 8px; background: var(--success-light); }
.cons { padding: 16px; border-radius: 8px; background: #FEF2F2; }
.pros h4, .cons h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.pros h4 { color: var(--success); }
.cons h4 { color: #DC2626; }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.pros li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.cons li::before { content: '✗ '; color: #DC2626; font-weight: 700; }
.pros li, .cons li { margin-bottom: 6px; }

/* --- Article CTA Box --- */
.article-cta-box {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.article-cta-box h3 { font-size: 20px; margin-bottom: 8px; }
.article-cta-box p { color: var(--text-muted); margin-bottom: 16px; }
.article-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}
.article-cta-box a:hover { background: var(--cta-hover); }

/* --- Internal Links Grid --- */
.related-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.related-link {
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.related-link:hover { border-color: var(--accent); color: var(--accent); }
.related-link span { display: block; font-size: 12px; color: var(--text-muted); font-weight: 400; margin-top: 2px; }

/* --- Content Pages Responsive --- */
@media (max-width: 639px) {
  .article h1 { font-size: 24px; }
  .article-body h2 { font-size: 20px; }
  .pros-cons { grid-template-columns: 1fr; }
  .related-links { grid-template-columns: 1fr; }
  .comparison-table { display: block; overflow-x: auto; }
}
