/* =============================================================
   Autargreen – Statischer Nachbau
   Design-Tokens & Maße direkt aus der Live-Seite (Elementor-Kit 7)
   Farben:  Grün #5DB32B · Navy #0B2449 · Dunkelgrün #3C4F36 · Creme #EFEEE5
   Fonts:   Neue Haas Grotesk Display Pro (Headlines) · Inter (Text)
   Breakpoints wie im Original: 767 / 880 / 1024 / 1200 / 1366
   ============================================================= */

/* ---------- Fonts (selbst gehostet, wie im Original) ---------- */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/NeueHaasDisplay-Roman.woff2') format('woff2');
}
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('assets/fonts/NeueHaasDisplay-Mediu.woff2') format('woff2');
}
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('assets/fonts/NeueHaasDisplay-Mediu.woff2') format('woff2');
}
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/NeueHaasDisplay-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/Inter18pt-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('assets/fonts/Inter18pt-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('assets/fonts/Inter18pt-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/Inter18pt-Bold.woff2') format('woff2');
}

:root {
  --green: #5DB32B;
  --green-dark: #4f9d23;
  --green-darker: #3f7f1c;
  --darkgreen: #3C4F36;
  --navy: #0B2449;
  --orange: #FFAA4B;
  --cream: #EFEEE5;
  --card-sage: #A5AF9F14;          /* Bewertungs-Karten */
  --card-gray: #F8F9F8;            /* Checklisten-Karten */
  --white: #ffffff;
  --line: #e2e0d5;
  --muted: #5b6472;
  --shadow-btn: 0 0 10px rgba(0, 0, 0, .2);
  --shadow: 0 18px 45px rgba(11, 36, 73, .10);
  --shadow-sm: 0 6px 18px rgba(11, 36, 73, .08);
  --radius-sec: 40px;              /* große Sektionen */
  --radius-card: 24px;
  --maxw: 1180px;
  --font-head: 'Neue Haas Grotesk Display Pro', 'Helvetica', sans-serif;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15; margin: 0 0 .5em; font-weight: 600; color: var(--navy);
}
h1 { font-size: 64px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 { font-size: 28px; }
@media (max-width: 1200px) { h1 { font-size: 48px; } }
@media (max-width: 1024px) { h1 { font-size: 46px; } h2 { font-size: 42px; } }
@media (max-width: 767px)  { h1 { font-size: 38px; } h2 { font-size: 31px; } h3 { font-size: 26px; } }

p { margin: 0 0 1rem; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--cream { background: var(--cream); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Scroll-Einblende-Animationen ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-42px); }
[data-reveal="right"] { transform: translateX(42px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Buttons (ag-button des Originals) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  vertical-align: middle;
  cursor: pointer; font-family: var(--font); font-weight: 700; font-size: 16px;
  line-height: 1; padding: 6px 6px 6px 28px; border-radius: 100px; border: 0;
  box-shadow: var(--shadow-btn); text-decoration: none;
  transition: transform .3s ease;
}
.btn:hover { text-decoration: none; transform: scale(1.05); }
.btn svg, .btn img { vertical-align: middle; flex: none; }
.btn .btn-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex: none;
}
.btn .btn-ico svg { display: block; width: 48px; height: 48px; }
.btn--white { background: var(--white); color: var(--darkgreen); }
.btn--green { background: var(--green); color: var(--white); }
@media (max-width: 767px) { .btn { font-size: 14px; } }

/* Kompakter Button ohne Kreis-Icon (Unterseiten/Formulare) */
.btn--primary {
  background: var(--green); color: #fff; padding: 16px 28px;
}
.btn--light { background: #fff; color: var(--navy); padding: 16px 28px; }
.btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 14px 26px; box-shadow: none; }
.video-card h3 { margin-bottom: 14px; text-align: center; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 9999; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line);
}
/* Startseite: transparenter Header über dem Hero (wie im Original) */
body.home .site-header {
  position: absolute; top: 0; left: 0; right: 0;
  background: transparent; border-bottom: 0; backdrop-filter: none;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 8px 0; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { width: 120px; height: auto; }
.nav-menu { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative; color: var(--navy); font-family: var(--font);
  font-weight: 400; font-size: 16px; padding: 8px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--navy); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { text-decoration: none; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none; border: 0; background: transparent; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 25px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy); box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch; padding: 0;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links a { display: block; padding: 14px 22px; color: #fff; font-size: 18px; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { color: var(--green); }
}

/* ---------- Hero ----------
   Original-Kompositbild (Himmel → Hügel → Häuserdorf mit PV).
   Bildseitenverhältnis 2560×1440; Inhalt sitzt zentriert im oberen Drittel. */
.hero {
  position: relative;
  aspect-ratio: 2560 / 1440;
  min-height: 560px;
  background: #dcefc6 url('assets/hero-header.png') top center / cover no-repeat;
  border-radius: 0 0 var(--radius-sec) var(--radius-sec);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 8% 20px 0;
}
.hero-frame { max-width: 1040px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow {
  font-family: var(--font); font-size: 14px; font-weight: 600; text-transform: uppercase;
  color: var(--navy); margin: 0 0 16px;
}
.hero h1 {
  font-size: 64px; line-height: 75px; font-weight: 700;
  color: var(--navy); max-width: 860px; margin: 0 0 20px;
}
.hero .lead {
  font-family: var(--font); font-size: 18px; line-height: 24px; font-weight: 400;
  color: var(--navy); max-width: 520px; margin: 0 auto;
}
.hero-cta { margin-top: 28px; }
/* Ab Laptop nutzt das Original die kleinere 1280x720-Variante des Kompositbilds */
@media (max-width: 1366px) {
  .hero { background-image: url('assets/hero-header-mobile.png'); }
}
@media (max-width: 1200px) { .hero h1 { font-size: 48px; line-height: 52px; } }
@media (max-width: 1024px) {
  .hero {
    aspect-ratio: 1024 / 760;
    background-image: url('assets/hero-header-portrait.png');
    padding-top: 9%;
  }
  .hero h1 { font-size: 46px; line-height: 52px; }
}
@media (max-width: 880px) {
  .hero h1 { font-size: 36px; line-height: 44px; }
  .hero .lead { max-width: 82%; }
}
@media (max-width: 767px) {
  .hero {
    aspect-ratio: auto; min-height: 600px;
    justify-content: flex-start;
    padding: 118px 18px 60px;
    /* Mobil zeigt das Original die Dorf-Illustration, unten bündig */
    background: #dcefc6 url('assets/hero-mobile.webp') bottom center / cover no-repeat;
  }
  .hero h1 { font-size: 38px; line-height: 42px; }
  .hero .lead { font-size: 16px; max-width: 100%; }
}

/* ---------- Video (click-to-load, Datenschutz-freundlich) ---------- */
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 15px;
  overflow: hidden; background: #0d1526 center/cover no-repeat; cursor: pointer;
  box-shadow: var(--shadow); border: 0; padding: 0; display: block;
}
.video-embed::before {
  content: ""; position: absolute; inset: 0; background: rgba(11,36,73,.32); transition: .2s;
}
.video-embed:hover::before { background: rgba(11,36,73,.14); }
.video-embed .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%; background: #F5F5F5;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.35);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: translate(-50%,-50%) scale(1); }
  50%  { transform: translate(-50%,-50%) scale(1.1); }
  100% { transform: translate(-50%,-50%) scale(1); }
}
.video-embed .play::after {
  content: ""; margin-left: 4px; border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #63984C;
}
.video-embed .hint {
  position: absolute; left: 0; right: 0; bottom: 14px; text-align: center; color: #fff;
  font-weight: 600; font-size: .95rem; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Video + Punkte-Liste (nach dem Hero) ---------- */
.media-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.feature-list li { display: flex; align-items: center; gap: 10px; }
.feature-list__ico { flex: none; width: 60px; height: 60px; }
.feature-list span { font-size: 18px; font-weight: 400; line-height: 1.5; color: var(--navy); }
@media (max-width: 880px) {
  .media-split__inner { grid-template-columns: 1fr; gap: 30px; }
  .feature-list span { font-size: 16px; }
}

/* ---------- Bewertungen (Slider mit Badge, wie Original) ---------- */
.reviews { padding: 0 0 40px; }
.reviews-badge-wrap { text-align: right; }
.reviews-badge {
  display: inline-block; width: 299px; max-width: 40vw;
  margin: -30px 0 -110px; position: relative; z-index: 2;
}
@media (max-width: 880px) { .reviews-badge { margin-bottom: -80px; } }
@media (max-width: 767px) { .reviews-badge { width: 40%; margin-bottom: -30px; } }

.review {
  height: 100%; margin: 0; display: flex; flex-direction: column;
  background: var(--card-sage); border-radius: 16px; padding: 32px;
}
.review .stars { display: flex; gap: 4px; margin-bottom: 14px; }
.review p {
  font-family: 'Inter Tight', var(--font), sans-serif;
  font-size: 18px; line-height: 28px; font-weight: 400; color: var(--navy);
  margin: 0 0 14px;
}
.review .who {
  margin-top: auto; display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 18px; font-weight: 500; color: var(--navy);
}
@media (max-width: 767px) { .review p { font-size: 16px; line-height: 26px; } }

/* ---------- Generischer Karussell-Baustein (Swiper-Nachbau) ---------- */
.ag-carousel { position: relative; }
.agc-viewport { overflow: hidden; }
.agc-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
  touch-action: pan-y;
}
.agc-track.is-dragging { transition: none; cursor: grabbing; }
.agc-slide { flex: none; min-width: 0; }
.agc-slide > * { height: 100%; }
.agc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 21px; }
.agc-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: #A5AF9F; transition: background .2s, transform .2s;
}
.agc-dot.is-active { background: var(--green); }
.agc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.85); color: var(--navy);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: background .15s;
}
.agc-arrow:hover { background: #fff; }
.agc-prev { left: 10px; }
.agc-next { right: 10px; }

/* Baustellen-Bilder-Slider (Karriere) */
.baustellen-carousel .agc-slide img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 16px;
}

/* ---------- 3 Fälle (Wolken-Sektion) ---------- */
.section-clouds {
  background: url('assets/bg_clouds-scaled.webp') center center / cover no-repeat;
  border-radius: var(--radius-sec);
  margin-top: 80px;
  padding: 120px 10px;
}
@media (min-width: 1024px) { .section-clouds { background-attachment: fixed; } }
.clouds-inner { display: flex; flex-direction: column; align-items: center; }
.clouds-title {
  font-size: 48px; font-weight: 600; color: #fff; text-align: center;
  max-width: 70%; margin: 0 0 14px;
}
.clouds-sub { font-family: var(--font); font-size: 18px; color: #fff; text-align: center; }
.want-cards {
  display: flex; gap: 20px; align-items: stretch; width: 100%; max-width: 1100px;
  margin: 40px auto -200px;
}
.want-card {
  flex: 1; background: #fff; border-radius: var(--radius-card);
  box-shadow: var(--shadow-btn); padding: 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.want-card img { width: 40px; height: 40px; }
.want-card div {
  font-family: var(--font-head); font-size: 18px; font-weight: 500; line-height: 24px;
  color: var(--navy);
}
@media (max-width: 880px) {
  .section-clouds { padding: 60px 10px; }
  .clouds-title { max-width: 100%; }
}
@media (max-width: 767px) {
  .clouds-title { font-size: 31px; }
  .want-cards { flex-direction: column; }
  .want-card { flex-direction: row; align-items: center; padding: 20px; gap: 10px; }
  .want-card div { max-width: 80%; }
}

/* Achtung-Hinweis (kompensiert die überhängenden Karten der Wolken-Sektion) */
.warn-note { margin-top: 100px; }
.warn-note img { display: inline-block; margin-bottom: 10px; }
.warn-text {
  max-width: 50%; margin: 0 auto;
  font-size: 18px; font-weight: 600; text-transform: uppercase; color: var(--navy);
}
@media (max-width: 1024px) { .warn-text { max-width: 75%; } }
@media (max-width: 767px)  { .warn-note { margin-top: 150px; } .warn-text { max-width: 100%; font-size: 16px; line-height: 22px; } }

/* 3 Fälle im Detail (alternierende Bild/Text-Reihen) */
.case {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch;
  margin-top: 40px;
}
.case__media img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
  transition: transform .3s ease;
}
.case__media:hover img { transform: scale(1.05); }
.case__body { display: flex; flex-direction: column; justify-content: center; }
.case__num { font-family: var(--font-head); font-size: 40px; font-weight: 600; color: var(--navy); }
.case__title { font-size: 36px; font-weight: 600; color: var(--navy); margin: 6px 0 12px; }
.case__body p { font-family: var(--font); font-size: 18px; line-height: 28px; color: var(--navy); margin: 0; }
@media (max-width: 767px) {
  .case { grid-template-columns: 1fr; gap: 20px; }
  .case--reverse { display: flex; flex-direction: column-reverse; }
  .case__num, .case__title, .case__body p { text-align: center; }
  .case__title { font-size: 26px; }
  .case__body p { font-size: 16px; }
}

.tree-note { margin-top: 60px; padding-right: 20%; display: flex; justify-content: flex-end; }
@media (max-width: 1366px) { .tree-note { margin-top: 0; } }

/* Risiken-Hinweis */
.risk-note {
  background: #5DB32B1F; border-radius: var(--radius-card); padding: 40px 10px;
  text-align: center; font-size: 18px; font-weight: 700; text-transform: uppercase;
  color: var(--navy);
}
@media (max-width: 767px) { .risk-note { font-size: 16px; line-height: 22px; } }

/* ---------- Checkliste ---------- */
.checklist-section { margin-top: 60px; }
.checklist-title {
  max-width: 75%; margin: 0 auto 30px; text-align: center;
  font-weight: 600; color: var(--navy);
}
@media (max-width: 1024px) { .checklist-title { max-width: 85%; font-size: 42px; } }
@media (max-width: 767px)  { .checklist-title { max-width: 100%; font-size: 26px; } }
.cl-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.cl-card {
  flex: 1 1 calc(50% - 10px); min-width: 280px;
  background: var(--card-gray); border-radius: var(--radius-card); padding: 20px;
}
.cl-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.cl-head img:first-child { width: 60px; height: 60px; }
.cl-head img:last-child  { width: 32px; height: 32px; }
.cl-card h3 {
  font-size: 20px; font-weight: 500; color: var(--navy); margin: 0 0 8px;
}
.cl-card p { font-family: var(--font); font-size: 16px; line-height: 24px; color: var(--navy); margin: 0; }
@media (max-width: 767px) { .cl-card { flex-basis: 100%; } }

/* ---------- Leistungen (dunkelgrüne Sektion mit Tabs) ---------- */
.section-green {
  background: url('assets/background.webp') bottom center / cover no-repeat;
  border-radius: var(--radius-sec);
  margin: 60px 0;
  padding: 80px 20px;
}
.green-title {
  max-width: 50%; margin: 0 auto; text-align: center;
  font-weight: 600; color: #fff;
}
@media (max-width: 1024px) { .green-title { max-width: 60%; } }
@media (max-width: 767px)  { .green-title { max-width: 100%; font-size: 28px; } }

.tabs { margin-top: 40px; }
.tabs-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
.tab-btn {
  font-family: var(--font-head); font-weight: 700; font-size: 16px; cursor: pointer;
  color: #fff; background: #FFFFFF1F; border: 0;
  border-radius: 100px; padding: 14px 24px; line-height: 1;
  transition: background .2s, color .2s;
}
.tab-btn:hover, .tab-btn.is-active { background: #fff; color: var(--darkgreen); }
.tab-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 46px);
  align-items: center;
}
.tab-panel[hidden] { display: none; }
.tab-panel.is-active { animation: fade .35s ease; }
.tab-media img { width: 100%; border-radius: 18px; }
.tab-body h3 { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.tab-body p { color: #fff; font-family: var(--font); font-size: 18px; line-height: 28px; margin: 0; }
@media (max-width: 767px) {
  .tab-panel { grid-template-columns: 1fr; }
  .tab-body p { font-size: 16px; line-height: 24px; }
}

/* Wallbox-Karte in der grünen Sektion */
.wallbox-note {
  margin-top: 40px; background: #FFFFFF1F; border-radius: var(--radius-card);
  padding: 40px 10px; display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center;
}
.wallbox-head { display: flex; align-items: center; gap: 10px; }
.wallbox-head img { width: 34px; height: 34px; }
.wallbox-head span { font-family: var(--font-head); font-size: 20px; font-weight: 500; color: #fff; }
.wallbox-note p { font-family: var(--font); font-size: 16px; color: #fff; margin: 0; }
.wallbox-note .btn { margin-top: 20px; }

/* ---------- Ablauf (3 Schritte) ---------- */
.steps-section { padding: 20px 0; }
.steps-title {
  max-width: 63%; margin: 0 auto 30px; text-align: center;
  font-weight: 600; color: var(--navy);
}
@media (max-width: 767px) { .steps-title { max-width: 100%; font-size: 36px; } }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.step { padding: 10px 30px; text-align: center; }
.step img { width: 100%; margin: 0 auto; }
.step h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 10px 0 8px; }
.step p { font-family: var(--font); font-size: 18px; line-height: 24px; color: var(--navy); margin: 0; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step { margin-top: 40px; padding: 0 10px; }
  .step p { font-size: 16px; line-height: 20px; }
}

/* ---------- Besichtigung (Callout mit Bildhintergrund) ---------- */
.callout-wrap { margin-top: 60px; }
.callout {
  background: url('assets/background2.webp') center center / cover no-repeat;
  border-radius: var(--radius-sec); min-height: 528px;
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
  padding: 40px;
}
.callout__body { max-width: 46%; }
.callout__body h2 { color: #fff; font-weight: 600; margin-bottom: 14px; }
.callout__body p { color: #fff; font-family: var(--font); font-size: 18px; line-height: 28px; margin-bottom: 24px; }
@media (max-width: 1200px) { .callout__body h2 { font-size: 46px; } }
@media (max-width: 880px) {
  .callout {
    background-image: url('assets/Frame-20.webp');
    min-height: 750px; justify-content: flex-start; align-items: center;
    padding: 20px; text-align: center;
  }
  .callout__body { max-width: 100%; }
}
@media (max-width: 767px) {
  .callout { min-height: 900px; }
  .callout__body h2 { font-size: 32px; }
}

/* ---------- Über uns ---------- */
.uberuns { margin-top: 60px; }
.uberuns-title { text-align: center; font-weight: 600; color: var(--navy); margin-bottom: 30px; }
@media (max-width: 767px) { .uberuns-title { font-size: 36px; } }
.founder-video .video-embed { border-radius: 30px; }
.founder-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch;
  margin-top: 40px;
}
.founder-row__media img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
  transition: transform .3s ease;
}
.founder-row__media:hover img { transform: scale(1.05); }
.founder-row__body { display: flex; flex-direction: column; justify-content: center; }
.founder-row__body h2 { font-size: 36px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.founder-row__body .role {
  font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 14px;
}
.founder-row__body p { font-family: var(--font); font-size: 18px; line-height: 28px; color: var(--navy); margin: 0; }
@media (max-width: 1024px) { .founder-row { gap: 20px; } }
@media (max-width: 880px) {
  .founder-row { grid-template-columns: 1fr; }
  .founder-row__body h2, .founder-row__body .role, .founder-row__body p { text-align: center; }
}
@media (max-width: 767px) {
  .founder-row__body .role { font-size: 16px; }
  .founder-row__body p { font-size: 16px; line-height: 20px; }
}

/* ---------- Team (dunkelgrüne Sektion) ---------- */
.team-section {
  background: url('assets/bg3.webp') bottom center / cover no-repeat;
  border-radius: var(--radius-sec);
  margin-top: 130px;
  padding: 80px 0 120px;
}
.team-row { display: flex; justify-content: center; }
.team-row + .team-row { margin-top: 20px; }
.team-row .member { width: 30%; }
.member { display: flex; flex-direction: column; gap: 15px; padding: 0 10px; }
.member img { width: 100%; transition: transform .3s ease; }
.member img:hover { transform: scale(1.05); }
.member .name {
  font-family: var(--font-head); font-size: 24px; font-weight: 700; color: #fff;
  text-align: center;
}
.member .role {
  font-family: var(--font-head); font-size: 18px; font-weight: 500; color: #fff;
  text-align: center;
}
.member .bio {
  font-family: var(--font); font-size: 16px; line-height: 24px; color: #fff;
  text-align: center; margin: 0; padding: 0 40px;
}
/* Slider nur unterhalb Desktop, Grid nur ab Desktop (wie Original) */
.team-carousel { display: none; }
@media (max-width: 1024px) {
  .team-carousel { display: block; }
  .team-grid { display: none; }
  .team-section { padding: 60px 10px 100px; }
  .member .bio { padding: 0 20px; }
}

/* autark-note (weiße Karte in der Team-Sektion) */
.autark-note {
  margin-top: 60px; background: #fff; border-radius: var(--radius-card);
  padding: 40px 10px; display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center;
}
.autark-head { display: flex; align-items: center; gap: 10px; }
.autark-head img { width: 33px; height: 34px; }
.autark-head span { font-family: var(--font-head); font-size: 20px; font-weight: 500; color: var(--navy); }
.autark-note p {
  font-family: var(--font); font-size: 16px; line-height: 24px; color: var(--navy);
  max-width: 80%; margin: 0;
}
@media (max-width: 767px) {
  .autark-head { flex-direction: column; }
  .autark-head span { font-size: 18px; }
  .autark-note p { max-width: 100%; }
}

/* ---------- Kattenvenne ---------- */
.location { margin: 60px 0; }
.location__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.location__body { padding: 10px 50px 10px 10px; }
.location__body h2 { font-weight: 600; color: var(--navy); }
.location__body p { font-family: var(--font); font-size: 18px; color: var(--navy); }
.location__body .btn { margin-top: 10px; }
.location__map img { width: 100%; }
@media (max-width: 767px) {
  .location__inner { grid-template-columns: 1fr; }
  .location__body { padding: 0; text-align: center; }
  .location__body h2 { font-size: 36px; }
  .location__body p { font-size: 16px; }
}

/* ---------- FAQ ---------- */
.faq-section { margin-bottom: 60px; }
.faq-title { text-align: center; font-weight: 600; color: var(--navy); margin-bottom: 30px; }
.faq { max-width: 85%; margin: 0 auto; }
.faq-item { margin-bottom: 12px; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  text-align: left; background: none; cursor: pointer; font-family: var(--font-head);
  font-size: 20px; font-weight: 500; color: var(--navy); padding: 20px 24px;
  border: 1px solid var(--cream); border-radius: 16px;
  transition: background .2s;
}
.faq-q:hover { background: #EFEEE552; }
.faq-item.open .faq-q { background: #EFEEE552; border-radius: 16px 16px 0 0; border-bottom-width: 0; }
.faq-ico { flex: none; width: 32px; height: 32px; }
.faq-ico svg { display: block; }
.faq-ico .ico-opened { display: none; }
.faq-item.open .ico-opened { display: block; }
.faq-item.open .ico-closed { display: none; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner {
  padding: 5px 24px 20px; background: #EFEEE552; border: 1px solid #EFEEE552;
  border-top: 0; border-radius: 0 0 16px 16px;
  font-family: var(--font); font-size: 18px; color: var(--navy);
}
@media (max-width: 767px) {
  .faq { max-width: 100%; }
  .faq-q { font-size: 18px; }
  .faq-a-inner { font-size: 16px; }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative; background: var(--navy); color: #fff;
  border-radius: 40px 40px 0 0; padding: 40px 0 20px; overflow: hidden;
}
/* Landschafts-Illustration am unteren Rand (Original: footebg.webp, contain, bottom center) */
.site-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url('assets/footebg.webp') bottom center / contain no-repeat;
}
@media (max-width: 767px) { .site-footer::before { background-position: bottom right; } }
.site-footer > .container { position: relative; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.footer-logo { width: calc(25% - 20px); }
.footer-logo img { width: 120px; }
.footer-col { width: calc(25% - 20px); }
.site-footer h4 {
  color: #fff; font-family: var(--font-head); font-size: 16px; font-weight: 500;
  line-height: 22px; margin: 0 0 16px;
}
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: #FFFFFFBF; font-size: 16px; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-contact { font-size: 16px; }
.footer-contact .opacity-075 { opacity: .75; }
.footer-contact a { color: #fff; }
.footer-contact a.green-text { color: var(--green); }
.footer-bottom {
  margin-top: 70px; padding-right: 170px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.socials { display: flex; gap: 15px; }
/* Icons sitzen auf der hellen Illustration → dunkelgrün wie im Original */
.socials a { color: #3E4B35; display: block; }
.socials a:hover { color: #485D3A; }
.copyright { font-size: 14px; color: #fff; }
@media (max-width: 880px) {
  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo, .footer-col { width: 100%; }
  .footer-bottom { flex-direction: column; padding-right: 0; margin-top: 20px; padding-bottom: 30px; }
}

/* =============================================================
   Bausteine der Unterseiten (Karriere, Kontakt, Rechtliches)
   ============================================================= */

.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; font-weight: 700; color: var(--green-darker);
  background: rgba(93,179,43,.12); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.lead { font-size: 1.15rem; color: var(--muted); }

.page-hero { background: var(--navy); color: #fff; padding: clamp(60px, 9vw, 110px) 0 clamp(40px,6vw,70px); }
.page-hero h1 { color: #fff; }
.page-hero p { color: #b9c6df; max-width: 640px; }
.breadcrumb { font-size: .85rem; color: #8ea3c6; margin-bottom: 14px; }
.breadcrumb a { color: #b9c6df; }

/* cards / grids */
.cards { display: grid; gap: 24px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .cards--3, .cards--2 { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 26px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 8px; font-size: 24px; }
.card p { color: var(--muted); margin: 0; font-size: 16px; }

/* checklist (Karriere) */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .tick {
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-size: 15px; margin-top: 2px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

/* jobs / perks */
.jobs { display: grid; gap: 16px; }
.job {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; box-shadow: var(--shadow-sm);
}
.job .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.job .tag { background: var(--cream); color: var(--navy); font-weight: 600; font-size: .82rem; padding: 4px 12px; border-radius: 999px; }
.job h3 { margin: 0; font-size: 24px; }
.perks { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width: 700px){ .perks { grid-template-columns: 1fr; } }
.perk { display: flex; gap: 12px; align-items: flex-start; }
.perk .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; margin-top: 2px; }

/* CTA-Band (Unterseiten) */
.cta-band { background: linear-gradient(120deg, var(--green-dark), var(--green)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.92); }

/* Kontakt-Infokarten */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); text-align: center; }
.info-card .ic { font-size: 1.6rem; margin-bottom: 8px; }
.info-card a { color: var(--navy); font-weight: 700; }

/* Rechtstexte */
.prose { max-width: 820px; }
.prose h2 { margin-top: 1.6em; font-size: 1.7rem; }
.prose h3, .prose h4 { margin-top: 1.4em; font-size: 1.15rem; color: var(--navy); }
.prose p, .prose li { color: #38414f; font-size: 16px; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--green-darker); text-decoration: underline; }

/* ---------- Mehrstufiges Kontaktformular ---------- */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); padding: clamp(24px, 4vw, 44px); }
.progress { display: flex; gap: 10px; margin-bottom: 30px; }
.progress .dot { flex: 1; height: 6px; border-radius: 999px; background: var(--line); transition: .3s; }
.progress .dot.active { background: var(--green); }
.progress .dot.done { background: var(--green-dark); }
.form-title { font-size: 28px; margin-bottom: 16px; }
.step-head { margin-bottom: 6px; }
.step-count { color: var(--green-darker); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.step-head h3 { font-size: 22px; margin: 8px 0 14px; }
.step-head h3 .req { color: #d33; }
.fstep { display: none; }
.fstep.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 7px; font-size: .98rem; }
.field .req { color: #d33; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; background: #fbfbf8; transition: border .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field textarea { min-height: 110px; resize: vertical; }
.options { display: grid; gap: 12px; }
.options.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .options.two { grid-template-columns: 1fr; } }
.option {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 2px solid var(--line);
  border-radius: 12px; cursor: pointer; background: #fbfbf8; font-weight: 600; transition: .15s;
}
.option:hover { border-color: #c7dcb6; }
.option input { accent-color: var(--green); width: 18px; height: 18px; flex: none; }
.option:has(input:checked) { border-color: var(--green); background: rgba(93,179,43,.08); }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.form-nav .btn { min-width: 130px; }
.field .hint { color: var(--muted); font-size: .88rem; margin-top: 6px; }
.error-msg { color: #d33; font-size: .88rem; margin-top: 6px; display: none; }
.field.invalid .error-msg { display: block; }
.field.invalid input, .field.invalid textarea { border-color: #e88; }

/* Bewerbungsformular: Select, Datum und Datei-Upload im selben Look wie die Textfelder */
.field select, .field input[type=date], .field input[type=file] {
  width: 100%; padding: 14px 16px; border: 2px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; background: #fbfbf8; transition: border .15s;
  color: var(--navy);
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%230B2449' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.field select:focus, .field input[type=date]:focus, .field input[type=file]:focus {
  outline: none; border-color: var(--green); background-color: #fff;
}
.field input[type=file] { padding: 11px 16px; cursor: pointer; }
.field input[type=file]::file-selector-button {
  font-family: inherit; font-weight: 700; color: #fff; background: var(--green);
  border: 0; border-radius: 999px; padding: 8px 18px; margin-right: 14px; cursor: pointer;
}
.field.invalid select, .field.invalid input[type=date], .field.invalid input[type=file] { border-color: #e88; }
.option--consent { align-items: flex-start; font-weight: 500; }
.option--consent input { margin-top: 3px; }
.option--consent a { color: var(--green-darker); text-decoration: underline; }
.form-error { margin-top: 16px; }

.form-success { display: none; text-align: center; }
.form-success.show { display: block; animation: fade .4s ease; }
.form-success .check {
  width: 84px; height: 84px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; margin: 0 auto 22px; font-size: 2.6rem;
}
.calendly-embed { min-width: 320px; height: 700px; margin-top: 26px; }
.calendly-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* =============================================================
   Karriere-Seite – Nachbau von referenz/karriere.html
   ============================================================= */

/* Header-Variante: größeres Logo (Original: 200px), Anker-Navigation */
.site-header--career .brand img { width: 200px; height: auto; }

/* --- Hero („Werde mit deinem neuen Job zum Klimaretter") --- */
.karriere-hero {
  position: relative;
  min-height: 56vw; max-height: 1080px;
  background: #d8ecc3 url('assets/karriere-hero.webp') top center / cover no-repeat;
  border-radius: 0 0 var(--radius-sec) var(--radius-sec);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center;
  padding: clamp(120px, 12vw, 210px) 20px 350px;
}
.karriere-hero h1 {
  font-size: 64px; line-height: 75px; font-weight: 700;
  color: var(--navy); max-width: 900px; margin: 0 0 20px;
}
.karriere-hero .lead {
  font-family: var(--font); font-size: 18px; line-height: 24px; font-weight: 400;
  color: var(--navy); max-width: 560px; margin: 0 auto;
}
@media (max-width: 1366px) {
  .karriere-hero {
    background-image: url('assets/karriere-hero-laptop.png');
    min-height: 730px; padding-top: 180px; padding-bottom: 200px;
  }
  .karriere-hero h1 { font-size: 48px; line-height: 54px; }
}
@media (max-width: 1200px) {
  .karriere-hero {
    background-image: url('assets/karriere-hero-tablet.png');
    background-position: bottom center;
    min-height: 700px; padding-top: 130px; padding-bottom: 150px;
  }
}
@media (max-width: 1024px) {
  .karriere-hero { background-position: top center; padding-top: 150px; padding-bottom: 0; }
  .karriere-hero h1 { font-size: 46px; line-height: 52px; }
}
@media (max-width: 880px) {
  .karriere-hero {
    background-image: url('assets/karriere-hero-tablet-sm.webp');
    min-height: 620px;
  }
  .karriere-hero h1 { font-size: 36px; line-height: 44px; }
}
@media (max-width: 767px) {
  .karriere-hero {
    background-image: url('assets/karriere-hero-mobile.png');
    background-position: top center;
    min-height: 500px; padding: 120px 18px 50px;
  }
  .karriere-hero h1 { font-size: 38px; line-height: 42px; }
  .karriere-hero .lead { font-size: 16px; }
}

/* --- Mission (Video + Text) --- */
.k-mission { margin: 60px 0; }
.k-mission__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.k-mission__body h2 { font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.k-mission__body p { font-family: var(--font); font-size: 18px; line-height: 28px; color: var(--navy); margin: 0; }
@media (max-width: 1024px) { .k-mission__inner { gap: 24px; } }
@media (max-width: 880px) {
  .k-mission__inner { grid-template-columns: 1fr; }
  .k-mission__body { text-align: center; }
  .k-mission__body h2 { font-size: 32px; }
  .k-mission__body p { font-size: 16px; line-height: 24px; }
}

/* --- „Du passt zu uns, wenn …" (dunkelgrüne Landschafts-Sektion) --- */
.k-passt {
  background: var(--darkgreen) url('assets/karriere-passt-bg.webp') bottom center / cover no-repeat;
  border-radius: var(--radius-sec);
  margin-top: 60px;
  padding: 80px 20px 120px;
}
.k-passt h2 { text-align: center; color: #fff; font-weight: 600; margin-bottom: 50px; }
.k-passt__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1140px; margin: 0 auto; }
.k-passt__item { display: flex; flex-direction: column; gap: 16px; }
.k-passt__item img { width: 40px; height: 40px; }
.k-passt__item p { font-family: var(--font); font-size: 18px; line-height: 26px; color: #fff; margin: 0; }
@media (max-width: 880px) {
  .k-passt__grid { grid-template-columns: 1fr; }
  .k-passt h2 { font-size: 32px; }
  .k-passt__item p { font-size: 16px; }
}

/* --- CTA („Klingt nach dir?") --- */
.k-cta { margin: 60px 0; text-align: center; }
.k-cta p {
  font-family: var(--font-head); font-size: 24px; font-weight: 500; color: var(--navy);
  max-width: 640px; margin: 0 auto 24px;
}
@media (max-width: 767px) { .k-cta p { font-size: 20px; } }

/* --- Wolken-Deko zwischen den Sektionen --- */
.k-clouds { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.k-clouds--single { justify-content: flex-end; }
.k-clouds img { width: clamp(180px, 24vw, 473px); height: auto; }
@media (max-width: 767px) { .k-clouds img { width: 160px; } }

/* --- „Was du mitbringen solltest" --- */
.k-mitbringen { margin: 60px 0; }
.k-mitbringen__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.k-mitbringen h2 { font-weight: 600; color: var(--navy); margin-bottom: 28px; }
.k-mitbringen ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 18px; }
.k-mitbringen li { display: flex; align-items: center; gap: 14px; }
.k-mitbringen li img { width: 40px; height: 40px; flex: none; }
.k-mitbringen li span, .k-mitbringen__note {
  font-family: var(--font); font-size: 18px; line-height: 26px; color: var(--navy);
}
.k-mitbringen__note { margin: 0; }
.k-mitbringen__media img { width: 100%; border-radius: 24px; }
@media (max-width: 880px) {
  .k-mitbringen__inner { grid-template-columns: 1fr; }
  .k-mitbringen h2 { font-size: 32px; }
  .k-mitbringen li span, .k-mitbringen__note { font-size: 16px; }
}

/* --- Benefits (#benefits): 9 Karten mit Icons --- */
.k-benefits { margin: 60px 0; }
.k-benefits h2 {
  text-align: center; font-weight: 600; color: var(--navy);
  max-width: 860px; margin: 0 auto 50px;
}
.k-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.k-benefit {
  background: var(--card-gray); border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.k-benefit img { width: 48px; height: 48px; }
.k-benefit p { font-family: var(--font); font-size: 18px; font-weight: 500; line-height: 24px; color: var(--navy); margin: 0; }
@media (max-width: 1024px) { .k-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
  .k-benefits__grid { grid-template-columns: 1fr; }
  .k-benefits h2 { font-size: 32px; }
  .k-benefit p { font-size: 16px; }
}

/* --- „So sieht die Arbeit bei uns aus" (#erwartet) mit Verlaufs-Band --- */
.k-erwartet {
  background:
    url('assets/karriere-gradient.webp') bottom center / 100% auto no-repeat,
    linear-gradient(180deg, #fff 0%, #d2e288 100%);
  padding: 80px 0 60px;
  margin-top: 60px;
}
.k-erwartet h2 { text-align: center; font-weight: 600; color: var(--navy); margin-bottom: 50px; }
.k-erwartet__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.k-erwartet__body p { font-family: var(--font); font-size: 18px; line-height: 26px; color: var(--navy); margin: 0 0 14px; }
.k-erwartet__media img { width: 100%; border-radius: 24px; }
@media (max-width: 880px) {
  .k-erwartet__inner { grid-template-columns: 1fr; }
  .k-erwartet h2 { font-size: 32px; }
  .k-erwartet__body p { font-size: 16px; }
}

/* Baustellen-Carousel (c1–c5): 3/2/1 Spalten, 30px Abstand, Pfeile */
.baustellen-carousel { margin-top: 50px; }
.baustellen-carousel .agc-slide img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 24px; display: block;
}

/* --- Offene Stellen (#stellen) --- */
.k-stellen { margin: 80px 0 0; }
.k-stellen h2 { text-align: center; font-weight: 600; color: var(--navy); margin-bottom: 50px; }
.k-jobs { display: flex; flex-wrap: wrap; gap: 22px 24px; }
.k-jobs--ausbildung { justify-content: center; }
.k-jobs--ausbildung .k-job { width: 66%; }
.k-job {
  display: flex; flex-direction: column; justify-content: center;
  width: calc(50% - 12px); background: #fff;
  border: 1px solid var(--green); border-radius: 16px; padding: 22px 12px;
  text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
}
.k-job:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.k-job__title {
  font-family: var(--font); font-size: 18px; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin: 0 0 10px;
}
.k-job__meta { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; margin: 0; padding: 0; }
.k-job__meta li { display: flex; align-items: center; gap: 8px; }
.k-job__meta svg { flex: none; width: 18px; height: 18px; }
.k-job__meta span { font-family: var(--font); font-size: 16px; color: var(--navy); }
@media (max-width: 767px) {
  .k-stellen h2 { font-size: 32px; }
  .k-job, .k-jobs--ausbildung .k-job { width: 100%; padding: 20px 14px; }
}

/* --- Mitarbeiterstimmen --- */
.k-stimmen { margin-top: 80px; }
.k-stimmen h2 { text-align: center; font-weight: 600; color: var(--navy); margin-bottom: 50px; }
.k-stimmen-section {
  background: url('assets/bg3.webp') bottom center / cover no-repeat;
  border-radius: var(--radius-sec);
  padding: 80px 20px 120px;
}
.k-stimme { display: flex; flex-direction: column; gap: 12px; }
.k-stimme img { width: 100%; border-radius: 20px; }
.k-stimme .name { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: #fff; }
.k-stimme .role { font-family: var(--font-head); font-size: 18px; font-weight: 500; color: #fff; }
.k-stimme .zitat { font-family: var(--font); font-size: 16px; line-height: 24px; color: #fff; margin: 0; }
.k-stimmen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; max-width: 1200px; margin: 0 auto; }
.k-stimmen-section .center { margin-top: 60px; }
/* Slider nur unterhalb Desktop (wie Team-Slider der Startseite) */
.k-stimmen-carousel { display: none; }
@media (max-width: 1024px) {
  .k-stimmen-carousel { display: block; }
  .k-stimmen-grid { display: none; }
}
@media (max-width: 767px) { .k-stimmen h2 { font-size: 32px; } }

/* --- Standort --- */
.k-standort { margin: 80px 0 60px; }
.k-standort__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.k-standort__body h2 { font-weight: 600; color: var(--navy); }
.k-standort__body p { font-family: var(--font); font-size: 18px; color: var(--navy); }
.k-standort__body .btn { margin-top: 10px; }
.k-standort__map img { width: 100%; }
@media (max-width: 767px) {
  .k-standort__inner { grid-template-columns: 1fr; }
  .k-standort__body { text-align: center; }
  .k-standort__body h2 { font-size: 36px; }
  .k-standort__body p { font-size: 16px; }
}

/* --- Stellen-Detailseiten (Nachbau der Original-Unterseiten, z. B.
       referenz/pv-installateur-m-w-d): hellgrünes Logo-Band, H1 in Inter 32px,
       Aufgaben/Anforderungen zweispaltig (48 %/48 %), Vergütungszeile,
       zentrierter Bewerbungs-Button --- */
.stelle-header { background: #c9dcaf; padding: 30px 0 40px; }
.stelle-header .brand img { width: 200px; height: auto; }
.stelle { padding-bottom: 60px; }
.stelle h1 {
  font-family: var(--font); font-size: 32px; font-weight: 700;
  color: var(--navy); line-height: 1.2; margin: 40px 0 10px;
}
.stelle__cols { display: flex; flex-wrap: wrap; justify-content: space-between; }
.stelle__col { width: 48%; }
.stelle__col p { margin: 1em 0 0; }
.stelle__col ul { margin: 1em 0 0; padding-left: 22px; }
.stelle__col li { margin-bottom: 4px; }
.stelle__pay {
  font-family: var(--font-head); font-weight: 600; font-size: 18px;
  color: var(--green); margin: 40px 0 0;
}
.stelle .center { margin-top: 40px; }
@media (max-width: 767px) {
  .stelle h1 { font-size: 24px; }
  .stelle__col { width: 100%; }
}

/* =============================================================
   PV-Rechner-Teaser (Startseite)
   ============================================================= */
.pv-teaser__card {
  background: var(--cream); border-radius: var(--radius-sec);
  padding: clamp(44px, 6vw, 72px) 24px; text-align: center;
}
.pv-teaser__card h2 { max-width: 680px; margin: 0 auto 14px; }
.pv-teaser__card p {
  font-family: var(--font); font-size: 18px; line-height: 28px; color: var(--navy);
  max-width: 580px; margin: 0 auto 28px;
}
@media (max-width: 767px) {
  .pv-teaser__card h2 { font-size: 28px; }
  .pv-teaser__card p { font-size: 16px; line-height: 24px; }
}

/* =============================================================
   PV-Rechner (pv-rechner.html)
   ============================================================= */
.pvc-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 920px) { .pvc-grid { grid-template-columns: 400px 1fr; align-items: start; } }

.pvc-card {
  background: #fff; border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); padding: 26px;
}

.pvc-panel-title { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--navy); }
.pvc-panel-sub { font-size: 14px; color: var(--muted); margin: 2px 0 18px; }

.pvc-mode { display: inline-flex; background: var(--cream); border-radius: 100px; padding: 4px; margin-bottom: 20px; }
.pvc-mode button {
  border: 0; background: none; font-family: var(--font); font-size: 14px; font-weight: 700;
  color: var(--muted); padding: 8px 18px; border-radius: 100px; cursor: pointer; transition: .15s;
}
.pvc-mode button.active { background: var(--green); color: #fff; }

.pvc-field { margin-bottom: 19px; }
.pvc-field label {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px;
}
.pvc-field .val { font-weight: 700; color: var(--green-darker); font-variant-numeric: tabular-nums; white-space: nowrap; }
.pvc-field .hint { display: block; font-size: 13px; line-height: 1.45; color: var(--muted); margin-top: 6px; }

.pvc-field input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 99px; background: var(--line); outline: none; cursor: pointer;
}
.pvc-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 23px; height: 23px; border-radius: 50%;
  background: var(--green); cursor: pointer; border: 3px solid #fff;
  box-shadow: 0 1px 5px rgba(63,127,28,.45); transition: transform .1s;
}
.pvc-field input[type=range]::-webkit-slider-thumb:active { transform: scale(1.12); }
.pvc-field input[type=range]::-moz-range-thumb {
  width: 23px; height: 23px; border-radius: 50%; background: var(--green); cursor: pointer;
  border: 3px solid #fff; box-shadow: 0 1px 5px rgba(63,127,28,.45);
}

.pvc-toggle-row { display: flex; gap: 10px; }
.pvc-toggle {
  flex: 1; text-align: center; padding: 12px 8px; border: 2px solid var(--line);
  border-radius: 12px; font-size: 15px; font-weight: 600; color: var(--muted); cursor: pointer;
  background: #fbfbf8; transition: .15s; user-select: none;
}
.pvc-toggle:hover { border-color: #c7dcb6; }
.pvc-toggle.on { border-color: var(--green); background: rgba(93,179,43,.08); color: var(--green-darker); }

.pvc-profi { display: none; border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 16px; }
.pvc-profi.show { display: block; animation: fade .3s ease; }

.pvc-hero {
  background: var(--navy); border-radius: var(--radius-card); color: #fff;
  padding: 28px 28px 24px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.pvc-hero::after {
  content: ""; position: absolute; right: -50px; top: -60px; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(93,179,43,.4), transparent 68%);
}
.pvc-hero .lbl { font-size: 14px; font-weight: 600; opacity: .85; position: relative; }
.pvc-hero .big {
  font-family: var(--font-head); font-size: clamp(34px, 6vw, 50px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.05; margin: 5px 0 4px;
  font-variant-numeric: tabular-nums; position: relative;
}
.pvc-hero .big small { font-size: .42em; font-weight: 700; opacity: .85; margin-left: 4px; }
.pvc-hero .note { font-size: 14px; opacity: .9; position: relative; }
.pvc-hero .note b { color: #A9E17E; }

.pvc-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
@media (min-width: 560px)  { .pvc-kpis { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 920px)  { .pvc-kpis { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pvc-kpis { grid-template-columns: repeat(4, 1fr); } }
.pvc-kpi { background: #fff; border-radius: 16px; padding: 16px 15px; box-shadow: var(--shadow-sm); }
.pvc-kpi .ic {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 10px; background: rgba(93,179,43,.14); color: var(--green-darker);
}
.pvc-kpi .ic.b { background: rgba(11,36,73,.08); color: var(--navy); }
.pvc-kpi .k {
  font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--navy);
  line-height: 1.1; font-variant-numeric: tabular-nums;
}
.pvc-kpi .t { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 2px; }

.pvc-visrow { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 14px; }
@media (min-width: 660px) { .pvc-visrow { grid-template-columns: 230px 1fr; } }
.pvc-donut-card, .pvc-chart-card { background: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); }
.pvc-donut-wrap { display: flex; align-items: center; gap: 14px; }
@media (min-width: 660px) { .pvc-donut-wrap { flex-direction: column; text-align: center; } }
.pvc-donut { position: relative; width: 112px; height: 112px; flex: none; }
.pvc-donut .center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pvc-donut .center .p { font-family: var(--font-head); font-size: 25px; font-weight: 700; color: var(--green-darker); line-height: 1; }
.pvc-donut .center .l { font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.pvc-donut-txt .h { font-size: 15px; font-weight: 600; color: var(--navy); }
.pvc-donut-txt .d { font-size: 13px; color: var(--muted); margin-top: 3px; }

.pvc-chart-head { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.pvc-chart-sub { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.pvc-legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
.pvc-legend span { display: inline-flex; align-items: center; gap: 6px; }
.pvc-legend i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }

.pvc-oeko { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 14px; }
@media (min-width: 560px) { .pvc-oeko { grid-template-columns: 1fr 1fr; } }
.pvc-oeko-item { display: flex; align-items: center; gap: 13px; background: #fff; border-radius: 16px; padding: 15px 17px; box-shadow: var(--shadow-sm); }
.pvc-oeko-item .check { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; }
.pvc-oeko-item .n { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.15; font-variant-numeric: tabular-nums; }
.pvc-oeko-item .c { font-size: 13px; color: var(--muted); font-weight: 500; }

.pvc-callouts { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 14px; }
@media (min-width: 560px) { .pvc-callouts { grid-template-columns: 1fr 1fr; } }
.pvc-callout { border-radius: 16px; padding: 18px 19px; display: flex; gap: 14px; align-items: flex-start; }
.pvc-callout--cream { background: var(--cream); border: 1px solid var(--line); }
.pvc-callout--green { background: rgba(93,179,43,.1); border: 1px solid #c7dcb6; }
.pvc-callout .bulb { flex: none; width: 34px; height: 34px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.pvc-callout .h { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.pvc-callout p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.pvc-callout b { color: var(--navy); }

.pvc-cta { margin-top: 44px; text-align: center; }
.pvc-cta h2 { margin-bottom: 8px; }
.pvc-cta p { font-size: 18px; color: var(--navy); max-width: 560px; margin: 0 auto 24px; }
.pvc-cta .trust { font-size: 14px; color: var(--muted); margin-top: 16px; }

.pvc-disclaimer {
  font-size: 12px; color: var(--muted); text-align: center; max-width: 760px;
  margin: 30px auto 0; line-height: 1.55;
}

/* =============================================================
   Cookie-Banner
   ============================================================= */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  max-width: 860px; margin: 0 auto; padding: 20px 24px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-card); box-shadow: var(--shadow);
}
.cookie-banner__text {
  margin: 0; font-size: 15px; line-height: 1.5; flex: 1 1 320px;
}
.cookie-banner__actions { display: flex; gap: 12px; flex: none; }
.cookie-banner__btn {
  font-family: inherit; font-size: 15px; font-weight: 500;
  padding: 12px 26px; border-radius: 100px; cursor: pointer;
  transition: transform .2s, background .2s;
}
.cookie-banner__btn:hover { transform: scale(1.05); }
.cookie-banner__btn--accept {
  background: var(--green); color: var(--white); border: 2px solid var(--green);
}
.cookie-banner__btn--accept:hover { background: var(--green-dark); border-color: var(--green-dark); }
.cookie-banner__btn--decline {
  background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, .5);
}
.cookie-banner__btn--decline:hover { border-color: var(--white); }
@media (max-width: 767px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner__actions { justify-content: center; }
}

/* =============================================================
   Stellen-Modal (Karriere): Stellenangebote als Overlay statt
   eigener Seite — weiße Karte, Navy-Kopf, abgedunkelter Hintergrund
   ============================================================= */
body.job-modal-open { overflow: hidden; }

.job-modal {
  position: fixed; inset: 0; z-index: 10010;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.job-modal[hidden] { display: none; }
.job-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 36, 73, .6);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .3s ease;
}
.job-modal__card {
  position: relative; width: min(900px, 100%); max-height: 100%;
  display: flex; flex-direction: column;
  background: var(--white); border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(11, 36, 73, .35);
  opacity: 0; transform: translateY(28px) scale(.97);
  transition: opacity .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}
.job-modal.is-open .job-modal__backdrop { opacity: 1; }
.job-modal.is-open .job-modal__card { opacity: 1; transform: none; }

.job-modal__head {
  flex: none; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; background: var(--navy); padding: 22px 28px;
}
.job-modal__title {
  font-family: var(--font); font-size: 24px; font-weight: 700;
  line-height: 1.25; color: var(--white); margin: 0;
}
.job-modal__close {
  flex: none; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: var(--white);
  transition: background .2s ease, transform .2s ease;
}
.job-modal__close:hover { background: var(--green); transform: rotate(90deg); }
.job-modal__close svg { display: block; width: 20px; height: 20px; }

.job-modal__body { padding: 4px 28px 28px; overflow-y: auto; }
.job-modal__body .stelle__pay { margin-top: 28px; }
.job-modal__loading { padding: 48px 0; text-align: center; color: var(--navy); font-weight: 600; }
.job-modal__spinner {
  width: 36px; height: 36px; margin: 0 auto 14px; border-radius: 50%;
  border: 3px solid var(--cream); border-top-color: var(--green);
  animation: job-modal-spin .8s linear infinite;
}
@keyframes job-modal-spin { to { transform: rotate(360deg); } }

.job-modal__foot {
  flex: none; display: flex; justify-content: center;
  padding: 18px 28px 24px; border-top: 1px solid var(--line);
}

@media (max-width: 767px) {
  .job-modal { padding: 12px; }
  .job-modal__card { border-radius: 18px; }
  .job-modal__head { padding: 16px 18px; }
  .job-modal__title { font-size: 18px; }
  .job-modal__close { width: 34px; height: 34px; }
  .job-modal__body { padding: 2px 18px 20px; }
  .job-modal__foot { padding: 14px 18px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .job-modal__backdrop, .job-modal__card { transition: none; }
}
