/* ========== WARMES CREME – harmonisch mit Grün (Honig-Weiß) ========== */
:root {
  /* Hintergrund: warmes Creme/Honig – einladend, Grün wirkt natürlich darauf (Blatt auf Sand) */
  --bg: #faf8f4;
  --bg2: #f5f1e9;
  --card: #ffffff;
  --card2: #fdfcf9;
  --border: rgba(60, 55, 45, 0.12);
  --text: #2c2620;
  --muted: #5c554a;
  --muted2: #746d62;
  --shadow: 0 4px 24px rgba(44, 40, 32, 0.07);

  /* Einheitliches Logo-Grün für alle Akzente */
  --logo-green: #2E7D32;
  --logo-green-dark: #1B5E20;
  --brand: #2E7D32;
  --brand-soft: rgba(46, 125, 50, 0.12);
  --brand2: #2E7D32;
  --danger: #c53030;

  --radius: 14px;
  --radius-sm: 10px;
  --max: 1100px;

  --focus: 0 0 0 3px rgba(46, 125, 50, 0.35);
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

  --header-bg: #ffffff;
  --section-alt-bg: rgba(245, 241, 233, 0.7);
  --chip-bg: rgba(46, 125, 50, 0.12);

  /* Slide-Wechsel: Grün / Weiß – mehr Grün im Vordergrund → weißer Hintergrund */
  --slide-bg-green: #F2F6F1;
  --slide-bg-white: #ffffff;
}

/* Optional: Dunkles Theme (per Theme-Toggle) */
html[data-theme="dark"] {
  --bg: #0f172a;
  --bg2: #0c1222;
  --card: rgba(30, 41, 59, 0.9);
  --card2: rgba(30, 41, 59, 0.96);
  --border: rgba(148, 163, 184, 0.28);
  --text: #f1f5f9;
  --muted: rgba(226, 232, 240, 0.88);
  --muted2: rgba(148, 163, 184, 0.85);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --brand: #2E7D32;
  --brand-soft: rgba(46, 125, 50, 0.2);
  --brand2: #2E7D32;
  --danger: #dc2626;
  --focus: 0 0 0 3px rgba(46, 125, 50, 0.4);
  --header-bg: rgba(15, 23, 42, 0.85);
  --section-alt-bg: rgba(255, 255, 255, 0.03);
  --chip-bg: rgba(255, 255, 255, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
/* Damit Anker-Links (#calculator, #contact) nicht unter dem Header landen */
section[id] {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  padding-top: 7rem; /* Platz für fixierten Header */
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.55;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(var(--max), calc(100% - 2.2rem));
  margin-inline: auto;
}

.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: 1rem;
  top: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  transform: translateY(-200%);
  transition: transform 0.18s ease;
  z-index: 1000;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--focus);
}

/* Header – fixed, blendet beim Runterscrollen aus, erscheint sofort beim Hochscrollen */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header.is-elevated {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}
html[data-theme="dark"] .site-header.is-elevated {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background: rgba(15, 23, 42, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
  flex-wrap: wrap;
  background: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  background: #ffffff;
}
.brand-logo-img {
  display: block;
  height: 6.5rem;  /* Logo groß im Vordergrund – mehr zum Vorschein */
  width: auto;
  max-height: none;
  object-fit: contain;
}
@media (max-width: 600px) {
  .brand-logo-img {
    height: 5rem;   /* auf kleinen Screens trotzdem dominant */
  }
}

/* Logo im Footer – proportional zur Footer-Schrift (small) */
.footer-logo-img {
  display: inline-block;
  height: 1.75rem;
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}
.nav-toggle:focus {
  outline: none;
  box-shadow: var(--focus);
}
.nav-toggle-lines {
  display: block;
  width: 20px;
  height: 14px;
  background:
    linear-gradient(var(--text), var(--text)) 0 0 / 100% 2px,
    linear-gradient(var(--text), var(--text)) 0 6px / 100% 2px,
    linear-gradient(var(--text), var(--text)) 0 12px / 100% 2px;
  background-repeat: no-repeat;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-links a {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--card);
  border-color: var(--border);
  text-decoration: none;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}
.theme-toggle:hover {
  background: var(--card2);
}
.theme-toggle:focus {
  outline: none;
  box-shadow: var(--focus);
}
.theme-toggle-icon {
  opacity: 0.9;
}
.theme-toggle-text {
  font-size: 0.92rem;
  opacity: 0.9;
}

/* CTA im Header: Telefon · E-Mail · JETZT ANFRAGEN (rechts neben Theme) */
.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-cta-icon:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--text);
  text-decoration: none;
}
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--logo-green) 0%, #388E3C 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.nav-cta-btn:hover {
  background: #fff;
  color: #000000 !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.nav-cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.35);
}

/* Hero Startseite: etwas kleiner – ein Scroll zeigt sofort die nächste Sektion */
.hero-zinsen {
  position: relative;
  height: 92vh;
  height: 92dvh;
  max-height: 92vh;
  max-height: 92dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 0;
  padding-inline: 0;
  overflow: hidden;
}
.hero-zinsen-inner {
  position: relative;
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 3vw, 1.5rem);
  z-index: 1;
}
.hero-zinsen-content {
  padding: 0;
  max-width: 46rem;
}

/* Hero-Entrance: starke, gestaffelte Animation beim Laden */
.hero-zinsen-content .hero-zinsen-title,
.hero-zinsen-content .hero-zinsen-highlights,
.hero-zinsen-content .hero-zinsen-highlights li,
.hero-zinsen-content .hero-zinsen-cta {
  opacity: 0;
  transform: translateY(56px) scale(0.96);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-zinsen.hero-loaded .hero-zinsen-title {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.2s;
}
.hero-zinsen.hero-loaded .hero-zinsen-highlights {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.5s;
}
.hero-zinsen.hero-loaded .hero-zinsen-highlights li:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.7s;
}
.hero-zinsen.hero-loaded .hero-zinsen-highlights li:nth-child(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.9s;
}
.hero-zinsen.hero-loaded .hero-zinsen-highlights li:nth-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.1s;
}
.hero-zinsen.hero-loaded .hero-zinsen-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1.35s;
}
.hero-zinsen-image-wrap img.hero-parallax-img {
  opacity: 0;
  transition: opacity 1.4s ease-out 0.35s;
}
.hero-zinsen.hero-loaded .hero-zinsen-image-wrap img.hero-parallax-img {
  opacity: 1;
}

.hero-zinsen-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hero-zinsen-title {
    white-space: normal;
  }
}
.hero-zinsen-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.9rem;
}
.hero-zinsen-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text);
  line-height: 1.4;
}
.hero-zinsen-highlights li::before {
  content: "✓";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-zinsen-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--logo-green) 0%, #388E3C 100%) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.hero-zinsen-cta:hover {
  background: #fff !important;
  color: #1a1a1a !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.hero-zinsen-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.4);
}
.hero-zinsen-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero-zinsen-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(250, 248, 244, 0.92) 28%, rgba(250, 248, 244, 0.3) 45%, transparent 58%);
  z-index: 1;
  pointer-events: none;
}
.hero-zinsen-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}
@media (max-width: 900px) {
  .hero-zinsen {
    height: 92vh;
    height: 92dvh;
    max-height: 92vh;
    max-height: 92dvh;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1rem;
  }
  .hero-zinsen-inner {
    max-width: none;
    margin-inline: auto;
    margin-right: auto;
    padding-inline: 1.25rem;
  }
  .hero-zinsen-image-wrap {
    position: relative;
    height: 16rem;
    order: -1;
    margin: 0 -1.1rem;
    width: calc(100% + 2.2rem);
    left: 0;
  }
  .hero-zinsen-image-wrap::before {
    background: linear-gradient(180deg, transparent 0%, var(--bg) 70%);
  }
  .hero-zinsen-image-wrap img {
    object-position: center 50%;
  }
}
@media (max-width: 600px) {
  .hero-zinsen-cta {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
  }
}
@media (max-width: 400px) {
  .hero-zinsen-cta {
    font-size: 0.85rem;
    padding: 0.8rem 0.9rem;
  }
}

/* Hero (legacy, falls noch verwendet) */
.hero {
  padding: 4.2rem 0 2.2rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  align-items: start;
  gap: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  width: fit-content;
  margin: 0 0 0.8rem;
}
.hero-title {
  margin: 0 0 0.65rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 60ch;
}
.hero-note {
  margin-top: 0.75rem;
}
.hero-cta {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: var(--muted2);
}
.meta-link {
  color: var(--muted2);
}
.meta-link:hover {
  color: var(--text);
  text-decoration: none;
}
.dot {
  opacity: 0.45;
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-photo {
  height: 160px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-card-body {
  padding: 1.05rem 1.05rem 1.1rem;
}
.hero-card-title {
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 0.65rem;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}
.small {
  font-size: 0.92rem;
}
.muted {
  color: var(--muted);
}

/* Sections – Wechsel Grün / Weiß: wenig Grün im Vordergrund → grüner Slide */
.section {
  padding: 3.1rem 0;
}
.section-alt {
  background: var(--slide-bg-green);
  border-top: 1px solid rgba(46, 125, 50, 0.1);
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

/* Klicktool-Section – Premium (Slide 4: grün) */
.section-klicktool-premium {
  background: var(--slide-bg-green);
  padding: 3rem 0;
  border: none;
}
@media (min-width: 768px) {
  .section-klicktool-premium {
    padding: 4.5rem 0;
  }
}
.klicktool-premium-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .klicktool-premium-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .klicktool-premium-inner {
    padding-inline: 2rem;
  }
}
.klicktool-premium-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .klicktool-premium-header {
    margin-bottom: 3rem;
  }
}
.klicktool-premium-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
.klicktool-premium-subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 42ch;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .klicktool-premium-subtitle {
    font-size: 1.125rem;
  }
}

/* ========== PROCESS PREMIUM (Apple/N26 FinTech-Stil) ========== */
.process-premium {
  padding: 4.5rem 0; /* 72px */
}
.process-container {
  max-width: 1100px;
  margin-inline: auto;
  width: min(100%, calc(100% - 2.2rem));
}
.process-header {
  text-align: center;
  margin-bottom: 3rem;
}
.process-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}
.process-subtitle {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 42ch;
  margin-inline: auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 2.75rem;
}
.process-step-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(44, 36, 32, 0.04);
  border: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}
.process-step-card:hover {
  box-shadow: 0 8px 32px rgba(44, 36, 32, 0.08);
  transform: translateY(-2px);
}
.process-step-number {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(44, 36, 32, 0.08);
  line-height: 1;
  margin: -0.25rem 0 0;
}
.process-step-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}
.process-step-desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}
.process-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.process-cta-text {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}
.process-cta-btn {
  min-height: 52px;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(46, 125, 50, 0.25);
}
@media (max-width: 900px) {
  .process-premium {
    padding: 3rem 0; /* 48px */
  }
  .process-header {
    margin-bottom: 2.25rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.25rem;
  }
  .process-step-card {
    padding: 1.5rem;
  }
  .process-step-number {
    font-size: 2rem;
  }
  .process-step-title {
    font-size: 1.15rem;
  }
}
/* Viel Grün im Vordergrund (Berater) → weißer Slide */
.section-berater {
  background: var(--slide-bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}
.section-head h2 {
  margin: 0;
  letter-spacing: -0.03em;
  font-size: 1.9rem;
  position: relative;
  display: inline-block;
}
.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 75ch;
}

/* Persönlicher Berater – Ljubo Rados */
.section-berater {
  padding: 4rem 0;
}
.berater-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.berater-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.berater-subtitle {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}
.berater-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 2rem;
  max-width: 100%;
}
.berater-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  align-items: start;
  gap: 2.5rem;
  max-width: 100%;
}
.berater-profile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  text-align: center;
  min-height: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.berater-profile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(46, 125, 50, 0.15);
}
.berater-profile .berater-cta {
  margin-top: auto;
}
/* Gestaffeltes Einblenden der Karten-Inhalte, sobald die Karte sichtbar ist */
.berater-profile .berater-photo-wrap,
.berater-profile .berater-info .berater-name,
.berater-profile .berater-info .berater-role,
.berater-profile .berater-info .berater-quote,
.berater-profile .berater-contact,
.berater-profile .berater-cta {
  opacity: 0;
  transform: translateY(16px);
  animation: beraterItemIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.berater-profile.is-visible .berater-photo-wrap { animation-delay: 0.18s; }
.berater-profile.is-visible .berater-name { animation-delay: 0.28s; }
.berater-profile.is-visible .berater-role { animation-delay: 0.38s; }
.berater-profile.is-visible .berater-quote { animation-delay: 0.48s; }
.berater-profile.is-visible .berater-contact { animation-delay: 0.58s; }
.berater-profile.is-visible .berater-cta { animation-delay: 0.7s; }
@keyframes beraterItemIn {
  to { opacity: 1; transform: translateY(0); }
}
.berater-photo-wrap {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 4px solid var(--brand);
  box-shadow: 0 0 0 1px rgba(46, 125, 50, 0.1), 0 12px 32px rgba(46, 125, 50, 0.25);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.berater-profile:hover .berater-photo-wrap {
  transform: scale(1.06);
  box-shadow: 0 0 0 1px rgba(46, 125, 50, 0.15), 0 18px 44px rgba(46, 125, 50, 0.32);
}
.berater-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.berater-profile:hover .berater-photo {
  transform: scale(1.05);
}
.berater-name {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.berater-role {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}
.berater-quote {
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}
.berater-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  width: 100%;
}
.berater-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.berater-contact-link:hover {
  color: var(--brand);
  text-decoration: none;
}
.berater-contact-link svg {
  flex-shrink: 0;
  color: var(--muted);
}
.berater-contact-link:hover svg {
  color: var(--brand);
}
.berater-cta {
  width: 100%;
  justify-content: center;
}
.berater-content {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.berater-services-title,
.berater-stats-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.berater-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.berater-services-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}
.berater-services-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
/* Leistungsliste: gestaffelt einblenden, wenn Sektion sichtbar */
.berater-service-item {
  opacity: 0;
  transform: translateX(-12px);
  animation: beraterServiceIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.berater-services.is-visible .berater-service-item:nth-child(1) { animation-delay: 0.15s; }
.berater-services.is-visible .berater-service-item:nth-child(2) { animation-delay: 0.25s; }
.berater-services.is-visible .berater-service-item:nth-child(3) { animation-delay: 0.35s; }
.berater-services.is-visible .berater-service-item:nth-child(4) { animation-delay: 0.45s; }
@keyframes beraterServiceIn {
  to { opacity: 1; transform: translateX(0); }
}
.berater-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.berater-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.3s ease;
}
.berater-stat-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(46, 125, 50, 0.3);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.15);
}
.berater-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.berater-stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
@media (max-width: 900px) {
  .berater-profiles {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .berater-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .berater-profile {
    position: static;
  }
}
@media (max-width: 500px) {
  .berater-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Baufinanzierung mit Kredofix – Premium (Slide 5: weiß) */
.section-kredofix-premium {
  background: var(--slide-bg-white);
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .section-kredofix-premium {
    padding: 4.5rem 0; /* 72px */
  }
}
.kredofix-premium-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .kredofix-premium-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .kredofix-premium-inner {
    padding-inline: 2rem;
  }
}
.kredofix-premium-header {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .kredofix-premium-header {
    margin-bottom: 3rem;
  }
}
.kredofix-premium-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
.kredofix-premium-subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (min-width: 768px) {
  .kredofix-premium-subtitle {
    font-size: 1.125rem;
  }
}
.kredofix-premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .kredofix-premium-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.kredofix-premium-image-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.kredofix-premium-image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.kredofix-premium-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kredofix-premium-image-note {
  padding: 1.25rem 1.5rem;
}
.kredofix-premium-image-note p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}
.kredofix-premium-content-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .kredofix-premium-content-card {
    padding: 2rem;
  }
}
.kredofix-premium-benefits-title {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .kredofix-premium-benefits-title {
    font-size: 1.25rem;
  }
}
.kredofix-premium-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kredofix-benefit-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.kredofix-benefit-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--slide-bg-green);
  color: var(--brand);
  margin-top: 0.15em;
}
.kredofix-benefit-icon svg {
  width: 16px;
  height: 16px;
}
.kredofix-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.kredofix-benefit-text strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}
@media (min-width: 768px) {
  .kredofix-benefit-text strong {
    font-size: 1rem;
  }
}
.kredofix-benefit-text span {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (min-width: 768px) {
  .kredofix-benefit-text span {
    font-size: 0.9375rem;
  }
}
.kredofix-premium-cta {
  margin-top: 2rem;
}
.kredofix-premium-cta-hint {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.kredofix-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 9999px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kredofix-premium-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(46, 125, 50, 0.28);
  text-decoration: none;
  background: var(--brand) !important;
  color: #fff !important;
}
.kredofix-premium-cta-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--muted2);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .kredofix-premium-image-card {
    order: -1;
  }
}

/* FAQ Section – Premium (Slide 7: weiß) */
.section-faq {
  padding: 3rem 0;
  background: var(--slide-bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-premium {
  background: var(--slide-bg-white);
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .faq-premium {
    padding: 4.5rem 0;
  }
}
.faq-premium-inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .faq-premium-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .faq-premium-inner {
    padding-inline: 2rem;
  }
}
.faq-premium-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .faq-premium-header {
    margin-bottom: 3rem;
  }
}
.faq-premium-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
.faq-premium-subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (min-width: 768px) {
  .faq-premium-subtitle {
    font-size: 1.125rem;
  }
}

/* FAQ-Gruppen: thematisch geordnet, klare Struktur */
.faq-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .faq-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
  }
  .faq-group:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
  }
}
.faq-group {
  margin: 0;
}
.faq-group-title {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  border-bottom: 2px solid var(--brand2);
  line-height: 1.3;
}
.faq-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  margin: 0;
}
.faq-question button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  gap: 0.75rem;
}
.faq-question button:hover {
  color: var(--brand2);
}
.faq-question button::after {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232d6a4f'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-question button::after {
  transform: rotate(180deg);
}
.faq-answer {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.is-open {
  max-height: 800px;
}
.faq-answer p {
  margin: 0;
  padding: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}
.faq-item:last-child .faq-answer p {
  padding-bottom: 0;
}

.grid {
  display: grid;
  gap: 1rem;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}
.grid.contact-only {
  grid-template-columns: minmax(0, 1fr);
  max-width: 32rem;
}

/* Kontaktbereich – Premium (Slide 6: grün) */
.section-contact {
  padding: 3.5rem 0;
  background: var(--slide-bg-green);
  border-top: 1px solid rgba(46, 125, 50, 0.1);
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}
.contact-premium {
  background: var(--slide-bg-green);
  padding: 3rem 0;
  border: none;
}
@media (min-width: 768px) {
  .contact-premium {
    padding: 4.5rem 0;
  }
}
.contact-premium-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .contact-premium-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-premium-inner {
    padding-inline: 2rem;
  }
}
.contact-premium-header {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .contact-premium-header {
    margin-bottom: 3rem;
  }
}
.contact-premium-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
.contact-premium-subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (min-width: 768px) {
  .contact-premium-subtitle {
    font-size: 1.125rem;
  }
}
.contact-form-wrap {
  max-width: 32rem;
  margin-top: 0;
}
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.contact-form-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.contact-form-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.contact-form-intro {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted);
}
.contact-form-fields {
  display: grid;
  gap: 1rem;
}
.contact-form-fields label {
  margin-top: 0;
}
.contact-form-actions {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(44, 36, 32, 0.08);
}
.contact-form-actions .form-submit-btn {
  margin-bottom: 0.5rem;
}
.contact-premium-btn {
  min-height: 52px;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 9999px;
  background: var(--brand) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}
.contact-premium-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(46, 125, 50, 0.28);
  background: var(--brand) !important;
  color: #fff !important;
}

/* Klicktool Submit – gleicher Premium-Pill-Stil */
.klicktool-premium-btn {
  min-height: 52px;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 9999px;
  background: var(--brand) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}
.klicktool-premium-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(46, 125, 50, 0.28);
  background: var(--brand) !important;
  color: #fff !important;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.1rem 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(44, 36, 32, 0.12);
}
.card h3 {
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0.45rem 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}
/* Ablauf-Karten: Blasen immer nebeneinander */
.card.project .chips {
  flex-wrap: nowrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  color: var(--muted);
  font-size: 0.92rem;
}
/* Ablauf-Karten: kompakte Chips, alle nebeneinander in einer Zeile */
.card.project .chip {
  font-size: 0.84rem;
  padding: 0.3rem 0.5rem;
  white-space: nowrap;
}

/* Impressum */
.impressum-content {
  max-width: 50rem;
  line-height: 1.65;
}
.impressum-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.1rem;
  color: var(--text);
}
.impressum-content h3:first-of-type {
  margin-top: 1.5rem;
}
.impressum-content p {
  margin: 0.5rem 0;
}
.impressum-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.impressum-content a:hover {
  color: var(--logo-green-dark);
}

/* Datenschutz & AGB */
.legal-content {
  max-width: 50rem;
  line-height: 1.65;
}
.legal-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.1rem;
  color: var(--text);
}
.legal-content h3:first-of-type {
  margin-top: 1rem;
}
.legal-content h4 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  color: var(--muted);
}
.legal-content p {
  margin: 0.5rem 0;
}
.legal-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.5rem;
}
.legal-content li {
  margin: 0.35rem 0;
}
.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover {
  color: var(--logo-green-dark);
}
.legal-content em {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  font-weight: 650;
}
.button:hover {
  background: var(--card2);
  text-decoration: none;
}
.button:focus {
  outline: none;
  box-shadow: var(--focus);
}
.button.primary {
  border: none;
  background: linear-gradient(135deg, var(--logo-green) 0%, #388E3C 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3);
}
.button.primary:hover {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.button.ghost {
  background: transparent;
}

/* Einheitlicher Lead-CTA – überall gleicher Button zum Klicktool */
.cta-lead {
  border: none;
  background: linear-gradient(135deg, var(--logo-green) 0%, #388E3C 100%) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3);
}
.cta-lead:hover {
  background: #fff !important;
  color: #1a1a1a !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.section-cta {
  text-align: center;
  margin: 2rem 0 0;
}
.section-cta .button {
  display: inline-block;
}
.section-cta-first {
  margin: 0 0 1.5rem;
}
.kredofix-premium-cta .kredofix-premium-btn {
  display: inline-flex;
}
.button.small {
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
}

/* Projects */
.project {
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.project-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.project-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  padding: 10px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  flex-shrink: 0;
}
.project-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.project-kicker {
  margin: 0;
  color: var(--muted2);
  font-size: 0.9rem;
  text-align: center;
}
.project-title {
  margin: 0.2rem 0 0;
}
.project-desc {
  color: var(--muted);
}
.project-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

/* Form */
.form label {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
}
.form input,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card2);
  color: var(--text);
  font: inherit;
  border-color: var(--border);
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--muted2);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  box-shadow: var(--focus);
}
.stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

/* Zinsangebot-Formular (Schrittbereiche) */
.form-zinsangebot {
  max-width: 36rem;
  margin-inline: auto;
}
.form-step {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.form-step:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.form-step-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.form-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.9rem;
  color: var(--brand);
  opacity: 0.95;
}
.form-step-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.form-row {
  display: grid;
  gap: 0.75rem;
}
.form-row.two {
  grid-template-columns: 1fr 1fr;
}
.label-block {
  display: block;
}
.form select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}
.form select:focus {
  outline: none;
  box-shadow: var(--focus);
}
.form-submit {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.section-footer {
  margin-top: 1rem;
  text-align: center;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Klicktool (Schritt-für-Schritt) – Premium-Layout */
.klicktool {
  max-width: 52rem;
  margin-inline: auto;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}
.klicktool:hover {
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.08);
}
.klicktool-trust {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--muted);
  font-size: 0.9rem;
}
.klicktool-trust strong {
  color: var(--text);
  font-weight: 600;
}
.klicktool-progress-wrap {
  margin-bottom: 2rem;
}
.klicktool-progress-track {
  height: 4px;
  background: rgba(44, 36, 32, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.klicktool-progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
  transition: width 0.35s ease;
}
.klicktool-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.klicktool-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card);
  color: var(--muted2);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0;
  margin: 0;
  cursor: default;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.klicktool-dot.is-navigable {
  cursor: pointer;
}
.klicktool-dot.is-navigable {
  cursor: pointer;
}
.klicktool-dot.is-navigable:hover {
  border-color: rgba(46, 125, 50, 0.5);
  transform: scale(1.05);
}
.klicktool-dot.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.klicktool-dot.is-done {
  border-color: var(--brand2);
  background: rgba(46, 125, 50, 0.12);
  color: var(--brand2);
}
.klicktool-step {
  display: none;
  animation: klicktoolFade 0.25s ease;
}
.klicktool-step.is-visible {
  display: block;
}
@keyframes klicktoolFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.klicktool-question {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .klicktool-question {
    font-size: 1.5rem;
  }
}
.klicktool-hint {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--muted);
}
.klicktool-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.klicktool-options-6 {
  grid-template-columns: repeat(3, 1fr);
}
.klicktool-options-4 {
  grid-template-columns: repeat(2, 1fr);
}
.klicktool-options-3 {
  grid-template-columns: repeat(3, 1fr);
}
.klicktool-question-underline {
  margin-bottom: 1rem;
}
.form-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.form-two-cols .form-span-two {
  grid-column: 1 / -1;
}
.form-checkboxes {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}
.form-checkboxes .form-checkbox,
.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--brand);
}
.form-checkbox a {
  color: var(--brand2);
  text-decoration: underline;
}
.form-checkbox a:hover {
  color: var(--brand);
}
.klicktool-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.5rem 1.25rem;
  border-radius: 18px;
  border: 2px solid rgba(44, 36, 32, 0.08);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.klicktool-option:hover {
  border-color: rgba(46, 125, 50, 0.4);
  background: rgba(46, 125, 50, 0.04);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.12);
  transform: translateY(-3px);
}
.klicktool-option.is-selected {
  border-color: var(--brand);
  background: rgba(46, 125, 50, 0.08);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.18);
  transform: translateY(-1px);
}
.klicktool-option-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.klicktool-option-icon svg {
  width: 100%;
  height: 100%;
}
.klicktool-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}
.klicktool-summary {
  margin-bottom: 1.25rem;
  padding: 1rem;
}
.klicktool-summary dl {
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.klicktool-summary dt {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}
.klicktool-summary dd {
  margin: 0 0 0.5rem;
}
.klicktool-summary dd:last-child {
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .klicktool {
    padding: 1.75rem 1.25rem;
  }
  .klicktool-options,
  .klicktool-options-6,
  .klicktool-options-4,
  .klicktool-options-3 {
    grid-template-columns: 1fr;
  }
  .form-two-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .klicktool-progress {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(46, 125, 50, 0.04) 0%, var(--bg2) 100%);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-inner > *:first-child {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-img {
  opacity: 0.9;
}
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted2);
}
.footer-links a {
  color: var(--muted2);
}
.footer-links a:hover {
  color: var(--brand);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .grid.two {
    grid-template-columns: 1fr;
  }
  .form-row.two {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    position: absolute;
    right: 1rem;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    width: min(92vw, 320px);
    padding: 0.65rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a:not(.nav-cta-icon):not(.nav-cta-btn) {
    width: 100%;
    justify-content: flex-start;
  }
  .nav-cta-group {
    width: auto;
  }
}

/* ========== SCROLL-EINBLEND-ANIMATIONEN – starke Wirkung beim Einscrollen ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(80px) scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-animate-delay="1"] { transition-delay: 0.15s; }
[data-animate-delay="2"] { transition-delay: 0.3s; }
[data-animate-delay="3"] { transition-delay: 0.45s; }
/* Alternierende Richtungen für Abwechslung */
[data-animate="fade-left"] {
  transform: translateX(-80px) translateY(20px) scale(0.94);
}
[data-animate="fade-left"].is-visible {
  transform: translateX(0) translateY(0) scale(1);
}
[data-animate="fade-right"] {
  transform: translateX(80px) translateY(20px) scale(0.94);
}
[data-animate="fade-right"].is-visible {
  transform: translateX(0) translateY(0) scale(1);
}

/* ========== PARALLAX HERO ========== */
.hero-zinsen-image-wrap[data-parallax] img.hero-parallax-img {
  transform: translateY(var(--parallax-offset, 0px));
  will-change: transform;
}

/* ========== VERBESSERTE HOVER-STATES (Karten) ========== */
.card.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(46, 125, 50, 0.15);
  border-color: rgba(46, 125, 50, 0.25);
}
.berater-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.18);
}
.berater-stat-card {
  transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.card.project {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

/* ========== FORM-FEEDBACK (Loading, Erfolg) ========== */
.form-submit-btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.form-submit-btn.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: formSpinner 0.6s linear infinite;
}
.form-submit-btn.primary.is-loading::after {
  border-color: rgba(255,255,255,0.3);
  border-top-color: #fff;
}
.form-submit-btn.primary.is-loading {
  background: var(--brand) !important;
}
@keyframes formSpinner {
  to { transform: rotate(360deg); }
}
.form-with-feedback.is-success .form-submit-btn {
  background: var(--brand) !important;
  color: #fff !important;
}
#form-status.is-success,
#zinsangebot-status.is-success {
  color: var(--brand2) !important;
  font-weight: 600;
}
#form-status.is-error,
#zinsangebot-status.is-error {
  color: var(--danger) !important;
  font-weight: 500;
}
http://localhost:8080

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
  .hero-zinsen-content .hero-zinsen-title,
  .hero-zinsen-content .hero-zinsen-highlights,
  .hero-zinsen-content .hero-zinsen-highlights li,
  .hero-zinsen-content .hero-zinsen-cta,
  .hero-zinsen-image-wrap img.hero-parallax-img {
    opacity: 1;
    transform: none;
  }
  .berater-profile .berater-photo-wrap,
  .berater-profile .berater-info .berater-name,
  .berater-profile .berater-info .berater-role,
  .berater-profile .berater-info .berater-quote,
  .berater-profile .berater-contact,
  .berater-profile .berater-cta,
  .berater-service-item {
    opacity: 1;
    transform: none;
  }
  .berater-profile:hover,
  .berater-stat-card:hover {
    transform: none;
  }
}
