/* ============================================================
   mikrofonfürpc.de – Design System & Styles
   Version: 2026-03-22m
   ============================================================ */

/* ----- CSS Custom Properties ----- */
:root {
  /* Colors */
  --color-bg: #0c0c0c;
  --color-surface: #161618;
  --color-surface-hover: #1e1e21;
  --color-surface-alt: #1a1a1d;
  --color-border: #2a2a2e;
  --color-border-light: #333338;
  --color-text: #e4e4e7;
  --color-text-muted: #a1a1aa;
  --color-text-dim: #71717a;
  --color-accent: #00d4ff;
  --color-accent-dark: #00a8cc;
  --color-accent-glow: rgba(0, 212, 255, 0.15);

  /* Badge colors */
  --badge-testsieger: #c2410c;
  --badge-preis-tipp: #1e40af;
  --badge-premium: #7c3aed;
  --badge-bestseller: #15803d;
  --badge-einsteiger: #0f766e;
  --badge-budget: #475569;

  /* CTA colors */
  --color-cta-orange: #ea580c;
  --color-cta-orange-hover: #c2410c;
  --color-success: #00d4ff;
  --color-success-hover: #00a8cc;

  /* Rating colors */
  --rating-excellent: #22c55e;
  --rating-good: #84cc16;
  --rating-ok: #f97316;
  --rating-poor: #ef4444;

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 64px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 4px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
}

/* ----- Reset & Base ----- */
*,
*::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);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Static noise texture overlay – NO animation, NO flickering */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ----- Film Grain Overlay (disabled – caused flickering) ----- */
.film-grain {
  display: none;
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition),
              backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__logo-icon {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: #fff;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Hero Section ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-accent-glow);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #fff 0%, var(--color-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__trust {
  display: flex;
  gap: var(--space-xl);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.hero__trust-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Hero microphone animation */
.hero__animation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 800px;
}

.hero-mic {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.15));
  transition: transform 0.1s ease-out;
}

.hero-mic__glow {
  transition: cx 0.08s ease-out, cy 0.08s ease-out;
}

/* ----- Trust Bar ----- */
.trust-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.trust-bar__number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
}

.trust-bar__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ----- Section ----- */
.section {
  padding: var(--space-3xl) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__subtitle {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__desc {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
  line-height: 1.2;
}

.btn--cta {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn--cta:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

.btn--success {
  background: linear-gradient(135deg, #00d4ff, #00a8cc);
  color: #0c0c0c;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
}

.btn--success:hover {
  background: linear-gradient(135deg, #22e0ff, #00d4ff);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.35);
  color: #0c0c0c;
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0.5rem 1rem;
}

.btn--ghost:hover {
  background: var(--color-accent-glow);
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  min-height: 36px;
}

.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* ----- Product Cards Grid ----- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* ----- Product Card ----- */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--color-border-light);
}

/* Card image */
.product-card__image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f8f8f8;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card badge */
.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.product-card__badge--testsieger { background: var(--badge-testsieger); }
.product-card__badge--preis-tipp { background: var(--badge-preis-tipp); }
.product-card__badge--premium { background: var(--badge-premium); }
.product-card__badge--bestseller { background: var(--badge-bestseller); }
.product-card__badge--einsteiger { background: var(--badge-einsteiger); }
.product-card__badge--budget { background: var(--badge-budget); }

/* BFSG-compliant badge styles */
.product-card__badge[aria-label] {
  min-width: 44px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Card score */
.product-card__score {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-accent);
  z-index: 2;
}

/* Card body */
.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
}

.product-card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.product-card__subtitle {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-card__spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.2rem 0.6rem;
  background: var(--color-bg);
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.product-card__spec-icon {
  width: 12px;
  height: 12px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Card footer */
.product-card__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.product-card__price-block {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-right: auto;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.product-card__price-tax {
  font-size: 0.7rem;
  color: var(--color-text-dim);
  white-space: nowrap;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.product-card__actions .btn {
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 10px 16px;
  text-align: center;
}

/* ----- CTA Box ----- */
.cta-box {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-2xl);
  text-align: center;
  margin: var(--space-2xl) 0;
}

.cta-box__title {
  margin-bottom: var(--space-md);
}

.cta-box__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Tester / Author Section ----- */
.tester-section {
  padding: var(--space-3xl) 0;
}

.tester-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2xl);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-2xl);
}

.tester-card__illustration {
  width: 280px;
  height: 360px;
  flex-shrink: 0;
}

.tester-card__illustration svg {
  width: 100%;
  height: 100%;
}

.tester-card__info h3 {
  margin-bottom: var(--space-xs);
}

.tester-card__role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.tester-card__quote {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.7;
  position: relative;
  padding-left: var(--space-xl);
}

.tester-card__quote::before {
  content: '\201E';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 2.5rem;
  color: var(--color-accent);
  font-style: normal;
  line-height: 1;
}

/* ----- Ratgeber Grid ----- */
.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.ratgeber-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.ratgeber-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.ratgeber-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.ratgeber-card__title {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.ratgeber-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.ratgeber-card__link {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ----- Comparison Table ----- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table thead th {
  background: var(--color-surface);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid var(--color-accent);
}

.comparison-table tbody td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.comparison-table tbody tr:hover td {
  background: var(--color-surface-hover);
}

/* ----- Rating Bars ----- */
.rating-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.rating-bar__label {
  width: 120px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: var(--color-bg);
  border-radius: 100px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.6s ease;
}

.rating-bar__fill--excellent { background: var(--rating-excellent); }
.rating-bar__fill--good { background: var(--rating-good); }
.rating-bar__fill--ok { background: var(--rating-ok); }
.rating-bar__fill--poor { background: var(--rating-poor); }

.rating-bar__value {
  width: 36px;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

/* ----- Specs Table ----- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-border);
}

.specs-table th {
  text-align: left;
  padding: var(--space-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  width: 40%;
}

.specs-table td {
  padding: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text);
}

/* ----- Pros / Cons Boxes ----- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.pros-box,
.cons-box {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--space-lg);
}

.pros-box {
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.cons-box {
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-box__title,
.cons-box__title {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pros-box__title { color: #22c55e; }
.cons-box__title { color: #ef4444; }

.pros-box ul li,
.cons-box ul li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.pros-box ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
}

.cons-box ul li::before {
  content: '\2212';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ----- FAQ Accordion ----- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--color-border-light);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  gap: var(--space-md);
  min-height: 44px;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumbs__sep {
  color: var(--color-text-dim);
}

.breadcrumbs__link {
  color: var(--color-text-dim);
}

.breadcrumbs__link:hover {
  color: var(--color-accent);
}

/* ----- Table of Contents ----- */
.toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.toc__title {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.toc__list {
  counter-reset: toc;
}

.toc__item {
  counter-increment: toc;
}

.toc__link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.toc__link:hover {
  color: var(--color-accent);
}

.toc__link::before {
  content: counter(toc) '.';
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  width: 24px;
  flex-shrink: 0;
}

/* ----- Footer ----- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer__link {
  display: block;
  padding: var(--space-xs) 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.footer__affiliate {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  max-width: 500px;
  line-height: 1.5;
}

/* ----- Scroll Animations ----- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.25s; }
.fade-in:nth-child(5) { transition-delay: 0.3s; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__animation {
    max-width: 320px;
    margin: 0 auto;
  }

  .tester-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tester-card__illustration {
    margin: 0 auto;
  }

  .tester-card__quote {
    padding-left: 0;
    text-align: center;
  }

  .tester-card__quote::before {
    position: static;
    display: block;
    margin-bottom: var(--space-sm);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 12, 12, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .nav__toggle {
    display: flex;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .ratgeber-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-md);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card__footer {
    padding: 1rem 1.25rem;
  }

  .product-card__actions {
    width: 100%;
  }

  .product-card__actions .btn {
    flex: 1;
  }

  .ratgeber-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   OVERRIDE BLOCK: Pros/Cons Icon Fix (Bug #2)
   Must remain at END of stylesheet
   ============================================================ */
.pros-box ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.cons-box ul li::before {
  content: '\2212';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}
