/* ==========================================================================
   EnergieWerk Moser — Variante B "Modern / Dynamisch"
   Vollständiges Stylesheet für alle Seiten
   ========================================================================== */

/* ----- 1. Design Tokens ----- */
:root {
  --blue-950: #091e47;
  --blue-900: #0e2f6b;
  --blue-700: #1d4d9f;
  --blue-500: #3e7bc7;
  --blue-300: #7da8df;
  --blue-100: #dce8fa;
  --blue-50:  #eef4fd;

  --green-700: #3d8a2a;
  --green-600: #5cb338;
  --green-500: #7cc94e;
  --green-300: #a8dd80;
  --green-100: #e8f5e0;

  --cream: #f5f3ee;
  --paper: #fafaf7;
  --ink:   #0a1428;
  --ink-soft: #3a4458;
  --ink-mute: #6d7a8f;
  --line: rgba(14, 47, 107, .12);
  --white: #ffffff;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-script:  'Caveat', cursive;

  --container: 1280px;
  --pad: clamp(1.2rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(14, 47, 107, .06);
  --shadow:    0 8px 30px -10px rgba(14, 47, 107, .12);
  --shadow-lg: 0 20px 50px -10px rgba(14, 47, 107, .18);
  --shadow-xl: 0 30px 80px -20px rgba(14, 47, 107, .22);

  --t-fast: 150ms ease;
  --t:      300ms cubic-bezier(.4, 0, .2, 1);
}

/* ----- 2. Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-700);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--green-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.5rem, 7vw, 5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); letter-spacing: -.025em; }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

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

/* ----- 3. Layout ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.section--alt  { background: var(--blue-50); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--ink); color: rgba(255,255,255,.78); }

/* Section headers */
.section-head-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.section-head-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1rem;
}
.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.script {
  font-family: var(--font-script);
  font-weight: 700;
}

/* ----- 4. Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  letter-spacing: .01em;
  cursor: pointer;
  text-decoration: none;
}
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--green-600);
  color: var(--ink);
  border-color: var(--green-600);
}
.btn--primary:hover {
  background: var(--green-500);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(92,179,56,.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-100);
}
.btn--outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
}

/* ----- 5. Header / Navigation ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, .85);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--ink);
  text-decoration: none;
}
.nav__brand img { width: 44px; }
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.nav__brand-text span {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: .05em;
  font-family: var(--font-body);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  position: relative;
}
.nav__link:hover { color: var(--green-700); }
.nav__link.is-active { color: var(--green-700); font-weight: 600; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all .25s;
  left: 50%;
  transform: translateX(-50%);
}
.nav__toggle span { top: 50%; margin-top: -1px; }
.nav__toggle span::before { content: ''; top: -7px; }
.nav__toggle span::after  { content: ''; top: 7px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav__toggle.is-open span::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ----- 6. Hero (Dark) ----- */
.hero {
  position: relative;
  background: var(--blue-950);
  color: var(--white);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
  isolation: isolate;
}
.hero h1, .hero h2 { color: var(--white); }
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(92,179,56,.18), transparent 60%);
  border-radius: 50%;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(62,123,199,.15), transparent 60%);
  border-radius: 50%;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__kicker::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(124,201,78,.2);
}

.hero h1 .accent {
  color: var(--green-500);
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: .08em;
  height: .08em;
  background: rgba(124,201,78,.3);
  z-index: -1;
}
.hero h1 .script-mark {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--green-300);
  font-size: .95em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-3deg) translateY(-.05em);
}

.hero__lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin: 2rem 0;
  max-width: 38em;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-500);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .4rem;
}
.hero__stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 480px;
}
.hero__logo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  transform: rotate(-3deg);
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.hero__logo-wrap img {
  width: 75%;
  transform: rotate(3deg);
}
.hero__sticker {
  position: absolute;
  background: var(--green-500);
  color: var(--ink);
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 50%;
  width: 120px; height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.1;
  transform: rotate(12deg);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  top: 5%; right: -5%;
}
.hero__floating-card {
  position: absolute;
  bottom: 5%; left: -8%;
  background: var(--white);
  color: var(--ink);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  display: flex;
  gap: .75rem;
  align-items: center;
  max-width: 240px;
}
.hero__floating-card-icon {
  width: 44px; height: 44px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero__floating-card-icon svg { width: 24px; height: 24px; }
.hero__floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.2;
  color: var(--ink);
}
.hero__floating-card small {
  color: var(--ink-mute);
  font-size: .75rem;
}

/* Hero light variant (for subpages) */
.hero--light {
  background:
    radial-gradient(ellipse at 80% 0%, var(--green-100) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 100%, var(--blue-100) 0%, transparent 45%),
    var(--white);
  color: var(--ink);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.hero--light h1, .hero--light h2 { color: var(--ink); }
.hero--light .hero__kicker {
  background: var(--white);
  border-color: var(--blue-100);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}
.hero--light .hero__kicker::before { background: var(--green-600); }
.hero--light .hero__lead { color: var(--ink-soft); }
.hero--light::before, .hero--light::after { display: none; }

/* ----- 7. Marquee ----- */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.marquee__track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee__item {
  display: inline-block;
  padding: 0 2rem;
}
.marquee__item span {
  color: var(--green-500);
  margin-right: 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----- 8. Services Grid ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.svc {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.svc__num {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.svc h3 { margin: 0 0 .75rem; font-size: 1.35rem; }
.svc p  { color: var(--ink-soft); margin: 0; font-size: .95rem; line-height: 1.65; }
.svc__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-top: 1.5rem;
}
.svc__icon svg { width: 24px; height: 24px; }

/* Big featured card */
.svc--big {
  grid-column: span 6;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.svc--big h3  { color: var(--white); font-size: 1.8rem; }
.svc--big p   { color: rgba(255,255,255,.75); }
.svc--big .svc__num { color: rgba(255,255,255,.6); }
.svc--big .svc__icon { background: var(--green-500); color: var(--ink); }
.svc--big::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(92,179,56,.2), transparent 60%);
  border-radius: 50%;
  transform: translate(40%, -40%);
}

/* Accent featured card */
.svc--accent {
  grid-column: span 6;
  background: var(--green-600);
  border-color: transparent;
  color: var(--ink);
}
.svc--accent h3  { color: var(--ink); font-size: 1.6rem; }
.svc--accent p   { color: rgba(10,20,40,.78); }
.svc--accent .svc__num { color: rgba(10,20,40,.6); }
.svc--accent .svc__icon { background: var(--ink); color: var(--green-500); }

/* Medium card */
.svc--m {
  grid-column: span 4;
}
.svc--m .svc__icon { background: var(--blue-50); color: var(--blue-700); }

/* Detail list in service cards */
.svc__details {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.svc__details li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.svc--big .svc__details li { color: rgba(255,255,255,.7); }
.svc--accent .svc__details li { color: rgba(10,20,40,.7); }
.svc__details li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-600);
}
.svc--big .svc__details li svg { color: var(--green-500); }
.svc--accent .svc__details li svg { color: var(--ink); }

/* ----- 9. About ----- */
.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about__visual { position: sticky; top: 120px; }
.about__logo-card {
  background: linear-gradient(135deg, var(--blue-100), var(--green-100));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about__logo-card img {
  width: 65%;
  filter: drop-shadow(0 10px 20px rgba(14,47,107,.1));
}
.about__quote {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--line);
  position: relative;
}
.about__quote::before {
  content: '"';
  position: absolute;
  top: -15px; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-500);
  line-height: 1;
  font-weight: 800;
}
.about__quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  margin: .5rem 0 .5rem;
  line-height: 1.5;
}
.about__quote-author {
  font-size: .85rem;
  color: var(--ink-mute);
}

.about__content h2 { margin-bottom: 2rem; }
.about__content p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 55ch;
}

/* Credentials */
.creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.creds__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
}
.creds__item-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.creds__item-lbl {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Values cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--t);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.value-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-50), var(--green-100));
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--blue-700);
}
.value-card__icon svg { width: 28px; height: 28px; }
.value-card p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* ----- 10. Förderung Banner ----- */
.foerderung-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.foerderung-card::before {
  content: '';
  position: absolute;
  top: 50%; right: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,179,56,.25), transparent 65%);
  border-radius: 50%;
  transform: translateY(-50%);
}
.foerderung-card h2 { color: var(--white); margin-bottom: 1rem; }
.foerderung-card p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 42ch; }
.foerderung-card__big {
  position: relative;
  z-index: 1;
  text-align: center;
}
.foerderung-card__big-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--green-500);
  line-height: .9;
  letter-spacing: -.05em;
  margin-bottom: .5rem;
}
.foerderung-card__big-lbl {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.foerderung__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.foerderung__tag {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.12);
}

/* Förderung detail cards */
.foerderung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.foerderung-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--t);
}
.foerderung-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.foerderung-item__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue-700);
  margin-bottom: .75rem;
}
.foerderung-item h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.foerderung-item p { color: var(--ink-soft); margin: 0; font-size: .93rem; }

/* ----- 11. Process (Timeline) ----- */
.timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding-left: 60px;
  counter-reset: step;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-600), var(--blue-700));
}
.timeline-step {
  position: relative;
  padding-bottom: 2.5rem;
  counter-increment: step;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: counter(step);
  position: absolute;
  left: -60px; top: 0;
  width: 50px; height: 50px;
  background: var(--white);
  border: 2px solid var(--green-600);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green-700);
  font-size: 1.1rem;
}
.timeline-step h3 { margin-bottom: .5rem; }
.timeline-step p  { color: var(--ink-soft); margin: 0; }

/* ----- 12. Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: linear-gradient(155deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-info::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(92,179,56,.2), transparent 60%);
  border-radius: 50%;
}
.contact-info h2 { color: var(--white); }
.contact-info p  { color: rgba(255,255,255,.78); }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.contact-list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.contact-list__ico {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--green-500);
}
.contact-list__ico svg { width: 22px; height: 22px; }
.contact-list small {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 2px;
}
.contact-list a,
.contact-list .text { color: var(--white); font-weight: 500; font-size: 1rem; }
.contact-list a:hover { color: var(--green-500); }

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 3rem;
}
.form h2 { font-size: 1.6rem; margin-top: 0; }
.form__sub {
  font-size: .9rem;
  color: var(--ink-mute);
  margin-bottom: 2rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__field { margin-bottom: 1.25rem; }
.form__field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--ink);
  letter-spacing: .02em;
}
.form__field .req { color: var(--green-700); }

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--t-fast);
  outline: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
}
.form textarea { resize: vertical; min-height: 130px; }

.form__check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.form__check input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.form__status {
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  display: none;
}
.form__status.is-visible { display: block; }
.form__status.is-success { background: var(--green-100); color: var(--green-700); }
.form__status.is-error   { background: #fde4e4; color: #a01818; }

/* Honeypot */
.ohnee { position: absolute; left: -9999px; }

/* ----- 13. Footer ----- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  width: 64px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: .5rem;
}
.footer-brand h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 1rem 0 .75rem;
}
.footer-brand p { font-size: .95rem; max-width: 32ch; }
.footer-tagline {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--green-500);
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 1.5rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}
.footer-col a:hover { color: var(--green-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--green-500); }

/* ----- 14. Legal Pages ----- */
.legal {
  padding: clamp(3rem, 6vw, 5rem) 0;
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 { margin-bottom: 2rem; }
.legal h2 {
  font-size: 1.3rem;
  margin-top: 3rem;
  margin-bottom: .75rem;
}
.legal h3 {
  font-size: 1.05rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
}
.legal p, .legal li { color: var(--ink-soft); font-size: .97rem; }
.legal a { word-break: break-word; }

/* ----- 15. Cookie Banner ----- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  max-width: 520px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  z-index: 100;
  transform: translateY(150%);
  transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.cookie-banner p {
  font-size: .88rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  flex: 1;
  padding: .6rem 1rem;
  font-size: .88rem;
}

/* ----- 16. Reveal on Scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s, transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ----- 17. Responsive ----- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; min-height: auto; margin-bottom: 2rem; }
  .hero__logo-wrap { max-width: 280px; }
  .hero__stats { gap: 1.5rem; }
  .hero__stat-num { font-size: 2rem; }
  .section-head-split { grid-template-columns: 1fr; gap: 1rem; }
  .svc--big, .svc--accent { grid-column: span 12; }
  .svc--m { grid-column: span 6; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .about__visual { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .foerderung-card { grid-template-columns: 1fr; text-align: center; }
  .foerderung-card p { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .creds { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-200%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    gap: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__toggle { display: block; }
  .form__row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .svc--m { grid-column: span 12; }
  .hero__sticker { width: 80px; height: 80px; font-size: .95rem; top: 2%; right: 2%; }
  .hero__floating-card { display: none; }
  .timeline { padding-left: 50px; }
  .timeline::before { left: 18px; }
  .timeline-step::before { left: -50px; width: 38px; height: 38px; font-size: .95rem; }
}

/* ===== Custom Anpassungen ===== */

/* Logo höher positionieren - gleiche Höhe wie Headline */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

/* Floating Card (Unabhängig-Badge) ausblenden */
.hero__floating-card {
  display: none !important;
}

/* Mobile: Logo und Sticker ausblenden */
@media (max-width: 720px) {
  .hero__logo-wrap {
    display: none !important;
  }
  .hero__sticker {
    display: none !important;
  }
  .hero__visual {
    display: none !important;
  }
}

/* ===== Farbige Service-Kacheln (Klimaschutz bis Planung) ===== */

/* 03 - Klimaschutz: Grün-Pastell */
.svc--klima {
  background: linear-gradient(135deg, #e8f5e0, #d4ebbe) !important;
  border-color: transparent !important;
}
.svc--klima .svc__icon {
  background: var(--green-600) !important;
  color: var(--white) !important;
}
.svc--klima h3,
.svc--klima .svc__num,
.svc--klima p {
  color: var(--ink) !important;
}

/* 04 - Effizienz: Sonnen-Gelb */
.svc--effizienz {
  background: linear-gradient(135deg, #fff4d6, #ffe89a) !important;
  border-color: transparent !important;
}
.svc--effizienz .svc__icon {
  background: #f59e0b !important;
  color: var(--white) !important;
}
.svc--effizienz h3,
.svc--effizienz .svc__num,
.svc--effizienz p {
  color: var(--ink) !important;
}

/* 05 - Heizlastberechnung: Warm-Orange */
.svc--heizlast {
  background: linear-gradient(135deg, #ffe4d4, #ffc8a3) !important;
  border-color: transparent !important;
}
.svc--heizlast .svc__icon {
  background: #ea580c !important;
  color: var(--white) !important;
}
.svc--heizlast h3,
.svc--heizlast .svc__num,
.svc--heizlast p {
  color: var(--ink) !important;
}

/* 06 - Baubegleitung: Pastell-Blau */
.svc--baubegleitung {
  background: linear-gradient(135deg, #dbeafe, #a8c8ee) !important;
  border-color: transparent !important;
}
.svc--baubegleitung .svc__icon {
  background: var(--blue-700) !important;
  color: var(--white) !important;
}
.svc--baubegleitung h3,
.svc--baubegleitung .svc__num,
.svc--baubegleitung p {
  color: var(--ink) !important;
}

/* 07 - Planung: Lila/Violett */
.svc--planung {
  background: linear-gradient(135deg, #ede4f7, #d4c2eb) !important;
  border-color: transparent !important;
}
.svc--planung .svc__icon {
  background: #7c3aed !important;
  color: var(--white) !important;
}
.svc--planung h3,
.svc--planung .svc__num,
.svc--planung p {
  color: var(--ink) !important;
}
