/* Google Font Inter */
/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

:root {
  /* Neues Design-System */
  --black: #09090b;
  --white: #ffffff;
  --blue: #b45309;
  --blue-hover: #92400e;
  --blue-dim: rgba(180,83,9,0.08);

  /* Rückwärts-Kompatibilität für alle Artikel */
  --bg: #ffffff;
  --bg-dark: #09090b;
  --card: #ffffff;
  --card-warm: #fafafa;
  --accent: #b45309;
  --accent-light: #d97706;
  --accent-dim: rgba(180,83,9,0.08);
  --gold: #f59e0b;
  --text: #09090b;
  --text-heading: #09090b;
  --text-muted: #71717a;
  --border: #e4e4e7;
  --border-strong: #d4d4d8;
  --shadow: rgba(0,0,0,0.06);
  --amazon-orange: #FF9900;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  color: #09090b;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-heading);
  line-height: 1.35;
  font-weight: 700;
}

h1 { font-size: 2.2rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #e4e4e7; }
h3 { font-size: 1.25rem; margin-top: 1.8rem; margin-bottom: 0.8rem; color: var(--accent); }
h4 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.6rem; color: var(--text-heading); }
h5 { font-size: 1rem; margin-top: 1.2rem; margin-bottom: 0.5rem; }
h6 { font-size: 0.95rem; margin-top: 1rem; margin-bottom: 0.4rem; color: var(--text-muted); }

p { margin-bottom: 1rem; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-hover); }
img { max-width: 100%; height: auto; }
ul, ol { margin: 1rem 0 1rem 1.5rem; }
li { margin-bottom: 0.5rem; }
strong { color: var(--text-heading); }
sup { color: var(--accent); font-size: 0.75rem; }

/* === Header === */
header, .site-header, .header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-heading);
  text-decoration: none;
}

.logo em { font-style: normal; color: var(--blue); }

.main-nav, nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.main-nav a, nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
}

.main-nav a:hover, .main-nav a.active, nav a:hover, nav a.active {
  color: var(--blue);
  background: var(--blue-dim);
}

/* Hamburger */
.hamburger {

  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; }

/* === Content === */
.content, main.content, .article-container, main.article-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.article-container article {
  line-height: 1.8;
}

.article-container article a { text-decoration: underline; text-underline-offset: 3px; }
.article-container article a:hover { color: var(--accent); text-decoration: underline; }

.article-container article p {
  margin-bottom: 1rem;
  color: #111111;
  font-weight: 400;
}

.article-container article h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-container article h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.article-container article h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-container article ul,
.article-container article ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-container article li {
  margin-bottom: 0.5rem;
  color: #111111;
  font-weight: 400;
}

.article-container article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.article-container article th,
.article-container article td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.article-container article th {
  color: var(--text-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-container .product-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* === Breadcrumb === */
.breadcrumb, nav[aria-label="Breadcrumb"] { 
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; 
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem;
  overflow: hidden;
}
.breadcrumb a, nav[aria-label="Breadcrumb"] a { color: var(--text-muted); }
.breadcrumb a:hover, nav[aria-label="Breadcrumb"] a:hover { color: var(--accent); }
.breadcrumb > *:last-child, nav[aria-label="Breadcrumb"] > *:last-child { 
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; 
  max-width: 260px; display: inline-block; vertical-align: middle;
}

/* === Article Meta === */
.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* === Hero Image === */
.hero-image, .product-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1rem 0 1.5rem;
}

/* === TOC === */
nav.toc, div.toc {
  background: var(--card-warm) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  margin: 1.5rem 0 2rem !important;
  display: block !important;
}

nav.toc h2, nav.toc h3, nav.toc strong,
div.toc h2, div.toc h3, div.toc strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.8rem !important;
  color: var(--accent);
  border: none !important;
  padding: 0 !important;
  display: block;
}

nav.toc ul, nav.toc ol,
div.toc ul, div.toc ol { margin: 0 !important; padding-left: 1.2rem !important; }
nav.toc li, div.toc li { margin-bottom: 0.4rem; }
nav.toc a, div.toc a { color: var(--text); font-size: 0.9rem; text-decoration: none !important; }
nav.toc a:hover, div.toc a:hover { color: var(--accent); text-decoration: underline !important; }

/* Alte 2-Spalten-TOC-Layouts normalisieren */
nav.toc table, div.toc table,
nav.toc td, div.toc td,
nav.toc tr, div.toc tr { display: block !important; border: none !important; padding: 0 !important; }

/* === Info Box === */
.info-box {
  background: var(--card-warm);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.gut-zu-wissen {
  background: var(--card-warm);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.gut-zu-wissen ul { list-style: none; padding: 0; margin: 0.5rem 0 0; }
.gut-zu-wissen ul li { margin: 0.25rem 0; }
.gut-zu-wissen ul li::before { content: "· "; opacity: 0.5; }

.info-box h3 { margin-top: 0; font-size: 1rem; }
.info-box p { margin: 0; }
.info-box strong { color: var(--accent); }

/* === Warning Box === */
.warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02));
  border-left: 4px solid var(--danger);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

/* === Tables === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

thead {
  background: var(--bg-dark);
}

thead th,
.article-container article thead th {
  color: white !important;
  font-weight: 700;
  text-align: left;
  padding: 0.8rem 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

tbody td {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
  color: var(--text);
}

tbody tr:hover { background: rgba(37, 99, 235, 0.04); }

.comparison-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* === Product Cards === */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px var(--shadow);
}

.product-card .badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card .badge.gold {
  background: linear-gradient(135deg, var(--gold), #1d4ed8);
}

.product-card img { max-height: 220px; object-fit: contain; margin: 1rem auto; display: block; }

.product-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
  font-size: 0.85rem;
}

.product-specs .spec {
  background: var(--card-warm);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.product-specs .spec-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  display: block;
}

.product-specs .spec-value {
  color: var(--text-heading);
  font-weight: 600;
}

/* === Pro/Con Lists === */
.pro-con { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }

.pro-list, .con-list {
  background: var(--card-warm);
  border-radius: 12px;
  padding: 1.2rem;
  border: 1px solid var(--border);
}

.pro-list h4 { color: var(--success); margin-bottom: 0.8rem; font-size: 0.9rem; font-family: 'Inter', system-ui, sans-serif; }
.con-list h4 { color: var(--danger); margin-bottom: 0.8rem; font-size: 0.9rem; font-family: 'Inter', system-ui, sans-serif; }

.pro-list li::marker { color: var(--success); }
.con-list li::marker { color: var(--danger); }

/* === Author Box === */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--card-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}

.author-box h3 { margin-top: 0; color: var(--accent); font-size: 1rem; font-family: 'Inter', system-ui, sans-serif; }
.author-box p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* === Source List === */
.source-list { margin: 2rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

.source-list h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.source-list ol { margin-left: 1.2rem; font-size: 0.82rem; color: var(--text-muted); }
.source-list li { margin-bottom: 0.3rem; }

/* === Hero (Design V3 — two-column grid) === */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--blue-dim); color: var(--blue);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem; border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37,99,235,0.15);
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.05em; color: var(--black);
  margin-bottom: 1.25rem;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1rem; color: var(--gray-500);
  line-height: 1.75; max-width: 440px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-actions .btn { font-size: 0.88rem; padding: 0.6rem 1.4rem; }
.hero-social-proof {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; color: var(--gray-500);
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: white;
}
.avatar-stack .av:first-child { margin-left: 0; }
.av-1 { background: #6366f1; }
.av-2 { background: #0ea5e9; }
.av-3 { background: #10b981; }
.stars { color: #f59e0b; letter-spacing: -1px; font-size: 0.7rem; }
/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--gray-100);
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}
.hero-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 40%);
}
/* Floating cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 0.75rem;
  backdrop-filter: blur(10px);
}
.float-card.card-1 { bottom: -1rem; left: -1.5rem; }
.float-card.card-2 { top: 1.5rem; right: -1.5rem; }
.float-card .fc-icon { font-size: 1.4rem; }
.float-card .fc-label { font-size: 0.68rem; color: var(--gray-500); font-weight: 500; }
.float-card .fc-value { font-size: 0.88rem; font-weight: 700; color: var(--black); }
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #f0fdf4; color: #16a34a;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.25rem 0.6rem; border-radius: 100px;
  border: 1px solid #bbf7d0;
}
/* Hero CTA (legacy compat) */
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--blue); color: white;
  padding: 0.9rem 2rem; border-radius: 12px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all 0.3s; white-space: nowrap;
}
.hero-cta:hover { background: var(--blue-hover); color: white; transform: translateY(-2px); box-shadow: 0 10px 40px rgba(37,99,235,0.4); }

/* Featured Section */
.featured-section { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; }

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-heading);
}

.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin-bottom: 3rem; }

.featured {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.featured-img img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; }
.featured-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-weight: 700; margin-bottom: 0.8rem; }
.featured h2 { border: none; padding: 0; margin-top: 0; }
.featured p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.featured-price { font-family: 'Inter', system-ui, sans-serif; font-size: 1.5rem; color: var(--accent); font-weight: 700; }
.featured-price small { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }

/* Card Grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 40px var(--shadow);
}

.card-img { height: 220px; overflow: hidden; position: relative; }

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

.card-body { padding: 1.5rem; }

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--text-heading);
}

.card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.card-meta { display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem 1.2rem; }

.card-meta span { font-size: 0.78rem; color: var(--text-muted); }

.card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}

.card:hover .card-arrow { background: var(--accent); color: white; }

/* Article Cards (legacy) */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin: 2rem 0; }

.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--border-strong);
}

.article-card .card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.article-card .card-image .card-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.article-card .card-body { padding: 1.2rem; }

.article-card .card-body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text-heading);
}

.article-card .card-body p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* === Stats Bar === */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin: 2rem 0; }

.stat-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
}

.stat-label-item { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Stats Bar (Homepage V3) */
.stats-bar {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 2rem;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.stats-bar .stat-item { text-align: center; background: none; border: none; padding: 0; }
.stat-n {
  font-size: 2rem; font-weight: 900;
  letter-spacing: -0.05em; color: var(--black);
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-700,#3f3f46) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.stat-l { font-size: 0.75rem; color: var(--gray-500,#71717a); font-weight: 500; margin-top: 0.2rem; }

/* === Rating === */
.rating { color: var(--amazon-orange); font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { color: var(--text-muted); font-size: 0.85rem; margin-left: 0.5rem; }

/* === Footer === */
footer, .site-footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  background: var(--bg-dark);
  color: white;
}

.footer-inner, footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  color: white;
  font-size: 0.85rem;
}

.footer-logo {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.footer-logo em { color: var(--accent); font-style: normal; }

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-col p { line-height: 1.6; margin: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  
}

.footer-bottom div a {
  margin-left: 1.5rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom div a:hover { color: var(--accent); }

footer a, .site-footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
footer a:hover, .site-footer a:hover { color: var(--accent); }

.affiliate-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); opacity: 0.7; margin-top: 0.5rem; }

/* === Code Blocks === */
pre {
  background: var(--bg-dark);
  color: #e0e0e0;
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  font-family: 'Inter', monospace;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

code {
  background: var(--card-warm);
  color: var(--accent);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Inter', monospace;
  font-size: 0.9em;
}

pre code { background: none; color: inherit; padding: 0; }

/* === Blockquotes === */
blockquote {
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
  background: var(--card-warm);
  border-radius: 0 12px 12px 0;
}

blockquote p:last-child { margin-bottom: 0; }

/* === HR === */
hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

hr.tight { margin: 1rem 0; }

/* === Utility Classes === */
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--accent) !important; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag {
  display: inline-block;
  background: var(--card-warm);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
}

/* === Amazon CTA Buttons === */
.amazon-cta, .btn-amazon {
  display: inline-block;
  background: var(--amazon-orange);
  color: #0F1111;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}

.amazon-cta:hover, .btn-amazon:hover {
  background: #ffae33;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 153, 0, 0.3);
}

/* === Buttons (Modern) === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.48rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Inter', system-ui, sans-serif;
}

.btn-ghost { color: var(--text-muted); background: transparent; }
.btn-ghost:hover { background: var(--bg); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(37,99,235,0.4);
}
.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
  transform: translateY(-1px);
}

.btn-outline-dark {
  color: var(--black);
  background: transparent;
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--text-muted); background: var(--bg); }

.btn-white { background: #fff; color: var(--black); }
.btn-white:hover { background: var(--bg); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }

.btn-ghost-white { color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* === Modern Grid Components === */
.bento-section { max-width: 1200px; margin: 0 auto; padding: 4.5rem 2rem; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.section-head a:hover { text-decoration: underline; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.875rem;
}

.bento-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--black);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bento-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-cell:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.bento-cell:hover::before { opacity: 1; }

.bento-cell.wide { grid-column: span 2; }
.bento-cell.tall { grid-row: span 2; }
.bento-cell.bento-featured {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f3ff 100%);
  border-color: rgba(37,99,235,0.15);
  position: relative;
  overflow: hidden;
}
.bento-cell.bento-featured::after {
  content: attr(data-icon);
  position: absolute;
  bottom: -0.5rem;
  right: 0.5rem;
  font-size: 4rem;
  opacity: 0.07;
  pointer-events: none;
}
.bento-cell.bento-featured .bc-icon { font-size: 2rem; margin-bottom: 0.25rem; }
.bento-cell.bento-featured .bc-label { color: var(--blue); }
.bento-cell.bento-featured .bc-title { color: var(--black); }

.bento-cell.accent {
  background: linear-gradient(135deg, #1e3a5f 0%, #1a2d4a 100%);
  border-color: rgba(37,99,235,0.2);
}
.bento-cell.accent::before { background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.2) 0%, transparent 60%); }
.bento-cell.accent:hover { box-shadow: 0 12px 40px rgba(37,99,235,0.2); }
.bento-cell.accent .bc-label { color: rgba(255,255,255,0.5); }
.bento-cell.accent .bc-icon { font-size: 1.8rem; }
.bento-cell.accent .bc-title { color: #fff; }
.bento-cell.accent .bc-desc { color: rgba(255,255,255,0.6); }
.bento-cell.accent .bc-count { color: rgba(255,255,255,0.6); }

.bento-cell.dark {
  background: var(--black);
  color: #fff;
  border-color: transparent;
}
.bento-cell.dark::before { background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.15) 0%, transparent 60%); }
.bento-cell.dark:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.bc-icon { font-size: 1.5rem; line-height: 1; }
.bc-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); }
.bento-cell.dark .bc-label { color: rgba(255,255,255,0.5); }
.bc-title { font-size: 0.95rem; font-weight: 700; line-height: 1.35; }
.bento-cell.tall .bc-title { font-size: 1.15rem; }
.bento-cell.dark .bc-title { color: #fff; }
.bc-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.bento-cell.dark .bc-desc { color: rgba(255,255,255,0.55); }
.bc-count {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}
.bento-cell.dark .bc-count { color: rgba(255,255,255,0.6); }
.bc-arrow { color: var(--gray-300); font-size: 1rem; margin-top: auto; align-self: flex-end; transition: transform 0.2s; }
.bento-cell:hover .bc-arrow { transform: translate(3px, -3px); color: var(--blue); }
.bento-cell.dark:hover .bc-arrow { color: #fff; }

/* Atlas cell special */
.bento-cell.atlas-cell {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: white;
  border: none;
  padding: 0;
  overflow: hidden;
}
.atlas-cell-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: 0.5; display: block; }
.atlas-cell-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.atlas-cell .bc-label { color: rgba(255,255,255,0.5); }
.atlas-cell .bc-title { color: #fff; font-size: 1rem; }
.atlas-cell .bc-desc { color: rgba(255,255,255,0.5); }
.map-dots { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-top: 0.5rem; }
.map-dot {
  font-size: 0.65rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

/* === Article Grid (Modern) === */
.articles-section { max-width: 1200px; margin: 0 auto; padding: 0 2rem 4.5rem; }

.articles-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.a-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: #fff;
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.a-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: transparent; }
.a-card.big { grid-row: span 2; }
.a-thumb { overflow: hidden; background: var(--gray-100); width: 100%; aspect-ratio: 16/9; }
.a-card.big .a-thumb { aspect-ratio: 3/2; }
.a-thumb img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.a-card { height: 100%; }
.a-card:hover .a-thumb img { transform: scale(1.06); }
.a-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.a-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.a-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.a-card.big .a-body h3 { font-size: 1.2rem; line-height: 1.3; }
.a-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.a-footer {
  padding: 0.7rem 1.1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a-author { display: flex; align-items: center; gap: 0.5rem; }
.a-author img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }
.a-author span { font-size: 0.72rem; color: var(--text-muted); }
.a-author strong { color: var(--gray-700); font-weight: 600; }
.read-bar {
  height: 2px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
  width: 60px;
}
.read-bar-fill { height: 100%; background: var(--blue); border-radius: 2px; }

/* === Dark Feature Band === */
.feature-band {
  background: var(--black);
  padding: 5rem 2rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.feature-band::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.feature-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 200px;
  pointer-events: none;
}
.feature-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fb-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(37,99,235,0.8);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fb-label::after { content: ''; flex: 1; height: 1px; background: rgba(37,99,235,0.3); }
.feature-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.feature-band p { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 1.75rem; }
.fb-actions { display: flex; gap: 0.75rem; }
.fb-visual { position: relative; }
.fb-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.fb-card-img { aspect-ratio: 16/9; overflow: hidden; }
.fb-card-img img { width:100%; height:100%; object-fit:cover; opacity:0.8; display:block; }
.fb-card-body { padding: 1.25rem; }
.fb-card-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(37,99,235,0.8); margin-bottom: 0.5rem; }
.fb-card-title { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.4; }
.fb-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; }
.fb-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
}
.fb-mini:hover { background: rgba(255,255,255,0.08); }
.fb-mini-tag { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(37,99,235,0.7); margin-bottom: 0.3rem; }
.fb-mini-title { font-size: 0.8rem; font-weight: 600; color: #fff; line-height: 1.35; }

/* === Panels === */
.panels-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.panel {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.panel-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
}

.panel-head h3 {
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panel-head a { font-size: 0.75rem; color: var(--blue); text-decoration: none; font-weight: 600; }

.panel-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s;
}

.panel-row:last-child { border-bottom: none; }
.panel-row:hover { background: var(--gray-50); }

.p-num { font-size: 0.65rem; font-weight: 700; color: var(--gray-400); width: 1.25rem; flex-shrink: 0; }
.p-info { flex: 1; }
.p-info h4 { font-size: 0.83rem; font-weight: 600; color: var(--black); line-height: 1.3; }
.p-info span { font-size: 0.73rem; color: var(--text-muted); }
.p-arrow { color: var(--gray-300); font-size: 0.85rem; transition: all 0.15s; }
.panel-row:hover .p-arrow { color: var(--blue); transform: translateX(3px); }
.p-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: #eff6ff;
  color: var(--blue);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(37,99,235,0.15);
}

/* === Scroll Progress === */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 2px;
  background: var(--blue);
  width: 0%;
  transition: width 0.1s linear;
}

/* === Fade In Animation === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.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.3s; }

/* === Preview Bar (remove on production) === */
.preview-bar { background: var(--black); color: rgba(255,255,255,0.7); text-align: center; padding: 0.55rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; }
.preview-bar strong { color: #fff; }

/* === Responsive === */
/* ── RESPONSIVE ─────────────────────── */

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text, #111);
  padding: 0.25rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .hero { gap: 3rem; padding: 4rem 1.5rem 3rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-cell.wide { grid-column: span 2; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .a-card.big { grid-row: auto; }
  .a-card.big .a-thumb { aspect-ratio: 16/9; }
  .feature-band-inner { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  /* Header */
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e4e4e7;
    flex-direction: column;
    padding: 0.75rem 1.25rem;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    z-index: 999;
  }
  nav.open { display: flex; }
  nav a {
    padding: 0.6rem 0;
    border-bottom: 1px solid #e4e4e7;
    font-size: 0.9rem;
  }
  nav a:last-child { border-bottom: none; }
  .header-right .btn-ghost { display: none; }
  .header-inner { gap: 1rem; }

  /* Hero → single column */
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.25rem 2.5rem;
  }
  .hero-visual { order: -1; }
  .hero-img-wrap { aspect-ratio: 16/9; border-radius: 14px; }
  .float-card { display: none; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-wrap: wrap; }

  /* Stats bar */
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }

  /* Bento */
  .bento-section { padding: 3rem 1.25rem; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-cell.tall { grid-row: auto; }

  /* Articles */
  .articles-section { padding: 0 1.25rem 3rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .a-card.big { grid-row: auto; }
  .a-card.big .a-thumb { aspect-ratio: 16/9; }

  /* Feature band */
  .feature-band { padding: 3.5rem 1.25rem; }
  .feature-band-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fb-mini-cards { grid-template-columns: 1fr; }

  /* Panels */
  .panels-section { grid-template-columns: 1fr; padding: 3rem 1.25rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-bottom {
  max-width: 1200px;
  margin: 0 auto; flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-bottom a { margin-left: 0; }

  /* Articles (content) */
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .pro-con { grid-template-columns: 1fr; }
  .article-meta { flex-direction: column; gap: 0.5rem; }
  .author-box { flex-direction: column; text-align: center; }
  .content { padding: 1.5rem 1rem 3rem; }
  .card-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; padding: 1.5rem; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  .hero { padding: 2rem 1rem 2rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1.25rem 1rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom {
  max-width: 1200px;
  margin: 0 auto; flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom div a { margin-left: 1rem; }
  .product-specs { grid-template-columns: 1fr 1fr; }
}


/* ── Cookie Banner ────────────────────────────────────────────────────────── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  padding: 1rem 1.5rem;
  max-width: 540px;
  width: calc(100% - 2rem);

  align-items: center;
  gap: 1rem;
  z-index: 9999;
  font-size: 0.88rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; flex: 1; color: var(--text); line-height: 1.5; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.btn-accept, .btn-reject {
  padding: 0.45rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.btn-accept { background: var(--accent); color: #fff; }
.btn-accept:hover { opacity: 0.9; }
.btn-reject { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-reject:hover { border-color: var(--text-muted); }

/* === Custom additions for homepage === */
.link-more {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.link-more:hover { color: var(--blue-hover); }

/* Gleiche Kartenhöhe */
.articles-grid { align-items: stretch; }
.articles-grid .a-card { display: flex; flex-direction: column; height: 100%; }
.articles-grid .a-body { flex: 1; }

/* Unsere Werte — 3-Spalten */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; padding: 3rem 0; }
.value-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: #fff; }
.value-item p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* === Figure & Figcaption === */
.article-container figure, main figure {
  margin: 2rem 0;
}
.article-container figure img, main figure img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.article-container figcaption, main figcaption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.4;
}


/* Affiliate Textlinks */
a.affiliate-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
a.affiliate-link:hover {
  text-decoration: underline;
  border-bottom-color: var(--accent);
  opacity: 0.85;
}

/* ═══════════════════════════════════════
   ANIMATED CTAs — affiliate-link upgrade
   ═══════════════════════════════════════ */

/* 1. Inline-Textlink mit Underline-Draw-Animation */
a.affiliate-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease, color 0.2s ease;
  padding-bottom: 1px;
}
a.affiliate-link:hover {
  background-size: 100% 2px;
  color: var(--accent);
  opacity: 1;
  text-decoration: none;
}

/* 2. Inline-CTA mit Pfeil-Bounce */
a.cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
  transition: gap 0.2s ease;
}
a.cta-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}
a.cta-arrow:hover { gap: 10px; }
a.cta-arrow:hover::after { transform: translateX(4px); }

/* 3. Glow-Pulse CTA — zieht den Blick */
a.cta-glow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  animation: cta-glow-pulse 2.5s ease-in-out infinite;
  transition: letter-spacing 0.2s ease, color 0.2s;
}
a.cta-glow:hover {
  letter-spacing: 0.03em;
  animation: none;
  opacity: 0.85;
}
@keyframes cta-glow-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* 4. Shake-Attention bei Pageload (einmalig) */
a.cta-shake {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px dashed var(--accent);
  animation: cta-shake-once 0.6s ease 2s 1;
  transition: border-style 0.2s, letter-spacing 0.2s;
}
a.cta-shake:hover {
  border-style: solid;
  letter-spacing: 0.02em;
}
@keyframes cta-shake-once {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-4px); }
  40%     { transform: translateX(4px); }
  60%     { transform: translateX(-3px); }
  80%     { transform: translateX(3px); }
}

/* CTA Block Spacing */
p.cta-block {
  margin: 1.5rem 0;
  font-size: 1.05rem;
}

/* Internal Links Block */
.internal-links-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.internal-links-block h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.internal-links-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .5rem;
}
.internal-links-block ul li a {
  display: block;
  padding: .4rem 0;
  color: var(--accent);
  text-decoration: none;
  font-size: .95rem;
}
.internal-links-block ul li a::before {
  content: "→ ";
  opacity: .6;
}
.internal-links-block ul li a:hover {
  text-decoration: underline;
}

/* Footer strong as h4 */
.footer-col strong { display: block; color: white; font-size: 1rem; margin-bottom: 0.75rem; font-weight: 700; }
