/* ============================================================
   WÄRMEPUMPE SOFORTANGEBOT — Premium Design v2 (hell)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --bg:           #F7F9F6;
  --bg-soft:      #EAF4EF;
  --bg-warm:      #F2EADB;
  --white:        #FFFFFF;

  --dark:         #071726;
  --dark-2:       #0B2238;
  --dark-3:       #102033;

  --green:        #18C878;
  --green-deep:   #0E7A4F;
  --green-shadow: rgba(24, 200, 120, 0.35);

  --gold:         #D8A84E;

  --text:         #102033;
  --text-muted:   #5E6B78;
  --text-soft:    #8A95A1;

  --border:       #E2E8E5;
  --border-soft:  #ECF0EE;

  --shadow-xs: 0 1px 2px rgba(7,23,38,0.04);
  --shadow-sm: 0 4px 12px rgba(7,23,38,0.06);
  --shadow-md: 0 12px 32px rgba(7,23,38,0.08);
  --shadow-lg: 0 24px 60px rgba(7,23,38,0.12);
  --shadow-xl: 0 40px 100px rgba(7,23,38,0.18);
  --shadow-green: 0 12px 32px rgba(24, 200, 120, 0.32);

  --radius:    16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --font: 'Inter', 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;

  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1240px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);

  --header-h: 80px;
}

/* ----- RESET ----- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ----- LAYOUT ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-soft  { background: var(--bg-soft); }
.section-warm  { background: var(--bg-warm); }
.section-white { background: var(--white); }
.section-dark  { background: var(--dark); color: #fff; }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--dark);
  font-weight: 800;
}
h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.25; }
h4 { font-size: 1.15rem; font-weight: 700; line-height: 1.35; }

p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; }
.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(24, 200, 120, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(24, 200, 120, 0.18);
}
.section-dark .eyebrow {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 { margin: 1.25rem 0 1.25rem; }
.section-head .lead { font-size: 1.2rem; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
  line-height: 1;
  min-height: 56px;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: #14b06a;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(24, 200, 120, 0.45);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(7, 23, 38, 0.04);
  color: var(--dark);
}
.btn-ghost:hover { background: rgba(7, 23, 38, 0.08); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--dark);
  border-color: rgba(7,23,38,0.08);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1.25rem 2.4rem; font-size: 1.125rem; min-height: 64px; }
.btn-sm { padding: 0.75rem 1.4rem; font-size: 0.95rem; min-height: 44px; }
.btn-block { width: 100%; }
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform var(--t);
  font-weight: 600;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ----- TRUST PILLS ----- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
.trust-row span::before {
  content: '✓';
  display: inline-flex;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(24, 200, 120, 0.15);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 246, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 2px 16px rgba(7, 23, 38, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--dark);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(24, 200, 120, 0.32);
}
.logo small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.header-nav { flex: 1; display: flex; justify-content: center; }
.header-nav ul { display: flex; gap: 0.25rem; }
.header-nav a {
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  transition: background var(--t), color var(--t);
}
.header-nav a:hover, .header-nav a.active {
  background: rgba(7, 23, 38, 0.05);
  color: var(--dark);
}
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--t);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 80% 0%, rgba(24, 200, 120, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(216, 168, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}
.hero-content { max-width: 620px; }
.hero h1 {
  margin: 1.25rem 0 1.5rem;
  color: var(--dark);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--green-deep) 0%, var(--green) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero .lead { margin-bottom: 2rem; max-width: 540px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--dark);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,23,38,0.45) 100%);
  pointer-events: none;
}

/* Floating cards on hero */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 1.25rem;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.6);
}
.float-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(24, 200, 120, 0.12);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.float-card-text {
  display: flex;
  flex-direction: column;
}
.float-card-text strong { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.float-card-text small { font-size: 0.78rem; color: var(--text-muted); }
.float-card.fc-1 { top: 8%; left: -8%; animation: floatA 6s ease-in-out infinite; }
.float-card.fc-2 { top: 38%; right: -10%; animation: floatB 7s ease-in-out infinite; }
.float-card.fc-3 { bottom: 18%; left: -4%; animation: floatA 6.5s ease-in-out 1s infinite; }
.float-card.fc-4 { bottom: 4%; right: -2%; background: var(--dark); color: #fff; border-color: var(--dark-2); }
.float-card.fc-4 .float-card-icon { background: rgba(24, 200, 120, 0.2); color: var(--green); }
.float-card.fc-4 .float-card-text strong { color: #fff; }
.float-card.fc-4 .float-card-text small { color: rgba(255,255,255,0.6); }

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   PROBLEM / VALUE CARDS (große Karten)
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.value-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24, 200, 120, 0.14), rgba(216, 168, 78, 0.14));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
}
.value-card h3 { margin-bottom: 0.85rem; }
.value-card p { margin-bottom: 1.5rem; flex: 1; }
.value-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 1rem;
  transition: gap var(--t);
}
.value-card-link:hover { gap: 0.7rem; }
.value-card-link::after { content: '→'; }

/* ============================================================
   QUICK CHECK
   ============================================================ */
.qc-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.qc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.qc-text h2 { margin: 1.25rem 0 1.25rem; }
.qc-text .lead { margin-bottom: 2rem; }
.qc-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.qc-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: 800;
}
.qc-meta-item span { font-size: 0.9rem; color: var(--text-muted); }

.qc-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.qc-progress {
  padding: 1.25rem 2rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qc-progress-track {
  flex: 1;
  height: 6px;
  background: rgba(7, 23, 38, 0.06);
  border-radius: 100px;
  overflow: hidden;
}
.qc-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.qc-step-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.qc-body { padding: clamp(1.75rem, 3vw, 2.75rem); }
.qc-question { display: none; animation: qcIn 0.4s ease; }
.qc-question.active { display: block; }
.qc-question h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.qc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.qc-option {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1.05rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 60px;
}
.qc-option:hover {
  border-color: var(--green);
  background: rgba(24, 200, 120, 0.04);
  transform: translateY(-1px);
}
.qc-option.selected {
  border-color: var(--green-deep);
  background: rgba(24, 200, 120, 0.08);
}
.qc-result {
  display: none;
  animation: qcIn 0.5s ease;
  text-align: center;
  padding: 1rem;
}
.qc-result.active { display: block; }
.qc-result-icon {
  width: 76px; height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: var(--shadow-green);
}
.qc-result h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.qc-result p { margin-bottom: 1.75rem; font-size: 1.05rem; }

@keyframes qcIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   THERMONDO BLOCK
   ============================================================ */
.thermondo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.thermondo-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.thermondo-image img { width: 100%; height: 100%; object-fit: cover; }
.thermondo-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(7,23,38,0.3) 100%);
}
.thermondo-text h2 { margin: 1.25rem 0 1.5rem; }
.thermondo-features {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 2.25rem;
}
.thermondo-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  transition: transform var(--t), border-color var(--t);
}
.thermondo-feature:hover {
  transform: translateX(4px);
  border-color: rgba(24, 200, 120, 0.3);
}
.thermondo-feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(24, 200, 120, 0.12);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 800;
}
.thermondo-feature p {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.thermondo-cta-sub {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   COMPARE BLOCK
   ============================================================ */
.compare-section { background: var(--white); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.compare-col {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--border-soft);
  background: #fff;
  position: relative;
}
.compare-bad {
  background: linear-gradient(180deg, #FFFBFA 0%, #FFF5F2 100%);
  border-color: rgba(229, 72, 77, 0.18);
}
.compare-good {
  background: linear-gradient(180deg, #F4FBF8 0%, #ECFAF2 100%);
  border-color: rgba(24, 200, 120, 0.25);
}
.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.compare-bad .compare-label { background: rgba(229,72,77,0.1); color: #C53A3F; }
.compare-good .compare-label { background: rgba(24,200,120,0.12); color: var(--green-deep); }
.compare-col h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }
.compare-list { display: flex; flex-direction: column; gap: 0.85rem; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.compare-list-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 2px;
}
.compare-bad .compare-list-icon { background: rgba(229,72,77,0.12); color: #C53A3F; }
.compare-good .compare-list-icon { background: rgba(24,200,120,0.15); color: var(--green-deep); }
.compare-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   ALTBAU
   ============================================================ */
.altbau-section { background: var(--bg-warm); }
.altbau-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.altbau-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-xl);
}
.altbau-image img { width: 100%; height: 100%; object-fit: cover; }
.altbau-points {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 2.25rem;
}
.altbau-point {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  transition: transform var(--t);
}
.altbau-point:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.altbau-point-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #B58A3C 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}
.altbau-point h4 { margin-bottom: 0.25rem; }
.altbau-point p { margin: 0; font-size: 0.96rem; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-section {
  background: var(--dark);
  color: #fff;
  position: relative;
}
.ba-section .eyebrow { color: #fff; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.ba-section h2 { color: #fff; }
.ba-section .lead { color: rgba(255,255,255,0.72); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.ba-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  min-height: 380px;
}
.ba-col-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-col::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,23,38,0.2) 0%, rgba(7,23,38,0.85) 100%);
}
.ba-col.before::after {
  background: linear-gradient(180deg, rgba(7,23,38,0.3) 0%, rgba(7,23,38,0.92) 100%);
}
.ba-col.after::after {
  background: linear-gradient(180deg, rgba(14,122,79,0.25) 0%, rgba(7,23,38,0.85) 100%);
}
.ba-col-body {
  position: absolute;
  inset: 0;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  color: #fff;
}
.ba-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.ba-col.before .ba-tag { background: rgba(229,72,77,0.85); color: #fff; }
.ba-col.after .ba-tag { background: var(--green); color: #fff; }
.ba-col h3 { color: #fff; margin-bottom: 1rem; font-size: 1.6rem; }
.ba-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.ba-col li {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.88);
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.ba-col li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 800;
}
.ba-col.before li::before { content: '✕'; color: rgba(255,150,150,0.9); }
.ba-col.after li::before { content: '✓'; color: var(--green); }
.ba-cta-row { text-align: center; margin-top: 3rem; }
.ba-cta-row p { color: rgba(255,255,255,0.6); margin-top: 0.85rem; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { background: var(--bg-soft); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.trust-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  border: 1px solid var(--border-soft);
  transition: transform var(--t);
}
.trust-card:hover { transform: translateY(-4px); }
.trust-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(24,200,120,0.12) 0%, rgba(216,168,78,0.12) 100%);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.trust-card h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.trust-card p { font-size: 0.92rem; margin: 0; line-height: 1.5; }
.affiliate-notice {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--green-deep);
  border-radius: var(--radius);
  padding: 1.5rem 1.85rem;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-xs);
}
.affiliate-notice p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}
.affiliate-notice strong { color: var(--dark); }

/* ============================================================
   SEO MAGAZIN
   ============================================================ */
.magazine-section { background: var(--white); }
.magazine {
  max-width: 820px;
  margin: 0 auto;
}
.magazine h2 { font-size: clamp(1.85rem, 3vw, 2.4rem); margin-bottom: 1.5rem; }
.magazine h3 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--dark);
}
.magazine p {
  font-size: 1.075rem;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 1.25rem;
}
.magazine a {
  color: var(--green-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(14, 122, 79, 0.3);
  transition: border-color var(--t);
}
.magazine a:hover { border-bottom-color: var(--green-deep); }
.highlight-box {
  margin: 2rem 0;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-warm) 100%);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.highlight-box p { margin: 0; font-style: italic; font-size: 1.05rem; color: var(--dark); }
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}
.link-card {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: var(--t);
  border-bottom: 1px solid var(--border) !important;
}
.link-card:hover {
  border-color: var(--green) !important;
  background: rgba(24, 200, 120, 0.03);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.link-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.link-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-card-title::after { content: '→'; color: var(--green-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg-soft); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open {
  border-color: rgba(24, 200, 120, 0.3);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.5rem 1.85rem;
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font);
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(24, 200, 120, 0.1);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform var(--t), background var(--t);
}
.faq-item.open .faq-toggle {
  background: var(--green-deep);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  padding: 0 1.85rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.final-cta {
  --final-cta-bg: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=70');
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--final-cta-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(0.9);
}
.final-cta::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,23,38,0.92) 0%, rgba(7,23,38,0.85) 50%, rgba(11,34,56,0.95) 100%),
    radial-gradient(circle at 70% 30%, rgba(24, 200, 120, 0.15) 0%, transparent 50%);
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin: 1.25rem 0 1.5rem;
}
.final-cta .lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}
.final-cta-sub { color: rgba(255,255,255,0.5); margin-top: 1rem; font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo small { color: rgba(255,255,255,0.5); }
.footer-brand p {
  margin: 1.25rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 340px;
}
.footer-col h5 {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--green); }
.footer-affiliate {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-affiliate p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}
.footer-affiliate strong { color: rgba(255,255,255,0.8); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.75rem 1rem env(safe-area-inset-bottom, 0.75rem);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(7,23,38,0.08);
}
.mobile-sticky .btn { width: 100%; }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  text-align: center;
  position: relative;
}
.page-hero h1 { margin: 1.25rem 0 1.25rem; }
.page-hero .lead { max-width: 720px; margin: 0 auto 2rem; }
.breadcrumb {
  background: transparent;
  padding: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumb ol { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.breadcrumb a { color: var(--green-deep); font-weight: 600; }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.5; }

.subpage-content { background: #fff; }
.subpage-content .magazine ul,
.subpage-content .magazine ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.subpage-content .magazine ul li,
.subpage-content .magazine ol li {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.cta-box {
  margin: 3rem 0;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(24,200,120,0.18) 0%, transparent 60%);
}
.cta-box > * { position: relative; z-index: 2; }
.cta-box h3 { color: #fff; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-box-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 1rem; display: block; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { aspect-ratio: 4/5; max-width: 480px; margin: 0 auto; }
  .hero-content { max-width: 100%; }
  .qc-grid { grid-template-columns: 1fr; }
  .thermondo-grid { grid-template-columns: 1fr; }
  .thermondo-image { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }
  .compare-grid { grid-template-columns: 1fr; }
  .altbau-grid { grid-template-columns: 1fr; }
  .altbau-image { aspect-ratio: 16/10; }
  .ba-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .float-card.fc-1 { left: 0; }
  .float-card.fc-2 { right: 0; }
  .float-card.fc-3 { left: 0; }
}
@media (max-width: 768px) {
  body { padding-bottom: 80px; font-size: 17px; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-soft);
    padding: 1.25rem var(--pad) 2rem;
    z-index: 99;
  }
  .header-nav.open ul {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
  }
  .header-nav.open a { padding: 1rem 0.85rem; font-size: 1.05rem; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-sticky { display: block; }

  h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .qc-options { grid-template-columns: 1fr; }
  .float-card { padding: 0.75rem 0.95rem; }
  .float-card .float-card-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .float-card-text strong { font-size: 0.85rem; }
  .float-card-text small { font-size: 0.7rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .qc-meta { flex-direction: column; gap: 1.25rem; }
  .ba-col { min-height: 320px; }
  .hero-ctas .btn { flex: 1; }
}
@media (max-width: 480px) {
  .float-card.fc-1, .float-card.fc-3 { display: none; }
  .float-card.fc-2 { right: 0; top: 50%; }
  .float-card.fc-4 { right: 0; bottom: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ============================================================
   THERMONDO 300 € PRÄMIE - V3
   ============================================================ */

/* Hero-Prämien-Badge — kleiner Pill rechts oder neben H1 */
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem 0.55rem 0.65rem;
  background: linear-gradient(135deg, var(--gold) 0%, #B58A3C 100%);
  color: #fff;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(216, 168, 78, 0.3);
  margin-bottom: 1rem;
}
.bonus-badge::before {
  content: '€';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  font-weight: 800;
  font-size: 0.95rem;
}

/* Prämien-Hinweis unter CTAs (klein, dezent) */
.cta-bonus-hint {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 460px;
}
.section-dark .cta-bonus-hint,
.final-cta .cta-bonus-hint,
.cta-box .cta-bonus-hint,
.ba-section .cta-bonus-hint {
  color: rgba(255,255,255,0.55);
}

/* Hero: 300€ Premium-Bubble auf dem Bild */
.bonus-bubble {
  position: absolute;
  z-index: 3;
  top: -28px;
  right: -28px;
  width: 178px; height: 178px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #FBE0A2 0%, #F5C36A 28%, var(--gold) 62%, #9C6F23 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  text-align: center;
  box-shadow:
    0 24px 56px rgba(216, 168, 78, 0.55),
    0 6px 14px rgba(0,0,0,0.12),
    inset 0 -10px 28px rgba(0,0,0,0.15),
    inset 0 6px 14px rgba(255,255,255,0.45);
  border: 5px solid rgba(255,255,255,0.72);
  transform: rotate(-9deg);
  animation: bubblePulse 4s ease-in-out infinite;
}
.bonus-bubble::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.45);
  pointer-events: none;
}
.bonus-bubble strong {
  display: block;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.bonus-bubble span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.45rem;
  opacity: 1;
}
.bonus-bubble small {
  font-size: 0.66rem;
  font-weight: 600;
  margin-top: 0.25rem;
  opacity: 0.92;
  letter-spacing: 0.02em;
}
@keyframes bubblePulse {
  0%, 100% { transform: rotate(-9deg) scale(1); }
  50%      { transform: rotate(-7deg) scale(1.05); }
}

/* ============================================================
   BONUS-PRÄMIEN-BLOCK (nach Hero)
   ============================================================ */
.bonus-section {
  background:
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.bonus-card-big {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3.5vw, 2.75rem);
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 168, 78, 0.20) 0%, transparent 60%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  text-align: center;
}
.bonus-card-big::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 70%; height: 140%;
  background: radial-gradient(circle, rgba(24, 200, 120, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-card-big-amount {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
.bonus-card-big-amount strong {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #F5C36A 0%, var(--gold) 50%, #B58A3C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}
.bonus-card-big-amount span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}
.bonus-card-big h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.bonus-card-big p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.bonus-card-big small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin-top: 1rem;
}

.bonus-text h2 { margin: 1.25rem 0 1.25rem; }
.bonus-text .lead { margin-bottom: 1.75rem; }
.bonus-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.bonus-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.bonus-item-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #B58A3C 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}
.bonus-item p { margin: 0; font-size: 1rem; color: var(--text); font-weight: 500; }
.bonus-item strong { color: var(--dark); }

/* Inline Prämien-Tag in Listen / Spalten (kleines goldenes Element) */
.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.55rem;
  background: rgba(216, 168, 78, 0.14);
  color: #8A6921;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.section-dark .bonus-tag,
.ba-section .bonus-tag,
.final-cta .bonus-tag {
  background: rgba(216, 168, 78, 0.22);
  color: #F5C36A;
}

/* Mobile-Stickys: kleine Prämien-Erinnerung über Button */
.mobile-sticky-note {
  display: block;
  font-size: 0.72rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 960px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-bubble { width: 132px; height: 132px; top: -12px; right: -12px; }
  .bonus-bubble strong { font-size: 1.95rem; }
  .bonus-bubble span { font-size: 0.72rem; }
  .bonus-bubble small { font-size: 0.58rem; }
}
@media (max-width: 480px) {
  .bonus-bubble {
    width: 112px; height: 112px;
    top: 14px; right: 14px;
    transform: rotate(-7deg);
  }
  .bonus-bubble strong { font-size: 1.6rem; }
  .bonus-bubble span { font-size: 0.66rem; }
  .bonus-bubble small { font-size: 0.54rem; }
}
/* Header CTA Text-Switch (klein auf engen Screens) */
.header-cta-short { display: none; }
@media (max-width: 1100px) and (min-width: 769px) {
  .header-cta-full { display: none; }
  .header-cta-short { display: inline; }
}

/* Region + PDF-Landing Hilfsklassen */
.container.narrow { max-width: 40rem; }
.text-center { text-align: center; }
.region-embed-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius, 16px);
  overflow: hidden;
  border: 1px solid var(--border-soft, #e3e8e4);
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 42, 26, 0.06);
}
.region-embed-frame {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
}
.region-city-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.65rem 1rem;
}
.region-city-grid a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border-soft, #e3e8e4);
  background: #fff;
  text-decoration: none;
  font-weight: 600;
  color: var(--dark, #0f2a1a);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.region-city-grid a:hover {
  border-color: #2d8a5c;
  box-shadow: 0 4px 14px rgba(45, 138, 92, 0.12);
}
.link-pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.link-pill-list a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #f4f7f4;
  border: 1px solid var(--border-soft, #e3e8e4);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark, #0f2a1a);
}
.link-pill-list a:hover { border-color: #2d8a5c; }
.pdf-hero-actions { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.pdf-note { font-size: 0.88rem; color: var(--text-muted, #5c6b62); max-width: 36rem; }
.pdf-outline { margin-top: 2rem; }
.pdf-outline h2 { font-size: 1.15rem; margin-top: 1.5rem; }
.pdf-outline ul { margin: 0.35rem 0 0 1.1rem; }