/* Bausparvertrag One — Design System v1.0
   Farbe: Indigo/Violet — Zielgruppe: Junge Leute / Einsteiger */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: #0F172A; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === TOKENS === */
:root {
  --indigo:    #4F46E5;
  --indigo-d:  #3730A3;
  --indigo-l:  #EEF2FF;
  --violet:    #7C3AED;
  --violet-l:  #F5F3FF;
  --green:     #16A34A;
  --green-l:   #DCFCE7;
  --text:      #0F172A;
  --text-2:    #475569;
  --text-3:    #94A3B8;
  --border:    #E2E8F0;
  --card-bg:   #F8FAFC;
  --white:     #FFFFFF;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(79,70,229,.12);
}

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-light { background: #fff; }
.section-soft { background: var(--card-bg); }
.section-indigo { background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%); color: #fff; }
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 32px; }

/* === TYPOGRAPHY === */
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--indigo); margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.section-sub { color: var(--text-2); font-size: 1.05rem; max-width: 560px; }
.section-indigo .section-label { color: rgba(255,255,255,.7); }
.section-indigo .section-title { color: #fff; }
.section-indigo .section-sub { color: rgba(255,255,255,.8); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 24px; border-radius: 10px; font-weight: 600; font-size: .95rem; transition: all .18s; cursor: pointer; text-decoration: none; }
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--indigo-d); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--indigo); border: 2px solid var(--indigo); }
.btn-outline:hover { background: var(--indigo-l); }
.btn-ghost { background: transparent; color: var(--text-2); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-white { background: #fff; color: var(--indigo); }
.btn-white:hover { background: var(--indigo-l); }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-white-outline:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-block { width: 100%; }

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 32px; height: 64px; }
.site-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: var(--text); }
.logo-dot { color: var(--indigo); margin-left: 2px; }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-item { padding: 7px 14px; border-radius: 8px; font-weight: 500; font-size: .9rem; color: var(--text-2); transition: all .15s; }
.nav-item:hover { background: var(--indigo-l); color: var(--indigo); }
.nav-item--cta { background: var(--indigo); color: #fff; }
.nav-item--cta:hover { background: var(--indigo-d); color: #fff; }
.burger-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.burger-btn span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }

/* === MOBILE DRAWER (Fix & Flip Style) === */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 200; backdrop-filter: blur(3px); }
.mob-overlay.open { display: block; }
.mob-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: min(92vw, 360px); background: #fff; z-index: 201; transform: translateX(105%); transition: transform .28s cubic-bezier(.4,0,.2,1); box-shadow: -8px 0 40px rgba(0,0,0,.15); display: flex; flex-direction: column; border-radius: 16px 0 0 16px; overflow: hidden; }
.mob-drawer.open { transform: translateX(0); }
.mob-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 16px; border-bottom: 1px solid #F3F4F6; flex-shrink: 0; }
.mob-header-logo { display: flex; align-items: center; gap: 10px; }
.mob-logo-icon { width: 36px; height: 36px; border-radius: 9px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--indigo-l); }
.mob-site-name { font-size: .95rem; color: #111; letter-spacing: -.02em; }
.mob-site-name strong { color: var(--indigo); }
.mob-close { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #6B7280; background: #F9FAFB; border: 1px solid #E5E7EB; flex-shrink: 0; }
.mob-close:hover { background: #F3F4F6; color: #111; }
.mob-search { position: relative; margin: 14px 16px 10px; flex-shrink: 0; }
.mob-search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.mob-search-input { width: 100%; padding: 11px 14px 11px 38px; border: 1.5px solid #E5E7EB; border-radius: 12px; font-size: .9rem; color: #374151; background: #F9FAFB; outline: none; box-sizing: border-box; font-family: inherit; }
.mob-search-input:focus { border-color: var(--indigo); background: #fff; }
.mob-search-input::placeholder { color: #9CA3AF; }
.mob-scroll { flex: 1; overflow-y: auto; padding: 4px 0 8px; -webkit-overflow-scrolling: touch; }
.mob-cat-row { display: flex; align-items: center; gap: 14px; padding: 12px 20px; text-decoration: none; transition: background .15s; }
.mob-cat-row:hover, .mob-cat-row:active { background: #F9FAFB; }
.mob-cat-thumb { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #F3F4F6; }
.mob-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mob-cat-thumb--indigo { background: var(--indigo); }
.mob-cat-thumb--violet { background: var(--violet); }
.mob-cat-info { flex: 1; min-width: 0; }
.mob-cat-name { display: block; font-size: .92rem; font-weight: 600; color: #111; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mob-cat-count { display: block; font-size: .78rem; color: #6B7280; margin-top: 1px; }
.mob-cat-arrow { flex-shrink: 0; }
.mob-section-label { padding: 12px 20px 6px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: #9CA3AF; text-transform: uppercase; }
.mob-cta-bar { display: flex; flex-direction: column; gap: 10px; padding: 14px 16px 20px; border-top: 1px solid #F3F4F6; flex-shrink: 0; }
.mob-cta { display: block; text-align: center; padding: 13px 20px; border-radius: 12px; font-size: .93rem; font-weight: 600; letter-spacing: -.01em; transition: background .15s, color .15s; }
.mob-cta--outline { border: 1.5px solid #E5E7EB; color: #374151; background: #fff; }
.mob-cta--outline:hover { background: #F9FAFB; }
.mob-cta--filled { background: #111; color: #fff; border: 1.5px solid #111; }
.mob-cta--filled:hover { background: #222; }

/* === HERO === */
.hero { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4338ca 100%); padding: 80px 0 64px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(124,58,237,.3) 0%, transparent 70%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #C7D2FE; font-size: .8rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.hero-highlight { background: linear-gradient(90deg, #A5B4FC, #C4B5FD); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 28px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-ctas .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-ctas .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); color: #fff; }
.hero-trust { display: flex; gap: 20px; color: rgba(255,255,255,.6); font-size: .85rem; }
.hero-trust span::before { content: ''; }

/* Hero-Rechner */
.hero-calc { background: rgba(255,255,255,.97); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.hc-title { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 20px; }
.hc-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.hc-row label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.hc-slider-wrap { display: flex; align-items: center; gap: 12px; }
.hc-range { flex: 1; -webkit-appearance: none; height: 4px; background: var(--indigo-l); border-radius: 2px; outline: none; }
.hc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--indigo); cursor: pointer; box-shadow: 0 2px 6px rgba(79,70,229,.4); }
.hc-val { min-width: 90px; text-align: right; font-weight: 700; font-size: .9rem; color: var(--indigo); }
.hc-results { display: flex; flex-direction: column; gap: 10px; padding: 16px; background: var(--card-bg); border-radius: 10px; margin-bottom: 16px; }
.hc-result-item { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; }
.hcr-label { color: var(--text-2); }
.hcr-val { font-weight: 700; color: var(--text); }
.hcr-green { color: var(--green); }
.hc-result-total { padding-top: 10px; border-top: 1px solid var(--border); font-size: 1rem; }
.hc-result-total .hcr-val { color: var(--indigo); font-size: 1.1rem; }

/* === FÖRDERUNGS-BAND === */
.foerder-band { background: linear-gradient(90deg, #16A34A 0%, #15803D 100%); padding: 16px 0; }
.fb-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; color: #fff; font-size: .9rem; }
.fb-item { text-align: center; }
.fb-item strong { display: block; font-size: 1.3rem; font-weight: 800; }
.fb-sep { font-size: 1.5rem; font-weight: 300; opacity: .6; }
.fb-total strong { font-size: 1.5rem; }

/* === STEPS === */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0 32px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all .2s; }
.step-card:hover { border-color: var(--indigo); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num { font-size: .75rem; font-weight: 800; letter-spacing: .1em; color: var(--indigo); margin-bottom: 12px; }
.step-icon { display: flex; justify-content: center; margin-bottom: 14px; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .88rem; color: var(--text-2); line-height: 1.5; }
.steps-cta { text-align: center; }

/* === COMPARE BOX === */
.compare-box { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.compare-left .cb-tag { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.compare-left h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.compare-left p { color: rgba(255,255,255,.8); margin-bottom: 24px; line-height: 1.6; }
.compare-right { display: flex; flex-direction: column; gap: 16px; }
.cv-item { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 20px; }
.cv-label { font-weight: 700; color: #fff; margin-bottom: 10px; }
.cv-pros, .cv-cons { display: flex; flex-direction: column; gap: 4px; }
.cv-pros span { color: rgba(255,255,255,.9); font-size: .88rem; }
.cv-cons span { color: rgba(255,255,255,.55); font-size: .85rem; }

/* === PROVIDER PREVIEW === */
.provider-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0 24px; }
.pp-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; position: relative; transition: all .2s; }
.pp-card:hover { border-color: var(--indigo); box-shadow: var(--shadow-md); }
.pp-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--indigo); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 0 0 8px 8px; }
.pp-name { font-weight: 700; font-size: 1rem; margin: 16px 0 6px; }
.pp-rating { color: #F59E0B; font-size: .9rem; font-weight: 600; margin-bottom: 14px; }
.pp-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.pp-stats > div { display: flex; justify-content: space-between; font-size: .85rem; }
.pp-stat-label { color: var(--text-2); }
.pp-stat-val { font-weight: 600; }

/* === POSTS GRID === */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .2s; }
.post-card:hover { border-color: var(--indigo); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pc-img { aspect-ratio: 16/9; overflow: hidden; background: var(--indigo-l); }
.pc-img img { width: 100%; height: 100%; object-fit: cover; }
.pc-body { padding: 18px; }
.pc-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--indigo); margin-bottom: 6px; }
.pc-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.35; }
.pc-excerpt { font-size: .85rem; color: var(--text-2); line-height: 1.5; margin-bottom: 10px; }
.pc-meta { font-size: .78rem; color: var(--text-3); }

/* === ARCHIVE === */
.archive-hero { background: var(--indigo-l); padding: 24px 0 20px; border-bottom: 1px solid var(--border); }
.archive-hero h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.archive-hero p { color: var(--text-2); font-size: .9rem; }
.archive-content { padding-top: 32px; padding-bottom: 72px; }
.filter-bar { background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding: 10px 0; position: sticky; top: 64px; z-index: 90; }
.filter-bar .fb-inner { display: flex; gap: 8px; align-items: center; flex-wrap: nowrap; overflow: hidden; }
.cat-filters { display: flex; gap: 5px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; flex: 1; min-width: 0; padding-bottom: 2px; }
.cat-filters::-webkit-scrollbar { display: none; }
.cf-btn { padding: 5px 12px; border-radius: 100px; font-size: .8rem; font-weight: 500; color: var(--text-2); border: 1px solid var(--border); background: #fff; transition: all .15s; white-space: nowrap; flex-shrink: 0; }
.cf-btn:hover, .cf-btn.active { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.search-form { display: flex; gap: 6px; flex-shrink: 0; }
.search-input { padding: 6px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: .85rem; width: 150px; outline: none; }
.search-input:focus { border-color: var(--indigo); }
.search-btn { padding: 7px 10px; background: var(--indigo); color: #fff; border-radius: 8px; }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.pag-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border); font-weight: 600; font-size: .9rem; color: var(--text-2); }
.pag-btn.active { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.search-notice { margin-bottom: 24px; color: var(--text-2); }
.no-results { text-align: center; padding: 60px 0; }

/* === RECHNER === */
.rechner-hero { background: var(--indigo-l); padding: 40px 0; border-bottom: 1px solid var(--border); }
.rechner-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.rechner-hero p { color: var(--text-2); }
.rechner-section { padding-top: 40px; padding-bottom: 72px; display: flex; flex-direction: column; gap: 32px; }
.rechner-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.rechner-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.rechner-desc { color: var(--text-2); margin-bottom: 24px; }
.rc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.rc-inputs { display: flex; flex-direction: column; gap: 20px; }
.rc-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.rc-input-wrap { display: flex; align-items: center; gap: 12px; }
.rc-input-wrap input[type=range] { flex: 1; -webkit-appearance: none; height: 4px; background: var(--indigo-l); border-radius: 2px; outline: none; }
.rc-input-wrap input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--indigo); cursor: pointer; }
.rc-input-wrap span { min-width: 110px; text-align: right; font-weight: 700; font-size: .9rem; color: var(--indigo); }
.rc-results { display: flex; flex-direction: column; gap: 12px; background: var(--card-bg); border-radius: 12px; padding: 20px; align-self: start; }
.rc-res-item { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; }
.rc-res-item span { color: var(--text-2); }
.rc-res-item strong { font-weight: 700; color: var(--text); }
.rc-res-highlight strong { color: var(--green); font-size: 1.1rem; }
.rc-res-total { padding-top: 12px; border-top: 1px solid var(--border); }
.rc-res-total strong { color: var(--indigo); font-size: 1.15rem; }
.rc-res-divider { height: 1px; background: var(--border); }
.compare-bsv strong { color: var(--indigo); }
.compare-etf strong { color: var(--violet); }
.main-rechner { border: 2px solid var(--indigo); }

/* === VERGLEICH === */
.vergleich-hero { background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%); padding: 48px 0; color: #fff; text-align: center; }
.vgl-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #C7D2FE; font-size: .78rem; font-weight: 700; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.vergleich-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.vergleich-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 14px; }
.vgl-meta { display: flex; gap: 20px; justify-content: center; font-size: .82rem; color: rgba(255,255,255,.6); flex-wrap: wrap; }
.vgl-hinweis { font-size: .78rem; color: var(--text-3); padding: 8px 0; }
.vgl-widget-wrap { margin: 24px auto; background: var(--card-bg); border-radius: var(--radius); padding: 20px; }
.vgl-widget-title { font-weight: 700; margin-bottom: 12px; color: var(--text); }
.vgl-section { padding-top: 40px; padding-bottom: 72px; }
.vgl-section h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.vgl-sort { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.vsort-btn { padding: 8px 18px; border-radius: 8px; font-size: .88rem; font-weight: 600; border: 1px solid var(--border); color: var(--text-2); background: #fff; }
.vsort-btn.active { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.vgl-table { display: flex; flex-direction: column; gap: 12px; }
.vgl-row { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; display: grid; grid-template-columns: 1fr 2fr auto; gap: 20px; align-items: center; position: relative; transition: all .2s; }
.vgl-row:hover { border-color: var(--indigo); box-shadow: var(--shadow-md); }
.vgl-row--winner { border-color: var(--indigo); border-width: 2px; }
.vgl-winner-badge { position: absolute; top: -1px; left: 20px; background: var(--indigo); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 0 0 8px 8px; }
.vgl-name strong { font-size: 1rem; display: block; margin-bottom: 4px; }
.vgl-rating { color: #F59E0B; font-size: .88rem; }
.vgl-stats { display: flex; gap: 24px; }
.vgl-stat { text-align: center; }
.vst-label { display: block; font-size: .75rem; color: var(--text-3); margin-bottom: 2px; }
.vst-val { font-weight: 700; font-size: .95rem; }

/* === ARTICLE === */
.article-wrap { padding-top: 48px; padding-bottom: 72px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.article-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.art-cat { background: var(--indigo-l); color: var(--indigo); font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; }
.art-date, .art-read { font-size: .82rem; color: var(--text-3); }
.article-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.article-excerpt { font-size: 1.1rem; color: var(--text-2); margin-bottom: 24px; line-height: 1.6; }
.article-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.aeb-box { background: var(--indigo-l); border-left: 4px solid var(--indigo); border-radius: 0 10px 10px 0; padding: 16px 20px; margin-bottom: 28px; }
.aeb-title { font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; color: var(--indigo); margin-bottom: 8px; }
.aeb-list { display: flex; flex-direction: column; gap: 4px; }
.aeb-list li { font-size: .9rem; color: var(--text); padding-left: 16px; position: relative; }
.aeb-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.article-content { font-size: .97rem; line-height: 1.75; }
.article-content h2 { font-size: 1.4rem; font-weight: 700; margin: 32px 0 12px; }
.article-content h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 8px; }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 0 0 16px 20px; }
.article-content li { margin-bottom: 6px; line-height: 1.6; }
.article-content ul { list-style: disc; }
.article-content a { color: var(--indigo); text-decoration: underline; }
.article-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.article-content th { background: var(--indigo-l); padding: 10px 14px; text-align: left; font-size: .88rem; font-weight: 700; }
.article-content td { padding: 9px 14px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.fazit-box { background: #1E1B4B; color: #fff; border-radius: var(--radius); padding: 24px; margin-top: 28px; }
.fazit-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #A5B4FC; margin-bottom: 8px; }
.fazit-box p { color: rgba(255,255,255,.85); line-height: 1.6; }
/* === TOOLTIPS === */
.bzv-tooltip {
  border-bottom: 1.5px dashed var(--indigo);
  cursor: help;
  position: relative;
  display: inline;
}
.bzv-tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: #1E1B4B;
  color: #E0E7FF;
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: normal;
  width: 220px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  text-align: left;
}
.bzv-tooltip::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%; transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1E1B4B;
  opacity: 0;
  transition: opacity .18s;
  pointer-events: none;
}
.bzv-tooltip:hover::after,
.bzv-tooltip:focus::after { opacity: 1; }
.bzv-tooltip:hover::before,
.bzv-tooltip:focus::before { opacity: 1; }

/* === NETWORK LINKS === */
.network-links-box {
  margin-top: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--card-bg);
}
.network-links-title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-2); margin-bottom: 14px;
}
.network-links-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.network-link-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.network-link-item:hover { border-color: var(--indigo); box-shadow: 0 2px 8px rgba(79,70,229,.1); }
.network-link-name { font-size: .88rem; font-weight: 600; color: var(--indigo); }
.network-link-desc { font-size: .78rem; color: var(--text-2); }
@media (max-width: 600px) {
  .network-links-grid { grid-template-columns: 1fr; }
}

.article-faq, .related-posts { margin-top: 36px; }
.article-faq h2, .related-posts h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.rel-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.rel-card:hover { border-color: var(--indigo); }
.rel-cat { font-size: .72rem; font-weight: 700; color: var(--indigo); text-transform: uppercase; margin-bottom: 4px; }
.rel-title { font-size: .88rem; font-weight: 600; color: var(--text); }
.article-sidebar { display: flex; flex-direction: column; gap: 20px; align-self: start; position: sticky; top: 84px; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.sidebar-cta { background: var(--indigo-l); border-color: var(--indigo); }
.sb-title { font-weight: 700; margin-bottom: 10px; }
.sidebar-cta .sb-title { color: var(--indigo); }
.sidebar-cta p { font-size: .88rem; color: var(--text-2); margin-bottom: 14px; }
.sb-links { display: flex; flex-direction: column; gap: 6px; }
.sb-links a { font-size: .88rem; color: var(--text-2); padding: 6px 0; border-bottom: 1px solid var(--border); }
.sb-links a:last-child { border: none; }
.sb-links a:hover { color: var(--indigo); }

/* === FAQ === */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 16px 20px; font-weight: 600; font-size: .95rem; color: var(--text); background: #fff; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--indigo); font-weight: 400; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .92rem; color: var(--text-2); line-height: 1.6; }

/* === CTA-SECTION === */
.section-cta { background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%); padding: 64px 0; text-align: center; }
.cta-inner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer-trust { display: flex; gap: 32px; padding: 20px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; justify-content: center; }
.ft-item { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 500; color: var(--text-2); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 48px 0; }
.footer-logo { font-weight: 800; font-size: 1.1rem; color: var(--indigo); margin-bottom: 10px; }
.footer-desc { font-size: .85rem; color: var(--text-2); line-height: 1.6; }
.footer-col h4 { font-weight: 700; margin-bottom: 14px; font-size: .9rem; color: var(--text); }
.footer-col a { display: block; font-size: .85rem; color: var(--text-2); padding: 4px 0; }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: .78rem; color: var(--text-3); margin-bottom: 4px; }
.site-footer { background: #fff; border-top: 1px solid var(--border); }

/* === STATIC PAGES === */
.page-wrap { max-width: 780px; padding: 48px 20px 72px; }
.page-wrap h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 28px; }
.page-content { font-size: .95rem; line-height: 1.75; color: var(--text-2); }
.page-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.page-content p { margin-bottom: 14px; }

/* === 404 === */
.error-page { text-align: center; padding: 80px 20px; }
.err-num { font-size: 6rem; font-weight: 900; color: var(--indigo); opacity: .15; line-height: 1; }
.error-page h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.error-page p { color: var(--text-2); margin-bottom: 28px; }
.error-page .btn { margin: 6px; }

/* === MOBILE === */
@media (max-width: 1023px) {
  .burger-btn { display: flex; }
  .main-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 52px 0 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-box { grid-template-columns: 1fr; gap: 28px; }
  .provider-preview { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .rc-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .vgl-row { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .vgl-stats { flex-direction: column; gap: 8px; }
  .related-grid { grid-template-columns: 1fr; }
  .fb-inner { gap: 6px; }
  .fb-sep { display: none; }
  .search-input { width: 110px; }
  .filter-bar { top: 56px; }
  .section { padding: 48px 0; }
}
