/* =========================================================
   L.P. Dienstleistungen - Stylesheet
   Farben orientieren sich am Firmenlogo (Blau / Dunkelblau)
   ========================================================= */

:root {
  --brand:        #0f62c0;   /* gemessen am Logo der Visitenkarte */
  --brand-hover:  #0b4f9c;
  --brand-dark:   #14335f;
  --brand-light:  #3aa0e6;
  --brand-tint:   #eaf3fb;

  --text:         #1d2430;
  --text-muted:   #5a6675;
  --line:         #e2e8f0;
  --bg:           #ffffff;
  --bg-alt:       #f6f9fc;

  --radius:       14px;
  --radius-sm:    9px;
  --shadow:       0 2px 4px rgba(20,51,95,.05), 0 10px 30px rgba(20,51,95,.07);
  --shadow-lg:    0 6px 14px rgba(20,51,95,.09), 0 20px 50px rgba(20,51,95,.12);

  --wrap:         1140px;
  --header-h:     76px;

  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--brand); }

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.16rem; }

p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

.section { padding-block: clamp(56px, 8vw, 92px); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.section__head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 52px); text-align: center; }
.section__head p { color: var(--text-muted); margin-bottom: 0; font-size: 1.06rem; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .7em;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit; font-weight: 600; font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--brand-light); outline-offset: 3px; }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }

.btn--ghost { background: transparent; color: var(--brand-dark); border-color: rgba(20,51,95,.22); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); background: #fff; }

.btn--light { background: #fff; color: var(--brand-dark); border-color: #fff; }
.btn--light:hover { background: var(--brand-tint); border-color: var(--brand-tint); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { width: 42px; height: 42px; }
.brand__name { font-weight: 800; font-size: 1.12rem; color: var(--brand-dark); line-height: 1.15; letter-spacing: -.02em; }
.brand__sub  { font-size: .74rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: 8px;
  color: var(--text); text-decoration: none; font-weight: 500; font-size: .97rem;
  transition: background-color .15s ease, color .15s ease;
}
.nav a:hover { background: var(--brand-tint); color: var(--brand); }

.header__cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer;
  padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--brand-dark);
  border-radius: 2px; margin-inline: auto; position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(20,51,95,.94) 0%, rgba(15,98,192,.88) 55%, rgba(58,160,230,.80) 100%),
    var(--brand-dark);
  color: #fff;
  padding-block: clamp(64px, 10vw, 118px);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 88% 18%, rgba(255,255,255,.14), transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 17ch; }

/* Suchbegriff als Teil der H1 - sieht aus wie das Label darueber,
   zaehlt fuer Suchmaschinen aber zur Hauptueberschrift. */
.hero__kicker {
  display: block;
  max-width: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #9ed0f7;
  margin-bottom: .9em;
}
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: rgba(255,255,255,.92); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__points { list-style: none; margin: 40px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero__points li { display: flex; align-items: center; gap: 9px; font-weight: 500; color: rgba(255,255,255,.95); }
.hero__points svg { flex: none; width: 21px; height: 21px; }

/* ---------- USP Bar ---------- */
.usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.usp__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow);
}
.usp__icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 15px;
}
.usp__icon svg { width: 24px; height: 24px; }
.usp__item h3 { margin-bottom: .3em; font-size: 1.05rem; }
.usp__item p { margin: 0; color: var(--text-muted); font-size: .95rem; }

/* ---------- Leistungen ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #cddff0; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff; display: grid; place-items: center; margin-bottom: 18px;
}
.card__icon svg { width: 27px; height: 27px; }
.card p { margin: 0; color: var(--text-muted); font-size: .96rem; }

.tags { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }
.tags li {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px 10px 15px; font-size: .95rem; font-weight: 500; box-shadow: var(--shadow);
}
.tags svg { width: 18px; height: 18px; color: var(--brand); flex: none; }

/* ---------- Hervorhebung (Blitzentruempelung) ---------- */
.highlight {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(118deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-lg);
}
.highlight__icon {
  width: 58px; height: 58px; flex: none;
  border-radius: 15px;
  background: rgba(255,255,255,.17);
  display: grid; place-items: center;
}
.highlight__icon svg { width: 30px; height: 30px; }
.highlight h3 {
  color: #fff; margin: 0 0 .28em;
  font-size: 1.3rem; letter-spacing: -.01em;
}
.highlight p { margin: 0; color: rgba(255,255,255,.9); font-size: .98rem; }
.highlight .btn { white-space: nowrap; }

/* ---------- Ueber uns ---------- */
.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about__text p:last-child { margin-bottom: 0; }

.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact {
  background: var(--brand-dark); color: #fff;
  border-radius: var(--radius); padding: 26px 22px;
}
.fact:nth-child(2) { background: var(--brand); }
.fact--breit { grid-column: 1 / -1; }
.fact strong { display: block; font-size: 2.05rem; line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.fact span { font-size: .93rem; color: rgba(255,255,255,.85); }

/* ---------- Referenzen ---------- */
.refs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.ref {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: var(--radius); padding: 24px 26px;
}
.ref strong { display: block; color: var(--brand-dark); font-size: 1.08rem; }
.ref span { color: var(--text-muted); font-size: .93rem; }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding-top: 14px; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.3rem; margin-bottom: 18px;
  box-shadow: 0 0 0 7px var(--brand-tint);
}
.step p { margin: 0; color: var(--text-muted); font-size: .97rem; }

/* ---------- Einsatzgebiet ---------- */
.area {
  background: var(--brand-dark); color: #fff;
  border-radius: var(--radius); padding: clamp(32px, 5vw, 52px);
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.area h2 { color: #fff; margin-bottom: .4em; }
.area p { color: rgba(255,255,255,.88); margin: 0; max-width: 60ch; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(30px, 5vw, 56px); align-items: start; }

.contact__list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 18px; }
.contact__list li { display: flex; gap: 15px; align-items: flex-start; }
.contact__list .ico {
  width: 42px; height: 42px; flex: none; border-radius: 11px;
  background: var(--brand-tint); color: var(--brand); display: grid; place-items: center;
}
.contact__list .ico svg { width: 21px; height: 21px; }
.contact__list strong { display: block; font-size: .86rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); font-weight: 600; }
.contact__list a { color: var(--brand-dark); text-decoration: none; font-weight: 600; font-size: 1.06rem; }
.contact__list a:hover { color: var(--brand); text-decoration: underline; }
.contact__list .val { color: var(--brand-dark); font-weight: 600; font-size: 1.06rem; }

.hours { background: var(--brand-tint); border-radius: var(--radius); padding: 22px 24px; }
.hours h3 { font-size: 1rem; margin-bottom: .6em; }
.hours dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; font-size: .96rem; }
.hours dt { color: var(--text-muted); }
.hours dd { margin: 0; text-align: right; font-weight: 600; color: var(--brand-dark); }

/* ---------- Formular ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label { font-weight: 600; font-size: .93rem; color: var(--brand-dark); }
.field .req { color: #c0392b; }

.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--text);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6675' stroke-width='2.5' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  padding-right: 42px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15,98,192,.18);
}
.field input.is-error, .field textarea.is-error, .field select.is-error { border-color: #d9534f; }

.field__hint { font-size: .84rem; color: var(--text-muted); }

.consent { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--text-muted); }
.consent input { width: 19px; height: 19px; flex: none; margin-top: 3px; accent-color: var(--brand); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { grid-column: 1 / -1; font-size: .86rem; color: var(--text-muted); margin: 0; }

.form-msg {
  grid-column: 1 / -1;
  border-radius: var(--radius-sm); padding: 15px 18px; font-size: .96rem; margin: 0;
  display: none;
}
.form-msg.is-visible { display: block; }
.form-msg--ok  { background: #e8f6ed; border: 1px solid #b7e0c6; color: #1c6b39; }
.form-msg--err { background: #fdeceb; border: 1px solid #f5c2bf; color: #a12b23; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-dark); color: rgba(255,255,255,.78); padding-block: 56px 26px; font-size: .95rem; }
.footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer h4 { color: #fff; font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer .brand__name { color: #fff; }
.footer .brand__sub  { color: rgba(255,255,255,.6); }
.footer__brandtext { margin-top: 16px; max-width: 38ch; }
.footer__bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: .88rem;
}

/* ---------- Floating Kontakt-Buttons ---------- */
.float { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: grid; gap: 11px; }
.float a {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
  transition: transform .18s ease;
}
.float a:hover { transform: scale(1.07); }
.float svg { width: 28px; height: 28px; }
.float__wa  { background: #25d366; }
.float__tel { background: var(--brand); }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.page-head { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding-block: clamp(40px, 6vw, 64px); }
.legal { max-width: 820px; }
.legal h2 { font-size: 1.38rem; margin-top: 2em; }
.legal h3 { margin-top: 1.7em; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: .4em; }
.legal address { font-style: normal; }
.placeholder {
  background: #fff8e1; border: 1px dashed #d9a400; border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: .93rem; color: #6b5400;
}
.placeholder strong { color: #6b5400; }

/* ---------- Unterseiten (z. B. Entruempelung) ---------- */
.brotkrumen { font-size: .86rem; margin-bottom: 1.4em; color: rgba(255,255,255,.75); }
.brotkrumen a { color: #9ed0f7; text-decoration: none; }
.brotkrumen a:hover { text-decoration: underline; }
.brotkrumen span[aria-hidden] { margin-inline: .3em; }
.hero--unterseite h1 { max-width: 22ch; }

.nav a[aria-current] { color: var(--brand); font-weight: 600; }

.steps.steps--4 { grid-template-columns: repeat(4, 1fr); }

.faq { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px;
}
.faq__item h3 { font-size: 1.06rem; margin-bottom: .45em; }
.faq__item p { margin: 0; color: var(--text-muted); }

.mehr { text-align: center; margin-top: 34px; }

/* ---------- Ausbau September 2026: Zielgruppen, Zusagen, Kosten, Leistungsseiten ---------- */
.card__link { display: inline-block; margin-top: 16px; font-weight: 600; font-size: .95rem; text-decoration: none; }
.card__link + .card__link { margin-left: 18px; }
.card__link:hover { text-decoration: underline; }

.gruppen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
.gruppe__icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: #fff; color: var(--brand); border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 14px;
}
.gruppe__icon svg { width: 24px; height: 24px; }
.gruppe h3 { margin-bottom: .35em; font-size: 1.08rem; }
.gruppe p { margin: 0; color: var(--text-muted); font-size: .96rem; }
.gruppe .card__link { margin-top: 10px; }

.zusagen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.zusage { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 22px; }
.zusage__kopf { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.zusage__kopf svg { width: 24px; height: 24px; color: var(--brand); flex: none; }
.zusage h3 { margin: 0; font-size: 1.04rem; }
.zusage p { margin: 0; color: var(--text-muted); font-size: .95rem; }

.about__text p.unterschrift { margin: 26px 0 0; font-weight: 700; color: var(--brand-dark); line-height: 1.35; }
.unterschrift span { display: block; font-weight: 400; font-size: .92rem; color: var(--text-muted); }

.kosten { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.kosten__text p { color: var(--text-muted); }
.kosten__text .btn { margin-top: 6px; }
.faktoren { background: var(--brand-tint); border-radius: var(--radius); padding: 26px 28px; }
.faktoren h3 { font-size: 1.05rem; margin-bottom: .9em; }
.faktoren ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.faktoren li { position: relative; padding-left: 24px; font-size: .96rem; color: var(--text-muted); }
.faktoren li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--brand);
}
.faktoren strong { color: var(--brand-dark); }

.wechsel {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px; box-shadow: var(--shadow);
}
.wechsel h3 { margin-bottom: .3em; }
.wechsel p { margin: 0; color: var(--text-muted); }

.unter-kopf { text-align: center; font-size: 1.2rem; margin: clamp(40px, 5vw, 56px) 0 0; }
.umfang {
  list-style: none; margin: 22px auto 0; padding: 0; max-width: 900px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.umfang li { display: flex; gap: 11px; align-items: flex-start; }
.umfang svg { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: 5px; }

.prosa { max-width: 780px; margin-inline: auto; }
.prosa p { color: var(--text-muted); }
.prosa p:last-child { margin-bottom: 0; }

.weiter { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }
.weiter a {
  display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-weight: 600; font-size: .95rem; color: var(--brand-dark);
  text-decoration: none; box-shadow: var(--shadow);
}
.weiter a:hover { border-color: var(--brand); color: var(--brand); }
.weiter__hinweis { text-align: center; color: var(--text-muted); max-width: 62ch; margin: 24px auto 0; font-size: .96rem; }

@media (max-width: 980px) {
  .gruppen, .zusagen { grid-template-columns: 1fr 1fr; }
  .kosten { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .gruppen, .zusagen, .umfang { grid-template-columns: 1fr; }
  .wechsel { grid-template-columns: 1fr; padding: 22px; }
  .wechsel .btn { width: 100%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .highlight { grid-template-columns: auto 1fr; text-align: left; }
  .highlight .btn { grid-column: 1 / -1; justify-self: start; }
  .usp { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps.steps--4 { grid-template-columns: 1fr 1fr; }
  .area { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1010px) {
  .nav-toggle { display: block; order: 3; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; font-size: 1.02rem; }
  .nav .btn { margin-top: 10px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .highlight { grid-template-columns: 1fr; padding: 24px 22px; }
  .highlight .btn { width: 100%; }
  .usp { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .steps.steps--4 { grid-template-columns: 1fr; }
  .faq__item { padding: 18px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__actions .btn { width: 100%; }
  .float a { width: 50px; height: 50px; }
  .float svg { width: 25px; height: 25px; }
}

/* ---------- Scroll-Reveal ----------
   Nur aktiv, wenn JavaScript laeuft (Klasse .js am <html>-Element).
   Ohne JavaScript bleibt der gesamte Inhalt normal sichtbar. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media print {
  .header, .float, .hero__actions, .form-card { display: none; }
}
