/* ===================================================
   bausparen.one — Design System 2026
   =================================================== */

/* --- Tokens --- */
:root {
  --green:       #16a34a;
  --green-d:     #15803d;
  --green-l:     #f0fdf4;
  --green-100:   #dcfce7;
  --green-200:   #bbf7d0;
  --navy:        #0f172a;
  --navy-l:      #1e293b;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1200px;
  --r:           12px;
  --r-lg:        20px;
  --r-sm:        8px;
  --shadow:      0 1px 3px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.10);
  --trans:       .18s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-d); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .35rem; }
table { border-collapse: collapse; width: 100%; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* --- Container --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

/* ===================================================
   HEADER — Fix, 1 Edit = alle Seiten
   =================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.site-header.scrolled {
  border-color: var(--gray-200);
  box-shadow: 0 1px 20px rgba(0,0,0,.07);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
@media (min-width: 768px) { .header-inner { padding: 0 32px; } }

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.1rem; font-weight: 700; color: var(--gray-900); text-decoration: none; flex-shrink: 0;
}
.site-logo:hover { color: var(--green); }
.logo-icon { flex-shrink: 0; }
.site-logo strong { color: var(--green); }

/* DESKTOP NAV */
.nav-desktop {
  display: none;
  align-items: center; gap: 4px;
}
@media (min-width: 900px) { .nav-desktop { display: flex; } }

.nav-link {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 500; color: var(--gray-600);
  transition: background var(--trans), color var(--trans);
}
.nav-link:hover, .nav-link.active {
  background: var(--green-l); color: var(--green-d);
}
.btn-header-cta {
  margin-left: 8px; padding: 9px 20px;
  background: var(--green); color: var(--white) !important;
  border-radius: var(--r-sm); font-size: .9rem; font-weight: 600;
  transition: background var(--trans), transform var(--trans);
}
.btn-header-cta:hover { background: var(--green-d); transform: translateY(-1px); }

/* HAMBURGER BUTTON */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; border-radius: var(--r-sm);
  transition: background var(--trans);
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger:hover { background: var(--gray-100); }
.bar {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
body.mob-no-scroll { overflow: hidden; }

/* Overlay */
.mob-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(10,20,40,.55); backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s ease;
}
.mob-overlay.open { display: block; opacity: 1; }
@media (min-width: 900px) { .mob-overlay { display: none !important; } }

/* Drawer */
.mob-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 999;
  width: min(360px, 92vw);
  background: #fff; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.mob-drawer.open { transform: translateX(0); }
@media (min-width: 900px) { .mob-drawer { display: none !important; } }

/* Drawer Header */
.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.mob-drawer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: .95rem; font-weight: 600; color: var(--navy); text-decoration: none;
}
.mob-drawer-logo strong { font-weight: 800; color: var(--green); }
.mob-drawer-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); transition: background var(--trans);
  flex-shrink: 0;
}
.mob-drawer-close:hover { background: var(--gray-200); }

/* Drawer Body */
.mob-drawer-body {
  flex: 1; overflow-y: auto; padding: 8px 0 16px;
  -webkit-overflow-scrolling: touch;
}

/* Section label */
.mob-section-label {
  font-size: .68rem; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .1em;
  padding: 16px 18px 6px;
}

/* Menu item */
.mob-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 18px; text-decoration: none;
  transition: background var(--trans);
  border-bottom: 1px solid var(--gray-50);
}
.mob-item:hover { background: var(--gray-50); }
.mob-item--active { background: #f0fdf4; }
.mob-item-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.mob-item-icon img { width: 42px; height: 42px; object-fit: cover; display: block; }
.mob-item-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mob-item-text strong { font-size: .9rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.mob-item-text span { font-size: .76rem; color: var(--gray-500); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mob-item-arrow { color: var(--gray-300); flex-shrink: 0; }
.mob-item:hover .mob-item-arrow { color: var(--green); }

/* Drawer Footer */
.mob-drawer-foot {
  padding: 14px 16px 20px;
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
  background: #fff;
}
.mob-drawer-cta {
  width: 100%; justify-content: center; font-size: .95rem; padding: 14px 20px;
}

/* Page offset for fixed header */
main { padding-top: 64px; }

/* ===================================================
   BUTTONS
   =================================================== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--r-sm); font-weight: 600; font-size: .95rem; transition: all var(--trans); cursor: pointer; text-decoration: none; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-d); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(22,163,74,.3); color: var(--white); }
.btn-ghost { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-ghost:hover { background: var(--green-l); color: var(--green-d); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--green-100); color: var(--green-d); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--r); }
.btn-xl { padding: 16px 40px; font-size: 1.05rem; border-radius: var(--r); }
.btn-cta-inline { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 600; border-bottom: 2px solid var(--green-200); padding-bottom: 1px; }
.btn-cta-inline:hover { color: var(--green-d); border-color: var(--green); }

/* ===================================================
   BREADCRUMB
   =================================================== */
.breadcrumb { padding: 12px 0; }
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: .84rem; color: var(--gray-500); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb li:last-child { color: var(--gray-700); font-weight: 500; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  background:
    linear-gradient(to right, rgba(10,25,47,.82) 0%, rgba(10,25,47,.55) 55%, rgba(10,25,47,.30) 100%),
    url('/assets/img/eigenheim-paar-vor-steht-sonnig-garten-frankfurt-bausparen.webp') center/cover no-repeat;
  padding: 80px 0 96px;
  overflow: hidden;
  position: relative;
}
.hero::before { content: none; }
.hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1fr 1fr; gap: 56px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(74,222,128,.2); color: #bbf7d0;
  border: 1px solid rgba(74,222,128,.35);
  padding: 5px 14px; border-radius: 99px;
  font-size: .82rem; font-weight: 600; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
  line-height: 1.15; color: #fff; margin-bottom: 18px;
  letter-spacing: -.02em; text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero h1 span { color: #4ade80; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.88); margin-bottom: 32px; line-height: 1.7; max-width: 520px; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.82); }
.trust-item svg { color: #4ade80; flex-shrink: 0; }

/* Hero outline button (on dark bg) */
.btn-hero-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-hero-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* Hero Calculator */
.hero-calc {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.25); padding: 28px 28px 24px;
  border: 1px solid rgba(255,255,255,.2);
}
.hc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hc-badge { background: var(--green); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .04em; }
.hc-head h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0; }
.hc-field { margin-bottom: 14px; }
.hc-label { display: flex; justify-content: space-between; font-size: .82rem; color: var(--gray-600); margin-bottom: 6px; font-weight: 500; }
.hc-label strong { color: var(--navy); }
.hc-slider { width: 100%; height: 4px; appearance: none; background: var(--gray-200); border-radius: 2px; cursor: pointer; outline: none; }
.hc-slider::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--green); box-shadow: 0 2px 6px rgba(22,163,74,.4); cursor: pointer; }
.hc-slider::-moz-range-thumb { width: 18px; height: 18px; border: none; border-radius: 50%; background: var(--green); cursor: pointer; }
.hc-results { background: var(--gray-50); border-radius: var(--r-sm); padding: 14px 16px; margin: 18px 0 14px; }
.hc-res-row { display: flex; justify-content: space-between; font-size: .83rem; color: var(--gray-600); padding: 4px 0; }
.hc-res-row strong { color: var(--navy); font-weight: 700; }
.hc-highlight { border-top: 1px solid var(--gray-200); margin-top: 6px; padding-top: 10px; font-weight: 600; }
.hc-highlight strong { font-size: 1rem; }
.hc-green { color: var(--green) !important; }
.hc-winner { background: linear-gradient(135deg,#f0fdf4,#dcfce7); border: 1px solid #bbf7d0; border-radius: var(--r-sm); padding: 10px 14px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 2px; }
.hc-winner-label { font-size: .72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .04em; }
.hc-winner-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.hc-cta { width: 100%; justify-content: center; }

/* Förderungs-Band */
.foerder-band { background:var(--green-l); border-top:1px solid #bbf7d0; border-bottom:1px solid #bbf7d0; padding:14px 0; }
.fb-inner { display:flex; flex-wrap:wrap; align-items:center; gap:12px 20px; }
.fb-label { font-size:.72rem; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:.08em; white-space:nowrap; }
.fb-items { display:flex; flex-wrap:wrap; align-items:center; gap:8px 16px; }
.fb-item { display:flex; flex-direction:column; text-decoration:none; transition:opacity var(--trans); }
.fb-item:hover { opacity:.8; }
.fb-item strong { font-size:.88rem; font-weight:800; color:var(--navy); line-height:1.2; }
.fb-item span { font-size:.72rem; color:var(--gray-600); }
.fb-plus { font-size:1rem; font-weight:700; color:var(--green); }
.fb-total { font-size:.88rem; color:var(--navy); margin-left:4px; }
.fb-total strong { font-weight:800; color:var(--green); }

/* Section eyebrow label */
.section-eyebrow { font-size: .78rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }

/* Savings Calculator Section */
.savings-section { background: var(--white); }
.savings-inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .savings-inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
.savings-text h2 { font-size: clamp(1.5rem,3.5vw,2.1rem); font-weight: 800; color: var(--navy); margin: 8px 0 16px; line-height: 1.2; }
.savings-text p { color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.savings-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.savings-list li { font-size: .9rem; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.savings-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.savings-calc { background: var(--gray-50); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--gray-200); }
.sc-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.sc-field { margin-bottom: 20px; }
.sc-label { display: flex; justify-content: space-between; font-size: .83rem; color: var(--gray-600); margin-bottom: 8px; font-weight: 500; }
.sc-label strong { color: var(--navy); }
.sc-compare { display: flex; flex-direction: column; gap: 1px; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--gray-200); }
.sc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; font-size: .87rem; }
.sc-row span { color: var(--gray-600); }
.sc-row strong { font-weight: 700; }
.sc-worst { background: #fff5f5; }
.sc-worst strong { color: #dc2626; }
.sc-best { background: #f0fdf4; }
.sc-best strong { color: var(--green); }
.sc-save { background: var(--navy); }
.sc-save span { color: rgba(255,255,255,.8); font-weight: 600; }
.sc-save strong { color: #4ade80; font-size: 1.05rem; }

/* Förderungs Section */
.foerder-section { background: var(--white); }
.foerder-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .foerder-grid { grid-template-columns: repeat(3, 1fr); } }
.foerder-card { background: var(--gray-50); border-radius: var(--r-lg); padding: 28px 24px; border: 1px solid var(--gray-200); position: relative; transition: box-shadow var(--trans), transform var(--trans); }
.foerder-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.foerder-card--top { background: linear-gradient(135deg,#f0fdf4,#dcfce7); border-color: #86efac; }
.foerder-top-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 14px; border-radius: 99px; white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; }
.foerder-icon { font-size: 1.8rem; margin-bottom: 10px; }
.foerder-amt { font-size: 1.4rem; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.foerder-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.foerder-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.foerder-link { font-size: .83rem; font-weight: 600; color: var(--green); text-decoration: none; }
.foerder-link:hover { text-decoration: underline; }

/* Anbieter Home Cards */
.anbieter-home { }
.ah-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .ah-grid { grid-template-columns: repeat(3, 1fr); } }
.ah-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--gray-200); padding: 24px; position: relative; transition: box-shadow var(--trans), transform var(--trans); }
.ah-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.ah-card--winner { border: 2px solid var(--green); box-shadow: 0 4px 20px rgba(22,163,74,.12); }
.ah-winner-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 16px; border-radius: 99px; white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; }
.ah-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.ah-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.ah-rating { font-size: .82rem; color: #f59e0b; font-weight: 600; }
.ah-rating span { color: var(--gray-600); margin-left: 2px; }
.ah-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.ah-stat { display: flex; justify-content: space-between; font-size: .85rem; padding-bottom: 8px; border-bottom: 1px solid var(--gray-100); }
.ah-stat span { color: var(--gray-500); }
.ah-stat strong { color: var(--navy); font-weight: 700; }
.ah-green { color: var(--green) !important; }
.ah-tag { display: inline-block; font-size: .72rem; font-weight: 600; color: var(--gray-500); background: var(--gray-100); padding: 2px 10px; border-radius: 99px; margin-bottom: 14px; }
.ah-tag--green { color: var(--green); background: var(--green-100); }
.ah-btn { width: 100%; justify-content: center; font-size: .87rem; padding: 10px 16px; }

/* Old stat items kept for backward compat */
.stat-item { text-align: center; padding: 16px; background: var(--gray-50); border-radius: var(--r-sm); }
.stat-number { font-size: 1.6rem; font-weight: 800; color: var(--green); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--gray-500); margin-top: 4px; }

/* ===================================================
   PROVIDERS STRIP
   =================================================== */
.providers-strip {
  background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.providers-strip-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.providers-label { font-size: .8rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; flex-shrink: 0; }
.provider-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.provider-badge {
  padding: 6px 14px; background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 99px; font-size: .82rem; font-weight: 500; color: var(--gray-600);
  transition: all var(--trans);
}
.provider-badge:hover { border-color: var(--green-200); background: var(--green-l); color: var(--green-d); }

/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: 72px 0; }
.section-soft { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-green { background: var(--green); color: var(--white); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -.01em; }
.section-dark .section-header h2,
.section-green .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,.75); }

/* ===================================================
   STEPS (3 Schritte)
   =================================================== */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 2px;
}
@media (min-width: 600px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step-card {
  background: var(--white); padding: 32px 24px; border-radius: var(--r);
  border: 1px solid var(--gray-200); position: relative; text-align: center;
  transition: box-shadow var(--trans), transform var(--trans);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-num {
  width: 52px; height: 52px; background: var(--green); color: var(--white);
  border-radius: 50%; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: .92rem; color: var(--gray-500); line-height: 1.65; }
.steps-connector {
  display: none;
}
@media (min-width: 600px) {
  .step-card:not(:last-child)::after {
    content: '→';
    position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
    font-size: 1.4rem; color: var(--green-200); font-weight: 700;
  }
}

/* ===================================================
   VORTEILE GRID (8 Cards)
   =================================================== */
.vorteile-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (min-width: 600px) { .vorteile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .vorteile-grid { grid-template-columns: repeat(4, 1fr); } }
.vorteil-card {
  background: var(--white); padding: 24px 20px; border-radius: var(--r);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
.vorteil-card:hover { box-shadow: var(--shadow); border-color: var(--green-200); transform: translateY(-2px); }
.vorteil-icon { font-size: 1.8rem; margin-bottom: 14px; }
.vorteil-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.vorteil-card p { font-size: .84rem; color: var(--gray-500); line-height: 1.6; }

/* ===================================================
   CARDS (Posts, Providers)
   =================================================== */
.posts-grid { display: grid; gap: 24px; }
@media (min-width: 600px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.post-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.post-card-cat { font-size: .76rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .05em; }
.post-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.post-card-title:hover { color: var(--green); }
.post-card-excerpt { font-size: .88rem; color: var(--gray-500); line-height: 1.6; flex: 1; }
.post-card-meta { display: flex; align-items: center; gap: 12px; padding-top: 8px; border-top: 1px solid var(--gray-100); margin-top: 4px; }
.post-card-date { font-size: .8rem; color: var(--gray-400); }
.post-card-time { font-size: .8rem; color: var(--gray-400); }

/* Provider Cards */
.providers-grid { display: grid; gap: 20px; }
@media (min-width: 600px) { .providers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .providers-grid { grid-template-columns: repeat(3, 1fr); } }
.provider-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
.provider-card:hover { box-shadow: var(--shadow); border-color: var(--green-200); transform: translateY(-2px); }
.provider-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.provider-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.provider-rating { display: flex; align-items: center; gap: 4px; font-size: .88rem; font-weight: 600; color: var(--gray-700); }
.stars { color: #f59e0b; letter-spacing: 1px; font-size: .9rem; }
.provider-desc { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }
.provider-kond { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kond-item { background: var(--gray-50); padding: 10px 12px; border-radius: var(--r-sm); }
.kond-label { font-size: .73rem; color: var(--gray-400); font-weight: 500; margin-bottom: 2px; }
.kond-val { font-size: .95rem; font-weight: 700; color: var(--navy); }
.kond-val.green { color: var(--green); }
.provider-card-link {
  display: block; text-align: center; padding: 10px;
  background: var(--green-l); color: var(--green-d);
  border-radius: var(--r-sm); font-weight: 600; font-size: .9rem;
  transition: background var(--trans);
}
.provider-card-link:hover { background: var(--green-100); }

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--r-sm); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 16px 20px;
  font-size: .95rem; font-weight: 600; color: var(--navy);
  background: var(--white); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background var(--trans);
}
.faq-question::after {
  content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--gray-400);
  flex-shrink: 0; transition: transform var(--trans);
}
.faq-item.open .faq-question { background: var(--green-l); color: var(--green-d); }
.faq-item.open .faq-question::after { content: '−'; color: var(--green); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: .92rem; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ===================================================
   CTA SECTIONS
   =================================================== */
.cta-section {
  text-align: center; padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.cta-trust span { font-size: .85rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.cta-trust span::before { content: '✓'; color: #4ade80; font-weight: 700; }

/* Urgency CTA */
.cta-urgency { background: linear-gradient(135deg,#0a192f 0%,#0f172a 50%,#1e3a5f 100%); position: relative; overflow: hidden; }
.cta-urgency::before { content:''; position:absolute; top:-120px; right:-120px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(74,222,128,.08) 0%,transparent 70%); pointer-events:none; }
.cta-urgency-inner { position:relative; max-width:680px; margin:0 auto; }
.cta-urgency-label { display:inline-block; font-size:.75rem; font-weight:700; color:#4ade80; text-transform:uppercase; letter-spacing:.1em; margin-bottom:16px; background:rgba(74,222,128,.1); padding:4px 16px; border-radius:99px; border:1px solid rgba(74,222,128,.2); }
.cta-urgency h2 { font-size:clamp(2rem,5vw,3rem); font-weight:800; color:#fff; line-height:1.15; margin-bottom:20px; letter-spacing:-.02em; }
.cta-urgency p { color:rgba(255,255,255,.72); font-size:1.05rem; line-height:1.75; margin-bottom:36px; }
.cta-urgency p strong { color:#4ade80; }

/* Sticky Bar */
.sticky-bar { position:fixed; bottom:0; left:0; right:0; z-index:900; background:var(--navy); border-top:1px solid rgba(255,255,255,.1); padding:12px 20px; transform:translateY(100%); transition:transform .35s cubic-bezier(.4,0,.2,1); box-shadow:0 -4px 24px rgba(0,0,0,.3); }
.sticky-bar.visible { transform:translateY(0); }
.sticky-bar-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.sticky-bar-text { display:flex; flex-direction:column; gap:2px; }
.sticky-bar-text strong { color:#fff; font-size:.95rem; }
.sticky-bar-text span { color:rgba(255,255,255,.55); font-size:.78rem; }
.sticky-bar-cta { flex-shrink:0; font-size:.88rem; padding:10px 22px; }
@media (max-width:480px) { .sticky-bar-text { display:none; } .sticky-bar-inner { justify-content:center; } .sticky-bar-cta { width:100%; justify-content:center; } }

/* BSV vs. Alternativen Table */
.vt-section { background:var(--white); }
.vt-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; }
.vt-table { width:100%; border-collapse:separate; border-spacing:0; font-size:.88rem; min-width:520px; }
.vt-table thead tr { background:transparent; }
.vt-table th { padding:14px 16px; font-size:.78rem; font-weight:700; color:var(--gray-500); text-align:center; border-bottom:2px solid var(--gray-200); text-transform:uppercase; letter-spacing:.04em; }
.vt-feature { text-align:left !important; }
.vt-col-best { background:linear-gradient(180deg,#f0fdf4,#fff); border-left:2px solid var(--green); border-right:2px solid var(--green); color:var(--green) !important; }
.vt-table thead .vt-col-best { border-top:2px solid var(--green); border-radius:var(--r-sm) var(--r-sm) 0 0; color:var(--green) !important; font-size:.88rem; }
.vt-table tbody tr td { padding:12px 16px; border-bottom:1px solid var(--gray-100); vertical-align:middle; }
.vt-table tbody tr td:first-child { color:var(--gray-700); font-weight:500; text-align:left; }
.vt-table tbody tr:last-child .vt-col-best { border-bottom:2px solid var(--green); border-radius:0 0 var(--r-sm) var(--r-sm); }
.vt-table td { text-align:center; }
.vt-yes { color:var(--green); font-weight:700; }
.vt-no { color:var(--gray-400); }
.vt-neutral { color:var(--gray-500); font-size:.82rem; }
.vt-col-best .vt-yes { color:var(--green); }

/* 4 Kernvorteile */
.vorteile-grid-4 { display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:600px) { .vorteile-grid-4 { grid-template-columns:repeat(2,1fr); } }
@media (min-width:900px) { .vorteile-grid-4 { grid-template-columns:repeat(4,1fr); } }
.v4-card { background:var(--white); border-radius:var(--r-lg); border:1px solid var(--gray-200); padding:28px 22px; transition:box-shadow var(--trans),transform var(--trans); }
.v4-card:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.v4-icon { font-size:2rem; margin-bottom:14px; }
.v4-card h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.v4-card p { font-size:.88rem; color:var(--gray-500); line-height:1.65; }
.cta-trust span::before { content: '✓'; color: #4ade80; font-weight: 700; }

/* ===================================================
   INFO / CTA BOXES (in articles)
   =================================================== */
.info-box {
  background: var(--green-l); border-left: 4px solid var(--green);
  padding: 16px 20px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 24px 0; font-size: .93rem; line-height: 1.65; color: var(--gray-700);
}
.cta-box {
  background: linear-gradient(135deg, var(--green-l), var(--green-100));
  border: 1px solid var(--green-200); border-radius: var(--r);
  padding: 20px 24px; margin: 28px 0; font-size: .93rem; line-height: 1.65;
}
.cta-box a { font-weight: 600; }

.related-posts {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: var(--r);
  padding: 20px 24px; margin: 28px 0;
}
.related-posts h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 0 0 12px; }
.related-posts ul { margin: 0; padding: 0 0 0 18px; }
.related-posts li { margin: 0 0 6px; font-size: .9rem; }
.related-posts a { color: var(--green); text-decoration: none; font-weight: 500; }
.related-posts a:hover { text-decoration: underline; }

/* ===================================================
   ARTICLE / SINGLE POST
   =================================================== */
.article-layout {
  display: grid; grid-template-columns: 1fr; gap: 40px; padding: 40px 0 80px;
}
@media (min-width: 1000px) {
  .article-layout { grid-template-columns: 1fr 320px; align-items: start; }
}

.article-header { margin-bottom: 32px; }
.article-cat { display: inline-block; font-size: .8rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.article-header h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 16px; letter-spacing: -.01em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .84rem; color: var(--gray-400); margin-bottom: 24px; }
.article-featured { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/7; margin-bottom: 40px; }
.article-featured img { width: 100%; height: 100%; object-fit: cover; }

/* In-content images */
.content-img { margin: 28px 0; border-radius: var(--r); overflow: hidden; }
.content-img img { width: 100%; height: auto; max-height: 380px; object-fit: cover; display: block; border-radius: var(--r); }
.content-img-caption { font-size: .82rem; color: var(--gray-500); margin-top: 8px; text-align: center; }

/* Article content typography */
.article-content { max-width: 760px; word-break: break-word; overflow-wrap: break-word; }
.article-content h2 { font-size: 1.45rem; font-weight: 700; color: var(--navy); margin: 44px 0 16px; letter-spacing: -.01em; }
.article-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.article-content p { margin-bottom: 18px; color: var(--gray-700); line-height: 1.8; font-size: .97rem; }
.article-content ul, .article-content ol { margin-bottom: 18px; color: var(--gray-700); font-size: .97rem; }
.article-content li { margin-bottom: .6rem; line-height: 1.7; }
.article-content strong { color: var(--gray-900); font-weight: 600; }
.article-content a { font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.post-lead { font-size: 1.1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }

/* Article Sidebar */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 24px; margin-bottom: 20px; }
.sidebar-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sidebar-cta { background: var(--green); color: var(--white); border-radius: var(--r); padding: 24px; text-align: center; margin-bottom: 20px; }
.sidebar-cta h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.sidebar-cta p { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: 16px; line-height: 1.5; }
.sidebar-cta .btn-white { width: 100%; justify-content: center; font-size: .9rem; }

/* ===================================================
   TABLES
   =================================================== */
.data-table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem;
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
}
.data-table thead { background: var(--navy); color: var(--white); }
.data-table th { padding: 12px 16px; text-align: left; font-size: .82rem; font-weight: 600; letter-spacing: .03em; }
.data-table td { padding: 11px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.data-table tbody tr:hover { background: var(--gray-50); }
.data-table tbody tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--r); }

/* ===================================================
   CALCULATOR
   =================================================== */
.rechner-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.rechner-card h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.rechner-card .subtitle { font-size: .9rem; color: var(--gray-500); margin-bottom: 28px; }
.rechner-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .rechner-grid { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray-700); }
.form-control {
  padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
  font-family: var(--font); font-size: .95rem; color: var(--gray-900);
  transition: border-color var(--trans), box-shadow var(--trans);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.12); }
select.form-control { cursor: pointer; }

.rechner-result {
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  border-radius: var(--r); padding: 24px; margin-top: 24px; color: var(--white);
}
.rechner-result h3 { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.result-item .result-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.result-item .result-val { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.result-item .result-val.highlight { color: #4ade80; }
.rechner-action { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ===================================================
   VERGLEICH PAGE
   =================================================== */
.vgl-hero { background: linear-gradient(135deg, var(--white), var(--green-l)); padding: 48px 0 40px; }
.vgl-content { padding-top: 40px; padding-bottom: 80px; }
.vergleich-iframe-wrap { border-radius: var(--r); overflow: hidden; margin: 32px 0; box-shadow: var(--shadow); }
/* Vergleich intro with image */
.vergleich-intro-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 860px) { .vergleich-intro-wrap { grid-template-columns: 1fr 380px; gap: 48px; } }
.vergleich-intro { max-width: 100%; }
.vergleich-intro h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.vergleich-intro p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.vergleich-stats { display: flex; flex-wrap: wrap; gap: 16px; margin: 24px 0; }
.vstat { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--gray-700); }
.vstat::before { content: '✓'; color: var(--green); font-weight: 700; }
.vergleich-intro-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.vergleich-intro-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
@media (min-width: 860px) { .vergleich-intro-img img { height: 300px; } }

/* Homepage visual section */
.page-visual-section { background: var(--green-l); }
.page-visual-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 860px) { .page-visual-inner { grid-template-columns: 1fr 1fr; gap: 56px; } }
.page-visual-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.page-visual-img img { width: 100%; height: 340px; object-fit: cover; display: block; }
.page-visual-label { font-size: .82rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.page-visual-text h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
.page-visual-text p { color: var(--gray-600); font-size: .97rem; line-height: 1.8; margin-bottom: 18px; }
.page-visual-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.page-visual-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--gray-700); }
.page-visual-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Provider hero visual */
.provider-hero-visual { border-radius: var(--r); overflow: hidden; flex-shrink: 0; }
.provider-hero-visual img { width: 200px; height: 140px; object-fit: cover; display: block; }
@media (max-width: 700px) { .provider-hero-visual { display: none; } }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 24px 0; }
.compare-table th { padding: 10px 14px; background: var(--gray-50); border-bottom: 2px solid var(--gray-200); text-align: left; font-size: .8rem; font-weight: 600; color: var(--gray-500); }
.compare-table td { padding: 12px 14px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.compare-table tr:hover td { background: var(--green-l); }
.compare-table .provider-cell { font-weight: 700; color: var(--navy); }
.compare-table .zins-cell { font-weight: 700; color: var(--green); font-size: .95rem; }
.badge-best { display: inline-flex; padding: 3px 9px; background: var(--green); color: var(--white); border-radius: 99px; font-size: .72rem; font-weight: 600; }

/* ===================================================
   BUNDESLAND PAGE
   =================================================== */
.bl-hero { padding: 48px 0 56px; background: #dcfce7; border-bottom: 1px solid #bbf7d0; }
.bl-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.bl-hero p { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; }
.bl-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; max-width: 480px; }
@media (min-width: 600px) { .bl-stats { grid-template-columns: repeat(3, 1fr); } }
.bl-stat { background: var(--white); border: 1px solid #bbf7d0; border-radius: var(--r); padding: 16px; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.bl-stat-val { font-size: 1.4rem; font-weight: 800; color: var(--green); }
.bl-stat-label { font-size: .78rem; color: var(--gray-500); margin-top: 3px; }

/* ===================================================
   LEGAL PAGES
   =================================================== */
.legal-content { max-width: 800px; padding: 48px 0 80px; }
.legal-content h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 32px; }
.legal-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.legal-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; font-size: .95rem; }
.legal-content ul, .legal-content ol { margin-bottom: 14px; color: var(--gray-600); font-size: .95rem; }

/* ===================================================
   404
   =================================================== */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 .code { font-size: 6rem; font-weight: 800; color: var(--green-200); line-height: 1; margin-bottom: 16px; }
.page-404 h1 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.page-404 p { color: var(--gray-500); margin-bottom: 32px; }

/* ===================================================
   FOOTER TRUST BAR
   =================================================== */
.footer-trust-bar {
  background: var(--green); padding: 14px 0;
}
.ftb-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 36px;
}
.ftb-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 600; color: #fff;
}
.ftb-item svg { opacity: .85; flex-shrink: 0; }

/* ===================================================
   FOOTER — Fix, 1 Edit = alle Seiten
   =================================================== */
.site-footer {
  background: var(--navy); color: var(--white); padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 10px; }
.footer-affiliate { font-size: .78rem !important; color: rgba(255,255,255,.35) !important; }

.footer-col h4 { font-size: .85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-col a:hover { color: var(--white); }

.footer-bundeslaender { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-bundeslaender h4 { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.bl-links { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-links a { font-size: .8rem; color: rgba(255,255,255,.4); padding: 4px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; transition: all var(--trans); }
.bl-links a:hover { color: var(--white); border-color: rgba(255,255,255,.4); }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px; padding: 20px 0;
}
.footer-bottom p { font-size: .83rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .83rem; color: rgba(255,255,255,.4); transition: color var(--trans); }
.footer-legal a:hover { color: var(--white); }

/* ===================================================
   BLOG PAGE
   =================================================== */
.blog-header { padding: 48px 0 40px; background: linear-gradient(135deg, var(--white), var(--green-l)); }
.blog-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.blog-header p { color: var(--gray-600); font-size: 1.05rem; }
.blog-main { padding: 48px 0 80px; }

/* ===================================================
   PROVIDER SINGLE
   =================================================== */
.provider-hero { padding: 48px 0 56px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.provider-hero-top { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-bottom: 20px; }
.provider-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.provider-hero p { font-size: 1.05rem; color: var(--gray-600); max-width: 620px; line-height: 1.7; }
.rating-big { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.rating-big .stars { font-size: 1.2rem; }
.provider-konditionen { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; max-width: 560px; }
@media (min-width: 600px) { .provider-konditionen { grid-template-columns: repeat(4, 1fr); } }
.prov-kond { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 16px; text-align: center; }
.prov-kond-val { font-size: 1.3rem; font-weight: 800; color: var(--green); }
.prov-kond-label { font-size: .76rem; color: var(--gray-500); margin-top: 4px; }

/* Pros/Cons */
.pros-cons { display: grid; gap: 16px; margin: 24px 0; }
@media (min-width: 600px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros, .cons { padding: 20px; border-radius: var(--r); }
.pros { background: var(--green-l); }
.cons { background: #fff7ed; }
.pros h4 { color: var(--green-d); margin-bottom: 12px; font-size: .9rem; font-weight: 700; }
.cons h4 { color: #c2410c; margin-bottom: 12px; font-size: .9rem; font-weight: 700; }
.pros ul li::marker { color: var(--green); }
.cons ul li::marker { color: #ea580c; }
.pros li, .cons li { font-size: .88rem; color: var(--gray-700); }

/* ===================================================
   PROVIDER CONTENT GRID — grid-item overflow prevention
   =================================================== */
.provider-content-grid { max-width: 900px; display: grid; gap: 48px; }
.provider-content-grid > * { min-width: 0; overflow-wrap: break-word; word-break: break-word; }

/* ===================================================
   TOOLTIP SYSTEM (Glossar-Begriffe)
   =================================================== */
.tt {
  position: relative;
  display: inline;
  cursor: help;
  border-bottom: 1px dashed var(--green);
  color: inherit;
}
.tt .tt-box {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: var(--navy);
  color: #e2e8f0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.55;
  width: 280px;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  pointer-events: none;
  font-weight: 400;
}
.tt:hover .tt-box,
.tt:focus-within .tt-box { display: block; pointer-events: auto; }
.tt .tt-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 18px;
  border: 7px solid transparent;
  border-top-color: var(--navy);
}
.tt .tt-box a { color: #4ade80; text-decoration: underline; font-size: 0.78rem; }

/* ===================================================
   GLOSSAR PAGE
   =================================================== */
.glossar-hero { padding: 48px 0 40px; background: linear-gradient(135deg, var(--white), var(--green-l)); }
.glossar-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.glossar-hero p { color: var(--gray-600); font-size: 1.05rem; }
.glossar-main { padding: 48px 0 80px; }
.glossar-search { margin-bottom: 32px; }
.glossar-search input {
  width: 100%; max-width: 480px; padding: 12px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--r);
  font-size: 1rem; outline: none; transition: border-color .2s;
}
.glossar-search input:focus { border-color: var(--green); }
.glossar-letter { margin: 32px 0 16px; font-size: 1.4rem; font-weight: 800; color: var(--navy); border-bottom: 2px solid var(--green); padding-bottom: 6px; }
.glossar-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-100); }
.glossar-item:last-child { border-bottom: none; }
.glossar-term { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.glossar-def { color: var(--gray-600); line-height: 1.7; font-size: 0.95rem; }
.glossar-cat { display: inline-block; font-size: 0.72rem; background: var(--green-l); color: var(--green-d); padding: 2px 8px; border-radius: 20px; font-weight: 600; margin-bottom: 6px; }

/* ===================================================
   BEGRIFFE-BOX (related terms at bottom of posts)
   =================================================== */
.begriffe-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 24px; margin: 32px 0; }
.begriffe-box h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.begriffe-list { display: flex; flex-wrap: wrap; gap: 8px; }
.begriffe-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 6px 14px; font-size: .83rem; color: var(--gray-700); text-decoration: none; transition: all .2s; }
.begriffe-tag:hover { border-color: var(--green); color: var(--green-d); background: var(--green-l); }

/* ===================================================
   AUF EINEN BLICK BOX (Google Snippet Bait)
   =================================================== */
.aeb-box { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-left: 4px solid var(--green); border-radius: 0 var(--r) var(--r) 0; padding: 20px 24px; margin: 24px 0 32px; }
.aeb-box strong { display: block; font-size: .8rem; font-weight: 700; color: var(--green-d); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.aeb-box p { font-size: .97rem; color: var(--gray-700); line-height: 1.65; margin: 0; }

/* ===================================================
   POST FAQ SECTION (am Ende jedes Artikels)
   =================================================== */
.post-faq { margin: 48px 0 32px; border-top: 2px solid var(--gray-100); padding-top: 40px; }
.post-faq h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }

/* ===================================================
   FAZIT BOX (redaktionelle Empfehlung am Post-Ende)
   =================================================== */
.fazit-box { background: var(--navy); color: var(--white); border-radius: var(--r); padding: 28px 32px; margin: 40px 0 32px; }
.fazit-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.fazit-box p { font-size: .95rem; line-height: 1.7; color: rgba(255,255,255,.88); margin-bottom: 8px; }
.fazit-box p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .fazit-box { padding: 20px; } }

/* Accessibility */
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ===================================================
   BLOG / RATGEBER PAGE
   =================================================== */
.blog-header-inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap;
}
.blog-stats {
  display: flex; gap: 20px; flex-shrink: 0;
}
.bstat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r); padding: 10px 18px; text-align: center;
  min-width: 72px;
}
.bstat strong { font-size: 1.15rem; font-weight: 800; color: var(--green); }
.bstat span { font-size: .72rem; color: var(--gray-500); font-weight: 500; }
@media (max-width: 600px) { .blog-stats { display: none; } }

.blog-filter-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 64px; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.blog-filters {
  display: flex; gap: 8px; padding: 12px 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-filters::-webkit-scrollbar { display: none; }
.bf-btn {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap; padding: 7px 16px;
  border-radius: 99px; font-size: .84rem; font-weight: 500;
  background: var(--gray-100); color: var(--gray-700);
  border: 1.5px solid transparent;
  cursor: pointer; transition: all var(--trans); flex-shrink: 0;
}
.bf-btn:hover { background: var(--green-l); color: var(--green-d); }
.bf-btn.active {
  background: var(--green); color: #fff;
  border-color: var(--green);
}
.bf-btn span {
  background: rgba(0,0,0,.10); color: inherit; font-size: .73rem;
  font-weight: 700; padding: 1px 6px; border-radius: 99px;
}
.bf-btn.active span { background: rgba(255,255,255,.25); }
.post-hidden { display: none !important; }
.blog-load-more { text-align: center; margin-top: 40px; padding-bottom: 20px; }

/* ===================================================
   VERGLEICH — SORT BAR & TABLE ENHANCEMENTS
   =================================================== */
.vgl-table-head {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 12px; margin: 40px 0 12px;
}
.vgl-table-head h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin: 0; }
.vgl-sort-bar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .82rem; color: var(--gray-500);
}
.vsort-btn {
  padding: 6px 14px; border-radius: 99px; font-size: .82rem; font-weight: 500;
  background: var(--gray-100); color: var(--gray-700);
  border: 1.5px solid transparent; cursor: pointer; transition: all var(--trans);
}
.vsort-btn:hover { background: var(--green-l); color: var(--green-d); }
.vsort-btn.active { background: var(--green); color: #fff; border-color: var(--green); }
.vgl-winner td { background: #f0fdf4; }
.vgl-winner:hover td { background: #dcfce7 !important; }
.vgl-green { color: var(--green) !important; font-weight: 700; }
.vgl-link {
  display: inline-flex; align-items: center;
  font-size: .83rem; font-weight: 600; color: var(--green);
  padding: 5px 12px; border-radius: var(--r-sm);
  background: var(--green-l); border: 1px solid transparent;
  transition: all var(--trans); white-space: nowrap;
}
.vgl-link:hover { background: var(--green-100); }
.vgl-link--primary { background: var(--green); color: #fff; }
.vgl-link--primary:hover { background: var(--green-d); color: #fff; }
.vgl-tag {
  display: inline-flex; align-items: center;
  font-size: .7rem; font-weight: 600; color: var(--green-d);
  background: var(--green-100); padding: 2px 8px; border-radius: 99px;
  margin-left: 6px; vertical-align: middle;
}
.vgl-hint { font-size: .78rem; color: var(--gray-400); margin-top: 8px; }

/* ===================================================
   PROVIDERS OVERVIEW PAGE
   =================================================== */
.prov-ov-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  padding: 56px 0 48px;
}
.pov-hero-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  color: #fff; margin-bottom: 14px; letter-spacing: -.01em;
}
.pov-hero-inner p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 580px; line-height: 1.7; }
.pov-stats {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.pov-stats span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15); padding: 5px 14px;
  border-radius: 99px; font-size: .83rem; font-weight: 500;
}
.pov-stats span::before { content: '✓'; color: #4ade80; font-weight: 700; }
.pov-main { padding-top: 36px; padding-bottom: 80px; }
.pov-sort-bar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px; font-size: .84rem; color: var(--gray-500);
}
.pov-sort {
  padding: 7px 16px; border-radius: 99px; font-size: .84rem; font-weight: 500;
  background: var(--gray-100); color: var(--gray-700);
  border: 1.5px solid transparent; cursor: pointer; transition: all var(--trans);
}
.pov-sort:hover { background: var(--green-l); color: var(--green-d); }
.pov-sort.active { background: var(--green); color: #fff; border-color: var(--green); }
.pcard-badge {
  display: inline-flex; align-items: center;
  font-size: .72rem; font-weight: 700; padding: 3px 11px;
  border-radius: 99px; margin-bottom: 6px; width: fit-content;
}
.pcard-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.pcard-feat {
  font-size: .73rem; color: var(--green-d); font-weight: 600;
  background: var(--green-l); padding: 2px 9px; border-radius: 99px;
}

/* ===================================================
   RECHNER HUB PAGE
   =================================================== */
.rechner-hub-wrap { padding: 40px 0 80px; max-width: 840px; }
.rechner-hub-wrap h1 { font-size: clamp(1.8rem,4vw,2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.rechner-hub-wrap > p { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 40px; }
.rechner-hub-grid { display: grid; gap: 20px; }
.rechner-hub-card {
  display: flex; align-items: center; gap: 24px;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 28px; text-decoration: none;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.rechner-hub-card:hover {
  border-color: var(--green); color: inherit;
  box-shadow: 0 4px 20px rgba(22,163,74,.12); transform: translateY(-2px);
}
.rhc-icon {
  width: 56px; height: 56px; background: var(--green-l); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.rhc-text { flex: 1; min-width: 0; }
.rhc-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.rhc-desc { color: var(--gray-500); font-size: .9rem; }
.rhc-arrow { margin-left: auto; color: var(--green); font-size: 1.4rem; flex-shrink: 0; transition: transform var(--trans); }
.rechner-hub-card:hover .rhc-arrow { transform: translateX(4px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ===================================================
   RECHNER SEITEN — CONTENT LAYOUT
   =================================================== */
.rp-hero { padding: 48px 0 8px; max-width: 860px; }
.rp-hero h1 { font-size: clamp(1.8rem,4.5vw,2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.rp-hero .rp-sub { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 20px; max-width: 660px; line-height: 1.6; }
.rp-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 32px; }
.rp-trust span { font-size: .87rem; color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
.rp-trust span::before { content: '✓'; color: var(--green); font-weight: 700; }

.rp-content { max-width: 860px; padding: 0 0 80px; }
.rp-section { margin-top: 52px; }
.rp-section h2 { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100); }
.rp-section p { color: var(--gray-600); line-height: 1.7; margin-bottom: 12px; }

.rp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 16px; margin-top: 20px; }
.rp-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-lg); padding: 22px; }
.rp-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.rp-card p { font-size: .85rem; color: var(--gray-500); margin: 0; line-height: 1.55; }
.rp-card .rp-card-val { font-size: 1.25rem; font-weight: 700; color: var(--green); margin: 5px 0 6px; }
.rp-card-icon-wrap { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }

.rp-crosssell { background: linear-gradient(135deg,#f0fdf4 0%,#dcfce7 100%); border: 1.5px solid #86efac; border-radius: var(--r-lg); padding: 28px 32px; margin-top: 24px; display: flex; align-items: flex-start; gap: 20px; }
.rp-crosssell-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--green); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.rp-crosssell h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.rp-crosssell p { font-size: .9rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }

.rp-steps { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.rp-step { display: flex; gap: 16px; align-items: flex-start; }
.rp-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.rp-step-body h4 { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.rp-step-body p { font-size: .87rem; color: var(--gray-500); margin: 0; line-height: 1.55; }

.rp-compare-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: .88rem; border-radius: var(--r); overflow: hidden; border: 1px solid var(--gray-200); }
.rp-compare-table th { text-align: left; padding: 10px 14px; background: #f8fafc; color: var(--navy); font-weight: 600; border-bottom: 2px solid var(--gray-200); }
.rp-compare-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.rp-compare-table tr:last-child td { border-bottom: none; }
.rp-compare-table tr:hover td { background: #f8fafc; }
.rp-compare-table .green { color: var(--green); font-weight: 600; }
.rp-compare-table .bold { font-weight: 600; color: var(--navy); }

.rp-affiliate { font-size: .76rem; color: var(--gray-400); margin-top: 8px; }
.rp-hint { font-size: .82rem; color: var(--gray-500); margin-top: 8px; line-height: 1.5; }

@media (max-width: 640px) {
  .rp-cards { grid-template-columns: 1fr; }
  .rp-crosssell { flex-direction: column; gap: 12px; padding: 20px; }
  .rp-hero { padding: 28px 0 8px; }
}


/* ===================================================
   RESPONSIVE UTILITIES
   =================================================== */
@media (max-width: 599px) {

  /* ============================================================
     GLOBAL — overflow & padding
     ============================================================ */
  .container { padding: 0 16px; }
  iframe, embed, object { max-width: 100%; }

  /* ============================================================
     TYPOGRAPHY — minimum readable sizes (≥ 13px / .82rem)
     All .72rem–.78rem badges/labels bumped up on mobile
     ============================================================ */
  .hc-badge { font-size: .82rem; padding: 4px 10px; }
  .hc-winner-label { font-size: .82rem; letter-spacing: .02em; }
  .hc-winner-name { font-size: .9rem; }
  .fb-label { font-size: .82rem; }
  .fb-item span { font-size: .82rem; }
  .hero-badge { font-size: .84rem; padding: 5px 12px; }
  .trust-item { font-size: .84rem; }
  .post-card-cat { font-size: .82rem; }
  .post-card-date, .post-card-time { font-size: .82rem; }
  .article-cat { font-size: .82rem; }
  .glossar-cat { font-size: .82rem; padding: 3px 9px; }
  .pcard-feat { font-size: .82rem; }
  .pcard-badge { font-size: .82rem; }
  .vgl-tag { font-size: .82rem; }
  .vgl-hint { font-size: .86rem; }
  .result-item .result-label { font-size: .84rem; }
  .result-item .result-val { font-size: 1.15rem; }
  .rp-affiliate { font-size: .82rem; }
  .rp-hint { font-size: .88rem; }
  .providers-label { font-size: .84rem; }
  .provider-badge { font-size: .84rem; padding: 5px 12px; }
  .cta-urgency-label { font-size: .80rem; }
  .bstat strong { font-size: 1rem; }
  .bstat span { font-size: .80rem; }
  .breadcrumb { font-size: .82rem; }
  .article-meta { font-size: .86rem; }
  .hc-res-row span { font-size: .9rem; }
  .hc-res-row strong { font-size: 1rem; }
  .prov-kond-label { font-size: .82rem; }
  .prov-kond-val { font-size: 1.15rem; }
  .bl-stat-label { font-size: .82rem; }
  .sidebar-cta p { font-size: .86rem; }
  .rhc-desc { font-size: .88rem; }
  .rp-sub { font-size: .97rem; }

  /* ============================================================
     HERO — homepage
     ============================================================ */
  .hero { padding: 44px 0 52px; }
  .hero-inner { gap: 28px; }
  .hero h1 { font-size: clamp(1.65rem, 6vw, 2rem); margin-bottom: 14px; }
  .hero-sub { font-size: .97rem; margin-bottom: 24px; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-trust { gap: 10px; }

  /* Hero calculator card */
  .hero-calc { padding: 18px 16px 16px; border-radius: var(--r); }
  .hc-head { margin-bottom: 14px; gap: 8px; }
  .hc-field { margin-bottom: 12px; }
  .hc-results { margin: 12px 0 10px; }
  .hc-res-row { padding: 7px 0; }
  .hc-winner { padding: 9px 12px; margin-bottom: 12px; }
  .hc-cta { margin-top: 2px; }

  /* ============================================================
     GRIDS — collapse to single/double column
     ============================================================ */
  .result-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bl-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .provider-konditionen { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .ah-grid { grid-template-columns: 1fr; }
  .foerder-grid { grid-template-columns: 1fr; }
  .savings-inner { grid-template-columns: 1fr; }
  .vorteile-grid { grid-template-columns: 1fr 1fr; }
  .vorteile-grid-4 { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .rechner-hub-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .rp-cards { grid-template-columns: 1fr; }

  /* ============================================================
     HOMEPAGE — strips & bands
     ============================================================ */
  .providers-strip { padding: 10px 0; }
  .providers-strip-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .provider-badges { gap: 8px; }

  .foerder-band { padding: 12px 0; }
  .fb-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .fb-items { gap: 8px 12px; }
  .fb-total { font-size: .9rem; margin-left: 0; }

  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .section-header p { font-size: .95rem; }

  /* ============================================================
     CTA SECTIONS
     ============================================================ */
  .cta-section { padding: 48px 0; }
  .cta-section h2 { font-size: clamp(1.4rem, 5vw, 1.75rem); }
  .cta-urgency h2 { font-size: clamp(1.4rem, 5vw, 1.75rem); letter-spacing: -.01em; }
  .cta-urgency p { font-size: .95rem; margin-bottom: 24px; max-width: 100%; }
  .cta-trust { flex-direction: column; align-items: center; gap: 10px; }

  /* ============================================================
     STICKY BAR — 44px minimum touch target
     ============================================================ */
  .sticky-bar { padding: 10px 16px; }
  .sticky-bar-cta { padding: 13px 28px; font-size: .9rem; min-height: 44px; }

  /* ============================================================
     VERGLEICH PAGE
     ============================================================ */
  .vergleich-intro-img { display: none; }
  .vgl-hero { padding: 32px 0 28px; }
  .vergleich-intro h1 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .vgl-sort-bar { flex-wrap: wrap; gap: 6px; }
  .vsort-btn { padding: 5px 10px; font-size: .80rem; }
  .vgl-table-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  /* Compare table: table-wrap handles scroll; compact cells */
  .compare-table th, .compare-table td { padding: 8px 10px; font-size: .82rem; }

  /* ============================================================
     BUNDESLAND PAGE
     ============================================================ */
  .bl-hero { padding: 32px 0 36px; }
  .bl-hero h1 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .bl-stat-val { font-size: 1.25rem; }

  /* ============================================================
     PROVIDER PAGES (overview + single)
     ============================================================ */
  .prov-ov-hero { padding: 36px 0 32px; }
  .pov-hero-inner h1 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .pov-main { padding-top: 24px; padding-bottom: 56px; }
  .pov-sort-bar { gap: 6px; }
  .pov-sort { padding: 6px 12px; font-size: .80rem; }
  .pcard-features { gap: 5px; }

  .provider-hero { padding: 32px 0 36px; }
  .provider-hero h1 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .provider-hero p { font-size: .97rem; }
  .provider-hero-top { gap: 12px; }
  .rating-big { font-size: 1rem; }
  .provider-card-link { font-size: .9rem; }

  /* ============================================================
     BLOG / RATGEBER
     ============================================================ */
  .blog-header { padding: 32px 0 24px; }
  .blog-header h1 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .blog-header-inner { flex-direction: column; gap: 0; }
  .blog-stats { display: none; }
  .blog-filter-bar { top: 56px; }
  .blog-filters { padding: 10px 0; gap: 6px; }
  .bf-btn { padding: 7px 12px; font-size: .82rem; }
  .blog-main { padding: 28px 0 64px; }
  .blog-load-more .btn { width: 100%; justify-content: center; }

  /* Post cards */
  .post-card { border-radius: var(--r-sm); }
  .post-card-body { padding: 14px 14px 12px; gap: 6px; }
  .post-card-title { font-size: .97rem; }
  .post-card-excerpt { font-size: .86rem; }

  /* ============================================================
     SINGLE POST (artikel)
     ============================================================ */
  .article-layout { padding: 20px 0 56px; gap: 24px; }
  .article-header { margin-bottom: 20px; }
  .article-header h1 { font-size: clamp(1.3rem, 5vw, 1.6rem); line-height: 1.3; }
  .article-featured { aspect-ratio: 16/8; margin-bottom: 24px; }
  .article-sidebar { position: static; }
  .sidebar-cta { padding: 18px; border-radius: var(--r); }
  .sidebar-cta h4 { font-size: .97rem; margin-bottom: 8px; }
  .sidebar-card { padding: 16px; }
  .article-content h2 { font-size: 1.25rem; margin: 28px 0 12px; }
  .article-content h3 { font-size: 1.05rem; margin: 22px 0 10px; }
  .post-lead { font-size: .97rem; margin-bottom: 24px; padding-bottom: 18px; }
  .aeb-box { padding: 14px 16px; }
  .fazit-box { padding: 18px 16px; border-radius: var(--r); }
  .begriffe-list { gap: 6px; }
  .begriffe-tag { font-size: .82rem; padding: 5px 12px; }

  /* ============================================================
     TABLES — compact on mobile, scroll via .table-wrap
     ============================================================ */
  .table-wrap { margin: 14px 0; }
  .data-table th, .data-table td { padding: 9px 10px; font-size: .83rem; }
  .rp-compare-table th, .rp-compare-table td { padding: 8px 10px; font-size: .83rem; }

  /* ============================================================
     FORM CONTROLS — full width, iOS-safe font size
     ============================================================ */
  .form-control { width: 100%; font-size: 1rem; padding: 12px 14px; }
  select.form-control { font-size: 1rem; }
  .form-group label { font-size: .9rem; }
  .rechner-action { flex-direction: column; gap: 10px; }
  .rechner-action .btn { width: 100%; justify-content: center; }

  /* ============================================================
     RECHNER PAGES
     ============================================================ */
  .rechner-card { padding: 18px 16px; }
  .rechner-card h2 { font-size: 1.2rem; }
  .rechner-result { padding: 18px 16px; border-radius: var(--r); }
  .rechner-hub-wrap { padding: 24px 0 56px; }
  .rechner-hub-wrap h1 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .rechner-hub-wrap > p { font-size: .97rem; margin-bottom: 28px; }
  .rechner-hub-card { padding: 18px 16px; gap: 14px; }
  .rhc-icon { width: 44px; height: 44px; font-size: 1.3rem; }
  .rhc-title { font-size: 1rem; }
  .rhc-desc { font-size: .86rem; }
  .rp-hero { padding: 24px 0 6px; }
  .rp-hero h1 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .rp-section h2 { font-size: 1.15rem; }
  .rp-crosssell { flex-direction: column; gap: 12px; padding: 18px 16px; }
  .rp-step-num { width: 28px; height: 28px; font-size: .84rem; }

  /* ============================================================
     GLOSSAR
     ============================================================ */
  .glossar-hero { padding: 32px 0 28px; }
  .glossar-hero h1 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .glossar-main { padding: 28px 0 56px; }
  .glossar-search input { max-width: 100%; font-size: 1rem; padding: 11px 14px; }
  .glossar-search { margin-bottom: 18px; }
  .glossar-term { font-size: 1.05rem; }
  .glossar-def { font-size: .9rem; }
  .glossar-item { margin-bottom: 22px; padding-bottom: 22px; }

  /* ============================================================
     TOOLTIP — clamp width to viewport
     ============================================================ */
  .tt .tt-box { width: min(280px, calc(100vw - 32px)); font-size: .82rem; }

  /* ============================================================
     INFO / CTA BOXES
     ============================================================ */
  .info-box { padding: 14px 16px; font-size: .9rem; }
  .cta-box { padding: 16px 18px; font-size: .9rem; }
  .related-posts { padding: 16px 18px; }
  .related-posts li { font-size: .9rem; }
  .aeb-box p { font-size: .93rem; }

  /* ============================================================
     FAQ — bigger tap target
     ============================================================ */
  .faq-question { padding: 14px 16px; font-size: .93rem; }
  .faq-answer p { font-size: .93rem; padding: 0 16px 16px; margin: 0; }

  /* ============================================================
     FOOTER
     ============================================================ */
  .site-footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col h4 { font-size: .84rem; margin-bottom: 10px; }
  .footer-col a { font-size: .86rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  .footer-trust-bar .ftb-inner { gap: 12px 20px; }
  .ftb-item { font-size: .82rem; }
  .ftb-item svg { width: 18px; height: 18px; }
  .footer-bundeslaender h4 { font-size: .82rem; }
  .bl-links a { font-size: .80rem; padding: 4px 9px; }

  /* ============================================================
     MOBILE DRAWER
     ============================================================ */
  .mob-item-icon img { width: 36px; height: 36px; }
  .mob-item-text strong { font-size: .88rem; }
  .mob-item-text span { font-size: .80rem; }
  .mob-section-label { font-size: .72rem; }

  /* ============================================================
     LEGAL PAGES
     ============================================================ */
  .legal-content { padding: 28px 0 56px; }
  .legal-content h1 { font-size: 1.5rem; margin-bottom: 20px; }
  .legal-content h2 { font-size: 1.1rem; }
  .legal-content p { font-size: .93rem; }

  /* ============================================================
     404 PAGE
     ============================================================ */
  .page-404 { padding: 60px 16px; }
  .page-404 .code { font-size: 4rem; }

  /* ============================================================
     HOMEPAGE VISUAL & MISC
     ============================================================ */
  .page-visual-img { display: none; }
  .step-card::after { display: none !important; }
  .vorteil-card { padding: 20px 16px; }
  .v4-card { padding: 20px 16px; }
  .foerder-card { padding: 22px 18px; }
  .ah-card { padding: 18px 16px; }
  .ah-card h3 { font-size: 1rem; }
  .ah-stat span { font-size: .82rem; }
  .ah-tag { font-size: .80rem; padding: 4px 10px; }
  .ah-winner-badge { font-size: .72rem; padding: 3px 12px; }

  /* ============================================================
     PROVIDER CONTENT — grid min-width fix (prevents overflow)
     ============================================================ */
  .provider-content-grid { min-width: 0; }
  .provider-content-grid > * { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
  .info-box { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
  .table-wrap { max-width: 100%; }

  /* ============================================================
     RECHNER HUB — card padding & min-width (desktop: 28px, mobile: 18/16px)
     ============================================================ */
  .rechner-hub-card { padding: 18px 16px !important; gap: 14px !important; min-width: 0; }
  .rhc-icon { width: 44px; height: 44px; font-size: 1.3rem; }

  /* ============================================================
     VERGLEICH — vgl-tag font size (desktop: .7rem → mobile: .78rem)
     ============================================================ */
  .vgl-tag { font-size: .78rem !important; }

  /* ============================================================
     BLOG FILTER — bf-btn font + padding (desktop: .84rem / 7px 16px)
     ============================================================ */
  .bf-btn { font-size: .82rem !important; padding: 7px 11px !important; }
  .bf-btn span { font-size: .73rem; }

  /* ============================================================
     GLOSSAR SEARCH BUTTON — min touch target 44px
     ============================================================ */
  .glossar-search button { min-width: 44px; min-height: 44px; }

  /* ============================================================
     VGL-HINT — font size (desktop: .78rem)
     ============================================================ */
  .vgl-hint { font-size: .82rem !important; }

  /* ============================================================
     PROVIDER HERO VISUAL — hide on small mobile
     ============================================================ */
  .provider-hero-visual { display: none; }

  /* ============================================================
     TOOLTIP BOX — ensure proper width on small screens
     ============================================================ */
  .tt-box { max-width: calc(100vw - 32px) !important; }

}
