/* =========================================================
   Arkon Haustechnik — Startseite  ·  v2 (Enpal-inspiriert)
   Klare Sans-Typografie · schwebende Nav + Mega-Menü
   Große Bilder auf schlichtem Grund · große Rundungen
   ========================================================= */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- Tokens ---------- */
:root {
  --bg: #EEEDE8;            /* warmes Hellgrau (Seite) */
  --bg-2: #E7E5DE;
  --surface: #FFFFFF;
  --line: #E4E1D8;
  --line-2: #D8D4C8;

  --ink: #12161A;           /* dunkle Sektionen / Text */
  --ink-2: #0C1013;
  --ink-line: rgba(255,255,255,.12);

  --text: #14181C;
  --muted: #5B6169;
  --muted-2: #8A9099;

  /* ==== MARKENFARBEN — aus AK-ON Logo ==== */
  --accent: #93BE3C;        /* Logo-Limettengrün */
  --accent-2: #AFD24C;      /* helles Grün für dunkle Flächen */
  --accent-deep: #46621A;   /* dunkles Grün für Text/Links auf hell */
  --on-accent: #17210A;     /* dunkle Schrift auf grünem Button */
  --accent-tint: #EEF4DD;   /* helle grüne Fläche */
  --brand-red: #A21A1C;     /* Sekundärton aus Logo (sparsam) */

  --on-dark: #F3F1EA;
  --on-dark-muted: #A7ADA8;

  --r-sm: 14px;
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(18,22,26,.05), 0 8px 20px -12px rgba(18,22,26,.18);
  --shadow: 0 2px 6px rgba(18,22,26,.05), 0 24px 50px -24px rgba(18,22,26,.28);
  --shadow-lg: 0 40px 90px -30px rgba(18,22,26,.45);

  --container: 1220px;
  --gutter: clamp(16px, 4vw, 40px);
  --nav-h: 74px;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.08; letter-spacing: -.022em; }
.h-eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-deep);
}
.on-dark .h-eyebrow { color: var(--accent-2); }
.section-head { max-width: 44rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: .5rem 0 .6rem; }
.section-head p { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); margin: 0; font-weight: 500; }
.on-dark .section-head p { color: var(--on-dark-muted); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--muted); font-weight: 500; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 116px); }
.section--tight { padding-block: clamp(44px, 6vw, 84px); }
.on-dark { background: var(--ink); color: var(--on-dark); position: relative; }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--on-dark); }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --py: .9rem; --px: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: var(--py) var(--px); border-radius: var(--r-pill);
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .2s;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 10px 24px -10px rgba(147,190,60,.6); }
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 16px 32px -12px rgba(147,190,60,.7); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #1d242a; }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { background: rgba(18,22,26,.05); transform: translateY(-2px); }
.on-dark .btn--ghost, .hero .btn--ghost, .page-hero .btn--ghost { color: var(--on-dark); border-color: rgba(255,255,255,.28); }
.on-dark .btn--ghost:hover, .hero .btn--ghost:hover, .page-hero .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.btn--lg { --py: 1.1rem; --px: 1.8rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 200; background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(18,22,26,.4); }
.header__inner { display: flex; align-items: center; gap: 1rem; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
.brand__logo { height: 46px; width: auto; }
.logo-chip { display: inline-block; background: #fff; padding: 10px 14px; border-radius: 14px; }
.logo-chip img { height: 40px; width: auto; display: block; }
@media (max-width: 620px) { .brand__logo { height: 38px; } }

.nav { display: flex; align-items: center; justify-content: center; gap: .35rem; flex: 1; min-width: 0; margin-inline: 1.5rem; }
.nav__utils { display: flex; align-items: center; gap: 1rem; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .85rem; border-radius: 10px; font-size: .98rem; font-weight: 600; color: var(--text); transition: background .2s, color .2s; }
.nav__link:hover { background: rgba(18,22,26,.05); }
.nav__link .chev { width: 15px; height: 15px; transition: transform .3s var(--ease); opacity: .6; }
.nav__item.open .nav__link .chev { transform: rotate(180deg); }
.nav__spacer { flex: 1; }
.nav__phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .96rem; padding: .5rem .6rem; }
.nav__phone svg { width: 1.05em; height: 1.05em; color: var(--accent-deep); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; margin-left: auto; color: var(--text); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Mega-Menü ---------- */
.mega {
  position: fixed; top: calc(var(--nav-h) + 4px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(960px, calc(100vw - 2 * var(--gutter)));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 14px; opacity: 0; visibility: hidden; pointer-events: none; z-index: 190;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; } /* Hover-Brücke */
.nav__item.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 14px; }
.mega__list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega__item { display: flex; gap: .8rem; align-items: center; padding: .7rem .8rem; border-radius: var(--r-sm); transition: background .18s; }
.mega__item:hover { background: var(--bg); }
.mega__ico { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); }
.mega__ico svg { width: 22px; height: 22px; color: var(--accent-deep); }
.mega__item b { display: block; font-size: .96rem; font-weight: 700; }
.mega__item small { display: block; color: var(--muted); font-size: .82rem; line-height: 1.3; }
.mega__feature { position: relative; border-radius: var(--r); overflow: hidden; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem; color: #fff; }
.mega__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.mega__feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,16,19,.15), rgba(12,16,19,.85)); z-index: 1; }
.mega__feature > * { position: relative; z-index: 2; }
.mega__feature .tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); }
.mega__feature h4 { font-size: 1.3rem; margin: .3rem 0 .3rem; }
.mega__feature p { font-size: .88rem; color: #E2E4DF; margin: 0 0 .9rem; }
.mega__cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 12px; padding: 1rem 1.2rem; background: var(--ink); color: #fff; border-radius: var(--r); }
.mega__cta b { font-weight: 700; }
.mega__cta span { color: var(--on-dark-muted); font-size: .9rem; }

/* ---------- Hero (inset, große Rundung) ---------- */
.hero { position: relative; margin: calc(var(--nav-h) + 12px) var(--gutter) 0; border-radius: var(--r-xl); overflow: hidden; background: var(--ink); color: var(--on-dark); box-shadow: var(--shadow); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 82% 4%, rgba(147,190,60,.26), transparent 46%), linear-gradient(100deg, rgba(10,13,15,.9) 0%, rgba(10,13,15,.62) 46%, rgba(10,13,15,.4) 100%); }
.hero__inner { position: relative; z-index: 1; max-width: var(--container); margin-inline: auto; padding: clamp(40px, 5.5vw, 80px) var(--gutter); }
.hero__grid { display: grid; grid-template-columns: 1.1fr minmax(360px, 460px); gap: clamp(28px, 4vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 800; letter-spacing: -.03em; }
.hero h1 em { font-style: normal; color: var(--accent-2); }
.hero__sub { margin: 1.2rem 0 0; max-width: 33rem; font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: #E3E6E0; font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--ink-line); }
.trust-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: #D6DBD3; font-weight: 600; }
.trust-item svg { width: 1.1rem; height: 1.1rem; color: var(--accent-2); flex: none; }
.hero__rating strong { color: #fff; }

/* ---------- Quiz-Karte ---------- */
.quiz-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-lg); padding: clamp(18px, 2.2vw, 26px); backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); box-shadow: var(--shadow-lg); }
.quiz-card__badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: .9rem; }
.quiz-card__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(175,210,76,.22); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(175,210,76,.22);} 50%{ box-shadow: 0 0 0 8px rgba(175,210,76,0);} }

.quiz__meta { display: flex; justify-content: space-between; font-size: .8rem; color: var(--on-dark-muted); margin-bottom: .35rem; font-weight: 600; }
.quiz__progress { height: 6px; border-radius: 999px; background: rgba(255,255,255,.14); overflow: hidden; margin-bottom: 1.1rem; }
.quiz__bar { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .5s var(--ease); }
.quiz__step { animation: stepIn .45s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.quiz__q { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin: 0 0 1rem; color: #fff; }
.quiz__options { display: grid; gap: .55rem; }
.quiz__options.cols-2 { grid-template-columns: 1fr 1fr; }
.opt { display: flex; align-items: center; gap: .75rem; width: 100%; text-align: left; padding: .85rem 1rem; border-radius: 13px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); color: var(--on-dark); font-weight: 600; font-size: .98rem; transition: background .2s, border-color .2s, transform .15s var(--ease); }
.opt:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); transform: translateY(-1px); }
.opt.selected { background: rgba(147,190,60,.18); border-color: var(--accent); }
.opt__ico { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,.08); }
.opt__ico svg { width: 18px; height: 18px; color: var(--accent-2); }
.opt.selected .opt__ico { background: var(--accent); } .opt.selected .opt__ico svg { color: var(--on-accent); }
.opt__check { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); display: grid; place-items: center; flex: none; }
.opt.selected .opt__check { background: var(--accent); border-color: var(--accent); }
.opt__check svg { opacity: 0; width: 12px; height: 12px; color: var(--on-accent); }
.opt.selected .opt__check svg { opacity: 1; }
.quiz__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; gap: 1rem; }
.quiz__back { font-size: .9rem; color: var(--on-dark-muted); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.quiz__back:hover { color: #fff; } .quiz__back[hidden] { visibility: hidden; }
.quiz__hint { font-size: .82rem; color: var(--on-dark-muted); }
.quiz__form { display: grid; gap: .65rem; }
.field { display: grid; gap: .3rem; }
.field > span { font-size: .8rem; font-weight: 700; color: var(--on-dark-muted); }
.field input { width: 100%; padding: .8rem 1rem; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); color: #fff; font: inherit; transition: border-color .2s, background .2s; }
.field input::placeholder { color: rgba(255,255,255,.4); }
.field input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.1); }
.consent { font-size: .76rem; color: var(--on-dark-muted); line-height: 1.4; }
.consent a { color: var(--accent-2); text-decoration: underline; }
.quiz__done { text-align: center; padding: 1rem 0; }
.quiz__done .tick { width: 66px; height: 66px; margin: 0 auto 1rem; border-radius: 50%; background: var(--accent); display: grid; place-items: center; animation: pop .5s var(--ease) both; }
.quiz__done .tick svg { width: 32px; height: 32px; color: var(--on-accent); }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.quiz__done h3 { font-size: 1.5rem; color: #fff; margin-bottom: .5rem; }
.quiz__done p { color: var(--on-dark-muted); margin: 0 auto; max-width: 26rem; }

/* ---------- Wiederverwendbarer Quiz-Block ---------- */
.quizblock { position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark); border-radius: var(--r-xl); padding: clamp(26px, 3.4vw, 56px); display: grid; grid-template-columns: 1fr minmax(340px, 440px); gap: clamp(28px, 4vw, 60px); align-items: center; box-shadow: var(--shadow); }
.quizblock__glow { position: absolute; inset: 0; background: radial-gradient(55% 90% at 10% 15%, rgba(147,190,60,.2), transparent 60%), radial-gradient(50% 80% at 95% 100%, rgba(175,210,76,.12), transparent 60%); pointer-events: none; z-index: 0; }
.quizblock > *:not(.quizblock__glow) { position: relative; z-index: 1; }
.quizblock__copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: .5rem 0 .8rem; }
.quizblock__copy > p { color: var(--on-dark-muted); font-weight: 500; margin: 0 0 1.3rem; max-width: 34rem; }
.quizblock__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.quizblock__list li { display: flex; gap: .6rem; align-items: center; color: #E3E6E0; font-weight: 600; }
.quizblock__list svg { width: 20px; height: 20px; color: var(--accent-2); flex: none; }
.quizblock .quiz-card { background: rgba(255,255,255,.06); }
@media (max-width: 900px) { .quizblock { grid-template-columns: 1fr; } }

/* Quiz in der Schluss-CTA */
.finalcta .quiz-card { max-width: 560px; margin: 2.2rem auto 0; text-align: left; }
.finalcta__phone { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; font-weight: 700; color: var(--on-dark); }
.finalcta__phone svg { width: 1.1em; height: 1.1em; color: var(--accent-2); }

/* ---------- Partner ---------- */
.partners__inner { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 52px); flex-wrap: wrap; padding-block: clamp(30px, 4vw, 46px); }
.partners__label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.partners__logos { display: flex; align-items: center; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; justify-content: center; }
.plogo { font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: var(--muted); opacity: .78; }

/* ---------- Value props ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); margin-top: clamp(32px, 4vw, 54px); }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 2.2vw, 28px); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value__ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-tint); margin-bottom: 1rem; }
.value__ico svg { width: 26px; height: 26px; color: var(--accent-deep); }
.value h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.value p { margin: 0; color: var(--muted); font-size: .96rem; font-weight: 500; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(32px, 4vw, 52px); }
.service { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; margin: 10px 10px 0; border-radius: var(--r); }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service:hover .service__media img { transform: scale(1.06); }
.service__tag { position: absolute; top: 12px; left: 12px; background: rgba(12,16,19,.72); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .32rem .66rem; border-radius: 999px; backdrop-filter: blur(6px); }
.service__body { padding: clamp(16px, 1.6vw, 22px); display: flex; flex-direction: column; flex: 1; }
.service__body h3 { font-size: 1.28rem; margin-bottom: .35rem; }
.service__body p { margin: 0 0 1rem; color: var(--muted); font-size: .95rem; font-weight: 500; }
.service__link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--accent-deep); font-size: .94rem; }
.service__link svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.service:hover .service__link svg { transform: translateX(4px); }

/* ---------- Feature-Reihen (große Bilder, schlichter Grund) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.feature + .feature { margin-top: clamp(48px, 7vw, 100px); }
.feature--reverse .feature__media { order: 2; }
.feature__media { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow); position: relative; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: .5rem 0 .8rem; }
.feature__body p { color: var(--muted); font-size: 1.08rem; font-weight: 500; margin: 0 0 1.3rem; max-width: 34rem; }
.feature__list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .7rem; max-width: 34rem; }
.feature__list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; }
.feature__list svg { width: 22px; height: 22px; flex: none; color: var(--accent-deep); margin-top: .1rem; }
.feature__badge { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: flex; align-items: center; gap: .7rem; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); padding: .7rem 1rem; border-radius: 16px; box-shadow: var(--shadow-sm); }
.feature__badge strong { font-size: 1.5rem; font-weight: 800; color: var(--accent-deep); letter-spacing: -.02em; }
.feature__badge span { font-size: .82rem; color: var(--muted); line-height: 1.2; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: clamp(34px, 4vw, 58px); position: relative; }
.step { position: relative; }
.step__n { font-size: 2.6rem; font-weight: 800; line-height: 1; color: var(--accent); letter-spacing: -.03em; margin-bottom: .5rem; }
.step__line { position: absolute; top: 20px; left: 3rem; right: -1rem; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); }
.step:last-child .step__line { display: none; }
.step h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; font-weight: 500; }

/* ---------- Förderung ---------- */
.funding { background: var(--ink); color: var(--on-dark); border-radius: var(--r-xl); overflow: hidden; position: relative; }
.funding__inner { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px, 3vw, 44px); align-items: center; padding: clamp(28px, 3.4vw, 50px); }
.funding__big { font-size: clamp(3.2rem, 7vw, 5.2rem); font-weight: 800; line-height: .9; color: var(--accent-2); letter-spacing: -.03em; }
.funding__big span { display: block; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: .5rem; }
.funding h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: .45rem; }
.funding p { margin: 0; color: var(--on-dark-muted); max-width: 34rem; font-weight: 500; }
.funding__glow { position: absolute; inset: 0; background: radial-gradient(40% 90% at 12% 50%, rgba(147,190,60,.2), transparent 60%); pointer-events: none; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 30px); }
.stat { text-align: center; }
.stat__num { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.stat__num .u { color: var(--accent); }
.stat__label { color: var(--muted); font-size: .95rem; margin-top: .4rem; font-weight: 500; }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(32px, 4vw, 52px); }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; }
.review__stars { color: var(--accent); letter-spacing: .1em; margin-bottom: .8rem; }
.review p { margin: 0 0 1.3rem; font-size: 1.04rem; color: var(--text); font-weight: 500; }
.review__who { margin-top: auto; display: flex; align-items: center; gap: .8rem; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; }
.review__who b { display: block; font-size: .98rem; }
.review__who span { font-size: .84rem; color: var(--muted-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; margin: clamp(28px, 4vw, 46px) auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem .25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: .3s var(--ease); }
.faq summary .ic::before, .faq summary .ic::after { content: ""; position: absolute; width: 12px; height: 2px; background: var(--accent-deep); border-radius: 2px; transition: transform .3s var(--ease); }
.faq summary .ic::after { transform: rotate(90deg); }
.faq details[open] summary .ic { background: var(--accent); border-color: var(--accent); }
.faq details[open] summary .ic::before, .faq details[open] summary .ic::after { background: var(--on-accent); }
.faq details[open] summary .ic::after { transform: rotate(0); }
.faq__a { padding: 0 .25rem 1.4rem; color: var(--muted); font-size: 1.02rem; max-width: 44rem; font-weight: 500; }
.faq details[open] .faq__a { animation: stepIn .4s var(--ease) both; }

/* ---------- Final CTA ---------- */
.finalcta { position: relative; overflow: hidden; text-align: center; }
.finalcta__glow { position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(147,190,60,.2), transparent 60%); pointer-events: none; }
.finalcta .container { position: relative; z-index: 1; }
.finalcta h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 20ch; margin-inline: auto; }
.finalcta p { color: var(--on-dark-muted); font-size: clamp(1.02rem, 1.7vw, 1.22rem); margin: 1rem auto 2rem; max-width: 40rem; font-weight: 500; }
.finalcta__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); color: var(--on-dark-muted); padding-block: clamp(48px, 6vw, 78px) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 54px); }
.footer .brand { color: var(--on-dark); margin-bottom: 1rem; }
.footer .brand__mark { color: #fff; }
.footer__about { max-width: 26rem; font-size: .95rem; line-height: 1.6; font-weight: 500; }
.footer h4 { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark); margin: 0 0 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer a:hover { color: var(--accent-2); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 1.05em; height: 1.05em; color: var(--accent); flex: none; margin-top: .2em; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: clamp(34px, 5vw, 58px); padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .86rem; }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { position: fixed; inset: auto 0 0 0; z-index: 150; display: none; padding: .7rem clamp(14px, 4vw, 20px) calc(.7rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
.mobile-cta .btn { width: 100%; }

/* ---------- Funnel (Vollbild-Seite) ---------- */
html.no-scroll, body.no-scroll { overflow: hidden; }
.qmodal { position: fixed; inset: 0; z-index: 300; background: var(--bg); display: flex; flex-direction: column; overflow-y: auto; opacity: 0; transition: opacity .3s var(--ease); }
.qmodal[hidden] { display: none; }
.qmodal.open { opacity: 1; }
.qmodal__bar { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--nav-h); padding-inline: var(--gutter); background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--line); }
.qmodal__close { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .96rem; color: var(--muted); padding: .6rem 1rem; border-radius: var(--r-pill); border: 1.5px solid var(--line-2); transition: background .2s, color .2s, border-color .2s; }
.qmodal__close:hover { background: rgba(18,22,26,.05); color: var(--text); border-color: var(--muted-2); }
.qmodal__body { flex: 1; display: grid; place-items: center; padding: clamp(28px, 6vw, 72px) var(--gutter); }
.qmodal__inner { width: min(560px, 100%); transform: translateY(14px); opacity: 0; transition: transform .45s var(--ease), opacity .4s var(--ease); }
.qmodal.open .qmodal__inner { transform: none; opacity: 1; }
/* Quiz-Karte im Funnel: solide dunkle Fläche auf hellem Seiten-Hintergrund */
.qmodal .quiz-card { background: var(--ink); border-color: var(--ink-line); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) { .qmodal, .qmodal__inner { transition: none; } }

/* ---------- Reveal ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-reveal-stagger].in > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .js [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .quiz__step, .quiz__done .tick, .faq details[open] .faq__a { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav, .nav__utils { display: none; }
  .nav-toggle { display: inline-flex; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step__line { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .quiz-card { max-width: 520px; }
  .feature { grid-template-columns: 1fr; gap: 24px; }
  .feature--reverse .feature__media { order: 0; }
  .funding__inner { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
  .quiz__options.cols-2 { grid-template-columns: 1fr; }
  .values, .services__grid, .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .finalcta__actions .btn { width: 100%; white-space: normal; min-width: 0; text-align: center; }
  .hero { border-radius: var(--r-lg); margin-inline: 10px; }
  .hero__inner { padding: 26px 22px; }
}

/* ---------- Mobile-Drawer ---------- */
.drawer { position: fixed; inset: var(--nav-h) 0 0 0; z-index: 190; background: var(--bg); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: transform .4s var(--ease), opacity .3s, visibility .4s; overflow-y: auto; padding: 1.2rem var(--gutter) 2rem; }
body.menu-open .drawer { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer__group { border-bottom: 1px solid var(--line); }
.drawer__group > a, .drawer__acc { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.1rem .2rem; font-size: 1.15rem; font-weight: 700; text-align: left; }
.drawer__sub { display: none; padding: 0 0 1rem; }
.drawer__group.open .drawer__sub { display: grid; gap: .2rem; }
.drawer__group.open .drawer__acc svg { transform: rotate(180deg); }
.drawer__acc svg { width: 18px; height: 18px; transition: transform .3s var(--ease); opacity: .6; }
.drawer__sub a { display: flex; align-items: center; gap: .7rem; padding: .7rem .2rem; color: var(--muted); font-weight: 600; }
.drawer__sub a svg { width: 20px; height: 20px; color: var(--accent-deep); }
.drawer__foot { margin-top: 1.5rem; display: grid; gap: .8rem; }
.drawer__phone { display: inline-flex; align-items: center; gap: .5rem; justify-content: center; font-weight: 700; padding: .8rem; }
@media (min-width: 1081px) { .drawer { display: none; } }

/* =========================================================
   Unterseiten (Leistungen, Über uns, Förderung, Kontakt, Recht)
   ========================================================= */
.bg-soft { background: var(--bg-2); }

/* Seiten-Hero */
.page-hero { position: relative; margin: calc(var(--nav-h) + 12px) var(--gutter) 0; border-radius: var(--r-xl); overflow: hidden; background: var(--ink); color: var(--on-dark); box-shadow: var(--shadow); isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 88% 0%, rgba(147,190,60,.15), transparent 50%), linear-gradient(100deg, rgba(10,13,15,.94) 0%, rgba(10,13,15,.8) 34%, rgba(10,13,15,.35) 62%, rgba(10,13,15,0) 100%); }
.page-hero__inner { position: relative; z-index: 1; max-width: var(--container); margin-inline: auto; padding: clamp(44px, 6vw, 104px) var(--gutter); }
.page-hero h1 { font-size: clamp(2.2rem, 4.8vw, 3.7rem); max-width: 18ch; }
.page-hero__sub { max-width: 42rem; color: #E3E6E0; font-size: clamp(1.05rem, 1.6vw, 1.24rem); margin-top: 1.1rem; font-weight: 500; }
.crumbs { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--on-dark-muted); font-weight: 600; margin-bottom: 1.1rem; }
.crumbs a:hover { color: #fff; } .crumbs span { opacity: .5; }

/* zweispaltiger Intro-Block (Text + Bild) nutzt .feature */
.section-head--center { margin-inline: auto; text-align: center; }

/* Prosa (Recht / Über uns Fließtext) */
.page-head { max-width: var(--container); margin: calc(var(--nav-h) + clamp(30px,5vw,60px)) auto 0; padding: 0 var(--gutter); }
.page-head .h-eyebrow { margin-bottom: .6rem; }
.page-head h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
.prose { max-width: 52rem; margin-inline: auto; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin: 2.2rem 0 .5rem; }
.prose h3 { font-size: 1.15rem; margin: 1.4rem 0 .35rem; }
.prose p, .prose li { color: var(--muted); font-weight: 500; line-height: 1.75; }
.prose p { margin: 0 0 1rem; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1rem; display: grid; gap: .4rem; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

/* Kontakt */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 52px); align-items: start; }
.contact__list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact__list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__list .ci { width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center; background: var(--accent-tint); }
.contact__list .ci svg { width: 22px; height: 22px; color: var(--accent-deep); }
.contact__list b { display: block; font-size: 1.02rem; }
.contact__list span { color: var(--muted); font-weight: 500; }
.formcard { background: var(--ink); color: var(--on-dark); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow); }
.formcard h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1.2rem; }
.formcard .quiz__form { gap: .9rem; }
.field textarea { width: 100%; padding: .8rem 1rem; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); color: #fff; font: inherit; min-height: 120px; resize: vertical; transition: border-color .2s, background .2s; }
.field textarea::placeholder { color: rgba(255,255,255,.4); }
.field textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.1); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .page-hero { margin-inline: 10px; border-radius: var(--r-lg); }
}

/* Trust-Leiste (Zahlen) auf Unterseiten */
.trustbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 30px); text-align: center; }
.trustbar__item { padding: .4rem; }
.trustbar__big { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; color: var(--accent-deep); line-height: 1; }
.trustbar__label { color: var(--muted); font-size: .92rem; font-weight: 600; margin-top: .4rem; }
@media (max-width: 700px) { .trustbar { grid-template-columns: 1fr 1fr; gap: 22px; } }
