/* =====================================================================
   Wärmepunkt Heizungstechnik GmbH — Website Stylesheet
   Designsprache: Viessmann-orientiert — klar, ruhig, design-getrieben.
   Großzügiger Weißraum, kräftige Typografie, Pill-Buttons,
   weiche Radien. Farbwelt: Wärmepunkt-Rot / Schwarz / Weiß.
   ===================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  --red: #E52822;
  --red-dark: #BF1C17;
  --red-soft: #FCEBEA;

  --ink: #16181A;
  --ink-2: #44484C;
  --muted: #74787D;
  --line: #E8E5E1;
  --line-2: #D9D6D1;

  --bg: #FFFFFF;
  --bg-soft: #F4F2EF;
  --bg-warm: #F8F6F3;
  --bg-dark: #16181A;
  --bg-dark-2: #202327;

  --radius: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 4px 22px rgba(20, 22, 25, .05);
  --shadow: 0 32px 70px -28px rgba(20, 22, 25, .26);
  --shadow-lift: 0 24px 50px -22px rgba(20, 22, 25, .26);
  --shadow-red: 0 16px 34px -12px rgba(229, 40, 34, .5);

  --maxw: 1240px;
  --gap: 26px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section--tight { padding: 84px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); display: inline-block;
}
.eyebrow--center { display: flex; justify-content: center; }

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.035em; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.35rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.05rem); }
h3 { font-size: 1.32rem; letter-spacing: -0.02em; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 .dot-accent { color: var(--red); }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-top: 20px; }

.lead { font-size: 1.18rem; color: var(--ink-2); }
.text-muted { color: var(--muted); }

/* ---------- Buttons (Pill) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: .97rem; letter-spacing: -0.005em;
  padding: 16px 30px; border-radius: 999px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-3px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.6px var(--line-2); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.6px var(--ink); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--red); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn--outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.6px rgba(255,255,255,.4); }
.btn--outline-light:hover { box-shadow: inset 0 0 0 1.6px #fff; transform: translateY(-3px); }
.btn--lg { padding: 19px 38px; font-size: 1.04rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--red); font-size: .98rem;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Announcement-Bar ---------- */
.announce {
  background: var(--ink); color: #E9E7E4;
  font-size: .84rem; font-weight: 600;
  text-align: center; padding: 10px 24px; letter-spacing: -0.005em;
}
.announce strong { color: #fff; font-weight: 800; }
.announce .dot { color: var(--red); margin: 0 10px; font-size: .6em; vertical-align: middle; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -18px rgba(20,22,25,.2); }

/* Transparent schwebend über dem Hero (Startseite) */
.header--hero {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.header--hero.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 86px; gap: 16px;
}

/* Logo (Wortmarke) */
.logo { display: inline-flex; align-items: baseline; }
.logo__name {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700; font-size: 1.62rem; line-height: 1;
  letter-spacing: -0.035em; color: var(--ink); white-space: nowrap;
}
.logo__name > span { color: var(--red); }
.logo__dot {
  width: .32em; height: .32em; font-size: 1.62rem;
  border-radius: 50%; background: var(--red); margin-left: .08em;
}
.logo--light .logo__name { color: #fff; }

/* Logo im Header komplett in kräftigem Schwarz */
.header .logo__name > span { color: var(--ink); }
.header .logo__dot { background: var(--ink); }

/* Startseite: transparenter Header – helle Schrift auf dem Bild */
.header--hero .logo__name,
.header--hero .logo__name > span { color: #fff; }
.header--hero .logo__dot { background: #fff; box-shadow: 0 1px 10px rgba(0,0,0,.4); }
.header--hero .nav a { color: #fff; }
.header--hero .logo__name,
.header--hero .nav a { text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.header--hero .nav a:hover { color: #fff; background: rgba(255,255,255,.16); }

/* …beim Scrollen wird der Header weiß: Schrift wieder dunkel */
.header--hero.scrolled .logo__name,
.header--hero.scrolled .logo__name > span { color: var(--ink); }
.header--hero.scrolled .logo__dot { background: var(--ink); box-shadow: none; }
.header--hero.scrolled .logo__name,
.header--hero.scrolled .nav a { text-shadow: none; }
.header--hero.scrolled .nav a { color: var(--ink); }
.header--hero.scrolled .nav a:hover { background: var(--bg-soft); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-weight: 800; font-size: .95rem; color: var(--ink);
  padding: 10px 14px; border-radius: 999px; white-space: nowrap;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--bg-soft); }
.nav a.active { color: var(--red); }

.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: .95rem; color: var(--ink);
}
.header__phone svg { width: 18px; height: 18px; color: var(--red); }
.header__phone span small { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .01em; }

.burger { display: none; width: 46px; height: 46px; border-radius: 999px; box-shadow: inset 0 0 0 1.6px var(--line-2); }
.burger span { display: block; width: 19px; height: 2px; background: var(--ink); margin: 4.5px auto; border-radius: 2px; transition: .25s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero (Foto + schwebende Textkarte) ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: 716px; margin-top: -87px;
  background: var(--bg-warm); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero__card {
  background: #F4F2ED; max-width: 560px;
  padding: 48px 52px 50px;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -30px rgba(20,22,25,.45);
}
.hero__logo { margin-bottom: 30px; }
.hero__logo .logo__name,
.hero__logo .logo__dot { font-size: 1.74rem; }
.hero__title { font-size: clamp(2.35rem, 4.6vw, 3.5rem); line-height: 1.04; margin-bottom: 22px; }
.hero__title .accent { color: var(--red); }
.hero__sub { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 26px; max-width: 430px; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 11px 22px; }
.hero__checks li { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .85rem; color: var(--ink); }
.hero__checks svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; }

/* ---------- Trust-Strip ---------- */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust__inner { padding: 34px 0; display: flex; align-items: center; gap: 20px 52px; flex-wrap: wrap; justify-content: center; }
.trust__label { font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.trust__item { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: .96rem; color: var(--ink); }
.trust__item svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }

/* ---------- Stat-Band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat__num { font-size: clamp(2.4rem, 4.4vw, 3.4rem); font-weight: 800; color: var(--red); letter-spacing: -.04em; line-height: 1; }
.stat__label { font-weight: 800; color: var(--ink); margin-top: 10px; }
.stat__sub { font-size: .9rem; color: var(--muted); margin-top: 2px; }

/* ---------- Service-Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.scard {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.scard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.scard__media { height: 224px; overflow: hidden; background: #d7dadd; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.07); }
.scard__body { padding: 30px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.scard__tag { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.scard h3 { margin-bottom: 11px; }
.scard p { color: var(--muted); font-size: .99rem; margin-bottom: 20px; }
.scard ul { margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px; }
.scard ul li { display: flex; gap: 10px; font-size: .94rem; font-weight: 600; }
.scard ul svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.scard .link-arrow { margin-top: auto; }

/* ---------- Feature-Grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.feature {
  background: #fff; border-radius: var(--radius); padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.feature:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.feature__ic {
  width: 60px; height: 60px; border-radius: 17px; margin-bottom: 24px;
  background: var(--red-soft); display: grid; place-items: center;
}
.feature__ic svg { width: 29px; height: 29px; color: var(--red); }
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .98rem; }

/* ---------- Prozess-Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.step { position: relative; padding-top: 8px; }
.step__num {
  font-size: 1.05rem; font-weight: 800; color: var(--red);
  width: 46px; height: 46px; border-radius: 999px;
  background: var(--red-soft); display: grid; place-items: center;
  margin-bottom: 24px; position: relative; letter-spacing: 0;
}
.step__num::after {
  content: ""; position: absolute; left: 58px; top: 50%;
  width: calc(100% + var(--gap) - 58px); height: 2px;
  background: var(--line-2);
}
.step:last-child .step__num::after { display: none; }
.step h3 { margin-bottom: 10px; font-size: 1.18rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Split / Produkt-Spotlight ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); background: #d7dadd;
}
.split__media .tag-badge {
  position: absolute; top: 24px; left: 24px;
  background: #fff; border-radius: 999px; padding: 11px 18px;
  font-weight: 800; font-size: .84rem; box-shadow: var(--shadow-lift);
  display: flex; align-items: center; gap: 9px;
}
.split__media .tag-badge svg { width: 18px; height: 18px; color: var(--red); }
/* Variante für Grafiken mit eingebettetem Text – volle Sichtbarkeit */
.split__media--free img { height: auto; aspect-ratio: auto; }
/* Freistehende Grafik (Marketing-Bild mit Text) */
.media-graphic { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; background: var(--bg-soft); }
.split__body h2 { margin-bottom: 20px; }
.split__body > p { color: var(--ink-2); margin-bottom: 18px; }
.split__body > p:last-of-type { margin-bottom: 28px; }
.spec-list { margin-bottom: 34px; border-top: 1px solid var(--line); }
.spec-list li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec-list li > div { line-height: 1.6; }
.spec-list strong { font-weight: 800; color: var(--ink); }
.spec-list span { color: var(--muted); font-size: .97rem; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; right: -90px; top: -110px;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.cta-band::after {
  content: ""; position: absolute; left: -140px; bottom: -170px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(0,0,0,.07);
}
.cta-band__inner {
  position: relative; z-index: 1; padding: 92px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-band .eyebrow { color: #fff; }
.cta-band .eyebrow::before { background: #fff; }
.cta-band h2 { color: #fff; max-width: 640px; }
.cta-band p { color: rgba(255,255,255,.92); margin-top: 14px; max-width: 560px; font-size: 1.06rem; }
.cta-band .btn--light { color: var(--red); }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.tcard {
  background: #fff; border-radius: var(--radius);
  padding: 36px 32px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.tcard__stars { color: #F5A623; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 16px; }
.tcard__text { color: var(--ink-2); font-size: 1.02rem; margin-bottom: 26px; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 14px; }
.tcard__av {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 1rem;
}
.tcard__name { font-weight: 800; font-size: .96rem; }
.tcard__role { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); margin-bottom: 14px;
  transition: box-shadow .2s var(--ease);
}
.faq__item.open { box-shadow: var(--shadow-lift); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 26px 28px; text-align: left;
  font-weight: 800; font-size: 1.08rem; color: var(--ink); letter-spacing: -0.02em;
}
.faq__q .pm {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-soft); position: relative; transition: background .2s var(--ease);
}
.faq__q .pm::before, .faq__q .pm::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 13px; height: 2px; background: var(--ink);
  transform: translate(-50%, -50%); transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq__q .pm::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.open .faq__q .pm { background: var(--red); }
.faq__item.open .faq__q .pm::before,
.faq__item.open .faq__q .pm::after { background: #fff; }
.faq__item.open .faq__q .pm::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a-inner { padding: 0 28px 26px; color: var(--muted); }

/* ---------- Lead-Formular ---------- */
.lead-block { display: grid; grid-template-columns: 1fr 1.06fr; gap: 64px; align-items: start; }
.lead-info h2 { margin-bottom: 20px; }
.lead-info > p { color: var(--ink-2); margin-bottom: 30px; font-size: 1.06rem; }
.lead-info ul { display: flex; flex-direction: column; gap: 15px; margin-bottom: 32px; }
.lead-info ul li { display: flex; gap: 13px; align-items: center; font-weight: 700; }
.lead-info ul svg { width: 23px; height: 23px; color: var(--red); flex-shrink: 0; }
.lead-contact-mini { display: flex; flex-direction: column; gap: 12px; }
.lead-contact-mini a { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.lead-contact-mini svg { width: 19px; height: 19px; color: var(--red); }

.form-card {
  background: #fff; border-radius: var(--radius);
  padding: 42px; box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 7px; font-size: 1.5rem; }
.form-card .form-note { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 8px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.6px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.field textarea { resize: vertical; min-height: 104px; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; margin: 8px 0 22px; }
.form-consent input { width: 19px; height: 19px; margin-top: 3px; flex-shrink: 0; accent-color: var(--red); }
.form-consent label { font-size: .82rem; color: var(--muted); font-weight: 500; line-height: 1.6; }
.form-consent a { color: var(--red); font-weight: 700; }
.form-success {
  display: none; background: var(--red-soft);
  border-radius: var(--radius-sm); padding: 20px; text-align: center; margin-top: 6px;
}
.form-success.show { display: block; }
.form-success strong { color: var(--red-dark); }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,40,34,.6), transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; padding: 84px 0 92px; max-width: 800px; }
.page-hero .eyebrow { color: #FF8A85; }
.page-hero .eyebrow::before { background: var(--red); }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.16rem; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 24px; font-weight: 600; }
.crumbs a:hover { color: #fff; }
.crumbs span { margin: 0 9px; }

/* ---------- Value-Liste ---------- */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-item {
  display: flex; gap: 18px; padding: 32px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.value-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.value-item .ic { width: 56px; height: 56px; border-radius: 15px; background: var(--red-soft); display: grid; place-items: center; flex-shrink: 0; }
.value-item .ic svg { width: 27px; height: 27px; color: var(--red); }
.value-item h3 { font-size: 1.14rem; margin-bottom: 7px; }
.value-item p { color: var(--muted); font-size: .96rem; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-card {
  display: flex; gap: 18px; padding: 26px;
  border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm);
}
.contact-card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--red-soft); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ic svg { width: 25px; height: 25px; color: var(--red); }
.contact-card h3 { font-size: 1.06rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--ink-2); font-weight: 700; }
.contact-card span { display: block; font-size: .85rem; color: var(--muted); font-weight: 500; margin-top: 2px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); height: 280px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25); }

/* ---------- Prose (Impressum / Datenschutz) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.55rem; margin: 44px 0 16px; }
.prose h3 { font-size: 1.14rem; margin: 28px 0 9px; }
.prose p { color: var(--ink-2); margin-bottom: 15px; }
.prose ul { list-style: disc; padding-left: 24px; margin-bottom: 15px; color: var(--ink-2); }
.prose ul li { margin-bottom: 7px; }
.prose ol { padding-left: 22px; margin-bottom: 15px; color: var(--ink-2); }
.prose ol li { margin-bottom: 9px; padding-left: 4px; }
.prose ol ol { list-style: lower-alpha; margin: 9px 0 4px; }
.legal-meta { background: var(--bg-soft); border-radius: var(--radius-md); padding: 18px 22px; font-size: .92rem; color: var(--muted); margin-bottom: 8px; }

/* ---------- Chips (Städte- / Regionslisten) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: baseline; gap: 7px;
  padding: 10px 16px; border-radius: 999px; background: #fff;
  box-shadow: var(--shadow-sm); font-weight: 800; font-size: .92rem; color: var(--ink);
}
.chip em { color: var(--muted); font-weight: 600; font-size: .8rem; font-style: normal; }
.chip--soft { background: var(--bg-soft); box-shadow: none; }
.chip--red { background: var(--red); color: #fff; }
.chip--red em { color: rgba(255,255,255,.7); }

/* ---------- Region-Karten ---------- */
.region-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.region-card {
  background: #fff; border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-sm); transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.region-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.region-card__head { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.region-card__tag { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.region-card h3 { margin-top: 8px; font-size: 1.42rem; }
.region-card p { color: var(--muted); font-size: .98rem; margin-bottom: 20px; }

/* ---------- Timeline (Ablauf-Schritte) ---------- */
.timeline { max-width: 840px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 66px 1fr; gap: 26px; position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:not(:last-child)::before {
  content: ""; position: absolute; left: 32px; top: 70px; bottom: 6px;
  width: 2px; background: var(--line-2);
}
.tl-num {
  width: 66px; height: 66px; border-radius: 50%; background: var(--red);
  color: #fff; display: grid; place-items: center; font-weight: 800;
  font-size: 1.5rem; z-index: 1; box-shadow: var(--shadow-red);
}
.tl-body { padding-top: 8px; }
.tl-body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.tl-body p { color: var(--muted); }
.tl-time {
  display: inline-block; margin-top: 12px; font-size: .78rem; font-weight: 800;
  color: var(--red); background: var(--red-soft); padding: 5px 13px; border-radius: 999px;
}

/* ---------- Referral / Highlight-Box ---------- */
.highlight-band {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.highlight-band__big { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; }
.highlight-band__big span { color: #FF8A85; }
.highlight-band p { color: rgba(255,255,255,.8); margin-top: 6px; }
.prose a { color: var(--red); font-weight: 700; }
.prose strong { font-weight: 800; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #B9BCBF; padding: 84px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__about .logo { margin-bottom: 20px; }
.footer__about p { font-size: .96rem; margin-bottom: 22px; max-width: 330px; line-height: 1.7; }
.footer__badges { display: flex; gap: 9px; flex-wrap: wrap; }
.footer__badge {
  font-size: .71rem; font-weight: 800; padding: 8px 13px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); border-radius: 999px; color: #fff;
}
.footer h4 { color: #fff; font-size: .98rem; margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: .95rem; color: #B9BCBF; transition: color .15s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 12px; font-size: .95rem; margin-bottom: 14px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer__contact a:hover { color: #fff; }
.footer__social { margin-top: 26px; }
.footer__social-label { display: block; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: #fff; margin-bottom: 13px; }
.socials { display: flex; gap: 10px; }
.social-link {
  width: 41px; height: 41px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #C7CBCF;
  background: rgba(255,255,255,.07);
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.social-link:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.social-link svg { width: 19px; height: 19px; }

/* ---------- Finanzierungs-Optionen ---------- */
.finance-duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.finance-card {
  background: #fff; border-radius: var(--radius); padding: 40px 36px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.finance-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.finance-card--accent { background: var(--ink); color: #fff; }
.finance-card__tag {
  display: inline-flex; align-self: flex-start; align-items: center;
  font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); background: var(--red-soft); padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}
.finance-card--accent .finance-card__tag { background: rgba(255,255,255,.1); color: #FF8A85; }
.finance-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.finance-card > p { color: var(--muted); margin-bottom: 22px; }
.finance-card--accent > p { color: rgba(255,255,255,.72); }
.finance-card ul { display: flex; flex-direction: column; margin-bottom: 28px; }
.finance-card ul li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .97rem; font-weight: 600; }
.finance-card ul li:last-child { border-bottom: none; }
.finance-card--accent ul li { border-bottom-color: rgba(255,255,255,.12); }
.finance-card .btn { margin-top: auto; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 28px;
  font-size: .85rem; color: #7E8286;
}
.footer__bottom nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile-Navigation ---------- */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px);
  background: #fff; z-index: 200; padding: 100px 30px 44px;
  transform: translateX(100%); transition: transform .32s var(--ease);
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-weight: 800; font-size: 1.06rem; padding: 15px 12px; border-radius: 12px; border-bottom: 1px solid var(--line); }
.mobile-nav a:hover { background: var(--bg-soft); }
.mobile-nav .btn { margin-top: 20px; }
.mobile-nav__phone { margin-top: 16px; display: flex; align-items: center; gap: 10px; font-weight: 800; }
.mobile-nav__phone svg { width: 19px; height: 19px; color: var(--red); }
.scrim {
  position: fixed; inset: 0; background: rgba(20,22,25,.55);
  z-index: 150; opacity: 0; visibility: hidden; transition: .28s var(--ease);
}
.scrim.open { opacity: 1; visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__phone { display: none; }
  /* Header auf Tablet/Handy als feste weiße Leiste, kein transparenter Überlapp */
  .header--hero {
    background: rgba(255,255,255,.86);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
  }
  .header--hero .logo__name,
  .header--hero .logo__name > span { color: var(--ink); text-shadow: none; }
  .header--hero .logo__dot { background: var(--ink); box-shadow: none; }
  .hero { margin-top: 0; min-height: 600px; }
  .hero__card { padding: 44px 44px 46px; }
  .cards-3, .features, .steps, .tcards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--rev .split__media { order: 0; }
  .split__media img { height: 420px; }
  .lead-block, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 38px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .step__num::after { display: none; }
  .section { padding: 92px 0; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .section--tight { padding: 60px 0; }
  .section-head { margin-bottom: 44px; }
  .cards-3, .cards-2, .features, .steps, .tcards, .team-grid, .value-grid, .region-grid, .finance-duo { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Hero auf dem Handy gestapelt: Foto oben, Karte darunter */
  .hero { display: block; min-height: 0; padding-bottom: 4px; }
  .hero__bg { position: relative; height: 300px; }
  .hero .container { margin-top: -66px; }
  .hero__card { max-width: 100%; padding: 34px 28px 36px; }
  .hero__logo { margin-bottom: 22px; }
  .hero__sub { max-width: none; }
  .cta-band__inner { padding: 64px 0; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 28px 22px; }
  .logo__name, .logo__dot { font-size: 1.36rem; }
  .announce { font-size: .74rem; }
  .announce .dot { margin: 0 6px; }
  .feature, .value-item { padding: 28px 26px; }
}
