/* ============================================================
   FEUERLOESCH-RATGEBER.DE — Design System v2
   Elegant B2B: Tiefrot + Anthrazit, kein Gelb/Orange
   ============================================================ */

:root {
  --red:        #BE1219;
  --red-dark:   #8F0E13;
  --red-mid:    #D41920;
  --red-light:  #FEF2F2;
  --red-border: #FECACA;
  --dark:       #0D1117;
  --dark-2:     #161D28;
  --text:       #1F2937;
  --text-2:     #4B5563;
  --text-muted: #9CA3AF;
  --border:     #E5E7EB;
  --bg:         #FFFFFF;
  --bg-subtle:  #F8F9FB;
  --bg-section: #F3F4F6;
  --white:      #FFFFFF;
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.07);
  --shadow:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.11);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.13);
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  18px;
  --max-w:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.7;
  color: var(--text); background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.3em; }

/* ── Layout ── */
.container       { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow{ max-width: 840px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1 { font-size: 2.3rem; line-height: 1.22; font-weight: 700; color: var(--text); }
h2 { font-size: 1.7rem; line-height: 1.3;  font-weight: 700; color: var(--text); margin-top: 2.2rem; margin-bottom: 0.7rem; }
h3 { font-size: 1.2rem; line-height: 1.35; font-weight: 700; color: var(--text); margin-top: 1.6rem; margin-bottom: 0.45rem; }
h4 { font-size: 1rem;   font-weight: 700; margin-bottom: 0.35rem; }
p  { margin-bottom: 1rem; }
strong { font-weight: 700; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
  transition: background 0.16s, border-color 0.16s, color 0.16s, box-shadow 0.16s;
  white-space: nowrap; line-height: 1.2;
}
.btn-lg  { padding: 15px 30px; font-size: 1rem; border-radius: 10px; }
.btn-sm  { padding: 8px 16px; font-size: 0.875rem; }

.btn-primary, .btn-red {
  background: var(--red); color: #fff; border-color: var(--red);
}
.btn-primary:hover, .btn-red:hover {
  background: var(--red-dark); border-color: var(--red-dark); color: #fff; text-decoration: none;
}
.btn-ghost {
  background: transparent; color: var(--red); border-color: var(--red);
}
.btn-ghost:hover {
  background: var(--red); color: #fff; text-decoration: none;
}
.btn-ghost-light {
  background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff; text-decoration: none;
}
.btn-dark {
  background: var(--dark-2); color: #fff; border-color: var(--dark-2);
}
.btn-dark:hover {
  background: #0a0f18; color: #fff; text-decoration: none;
}
.btn-outline {
  background: transparent; color: var(--red); border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red); color: #fff; text-decoration: none;
}
.btn-orange, .btn-orange:visited {
  background: var(--red); color: #fff; border-color: var(--red);
}
.btn-orange:hover {
  background: var(--red-dark); border-color: var(--red-dark); color: #fff; text-decoration: none;
}
/* btn-outline on dark backgrounds */
.cta-section .btn-outline,
.section-dark .btn-outline,
.aff-banner-hero .btn-outline,
.aff-banner-sidebar .btn-outline {
  color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35);
}
.cta-section .btn-outline:hover,
.section-dark .btn-outline:hover,
.aff-banner-hero .btn-outline:hover,
.aff-banner-sidebar .btn-outline:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); color: #fff;
}

/* ── Header ── */
.site-header {
  background: var(--dark);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; align-items: center; gap: 6px;
  font-size: 1.25rem; font-weight: 700; color: var(--white);
  text-decoration: none; letter-spacing: -0.3px;
}
.logo-icon { color: var(--red); line-height: 1; font-size: 1.3rem; }
.logo span { color: var(--red); }
.logo:hover { text-decoration: none; color: var(--white); }

/* Desktop Nav */
nav .nav-desktop {
  display: flex; list-style: none; padding: 0; margin: 0; gap: 2px;
}
nav .nav-desktop > li { position: relative; margin-bottom: 0; }
nav .nav-desktop > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; color: rgba(255,255,255,0.78);
  font-size: 0.88rem; font-weight: 500; border-radius: 6px;
  transition: color 0.14s, background 0.14s;
}
nav .nav-desktop > li > a:hover,
nav .nav-desktop > li > a.active,
nav .nav-desktop > li.is-open > a {
  color: #fff; background: rgba(255,255,255,0.09); text-decoration: none;
}
.nav-arrow { font-size: 0.65rem; opacity: 0.6; margin-left: 2px; }

.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); min-width: 220px;
  list-style: none; padding: 6px; margin: 0;
  border-top: 3px solid var(--red);
  z-index: 1000;
}
.dropdown-menu li { margin: 0; }
.dropdown-menu li a {
  display: block; padding: 9px 14px; color: var(--text-2);
  font-size: 0.875rem; font-weight: 500; border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.dropdown-menu li a:hover {
  background: var(--red-light); color: var(--red); text-decoration: none;
}
nav .nav-desktop > li.is-open .dropdown-menu { display: block; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.8); font-size: 1.5rem; padding: 6px;
  line-height: 1;
}

/* Mobile Nav */
.nav-mobile {
  display: none; background: var(--dark-2);
  padding: 14px 20px 18px; border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile.open { display: block; }
.nav-mobile-group { margin-bottom: 14px; }
.nav-mobile-group-title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); padding-bottom: 5px;
}
.nav-mobile a {
  display: block; padding: 8px 0; color: rgba(255,255,255,0.75);
  font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:hover { color: #fff; text-decoration: none; }

/* ── Hero ── */
.hero {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 75% 20%, rgba(190,18,25,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(190,18,25,0.08) 0%, transparent 50%);
  padding: 72px 0 64px; color: #fff;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 20px;
  padding: 5px 14px; margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.hero h1 { color: #fff; font-size: 2.7rem; margin-bottom: 20px; font-weight: 700; }
.hero h1 em { font-style: normal; color: #F4A0A4; } /* sehr dezentes rosa-rot statt gelb */
.hero-lead {
  font-size: 1.07rem; color: rgba(255,255,255,0.68); line-height: 1.65;
  max-width: 520px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.82rem;
}
.trust-icon {
  width: 16px; height: 16px; flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}

/* Hero Visual (right column) */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-product-showcase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 32px 28px; text-align: center;
  backdrop-filter: blur(4px);
}
.hero-product-showcase img {
  width: 200px; height: 200px; object-fit: contain; margin: 0 auto 16px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.hero-price-tag {
  background: var(--red); color: #fff;
  border-radius: var(--radius-lg); padding: 14px 20px;
  margin-top: 12px;
}
.hero-price-tag .price { font-size: 1.9rem; font-weight: 700; display: block; }
.hero-price-tag .price-note { font-size: 0.78rem; opacity: 0.8; }

/* ── Page Hero (Unterseiten) ── */
.page-hero {
  background: var(--dark);
  background-image: radial-gradient(ellipse at 80% 0%, rgba(190,18,25,0.18) 0%, transparent 55%);
  color: #fff; padding: 48px 0 42px;
}
.page-hero h1 { color: #fff; font-size: 2rem; margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.68); font-size: 1.02rem; max-width: 620px; }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--bg-section); padding: 10px 0; border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; font-size: 0.8rem; flex-wrap: wrap; }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: '/'; color: var(--text-muted); margin-right: 6px; }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb li:last-child { color: var(--text-2); font-weight: 600; }

/* ── Sections ── */
.section    { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 88px 0; }
.section-gray   { background: var(--bg-section); }
.section-subtle { background: var(--bg-subtle); }
.section-dark   { background: var(--dark); color: #fff; }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 1.9rem; }
.section-title p { color: var(--text-2); font-size: 1rem; max-width: 560px; margin: 10px auto 0; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 30px 0;
}
.stats-inner {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center;
}
.stat-item .stat-num   { font-size: 2rem; font-weight: 700; color: #fff; display: block; }
.stat-item .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ── Cards ── */
.card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  overflow: hidden; transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-body   { padding: 24px; }
.card-header { padding: 18px 24px; border-bottom: 1px solid var(--border); }
.card-footer { padding: 14px 24px; border-top: 1px solid var(--border); background: var(--bg-subtle); }

/* Feature Cards */
.feature-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow-xs); transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.feature-card:hover {
  box-shadow: var(--shadow); border-color: #FECACA; transform: translateY(-2px);
}
.fc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--red-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--red);
}
.fc-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.feature-card h3 { font-size: 1.05rem; margin-top: 0; margin-bottom: 8px; }
.feature-card p  { font-size: 0.9rem; color: var(--text-2); margin-bottom: 0; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* Product Cards */
.product-card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-xs); overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card .pc-img {
  background: var(--bg-subtle); padding: 20px;
  display: flex; align-items: center; justify-content: center; min-height: 180px;
  border-bottom: 1px solid var(--border);
}
.product-card .pc-img img { width: 130px; height: 130px; object-fit: contain; }
.product-card .pc-badge {
  background: var(--red); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  display: inline-block; border-radius: 0 0 6px 0;
}
.product-card .pc-body { padding: 18px 20px; }
.product-card .pc-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.product-card .pc-price { font-size: 1.4rem; font-weight: 700; color: var(--red); margin-bottom: 3px; }
.product-card .pc-price-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }
.product-card .pc-features { list-style: none; padding: 0; margin-bottom: 14px; }
.product-card .pc-features li {
  font-size: 0.84rem; padding: 3px 0; display: flex; gap: 6px; align-items: flex-start; color: var(--text-2);
}
.product-card .pc-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Compare Table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th {
  background: var(--dark); color: #fff;
  padding: 13px 16px; text-align: left; font-weight: 600; font-size: 0.85rem;
}
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg-subtle); }
.compare-table .winner { color: var(--red); font-weight: 700; }
.compare-table .check  { color: #16A34A; font-weight: 700; }
.compare-table .cross  { color: var(--red); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); border: 1px solid var(--border); }

/* Info Boxes */
.info-box {
  border-left: 3px solid var(--red); background: var(--red-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 1.4rem 0;
}
.info-box.green  { border-color: #16A34A; background: #F0FDF4; }
.info-box.orange { border-color: #D97706; background: #FFFBEB; }
.info-box .ib-title { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }

/* Checklist */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.93rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Step List */
.step-list { list-style: none; padding: 0; }
.step-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.step-list li:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--red); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}

/* Highlight Box */
.highlight-box {
  background: var(--bg-subtle); border: 1px solid var(--red-border);
  border-radius: var(--radius-lg); padding: 26px 28px; margin: 2rem 0;
}
.highlight-box h3 { margin-top: 0; }

/* Tags */
.tag         { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: var(--red-light); color: var(--red); }
.tag-green   { background: #F0FDF4; color: #16A34A; }
.tag-neutral { background: var(--bg-section); color: var(--text-2); }

/* ── Miete Price Boxes ── */
.miete-box {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-xs); overflow: hidden;
  text-align: center; transition: box-shadow 0.18s, border-color 0.18s;
}
.miete-box:hover { box-shadow: var(--shadow); border-color: var(--red-border); }
.miete-box-head { background: var(--dark); color: #fff; padding: 14px 18px; }
.miete-box-head h4 { color: #fff; margin: 0; font-size: 0.95rem; font-weight: 600; }
.miete-box-body { padding: 20px 18px; }
.miete-price      { font-size: 2rem; font-weight: 700; color: var(--red); }
.miete-price-year { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.miete-includes   { list-style: none; padding: 0; text-align: left; margin-bottom: 16px; }
.miete-includes li { font-size: 0.83rem; padding: 4px 0; display: flex; gap: 7px; color: var(--text-2); }
.miete-includes li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── Affiliate Banners ── */
.aff-banner-hero {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg); padding: 32px 36px;
  color: #fff; margin: 32px 0;
}
.aff-banner-hero .ab-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--red-mid); margin-bottom: 10px;
}
.aff-banner-hero h3 { color: #fff; font-size: 1.3rem; margin-top: 0; margin-bottom: 8px; }
.aff-banner-hero p  { color: rgba(255,255,255,0.7); margin-bottom: 18px; max-width: 520px; font-size: 0.93rem; }
.aff-banner-hero .ab-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.aff-banner-compact {
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin: 22px 0; flex-wrap: wrap;
}
.aff-banner-compact .abc-text strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.aff-banner-compact .abc-text span   { font-size: 0.84rem; color: var(--text-2); }

.aff-banner-sidebar {
  background: var(--dark-2); color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg); padding: 22px;
  text-align: center; position: sticky; top: 80px;
}
.aff-banner-sidebar-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.aff-banner-sidebar .abs-icon   { font-size: 1.8rem; margin-bottom: 4px; }
.aff-banner-sidebar .abs-label,
.aff-banner-sidebar .aff-banner-sidebar-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--red-mid); margin-bottom: 4px;
}
.aff-banner-sidebar strong      { display: block; color: #fff; font-size: 1rem; margin-bottom: 4px; }
.aff-banner-sidebar h4          { color: #fff; font-size: 1rem; margin-bottom: 7px; }
.aff-banner-sidebar p,
.aff-banner-sidebar span:not(.btn) { font-size: 0.82rem; color: rgba(255,255,255,0.62); display: block; margin-bottom: 10px; }
.aff-banner-sidebar .btn        { width: 100%; justify-content: center; margin-top: 6px; }
.aff-banner-sidebar .btn-primary,
.aff-banner-sidebar .btn-red,
.aff-banner-sidebar .btn-orange { background: var(--red); color: #fff; border-color: var(--red); }
.aff-banner-sidebar .btn-primary:hover,
.aff-banner-sidebar .btn-red:hover,
.aff-banner-sidebar .btn-orange:hover { background: var(--red-dark); border-color: var(--red-dark); }
.aff-banner-sidebar .abs-price  { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.aff-banner-sidebar .abs-price-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 14px; }

/* Content Layout (Article + Sidebar) */
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }

/* Sidebar: CTA banner always at bottom via flex order */
.content-layout aside {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.content-layout aside > * { margin-top: 0 !important; }
.content-layout aside .aff-banner-sidebar { order: 100; }

/* Sidebar banner as anchor tag */
a.aff-banner-sidebar { display: block; text-decoration: none; color: inherit; }
a.aff-banner-sidebar:hover { text-decoration: none; color: inherit; }

/* CTA section nested inside article gets card-like treatment */
article .cta-section,
.article-content .cta-section {
  border-radius: var(--radius-lg); margin: 2.5rem 0; padding: 44px 36px; text-align: center;
}
article .cta-section h3,
.article-content .cta-section h3 { color: #fff; font-size: 1.4rem; margin-top: 0; }
article .cta-section p,
.article-content .cta-section p { color: rgba(255,255,255,0.68); }
article .cta-section .cta-btns,
.article-content .cta-section .cta-btns { justify-content: center; }

/* Article */
.article-content h2 { border-left: 3px solid var(--red); padding-left: 14px; }
.article-content h3 { color: var(--red-dark); }
.article-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
.article-content th { background: var(--dark); color: #fff; padding: 11px 14px; text-align: left; font-size: 0.85rem; }
.article-content td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.article-content tr:nth-child(even) td { background: var(--bg-subtle); }

/* ── FAQ ── */
.faq-section { padding: 64px 0; background: var(--bg-subtle); }
.faq-list     { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 8px;
  overflow: hidden; width: 100%;
}
.faq-question {
  width: 100%; padding: 17px 20px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none; color: var(--text); background: none; border: none; text-align: left;
}
.faq-question:hover { background: var(--bg-subtle); }
.fq-arrow {
  color: var(--red); font-size: 0.8rem; transition: transform 0.2s;
  flex-shrink: 0; margin-left: 14px;
}
.faq-item.open .fq-arrow   { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 20px 18px; color: var(--text-2);
  font-size: 0.93rem; border-top: 1px solid var(--border);
}
.faq-answer p:first-child  { margin-top: 14px; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA Section ── */
.cta-section {
  background: var(--dark);
  background-image: radial-gradient(ellipse at 60% 0%, rgba(190,18,25,0.18) 0%, transparent 55%);
  color: #fff; padding: 72px 0; text-align: center;
}
.cta-section h2  { color: #fff; font-size: 2rem; margin-bottom: 14px; }
.cta-section p   { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 28px; font-size: 1rem; }
.cta-section .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Affiliate Disclaimer ── */
.affiliate-disclaimer {
  background: var(--bg-section); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 0.79rem; color: var(--text-muted); margin: 24px 0;
}

/* ── Footer ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 52px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; margin-top: 12px; }
.footer-col h5 {
  color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.14s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.79rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-visual       { display: none; }
  .content-layout    { grid-template-columns: 1fr; }
  .aff-banner-sidebar{ position: static; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: 52px 0 44px; }
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  nav .nav-desktop   { display: none; }
  .hamburger         { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .aff-banner-hero   { padding: 22px 20px; }
  .aff-banner-compact{ flex-direction: column; }
  .footer-inner      { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; }
  .cta-section h2    { font-size: 1.65rem; }
  .section, .section-lg { padding: 48px 0; }
  .stats-inner       { gap: 28px; }
  /* Prevent any box from exceeding viewport on mobile */
  .card, .feature-card, .miete-box, .product-card,
  .aff-banner-hero, .aff-banner-sidebar, .info-box,
  .highlight-box, .table-wrap { max-width: 100%; }
  /* CTA buttons full-width on small screens */
  .cta-section .cta-btns { flex-direction: column; align-items: center; }
  .cta-section .btn-lg { width: 100%; justify-content: center; max-width: 340px; }
  article .cta-section, .article-content .cta-section { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 16px; }
  h1 { font-size: 1.65rem; }
  .hero h1 { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .btn-lg { padding: 13px 22px; font-size: 0.95rem; }
}
