/* ── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --bg-deep:    #0C0D0F;
  --bg-mid:     #121418;
  --bg-card:    #171A1F;
  --bg-raised:  #1E2128;

  --copper:     #C97B3A;
  --copper-lt:  #E8A060;
  --copper-dim: #7A4820;
  --silver:     #A8B0BC;
  --silver-lt:  #D4DBE6;

  --text-1:     #F0F2F5;
  --text-2:     #8A95A3;
  --text-3:     #525C68;

  --border:     rgba(168,176,188,0.12);
  --border-md:  rgba(168,176,188,0.22);
  --copper-glow: rgba(201,123,58,0.15);

  --r:  10px;
  --r-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
main { padding-top: 92px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-deep);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}


/* ── GLOBAL FOCUS INDICATOR ───────────────────────────── */
:focus-visible {
  outline: 2px solid var(--copper-lt);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── TOUCH TARGETS: min 44×44 px for interactive elements ── */
button:not(.a11y-toggle):not(.a11y-close):not(.cb-close),
input[type="submit"],
input[type="button"] {
  min-height: 44px;
}
nav a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* ── HIGH CONTRAST SYSTEM PREFERENCE ─────────────────── */
@media (prefers-contrast: more) {
  :root {
    --text-1:    #FFFFFF;
    --text-2:    #D4DBE6;
    --text-3:    #A8B0BC;
    --border:    rgba(255,255,255,0.35);
    --border-md: rgba(255,255,255,0.55);
    --bg-deep:   #000000;
    --bg-mid:    #0A0B0D;
    --bg-card:   #111317;
  }
  .nav-cta,
  .btn-primary,
  .btn-plan,
  .btn-large {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }
}
/* ── LOGO SVG ──────────────────────────────────────── */
.logo-img { height:36px; width:auto; display:block; opacity:0.92; transition:opacity 0.2s; }
.logo-img:hover{opacity:1;}
.logo-img-footer{height:24px;width:auto;display:block;opacity:0.6;}
@media(max-width:640px){.logo-img{height:28px;}}

/* ── NAV ───────────────────────────────────────────── */
.site-header {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px); max-width: 1200px;
  background: rgba(12,13,15,0.72);
  backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(168,176,188,0.12);
  border-radius: 14px;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(12,13,15,0.88);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04) inset;
}
nav { display: flex; align-items: center; gap: 36px; }
nav a { color: var(--text-2); text-decoration: none; font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em; transition: color 0.2s; }
nav a:hover { color: var(--text-1); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--copper);
  color: var(--copper-lt) !important;
  padding: 9px 20px; border-radius: var(--r);
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { background: var(--copper-glow) !important; box-shadow: 0 0 20px var(--copper-glow); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  margin-top: -92px;
}
/* Subtle radial glow top-right */
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,123,58,0.10) 0%, transparent 65%);
  pointer-events: none;
}
/* Solar roof background image with dark overlay */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0.55;
  filter: grayscale(0%) brightness(0.75) contrast(1.05);
  display: block;
}
/* Uniform dark overlay — card handles direct text contrast */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,13,15,0.48);
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  background: rgba(10, 11, 13, 0.60);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 52px 68px 60px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--copper-lt);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 6.5vw, 4.875rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--text-1);
}
h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--copper-lt) 0%, var(--copper) 60%, #8B4E1A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem; font-weight: 300; color: rgba(240,242,245,0.78);
  max-width: 560px; line-height: 1.7;
  margin: 0 auto 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--copper-lt) 0%, var(--copper) 100%);
  color: #1A0E05;
  padding: 18px 44px; border-radius: var(--r);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 28px rgba(201,123,58,0.30);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,123,58,0.45); }

.btn-ghost {
  color: var(--text-2);
  padding: 14px 22px;
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--border-md); color: var(--text-1); }

.hero-stats {
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 36px;
  max-width: 580px;
}
.hero-stat {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.125rem; font-weight: 500;
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; line-height: 1;
}
.hero-stat .lbl { font-size: 0.75rem; color: var(--text-3); margin-top: 8px; letter-spacing: 0.03em; }

.hero-footnote {
  margin-top: 20px;
  font-size: 0.6875rem; color: rgba(255,255,255,0.30);
  letter-spacing: 0.03em;
}
.hero-footnote a {
  color: rgba(255,255,255,0.40);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.hero-footnote a:hover { color: var(--copper-lt); }

/* ── TRUST BAR ─────────────────────────────────────── */
.trustbar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--text-2);
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper); flex-shrink: 0;
}

/* ── SHARED SECTION ────────────────────────────────── */
.section { padding: 96px 5%; }
.section-dark { background: var(--bg-mid); }
.section-card { background: var(--bg-card); }
#angebot {
  position: relative;
  overflow: hidden;
}
#angebot::before {
  content: '';
  position: absolute; top: -100px; right: -60px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,123,58,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.label {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--copper); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1; font-weight: 500;
  color: var(--text-1);
  max-width: 700px;
  letter-spacing: -0.01em;
}
.sub { font-size: 1.0625rem; font-weight: 300; color: var(--text-2); margin-top: 18px; max-width: 580px; line-height: 1.7; }

/* ── PROBLEM CARDS ─────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px; margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.problem-card {
  background: var(--bg-card);
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.problem-card:hover { background: var(--bg-raised); }
.pc-icon { font-size: 1.375rem; margin-bottom: 16px; opacity: 0.85; }
.problem-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 10px; color: var(--text-1); }
.problem-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* ── STEPS ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.step {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 400;
  color: var(--border-md);
  line-height: 1; margin-bottom: 16px;
}
.step h3 { font-size: 0.9375rem; font-weight: 500; margin-bottom: 8px; color: var(--text-1); }
.step p { font-size: 0.8125rem; color: var(--text-2); line-height: 1.6; }
.step-connector {
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-deep); border: 1px solid var(--copper);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem; color: var(--copper); z-index: 1;
}

/* ── PRICING ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 0;
  margin-top: 52px; max-width: 1000px;
}
.pricing-card {
  background: rgba(10, 11, 13, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  align-items: start;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-md); }
.pricing-card.featured {
  border-color: var(--copper-dim);
  background: linear-gradient(160deg, rgba(201,123,58,0.10) 0%, rgba(10,11,13,0.55) 60%);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}
.featured-pill {
  position: absolute; top: -11px; left: 28px;
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  color: #1A0E05;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}
.plan-header { padding-bottom: 24px; }
.plan-type { font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 10px; }
.plan-name { font-family: 'Cormorant Garamond', serif; font-size: 1.625rem; font-weight: 500; color: var(--text-1); margin-bottom: 8px; }
.plan-desc { font-size: 0.8125rem; color: var(--text-2); line-height: 1.6; }
.plan-callout {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px; margin-bottom: 24px;
  font-size: 0.8125rem; color: var(--silver);
}
.plan-callout strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500; color: var(--copper-lt);
  display: block; margin-bottom: 0; line-height: 1.25;
}
.plan-example {
  font-size: 0.75rem;
  color: var(--text-2);
  background: rgba(201,123,58,0.06);
  border: 1px solid rgba(201,123,58,0.18);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0 0 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.plan-example strong { color: var(--copper-lt); font-weight: 500; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  font-size: 0.8125rem; padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--text-2);
}
.plan-features li::before { content: '—'; color: var(--copper); flex-shrink: 0; font-size: 0.75rem; margin-top: 1px; }
.btn-plan {
  display: block; text-align: center; text-decoration: none;
  padding: 14px; border-radius: var(--r);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  color: #1A0E05;
  transition: opacity 0.2s;
}
.btn-plan:hover { opacity: 0.85; }
.btn-plan-outline {
  display: block; text-align: center; text-decoration: none;
  padding: 14px; border-radius: var(--r);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid var(--border-md);
  color: var(--silver);
  transition: border-color 0.2s, color 0.2s;
}
.btn-plan-outline:hover { border-color: var(--copper); color: var(--copper-lt); }

/* ── CALCULATOR ────────────────────────────────────── */
.calc-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-top: 52px; align-items: start;
}
@media (max-width: 720px) { .calc-layout { grid-template-columns: 1fr; } }

.calc-controls label {
  display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; margin-top: 28px;
}
.range-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; font-weight: 400; color: var(--copper-lt);
  margin-bottom: 4px;
}
input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 2px; background: var(--border-md); border-radius: 2px; outline: none;
  accent-color: var(--copper);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--copper-lt);
  border: 2px solid var(--bg-deep);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(201,123,58,0.5);
}
.range-minmax { display: flex; justify-content: space-between; font-size: 0.6875rem; color: var(--text-3); margin-top: 5px; }

.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 18px;
}
.r-label { font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.r-value { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; font-weight: 400; color: var(--copper-lt); }
.r-sub { font-size: 0.6875rem; color: var(--text-3); margin-top: 4px; }
.calc-action {
  margin-top: 24px;
  display: block; text-align: center; text-decoration: none;
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  color: #1A0E05; padding: 16px;
  border-radius: var(--r); font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.calc-action:hover { opacity: 0.88; }
.calc-eigenkapital-hint {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(201,123,58,0.22);
  background: rgba(201,123,58,0.05);
  border-radius: var(--r);
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.6;
}
.calc-eigenkapital-hint strong { color: var(--copper-lt); font-weight: 500; }

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 26px;
  transition: border-color 0.2s;
}
.tcard:hover { border-color: var(--copper-dim); }
.tcard-stars { color: var(--copper); font-size: 0.8125rem; letter-spacing: 3px; margin-bottom: 16px; }
.tcard blockquote { font-size: 0.9375rem; font-weight: 300; line-height: 1.7; color: var(--silver); font-style: italic; margin-bottom: 22px; }
.tcard-author { font-size: 0.8125rem; font-weight: 500; color: var(--text-1); }
.tcard-role { font-size: 0.75rem; color: var(--text-3); margin-top: 2px; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 720px; margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-size: 1rem; font-weight: 400; color: var(--text-1);
  gap: 16px;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; color: var(--copper); font-weight: 300;
  transition: transform 0.25s, background 0.2s;
}
.faq-a { font-size: 0.875rem; font-weight: 300; color: var(--text-2); line-height: 1.7; padding-bottom: 22px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--copper-glow); border-color: var(--copper); }

/* ── CONTACT / ZOHO FORM ───────────────────────────── */
.contact-section { background: var(--bg-deep); }
.form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 8px;
  margin-top: 44px;
  max-width: 860px;
  overflow: hidden;
}
.form-wrapper iframe {
  border-radius: calc(var(--r-lg) - 4px);
  display: block;
}

/* ── FINAL CTA ─────────────────────────────────────── */
.final-cta {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 100px 5%;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,123,58,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta h2 { margin: 0 auto 18px; }
.final-cta p { font-size: 1.0625rem; font-weight: 300; color: var(--text-2); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.btn-large {
  background: linear-gradient(135deg, var(--copper-lt) 0%, var(--copper) 100%);
  color: #1A0E05;
  padding: 18px 48px; border-radius: var(--r);
  font-size: 1.0625rem; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; display: inline-block;
  box-shadow: 0 6px 32px rgba(201,123,58,0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-large:hover { transform: translateY(-3px); box-shadow: 0 10px 44px rgba(201,123,58,0.48); }
.reassurance { margin-top: 24px; display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; font-size: 0.8125rem; color: var(--text-3); }

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 36px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 0; }
.footer-links a { color: var(--text-3); text-decoration: none; font-size: 0.8125rem; margin-left: 28px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-2); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 640px) {
  header nav { display: none; }
  .nav-cta { font-size: 0.75rem; padding: 8px 14px; }
  .hero { padding: 72px 5% 60px; min-height: auto; }
  .hero-inner { padding: 40px 28px 48px; border-radius: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { text-align: center; min-width: 240px; }
  .hero-stats { flex-direction: column; max-width: 100%; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .trustbar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section { padding: 60px 5%; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; row-gap: 20px; }
  .pricing-card { grid-row: span 1; grid-template-rows: none; display: flex; flex-direction: column; }
  .calc-results { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 12px; }
  .footer-links a { margin-left: 0; }
  .final-cta { padding: 72px 5%; }
  .reassurance { flex-direction: column; align-items: center; gap: 10px; }
}
@media (max-width: 400px) {
  .calc-results { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}

.strip-img { overflow: hidden; }
.strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(30%) brightness(0.8);
  transition: opacity 0.4s, transform 0.5s;
  display: block;
}
.strip-img:hover img { opacity: 0.75; transform: scale(1.03); }
.strip-img--tall { align-self: stretch; }
@media (max-width: 640px) {
  .image-strip { grid-template-columns: 1fr 1fr; height: 220px; }
  .strip-img:last-child { display: none; }
}


.tech-banner__img { overflow: hidden; position: relative; }
.tech-banner__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.6;
  filter: grayscale(20%) brightness(0.75);
  display: block;
}
.tech-banner__text {
  padding: 80px 6%;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-mid);
}
@media (max-width: 720px) {
  .tech-banner { grid-template-columns: 1fr; }
  .tech-banner__img { height: 260px; }
  .tech-banner__text { padding: 52px 5%; }
}


/* ── CONTACT WIDGET ────────────────────────────────── */
.contact-widget {
  max-width: 680px;
  margin-top: 44px;
  background: rgba(10, 11, 13, 0.60);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
}

/* Trust bar */
.cw-trust {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 14px 18px;
  background: rgba(201,123,58,0.06);
  border: 1px solid rgba(201,123,58,0.18);
  border-radius: var(--r);
}
.cw-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--silver-lt);
  white-space: nowrap;
}
.cw-trust-icon {
  color: var(--copper-lt);
  font-size: 0.75rem;
  font-weight: 700;
}

.cw-hidden { display: none !important; }

.cw-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.cw-field { display: flex; flex-direction: column; gap: 6px; }
.cw-field--full { grid-column: 1 / -1; }
.cw-field label { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-2); }
.cw-field input,
.cw-field select,
.cw-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r);
  padding: 13px 16px;
  font-size: 0.9375rem; font-family: inherit;
  color: var(--text-1);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.cw-field input:hover,
.cw-field select:hover,
.cw-field textarea:hover { background: rgba(255,255,255,0.06); }
.cw-field input::placeholder,
.cw-field textarea::placeholder { color: var(--text-3); }
.cw-field input:-webkit-autofill,
.cw-field input:-webkit-autofill:hover,
.cw-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #16181d inset !important;
  -webkit-text-fill-color: var(--text-1) !important;
  caret-color: var(--text-1);
  border-color: rgba(255,255,255,0.10) !important;
}
.cw-field input:focus,
.cw-field select:focus,
.cw-field textarea:focus { border-color: var(--copper); }
.cw-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A95A3' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.cw-field select option { background: var(--bg-card); }

/* Submit area */
.cw-submit-wrap { display: flex; flex-direction: column; gap: 0; }
.cw-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  color: #1A0E05;
  border: none;
  border-radius: var(--r);
  padding: 18px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 123, 58, 0.30);
}
.cw-submit-btn:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201, 123, 58, 0.40);
}
.cw-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.cw-privacy {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Success state */
.cw-success {
  text-align: center;
  padding: 32px 0 16px;
}
.cw-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,123,58,0.10);
  border: 1px solid var(--copper);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.625rem; color: var(--copper-lt);
  margin: 0 auto 24px;
  animation: successPop 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes successPop {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cw-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; font-weight: 500;
  color: var(--text-1); margin-bottom: 14px;
}
.cw-success p {
  font-size: 0.9375rem; color: var(--text-2);
  line-height: 1.75; margin-bottom: 24px;
  max-width: 420px; margin-left: auto; margin-right: auto;
}
.cw-success strong { color: var(--copper-lt); font-weight: 500; }
.cw-success-points {
  list-style: none;
  display: inline-flex; flex-direction: column; gap: 10px;
  text-align: left;
  margin: 0 auto;
  padding: 20px 28px;
  background: rgba(201,123,58,0.06);
  border: 1px solid rgba(201,123,58,0.18);
  border-radius: var(--r);
}
.cw-success-points li {
  font-size: 0.8125rem; color: var(--silver-lt);
  display: flex; align-items: center; gap: 10px;
}
.cw-success-points li::before {
  content: '✓';
  color: var(--copper-lt); font-weight: 700; font-size: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .contact-widget { padding: 28px 22px; }
  .cw-trust { gap: 12px; padding: 14px 16px; }
  .cw-form-grid { grid-template-columns: 1fr; }
  .cw-field--full { grid-column: auto; }
}

/* ── HERO ENTRANCE ANIMATION ───────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow,
.hero-inner h1,
.hero-sub,
.hero-actions,
.hero-stats {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-eyebrow  { animation-delay: 0.2s; }
.hero-inner h1 { animation-delay: 0.45s; }
.hero-sub      { animation-delay: 0.65s; }
.hero-actions  { animation-delay: 0.82s; }
.hero-stats    { animation-delay: 1.0s; }

/* ── TECH HERO (full-bleed image + overlay text) ──── */
.tech-hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-hero__img {
  position: absolute; inset: 0;
}
.tech-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: brightness(0.55) saturate(0.7);
}
.tech-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,13,15,0.35) 0%,
    rgba(12,13,15,0.15) 40%,
    rgba(12,13,15,0.55) 100%
  );
}
.tech-hero__content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 80px 5%;
  max-width: 760px;
}
.tech-hero__h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08; font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
  margin-top: 14px; margin-bottom: 20px;
  max-width: 100%;
}
.tech-hero__sub {
  font-size: 1.0625rem; font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

/* ── SCROLL REVEAL ─────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .tech-hero { min-height: 420px; }
  .tech-hero__h2 { font-size: 2.25rem; }
}


/* ── COOKIE BANNER ─────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px); max-width: 780px;
  background: rgba(22, 25, 31, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(201,123,58,0.25);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,123,58,0.08);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#cookie-banner.hidden {
  opacity: 0; transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}
.cb-close {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px;
  background: transparent; border: none;
  color: rgba(168,176,188,0.7); font-size: 1.375rem; line-height: 1;
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.cb-close:hover { color: #D4DBE6; background: rgba(168,176,188,0.08); }
.cb-close:focus-visible { outline: 2px solid #E8A060; outline-offset: 2px; }
.cb-text {
  flex: 1; min-width: 220px;
  font-size: 0.8125rem; font-weight: 300; color: rgba(168,176,188,0.85);
  line-height: 1.65;
}
.cb-text strong { color: #D4DBE6; font-weight: 500; font-size: 0.875rem; display: block; margin-bottom: 4px; }
.cb-text a { color: #C97B3A; text-decoration: none; border-bottom: 1px solid rgba(201,123,58,0.3); }
.cb-text a:hover { border-color: #E8A060; }
.cb-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cb-btn {
  padding: 10px 20px; border-radius: 8px;
  font-size: 0.8125rem; font-weight: 500; font-family: inherit;
  cursor: pointer; border: none; transition: all 0.2s;
  letter-spacing: 0.03em; white-space: nowrap;
}
.cb-btn-settings {
  background: transparent;
  border: 1px solid rgba(168,176,188,0.2);
  color: rgba(168,176,188,0.7);
}
.cb-btn-settings:hover { border-color: rgba(168,176,188,0.5); color: #D4DBE6; }
.cb-btn-reject {
  background: transparent;
  border: 1px solid rgba(168,176,188,0.2);
  color: rgba(168,176,188,0.7);
}
.cb-btn-reject:hover { border-color: rgba(168,176,188,0.5); color: #D4DBE6; }
.cb-btn-accept {
  background: linear-gradient(135deg, #E8A060, #C97B3A);
  color: #1A0E05;
}
.cb-btn-accept:hover { opacity: 0.88; transform: translateY(-1px); }

/* Settings Modal */
#cookie-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#cookie-modal.open { opacity: 1; pointer-events: all; }
.cm-box {
  background: #171A1F;
  border: 1px solid rgba(168,176,188,0.15);
  border-radius: 16px;
  padding: 36px;
  max-width: 520px; width: 100%;
  max-height: 85vh; overflow-y: auto;
}
.cm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: #F0F2F5; margin-bottom: 8px;
}
.cm-sub { font-size: 0.8125rem; color: #525C68; margin-bottom: 28px; line-height: 1.6; }
.cm-category {
  border-top: 1px solid rgba(168,176,188,0.1);
  padding: 18px 0;
}
.cm-cat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cm-cat-name { font-size: 0.875rem; font-weight: 500; color: #D4DBE6; }
.cm-cat-desc { font-size: 0.8125rem; color: #525C68; line-height: 1.6; }
/* Toggle switch */
.cm-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.cm-toggle input { opacity: 0; width: 0; height: 0; }
.cm-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: rgba(168,176,188,0.15); border-radius: 22px;
  transition: background 0.2s;
}
.cm-slider::before {
  content: ''; position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: #8A95A3; bottom: 3px; left: 3px;
  transition: transform 0.2s, background 0.2s;
}
.cm-toggle input:checked + .cm-slider { background: rgba(201,123,58,0.3); }
.cm-toggle input:checked + .cm-slider::before { transform: translateX(18px); background: #E8A060; }
.cm-toggle input:disabled + .cm-slider { opacity: 0.5; cursor: not-allowed; }
.cm-actions { display: flex; gap: 10px; margin-top: 28px; justify-content: flex-end; }
@media (max-width: 560px) {
  #cookie-banner { bottom: 12px; left: 12px; right: 12px; width: auto; transform: none; }
  #cookie-banner.hidden { transform: translateY(16px); }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; text-align: center; }
}


}


  /* ── HEIZUNGS-BUTTONS ──────────────────────────────── */
  .calc-heat-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  .calc-heat-btn {
    background: #1E2128;
    border: 1px solid rgba(168,176,188,0.22);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #8A95A3;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    letter-spacing: 0.03em;
  }
  .calc-heat-btn:hover {
    border-color: #C97B3A;
    color: #F0F2F5;
    transform: translateY(-1px);
  }
  .calc-heat-btn.active {
    background: rgba(201,123,58,0.12);
    border-color: #C97B3A;
    color: #E8A060;
    font-weight: 500;
  }
  .calc-heat-hint {
    font-size: 0.75rem;
    color: #525C68;
    margin-top: 12px;
    line-height: 1.55;
    font-style: italic;
  }
  .calc-disclaimer {
    font-size: 0.6875rem;
    color: #525C68;
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.55;
  }


  /* ── RESPONSIVE: Process steps ───────────────────── */
  @media (max-width: 640px) {
    .steps {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .step-connector { display: none; }
  }

  /* ── RESPONSIVE: Contact widget form grid ─────────── */
  @media (max-width: 560px) {
    .cw-form-grid {
      grid-template-columns: 1fr;
    }
    .cw-field--full { grid-column: 1; }
  }


  .logo-img {
    height: 36px;
    width: auto;
    display: block;
    opacity: 0.92;
    transition: opacity 0.2s;
  }
  .logo-img:hover { opacity: 1; }
  @media (max-width: 640px) {
    .logo-img { height: 28px; }
  }


/* ── MOBILE NAV ─────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #F0F2F5;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, width 0.25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,13,15,0.97);
  backdrop-filter: blur(20px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 40px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #F0F2F5;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: #E8A060; }
.mobile-nav .mobile-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, #E8A060, #C97B3A);
  color: #1A0E05 !important;
  padding: 14px 36px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .burger { display: flex; }
  header nav { display: none; }
}


/* ══════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ══════════════════════════════════════════════════════════ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}
.container--narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.breadcrumbs li + li::before { content: '/'; margin-right: 6px; }
.breadcrumbs a { color: var(--text-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--copper-lt); }
.breadcrumbs [aria-current] { color: var(--text-2); }


/* ══════════════════════════════════════════════════════════
   RATGEBER INDEX
   ══════════════════════════════════════════════════════════ */

.page-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.page-header__label {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 16px;
}
.page-header h1 em { color: var(--copper-lt); font-style: italic; }
.page-header p { font-size: 1rem; color: var(--text-2); line-height: 1.7; max-width: 600px; }
.page-header__meta { font-size: 0.8125rem; color: var(--text-3); margin-top: 20px; }

/* Featured / Pillar Article */
.article-featured {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  margin-bottom: 56px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.article-featured:hover { border-color: var(--copper-dim); }
.article-featured__badge {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid var(--copper-dim);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 16px;
}
.article-featured h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 12px;
}
.article-featured p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 64px;
}
.article-grid h2 {
  grid-column: 1 / -1;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 4px;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.article-card:hover { border-color: var(--border-md); background: var(--bg-raised); }
.article-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.4;
  margin-bottom: 10px;
}
.article-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

/* Tags */
.tag {
  font-size: 0.6875rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-raised);
  color: var(--text-3);
  white-space: nowrap;
}
.tag--small { font-size: 0.625rem; padding: 2px 7px; }

/* Read more link */
.read-more {
  font-size: 0.8125rem;
  color: var(--copper);
  font-weight: 500;
  margin-left: auto;
  white-space: nowrap;
}
.article-featured .read-more { display: block; }


/* ══════════════════════════════════════════════════════════
   ARTIKEL-LAYOUT
   ══════════════════════════════════════════════════════════ */

.article {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 5% 96px;
}

/* Article Header */
.article-header { padding: 48px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.article-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 16px;
}
.article-lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-raised);
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--copper-dim);
  color: var(--copper-lt);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author span[itemprop="name"] { display: block; font-size: 0.8125rem; font-weight: 500; color: var(--text-2); }
.author .role { font-size: 0.6875rem; color: var(--text-3); }
.reading-time::before { content: '· '; }
.updated { color: var(--text-3); }

/* Hero Image */
.article-hero { margin-bottom: 40px; border-radius: var(--r); overflow: hidden; }
.article-hero img { width: 100%; height: auto; display: block; }

/* Table of Contents */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.toc h2 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
#toc-nav ol { list-style: none; padding: 0; }
#toc-nav > ol > li { margin-bottom: 8px; }
#toc-nav > ol > li > ol { padding-left: 16px; margin-top: 6px; }
#toc-nav > ol > li > ol > li { margin-bottom: 6px; }
#toc-nav a {
  font-size: 0.875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}
#toc-nav a:hover,
#toc-nav a.toc-active { color: var(--copper-lt); }

/* Article Body Typography */
.article-body { line-height: 1.8; }
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--text-1);
  margin: 56px 0 18px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-1);
  margin: 36px 0 12px;
}
.article-body h4 { font-size: 0.9375rem; font-weight: 500; color: var(--text-2); margin: 24px 0 10px; }
.article-body p { color: var(--text-2); margin-bottom: 20px; }
.article-body ul,
.article-body ol { padding-left: 24px; margin-bottom: 20px; color: var(--text-2); }
.article-body li { margin-bottom: 8px; line-height: 1.7; }
.article-body strong { color: var(--text-1); font-weight: 500; }
.article-body em { font-style: italic; }
.article-body a { color: var(--copper-lt); text-decoration: none; border-bottom: 1px solid var(--copper-dim); }
.article-body a:hover { color: var(--copper); border-color: var(--copper); }
.article-body blockquote {
  border-left: 3px solid var(--copper);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--bg-card);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--silver);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.875rem;
}
.article-body th {
  background: var(--bg-raised);
  color: var(--text-1);
  font-weight: 500;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-md);
}
.article-body td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: top;
}
.article-body tr:last-child td { border-bottom: none; }

/* Related Articles */
.related-articles { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-articles h2 { font-size: 1.125rem; font-weight: 500; color: var(--text-2); margin-bottom: 20px; }


/* ══════════════════════════════════════════════════════════
   STANDARD-SEITEN (Datenschutz, Impressum, Barrierefreiheit)
   ══════════════════════════════════════════════════════════ */

.container--narrow h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin: 8px 0 32px;
}
.container--narrow h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-1);
  margin: 40px 0 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.container--narrow h2:first-of-type { border-top: none; padding-top: 0; }
.container--narrow h3 { font-size: 0.9375rem; font-weight: 500; color: var(--text-2); margin: 24px 0 8px; }
.container--narrow p { color: var(--text-2); margin-bottom: 16px; line-height: 1.75; }
.container--narrow ul,
.container--narrow ol { padding-left: 20px; margin-bottom: 16px; color: var(--text-2); }
.container--narrow li { margin-bottom: 6px; line-height: 1.7; }
.container--narrow a { color: var(--copper-lt); text-decoration: none; }
.container--narrow a:hover { color: var(--copper); }
.container--narrow address { font-style: normal; color: var(--text-2); line-height: 1.9; margin-bottom: 16px; }
.container--narrow strong { color: var(--text-1); font-weight: 500; }
.container--narrow time { color: var(--text-2); }

.text-label {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.text-meta { font-size: 0.8125rem; color: var(--text-3); margin-bottom: 32px; }

/* Definition List für Impressum */
.legal-dl { margin: 0 0 32px; }
.legal-dl dt { font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-top: 20px; margin-bottom: 4px; }
.legal-dl dd { color: var(--text-2); line-height: 1.75; }
.legal-dl dd a { color: var(--copper-lt); text-decoration: none; }

/* Consent-Badges in Datenschutz */
.badge-label {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-raised);
  color: var(--text-3);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.badge-label--consent { background: rgba(201,123,58,0.12); color: var(--copper); }

/* Statisches TOC (Datenschutz Inhaltsverzeichnis) */
.toc-static {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 28px;
  margin: 32px 0 48px;
  display: inline-block;
  min-width: 260px;
}
.toc-static h2 { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; border: none; padding: 0; }
.toc-static ol { padding-left: 18px; list-style: decimal; }
.toc-static li { margin-bottom: 6px; }
.toc-static a { font-size: 0.875rem; color: var(--text-2); text-decoration: none; }
.toc-static a:hover { color: var(--copper-lt); }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — INHALTSSEITEN
   ══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .article { padding-bottom: 64px; }
  .article-header { padding: 32px 0 28px; }
  .article-body h2 { margin-top: 40px; }
  .article-body table { font-size: 0.75rem; }
  .article-body th,
  .article-body td { padding: 8px 10px; }
  .article-featured { padding: 24px 20px; }
  .article-grid { grid-template-columns: 1fr; }
  .page-header { padding: 40px 0 32px; }
  .toc-static { display: block; }
}

/* ══════════════════════════════════════════════════════════
   RENDITE-BEISPIEL
   ══════════════════════════════════════════════════════════ */


.yield-example {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}
.yield-card {
  max-width: 820px;
  margin: 28px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.yield-card-head { margin-bottom: 20px; }
.yield-setup {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-lt);
  text-align: center;
}
.yield-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.yield-row {
  display: grid;
  grid-template-columns: 1.3fr auto;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.yield-row:first-child { border-top: none; }
.yield-row-label {
  font-size: 0.875rem;
  color: var(--silver-lt);
  font-weight: 400;
}
.yield-row-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-1);
  text-align: right;
  white-space: nowrap;
}
.yield-row-note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.5;
}
.yield-row--total {
  border-top: 1px solid var(--border-md);
  padding-top: 20px;
  margin-top: 4px;
}
.yield-row--total .yield-row-label { font-weight: 500; }
.yield-row--result {
  margin-top: 8px;
  border-top: 2px solid var(--copper);
  padding-top: 22px;
}
.yield-row--result .yield-row-label {
  font-weight: 500; color: var(--text-1);
}
.yield-row--result .yield-row-value {
  font-size: 1.875rem;
  background: linear-gradient(135deg, var(--copper-lt), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.yield-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.6;
  text-align: center;
}
.yield-cta {
  display: inline-block;
  margin: 20px auto 0;
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.yield-card .yield-cta {
  display: block;
  width: max-content;
  margin: 20px auto 0;
}

@media (max-width: 640px) {
  .yield-card { padding: 22px 18px; }
  .yield-row { grid-template-columns: 1fr; }
  .yield-row-value { text-align: left; font-size: 1.25rem; }
  .yield-row--result .yield-row-value { font-size: 1.625rem; }
}

/* ══════════════════════════════════════════════════════════
   ACCESSIBILITY — SKIP LINK, WIDGET, OPTIONEN
   ══════════════════════════════════════════════════════════ */

.skip-link {
  position: fixed; top: 0; left: 0;
  background: var(--copper); color: #1A0E05;
  padding: 12px 20px;
  font-size: 0.875rem; font-weight: 500;
  border-radius: 0 0 var(--r) 0;
  text-decoration: none;
  z-index: 10001;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
  width: 1px; height: 1px;
}
.skip-link:focus,
.skip-link:focus-visible {
  clip-path: none;
  clip: auto;
  width: auto; height: auto;
  overflow: visible;
  outline: 2px solid var(--copper-lt);
  outline-offset: 2px;
}

/* Floating Action Button (FAB) */
.a11y-fab {
  position: fixed;
  left: 18px; bottom: 18px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,123,58,0.35);
  background: rgba(22, 25, 31, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  color: var(--copper-lt);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  z-index: 9998;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.a11y-fab:hover { transform: translateY(-2px); border-color: var(--copper); }
.a11y-fab:focus-visible { outline: 2px solid var(--copper-lt); outline-offset: 3px; }

/* Panel */
.a11y-panel[hidden] { display: none; }
.a11y-panel {
  position: fixed;
  left: 18px; bottom: 76px;
  width: 300px; max-width: calc(100vw - 36px);
  background: #171A1F;
  border: 1px solid rgba(168,176,188,0.18);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  z-index: 9998;
  color: var(--silver-lt);
}
.a11y-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.a11y-panel-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--text-1);
  margin: 0;
}
.a11y-close {
  background: transparent; border: none;
  color: var(--text-2); font-size: 1.5rem; line-height: 1;
  width: 32px; height: 32px; border-radius: 8px;
  cursor: pointer;
}
.a11y-close:hover { color: var(--text-1); background: rgba(168,176,188,0.08); }
.a11y-close:focus-visible { outline: 2px solid var(--copper-lt); outline-offset: 2px; }
.a11y-panel-sub {
  font-size: 0.75rem; color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 16px;
}
.a11y-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(168,176,188,0.1);
}
.a11y-option--col {
  flex-direction: column; align-items: flex-start; gap: 10px;
}
.a11y-option-label {
  font-size: 0.8125rem; font-weight: 500; color: var(--silver-lt);
}
.a11y-toggle {
  position: relative;
  width: 40px; height: 22px;
  border: 1px solid rgba(168,176,188,0.25);
  border-radius: 999px;
  background: rgba(168,176,188,0.12);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.a11y-toggle-slider {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: var(--silver-lt);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}
.a11y-toggle.on {
  background: var(--copper);
  border-color: var(--copper);
}
.a11y-toggle.on .a11y-toggle-slider {
  transform: translateX(18px);
  background: #1A0E05;
}
.a11y-toggle:focus-visible { outline: 2px solid var(--copper-lt); outline-offset: 2px; }
.a11y-size-btns {
  display: flex; gap: 6px; width: 100%;
}
.a11y-size-btn {
  flex: 1;
  padding: 8px 0;
  border: 1px solid rgba(168,176,188,0.2);
  background: transparent;
  color: var(--silver);
  border-radius: 8px;
  font-family: inherit; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.a11y-size-btn[data-size="lg"]  { font-size: 0.9375rem; }
.a11y-size-btn[data-size="xl"]  { font-size: 1.0625rem; }
.a11y-size-btn:hover { border-color: rgba(168,176,188,0.45); color: var(--silver-lt); }
.a11y-size-btn.active {
  border-color: var(--copper);
  background: rgba(201,123,58,0.12);
  color: var(--copper-lt);
}
.a11y-size-btn:focus-visible { outline: 2px solid var(--copper-lt); outline-offset: 2px; }
.a11y-reset {
  margin-top: 14px;
  width: 100%;
  padding: 9px 0;
  border: 1px solid rgba(168,176,188,0.2);
  background: transparent;
  color: var(--text-2);
  border-radius: 8px;
  font-family: inherit; font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}
.a11y-reset:hover { border-color: rgba(168,176,188,0.45); color: var(--silver-lt); }
.a11y-panel-footer {
  margin-top: 14px; font-size: 0.6875rem; color: var(--text-3);
  text-align: center;
}
.a11y-panel-footer a { color: var(--text-2); text-decoration: underline; }
.a11y-panel-footer a:hover { color: var(--copper-lt); }

/* Applied classes on <body> */
html.a11y-text-lg { font-size: 112.5%; }
html.a11y-text-xl { font-size: 125%; }
body.a11y-reduce-motion,
body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}
body.a11y-reduce-motion .scroll-reveal { opacity: 1 !important; transform: none !important; }

body.a11y-contrast {
  --text-1: #FFFFFF;
  --text-2: #D4DBE6;
  --text-3: #A8B0BC;
  --border: rgba(255,255,255,0.35);
  --border-md: rgba(255,255,255,0.55);
  --bg-deep: #000000;
  --bg-mid:  #0A0B0D;
  --bg-card: #111317;
}
body.a11y-contrast a,
body.a11y-contrast .hero-eyebrow,
body.a11y-contrast .label { color: var(--copper-lt) !important; }
body.a11y-contrast .hero-stat .lbl,
body.a11y-contrast .r-label,
body.a11y-contrast .r-sub,
body.a11y-contrast .calc-disclaimer { color: var(--text-2) !important; }
body.a11y-contrast .btn-primary,
body.a11y-contrast .btn-plan { outline: 2px solid var(--copper-lt); outline-offset: 2px; }

/* Respect user system preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 640px) {
  .a11y-fab { left: 12px; bottom: 12px; width: 44px; height: 44px; }
  .a11y-panel { left: 12px; right: 12px; width: auto; bottom: 64px; }
}

