/* === Design Tokens === */
:root {
  --primary-50:  #eaf7ee;
  --primary-100: #cdebd3;
  --primary-200: #a3dbae;
  --primary-300: #79ca8a;
  --primary-400: #5ec576;
  --primary-500: #27a745;
  --primary-600: #1f9039;
  --primary-700: #18742d;
  --primary-800: #115822;
  --primary-900: #0a3c17;

  --neutral-50:  #f7faf8;
  --neutral-100: #f5f5f5;
  --neutral-200: #e6e8e7;
  --neutral-300: #cdd1d0;
  --neutral-400: #9aa1a0;
  --neutral-500: #6b7472;
  --neutral-600: #4b5453;
  --neutral-700: #2f3534;
  --neutral-800: #1a1f1e;
  --neutral-900: #0b0e0d;

  --white: #ffffff;
  --accent: #ffffff;
  --warn:   #c25a00;
  --error:  #b3261e;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(11,14,13,.06), 0 1px 3px rgba(11,14,13,.04);
  --shadow-md: 0 4px 12px rgba(11,14,13,.08), 0 2px 4px rgba(11,14,13,.04);
  --shadow-lg: 0 18px 40px rgba(11,14,13,.12), 0 6px 12px rgba(11,14,13,.06);

  --container: 1180px;

  --gap-1: 4px;
  --gap-2: 8px;
  --gap-3: 16px;
  --gap-4: 24px;
  --gap-5: 32px;
  --gap-6: 48px;
  --gap-7: 64px;
  --gap-8: 96px;

  --font-body: "Inter", "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--neutral-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--primary-700); text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--primary-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -1000px; top: 8px; z-index: 1000;
  background: var(--primary-600); color: var(--white);
  padding: 10px 18px; border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { left: 8px; color: var(--white); text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* === Typography === */
h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--neutral-600);
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary-700);
  background: var(--primary-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary-500);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--primary-600); color: var(--white); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--primary-700);
  border-color: var(--primary-500);
}
.btn-outline:hover { background: var(--primary-500); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--neutral-700);
}
.btn-ghost:hover { color: var(--primary-700); background: var(--primary-50); }

.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--neutral-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neutral-900);
  letter-spacing: -.01em;
}
.logo-link:hover { color: var(--primary-700); text-decoration: none; }
.logo-link img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--neutral-700);
}
.main-nav a:hover { background: var(--primary-50); color: var(--primary-700); text-decoration: none; }
.main-nav a.active { color: var(--primary-700); background: var(--primary-50); }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--neutral-800);
}
.nav-toggle:hover { border-color: var(--primary-500); color: var(--primary-700); }

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--neutral-200);
  }
  .site-header.nav-open .main-nav a { width: 100%; }
  .site-header.nav-open .header-cta {
    display: inline-flex;
    position: absolute;
    top: 100%;
    right: 16px;
    margin-top: 8px;
  }
}

/* === Hero === */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(1100px 600px at 80% 0%, var(--primary-100) 0%, transparent 60%),
    linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero p.lead { margin-bottom: 28px; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: .92rem;
  color: var(--neutral-700);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .check {
  color: var(--primary-500);
  font-weight: 700;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}
.hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge strong { font-size: 1.4rem; color: var(--primary-700); display: block; line-height: 1; }
.hero-badge small  { color: var(--neutral-600); font-size: .8rem; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-wrap img { aspect-ratio: 16 / 11; }
}

/* === Sections === */
section { padding: 64px 0; }
@media (min-width: 900px) { section { padding: 88px 0; } }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head p { color: var(--neutral-600); font-size: 1.1rem; margin-bottom: 0; }

.section-alt { background: var(--neutral-50); }
.section-dark {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark .eyebrow { background: rgba(255,255,255,.16); color: var(--white); }

/* === Trust strip === */
.trust-strip {
  padding: 36px 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  background: var(--white);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary-600);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat span { color: var(--neutral-600); font-size: .92rem; }
@media (max-width: 720px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}

/* === Cards / Benefits === */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}
.card .icon {
  width: 48px; height: 48px;
  background: var(--primary-50);
  color: var(--primary-600);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p  { color: var(--neutral-600); margin: 0; }

/* === Comparison Table === */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--neutral-200);
  background: var(--white);
}
.compare-card.highlight {
  border-color: var(--primary-500);
  background: var(--primary-50);
  position: relative;
}
.compare-card.highlight::before {
  content: "Empfehlung";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-600);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.compare-card h3 { margin-bottom: 20px; }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-200);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compare-list li:last-child { border-bottom: 0; }
.compare-list .yes { color: var(--primary-600); font-weight: 700; }
.compare-list .no  { color: var(--neutral-400); font-weight: 700; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-300);
  box-shadow: var(--shadow-md);
}
.price-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: var(--neutral-100);
}
.price-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-700);
  margin: 6px 0 2px;
  line-height: 1;
}
.price-card .price small { font-size: .9rem; color: var(--neutral-500); font-weight: 500; margin-right: 4px; }
.price-card .spec {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  font-size: .92rem;
  color: var(--neutral-700);
}
.price-card .spec li { padding: 6px 0; border-bottom: 1px solid var(--neutral-100); display: flex; justify-content: space-between; }
.price-card .spec li:last-child { border-bottom: 0; }
.price-card .btn { margin-top: auto; }

/* === Steps === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--neutral-200);
  position: relative;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary-500);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p  { color: var(--neutral-600); margin: 0; }

/* === Tables === */
.data-table-wrap { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: .95rem;
}
.data-table th, .data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--neutral-200);
}
.data-table th {
  background: var(--primary-50);
  color: var(--primary-800);
  font-weight: 600;
  font-size: .9rem;
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr:hover td { background: var(--neutral-50); }

/* === FAQ Accordion === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--neutral-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary-600);
  transition: transform .2s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--neutral-700);
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 30% 0%, rgba(255,255,255,.16), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.92); margin-bottom: 24px; }
.cta-banner .btn-primary { background: var(--white); color: var(--primary-700); }
.cta-banner .btn-primary:hover { background: var(--primary-50); color: var(--primary-800); }

/* === Sticky CTA (mobile) === */
.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 40;
  display: none;
}
.sticky-cta .btn {
  width: 100%;
  box-shadow: 0 8px 24px rgba(31,144,57,.45);
}
@media (max-width: 900px) {
  .sticky-cta { display: block; }
  .has-sticky main { padding-bottom: 88px; }
}

/* === Footer === */
.site-footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 56px 0 24px;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo { display: inline-block; background: var(--white); padding: 10px 14px; border-radius: var(--radius); margin-bottom: 14px; }
.footer-logo img { height: 44px; width: auto; display: block; }
.footer-brand p { color: var(--neutral-400); max-width: 30ch; }
.site-footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { color: var(--neutral-300); }
.site-footer ul a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--neutral-700);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--neutral-400);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* === CTA-Sektion & Anfrage-Einbettung === */
.cta-trust {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  max-width: 840px;
}
.cta-trust li {
  position: relative;
  padding-left: 30px;
  color: var(--neutral-700);
  font-weight: 500;
  font-size: .95rem;
}
.cta-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--primary-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

.anfrage-section .container { max-width: 960px; }
.anfrage-embed {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.anfrage-fallback {
  margin-top: 16px;
  text-align: center;
  font-size: .92rem;
  color: var(--neutral-600);
}

/* === Misc === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* Foerderungs-Abbildung (Kosten-Sektion) */
.foerder-split { align-items: center; }
.foerder-visual {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px 32px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.foerder-gauge {
  width: 100%;
  max-width: 230px;
  height: auto;
}
.foerder-gauge .gauge-track { stroke: var(--primary-100); }
.foerder-gauge .gauge-arc { stroke: var(--primary-500); }
.foerder-gauge .gauge-label {
  fill: var(--primary-700);
  font-size: 20px;
  font-weight: 600;
}
.foerder-gauge .gauge-value {
  fill: var(--primary-700);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
}
.foerder-visual figcaption {
  text-align: center;
  color: var(--neutral-700);
  font-weight: 600;
  max-width: 260px;
  line-height: 1.4;
}

.content-block {
  max-width: 760px;
  margin: 0 auto;
}
.content-block h2 { margin-top: 40px; }
.content-block h3 { margin-top: 28px; margin-bottom: 8px; }
.content-block ul, .content-block ol {
  padding-left: 24px;
}
.content-block ul li, .content-block ol li {
  margin-bottom: 8px;
  color: var(--neutral-800);
}
.content-block ul li::marker { color: var(--primary-500); }
.content-block .legal-stand {
  margin-top: 40px;
  color: var(--neutral-700);
  font-size: 0.95rem;
}

.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--primary-500);
  color: var(--white);
  display: grid; place-items: center;
  font-size: .85rem;
  font-weight: 700;
}

.cross-list { list-style: none; padding: 0; }
.cross-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}
.cross-list li::before {
  content: "×";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--neutral-200);
  color: var(--neutral-700);
  display: grid; place-items: center;
  font-size: 1rem;
  font-weight: 700;
}

/* === Page hero (subpage header) === */
.page-hero {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--neutral-200);
}
.page-hero .breadcrumb {
  font-size: .85rem;
  color: var(--neutral-600);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: var(--neutral-700); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--neutral-700); max-width: 65ch; font-size: 1.1rem; margin: 0; }

/* === Thanks hero (Bestätigungsseite) === */
.thanks-hero {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 70%);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--neutral-200);
}
.thanks-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.thanks-check {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: var(--primary-500);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px rgba(39,167,69,.28);
  animation: thanks-pop .5s ease-out;
}
.thanks-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}
.thanks-lead {
  color: var(--neutral-700);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto 16px;
}
.thanks-note {
  color: var(--neutral-600);
  font-size: 1rem;
  max-width: 56ch;
  margin: 0 auto;
}
.thanks-note a { color: var(--primary-700); font-weight: 600; }
@keyframes thanks-pop {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
@media (max-width: 640px) {
  .thanks-hero { padding: 56px 0 48px; }
  .thanks-check { width: 80px; height: 80px; }
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  z-index: 60;
  display: none;
  font-size: .92rem;
}
.cookie-banner.show { display: block; }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p  { color: var(--neutral-600); margin-bottom: 14px; }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* === Print === */
@media print {
  .site-header, .site-footer, .sticky-cta, .cookie-banner, .hero-ctas, .cta-banner { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* === Animations === */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
