/* =========================================================
   Elektro AN – Elektro-Meisterbetrieb Erlangen
   Nachbau · statisch · HTML/CSS/JS
   ========================================================= */

/* ---------- Fonts ---------- */

/* ---------- Design tokens (exact values from live site) ---------- */
:root {
  --dark:        #1e1e1e;   /* --elektroan-schwarz */
  --dark-2:      #232323;
  --dark-3:      #2a2a2a;
  --nav-bg:      #272727;
  --light:       #ededed;
  --light-2:     #e4e4e4;
  --grau:        #f9f7f7;   /* --elektra-an-grau (Kontakt button) */
  --lavender:    #e9e9f5;
  --gold:        #fccc45;   /* --elektro-an-yellow */
  --gold-2:      #fcd968;
  --yellow:      #fccc45;
  --green:       #3aa856;
  --logo-blue:   #3f3faa;   /* --elektro-an-lila */
  --navy:        #3f3faa;
  --gray600:     #475467;
  /* Google Material „task_alt" Icon als Maske */
  --check-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 5.18L10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z'/%3E%3C/svg%3E");

  --text-light:  #ededed;
  --text-mute:   #a9a9a9;
  --text-dark:   #1e1e1e;
  --text-dark-2: #565656;

  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --font-round: 'Montserrat', Arial, sans-serif;

  --radius:   14px;
  --radius-lg: 22px;
  --pill: 999px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

.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; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--dark);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: clip;
  max-width: 100%;
}
/* Sektionen kapseln – kein horizontaler Überlauf durch Slider o. Ä. */
section, .footer, .wizard-wrap { overflow-x: clip; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-head); margin: 0; line-height: 1.12; font-weight: 700; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
/* Overflow-Schutz: Grid-/Flex-Kinder dürfen schrumpfen */
.hero__grid > *, .about__grid > *, .promo__grid > *, .jobs__grid > *, .pausch__grid > *, .adv__grid > *, .weg__intro > *, .weg-split > *, .weg-col li { min-width: 0; }

/* ---------- Section framing ---------- */
section { position: relative; }
.sec         { padding: 92px 0; }
.sec--dark   { background: var(--dark); color: var(--text-light); }
.sec--light  { background: var(--light); color: var(--text-dark); }
.sec--lav    { background: var(--lavender); color: var(--text-dark); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
}
.eyebrow--mute { color: var(--text-dark-2); }

.section-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: 0;
  margin: 0;
}
.section-title--center { text-align: center; }
.title-rule {
  width: 84px; height: 3px; border-radius: 3px;
  background: var(--text-dark); opacity: .55; margin: 22px 0;
}
.section-title--center + .title-rule { margin: 22px auto; }
.lead { font-size: 1.05rem; max-width: 640px; }
.lead--center { text-align: center; margin: 0 auto; }

/* ---------- Buttons (1:1 mit Live-Site) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1rem 1.75rem; border-radius: var(--pill);
  font-family: var(--font-head); font-weight: 500; font-size: 1.125rem; line-height: 1.2;
  border: 1.5px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .2s var(--ease);
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
/* schlichter Pfeil (kein Kreis) – erbt Buttonfarbe */
.btn .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15em; line-height: 1; font-weight: 400;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Primär: dunkler Pill, goldener Rand, weißer Text → hover gold */
.btn--dark { background: var(--dark); color: #fff; border-color: var(--gold); }
.btn--dark:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Kontakt: heller Pill, dunkler Text, grauer Rand */
.btn--white, .btn--outline-dark {
  background: var(--grau); color: var(--dark); border-color: var(--gray600);
}
.btn--white:hover, .btn--outline-dark:hover { background: #fff; }

/* Gefüllt gold (z. B. „Mehr erfahren" Photovoltaik) */
.btn--gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); }

/* Dunkel-flach (z. B. „Mehr erfahren" Wallbox) */
.btn--darkflat { background: #2c2b2b; color: #fff; border: 1.5px solid #2f2f2f; }
.btn--darkflat:hover { background: #323232; }

/* Dunkler Pill mit Goldrand auf dunklem Grund (identisch zu --dark) */
.btn--ghost-gold { background: var(--dark); color: #fff; border-color: var(--gold); }
.btn--ghost-gold:hover { background: var(--gold); color: var(--dark); }

.btn--ghost-dark { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost-dark:hover { background:#fff; color: var(--dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
/* Nebeneinander liegende Buttons gleich breit (unabhängig vom Text) */
.hero__body .btn-row, .pagehero .btn-row { max-width: 470px; }
.hero__body .btn-row .btn, .pagehero .btn-row .btn { flex: 1 1 0; min-width: 0; justify-content: center; }

/* trust line */
.trust {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px;
  font-family: var(--font-head); font-size: 12.5px; color: var(--text-mute);
}
.sec--light .trust, .sec--lav .trust { color: var(--text-dark-2); }
.trust span { display: inline-flex; align-items: center; gap: 6px; }
.trust span::before {
  content: ""; width: 15px; height: 15px; flex: 0 0 auto;
  background-color: var(--green);
  -webkit-mask: var(--check-svg) center/contain no-repeat; mask: var(--check-svg) center/contain no-repeat;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 20px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 56px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .11em; font-size: 12.5px; font-weight: 400; color: #eaeaea;
  transition: color .2s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .btn { padding: .7rem 1.6rem; font-size: 1rem; font-weight: 500; letter-spacing: .5px; }
/* Nav-Button: schlichter dunkler Pill (ohne Goldrand), erst bei Hover gold */
.nav__cta .btn--dark { background: #191919; border-color: #191919; }
.nav__cta .btn--dark:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.nav__phone {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; color: #fff; transition: color .2s;
}
.nav__phone:hover { color: var(--gold); }
.nav__phone svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.nav__burger {
  display: none; background: none; border: 0; width: 42px; height: 42px;
  flex-direction: column; justify-content: center; gap: 5px; padding: 8px;
}
.nav__burger span { height: 2px; background: #eee; border-radius: 2px; transition: .25s; }
.nav.is-open .nav__burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2){ opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { background: var(--dark); color: var(--text-light); padding: 70px 0 96px; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 600; letter-spacing: -.01em;
  margin: 6px 0 22px;
}
.hero h1 strong { font-weight: 600; }
.hero h1 .thin { font-weight: 300; }
.hero__sub { font-size: 1.4rem; line-height: 1.5; color: #d4d4d4; max-width: 460px; margin-bottom: 32px; }
.hero__media { position: relative; }
/* oben-links & unten-rechts eckig, oben-rechts & unten-links rund */
.hero__photo { width: 100%; border-radius: 0 54px 0 54px; aspect-ratio: 16/11; object-fit: cover; }
.hero__badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 22px;
}
.hero__badges img { width: 100%; height: auto; border-radius: 8px; }

/* Google-Bewertungs-Badge im Hero – dezent, ohne Hintergrund */
.hero-reviews {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  color: rgba(255,255,255,.8); transition: color .2s;
}
.hero-reviews:hover { color: #fff; }
.hero-reviews__g { height: 19px; width: auto; opacity: .9; }
.hero-reviews__div { width: 1px; height: 24px; background: rgba(255,255,255,.18); }
.hero-reviews__rating { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: rgba(255,255,255,.92); }
.hero-reviews__stars { color: #fbbc05; letter-spacing: 1px; font-size: .9rem; opacity: .92; margin-left: -2px; }
.hero-reviews__count { font-size: .82rem; color: rgba(255,255,255,.6); }

/* page hero (PV / Wallbox) */
.pagehero { padding: 66px 0 84px; background: var(--light); color: var(--text-dark); }
.pagehero .hero__grid { align-items: center; }
.pagehero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 600; letter-spacing: -.01em; color: var(--text-dark); margin: 6px 0 22px; }
.pagehero .eyebrow { color: var(--text-dark-2); }
.pagehero__sub { color: #444; max-width: 430px; margin-bottom: 30px; }
.pagehero__photo { width: 100%; border-radius: 26px; aspect-ratio: 4/3; object-fit: cover; }

/* =========================================================
   LEISTUNGEN SLIDER
   ========================================================= */
.slider__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.slider__nav { display: flex; gap: 16px; margin-bottom: 6px; }
.snav-btn {
  width: 44px; height: 44px; border-radius: 50%; background: transparent;
  border: 0; color: var(--text-dark); font-size: 22px; display: grid; place-items: center;
  transition: .2s;
}
.snav-btn:hover { color: var(--gold); transform: scale(1.08); }

.track-viewport { overflow: hidden; margin-top: 40px; }
.track { display: flex; gap: 26px; transition: transform .55s var(--ease); will-change: transform; }
.serv-card {
  flex: 0 0 300px; background: #1e1e1e; color: var(--text-light);
  border-radius: 0; padding: 36px 32px; height: 420px;
  display: flex; flex-direction: column; justify-content: flex-start;
  position: relative; overflow: hidden;
  transition: box-shadow .3s;
}
.serv-card:hover { box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.serv-card > div:first-child { position: relative; z-index: 2; }
.serv-card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.serv-card p { color: #cfcfcf; font-size: .98rem; margin: 0; }
.serv-card__icon { position: absolute; inset: 0; margin: 0; z-index: 1; }
.serv-card__icon img { width: 100%; height: 100%; object-fit: cover; object-position: left bottom; }

.dots { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 34px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(0,0,0,.22); border: 0; padding: 0; transition: .25s; }
.dot.is-active { background: var(--navy); transform: scale(1.25); }
.dots--light .dot { background: rgba(255,255,255,.25); }
.dots--light .dot.is-active { background: var(--gold); }

/* =========================================================
   ÜBER UNS
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about p { color: #3c3c3c; }
.about strong { color: #141414; }
.about__media { text-align: center; }
.about__logo { max-width: 340px; margin: 0 auto 8px; }
.about__van { max-width: 440px; margin: 8px auto 18px; }
.about__cap { font-style: italic; color: var(--logo-blue); font-weight: 700; max-width: 360px; margin: 0 auto; }

/* =========================================================
   PROMO (PV / Wallbox blocks)
   ========================================================= */
.promo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.promo-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 34px; color: #fff; isolation: isolate;
}
.promo-card::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.9) 100%);
}
.promo-card img.bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; }
.promo-card--flat { background: #0e0e0e; }
.promo-card--flat::after { display:none; }
.promo-card .kicker { font-size: 12px; letter-spacing:.12em; text-transform:uppercase; color:#e9e9e9; margin-bottom:10px; font-family:var(--font-head); font-weight:600; }
.promo-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.promo-card .gold-title { color: var(--gold); font-size: 2rem; margin-bottom: 14px; }
.promo-card p { color:#d8d8d8; font-size:.98rem; margin:0; }
.promo-card .wb-img { position:absolute; right:0; top:0; height:100%; width:60%; object-fit:cover; object-position:center; z-index:-2; }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start; }
.feature-list .fico {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid currentColor;
  display: grid; place-items: center; font-size: 14px; margin-top: 3px; color: var(--gold);
}
.sec--lav .feature-list .fico { color: #141414; }
.feature-list h4 { font-size: 1.12rem; margin-bottom: 4px; }
.feature-list p { margin: 0; font-size: .96rem; color: inherit; opacity:.82; }
.sec--dark .feature-list p { color:#c7c7c7; opacity:1; }
.feature-list__head { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.15em; font-size:12.5px; color:var(--gold); margin-bottom: 26px; font-weight:600; }
.sec--lav .feature-list__head { color: var(--text-dark-2); }

/* partner logos */
.partners { margin-top: 62px; }
.partner-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.partner-chip {
  background: #fff; border-radius: 10px; flex: 0 0 160px; height: 62px;
  display: grid; place-items: center; padding: 12px 16px;
}
.partner-chip img { max-height: 34px; width: auto; object-fit: contain; }

/* =========================================================
   WALLBOX FÜR WEG
   ========================================================= */
.weg__head { max-width: 840px; }
.weg__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.weg-card {
  background: #f7f7f9; border: 1px solid #ececec; border-radius: 16px; padding: 28px 26px;
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.weg-card:hover { border-color: var(--gold); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.weg-card__ico { width: 48px; height: 48px; border-radius: 12px; background: #fff6e0; display: grid; place-items: center; margin-bottom: 16px; }
.weg-card__ico svg { width: 26px; height: 26px; fill: none; stroke: #b9860b; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.weg-card h4 { font-size: 1.12rem; margin-bottom: 8px; color: #1e1e1e; }
.weg-card p { color: #555; font-size: .95rem; margin: 0; line-height: 1.6; }

/* WEG – zweispaltige Vorteile (Unterseite) */
.weg-split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 44px; }
.weg-col { background: #fff; border: 1px solid #e6e6e6; border-radius: 18px; padding: 34px 32px; }
.weg-col.is-dark { background: #1e1e1e; border-color: #2a2a2a; color: #ededed; }
.weg-col h3 { font-size: 1.35rem; margin-bottom: 6px; }
.weg-col .weg-col__sub { font-size: .9rem; color: #8a8a8a; margin-bottom: 22px; }
.weg-col.is-dark .weg-col__sub { color: #a9a9a9; }
.weg-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.weg-col li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: .97rem; line-height: 1.55; }
.weg-col li::before {
  content: ""; width: 20px; height: 20px; margin-top: 2px;
  background-color: var(--gold);
  -webkit-mask: var(--check-svg) center/contain no-repeat; mask: var(--check-svg) center/contain no-repeat;
}

/* =========================================================
   KLIMAANLAGEN
   ========================================================= */

.weg-visual { width: 100%; aspect-ratio: 4/3; border-radius: 0 54px 0 54px; overflow: hidden; background: #eee; }
.weg-visual img { width: 100%; height: 100%; object-fit: cover; }
.weg__intro { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; margin-bottom: 8px; }
.weg__intro > div { min-width: 0; }
.weg__intro .section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); hyphens: auto; overflow-wrap: break-word; }


.klima-visual {
  width: 100%; aspect-ratio: 4/3; border-radius: 0 54px 0 54px; overflow: hidden;
  background: #eee;
}
.klima-visual img { width: 100%; height: 100%; object-fit: cover; }
.klima-promo { background: #f5f7fa; }


/* =========================================================
   ZUGELASSENE KLIMAFACHFIRMA (ChemKlimaschutzV)
   ========================================================= */
.cert { background: #f5f7fa; }
.cert__head { text-align: center; max-width: 780px; margin: 0 auto; }
.cert__eyebrow { text-transform: uppercase; letter-spacing: .24em; color: #5a6b85; font-size: 13px; font-weight: 600; font-family: var(--font-head); margin: 0 0 4px; }
.cert__title { font-family: var(--font-head); font-weight: 800; color: #1c3d6e; font-size: clamp(1.7rem,4vw,2.7rem); text-transform: uppercase; margin: 0; }
.cert__divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 20px 0; color: #3b9fd6; font-size: 1.3rem; }
.cert__divider span { width: 120px; max-width: 22vw; height: 1px; background: #c3d0e0; }
.cert__claim { color: #1c3d6e; font-weight: 700; font-size: 1.12rem; margin: 0 0 16px; }
.cert__text { color: #3c4a60; margin: 0; }
.cert__text strong { color: #1c3d6e; }
.cert-icons { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin: 46px auto 0; max-width: 920px; }
.cert-icon { text-align: center; }
.cert-icon .ci { width: 78px; height: 78px; border-radius: 50%; background: #1c3d6e; display: grid; place-items: center; margin: 0 auto 12px; }
.cert-icon .ci svg { width: 34px; height: 34px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cert-icon .cl { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: .02em; color: #1c3d6e; line-height: 1.3; }
.cert-shield { display: flex; align-items: center; gap: 22px; background: #1c3d6e; color: #fff; border-radius: 16px; padding: 26px 32px; max-width: 660px; margin: 46px auto 0; }
.cert-shield > svg { width: 50px; height: 50px; flex: 0 0 auto; stroke: #fff; fill: none; stroke-width: 1.7; }
.cert-shield strong { display: block; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .02em; }
.cert-shield span { color: #c7d5ea; font-size: .92rem; }

/* Kurzer Hinweis-Kasten auf der Landingpage */
.cert-badge { display: flex; align-items: center; gap: 14px; background: #eaf0f8; border: 1px solid #d3e0f0; border-radius: 12px; padding: 15px 18px; margin-top: 22px; color: #1c3d6e; transition: border-color .2s, background .2s; }
.cert-badge:hover { border-color: #1c3d6e; background: #e2ecf8; }
.cert-badge svg { width: 30px; height: 30px; flex: 0 0 auto; stroke: #1c3d6e; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cert-badge span { font-size: .92rem; line-height: 1.45; }
.cert-badge strong { font-family: var(--font-head); }

/* =========================================================
   JOBS
   ========================================================= */
.jobs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.jobs__media { display: grid; gap: 20px; }
.jobs__media img { width: 100%; border-radius: var(--radius); object-fit: cover; }
.jobs__body { text-align: center; }
.jobs__body h2 { font-size: clamp(1.9rem,3.6vw,2.6rem); margin: 8px 0 16px; }
.jobs__body p { color:#cfcfcf; max-width: 460px; margin: 0 auto 22px; }
.job-perks { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 26px; }
.job-perk {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 300px; max-width: 100%;
  background: var(--dark-3); border-radius: var(--pill); padding: 11px 26px; font-size: .95rem;
}
.job-perk .chk {
  display: inline-block; width: 20px; height: 20px; font-size: 0; flex: 0 0 auto;
  background-color: var(--green);
  -webkit-mask: var(--check-svg) center/contain no-repeat; mask: var(--check-svg) center/contain no-repeat;
}

/* =========================================================
   REFERENZEN
   ========================================================= */
/* Sektion füllt den Viewport (100vh) */
.reviews-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 56px; padding-bottom: 56px; }
.reviews__head { text-align: left; }
.reviews__meta { display: flex; align-items: center; gap: 12px; margin: 18px 0 6px; font-weight: 700; flex-wrap: wrap; }
.reviews__stars { color: #fbbc05; letter-spacing: 2px; }
.reviews__meta .cnt { color: var(--text-dark-2); font-weight: 400; }
.reviews__glogo { height: 22px; width: auto; }

/* Karte: breiter, feste Höhe, gleich hoch */
.rev-card {
  flex: 0 0 360px; background: #fff; border-radius: var(--radius); padding: 26px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07); display: flex; flex-direction: column; height: 348px;
}
.rev-card__head { display: flex; align-items: center; gap: 11px; }
.rev-avatar { width: 36px; height: 36px; border-radius: 50%; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1rem; display: grid; place-items: center; flex: 0 0 auto; }
.rev-card__id { min-width: 0; }
.rev-card__name { font-family: var(--font-head); font-weight: 700; color: #141414; font-size: 1.02rem; }
.rev-card__rrow { display: flex; align-items: center; gap: 7px; margin-top: 2px; }
.rev-card__rate { font-family: var(--font-head); font-weight: 700; color: #141414; font-size: .92rem; }
.rev-card__stars { color: #fbbc05; letter-spacing: 2px; font-size: 1rem; }
.rev-modal__head { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.rev-modal__avatar { width: 50px; height: 50px; font-size: 1.35rem; }
.rev-card__verified { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: #6a6a6a; margin-top: 9px; }
.rev-card__verified .g-icon { width: 15px; height: 15px; flex: 0 0 auto; }
.rev-card__text {
  color: #454545; font-size: .93rem; line-height: 1.6; margin-top: 14px; flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 66%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 66%, transparent 100%);
}
.rev-card__more {
  align-self: flex-start; margin-top: 8px; background: none; border: 0; padding: 2px 0;
  color: #b9860b; font-family: var(--font-head); font-weight: 600; font-size: .85rem; cursor: pointer;
}
.rev-card__more:hover { text-decoration: underline; }
.reviews__foot { display:flex; flex-direction: column; align-items:center; gap: 16px; margin-top: 30px; }
.reviews__foot .snav-btn svg { width: 20px; height: 20px; }
.reviews__foot .slider__nav { margin: 0; }
.reviews__foot .snav-btn { border: 1px solid rgba(0,0,0,.2); }

/* Rezensions-Popup */
.rev-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.rev-modal[hidden] { display: none; }
.rev-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(2px); }
.rev-modal__box {
  position: relative; background: #fff; border-radius: 18px; width: 100%; max-width: 560px; max-height: 80vh;
  padding: 34px 32px 30px; display: flex; flex-direction: column; box-shadow: 0 30px 70px rgba(0,0,0,.45);
  animation: fade .3s var(--ease);
}
.rev-modal__close { position: absolute; top: 12px; right: 16px; background: none; border: 0; font-size: 30px; line-height: 1; color: #aaa; cursor: pointer; }
.rev-modal__close:hover { color: #333; }
.rev-modal__name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #141414; padding-right: 24px; }
.rev-modal__stars { margin-top: 6px; }
.rev-modal__text { margin-top: 16px; overflow-y: auto; color: #444; font-size: .98rem; line-height: 1.75; flex: 1; padding-right: 8px; }

/* =========================================================
   PAUSCHALE
   ========================================================= */
.pausch__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pausch__card img { width: 100%; border-radius: var(--radius); }
.pausch__perks { margin-top: 22px; display: grid; gap: 12px; }
.pausch__perks .p { display: inline-flex; align-items: center; gap: 10px; color:#333; }
.pausch__perks .p .chk {
  display: inline-block; width: 19px; height: 19px; font-size: 0; flex: 0 0 auto;
  background-color: var(--green);
  -webkit-mask: var(--check-svg) center/contain no-repeat; mask: var(--check-svg) center/contain no-repeat;
}
.pausch__body h2 { color: #3a3a3a; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem,3.4vw,2.4rem); margin-bottom: 16px; }
.pausch__body h4 { color: var(--elektro-an-lila, #3f3faa); text-transform: uppercase; letter-spacing: .05em; margin: 20px 0 8px; font-size: 1rem; }
.pausch__body p { color:#3c3c3c; }
.pausch__body .big { font-size: 1.06rem; }

/* =========================================================
   SERVICE STEPS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 54px; }
.step { text-align: center; }
.step__ico { margin: 0 auto 24px; display: grid; place-items: center; }
.step__ico img { height: 116px; width: auto; }
.step__ico .gcheck {
  display: inline-block; width: 56px; height: 56px;
  background-color: var(--green);
  -webkit-mask: var(--check-svg) center/contain no-repeat; mask: var(--check-svg) center/contain no-repeat;
}
.step h3 { text-transform: uppercase; letter-spacing: .04em; font-size: 1.45rem; font-weight: 700; color: #3f3faa; margin-bottom: 14px; }
.step p { color: #454545; font-size: 1.05rem; line-height: 1.65; }
.center-cta { text-align: center; margin-top: 46px; }
.center-cta .trust { justify-content: center; }

/* =========================================================
   VORTEILE (dark)
   ========================================================= */
.adv__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.adv__intro h2 { font-size: clamp(2rem,4vw,2.8rem); margin: 10px 0 18px; }
.adv__intro p { color:#c9c9c9; max-width: 360px; margin-bottom: 26px; }
.adv__cells { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 44px; }
.adv-cell__ico { margin-bottom: 16px; }
.adv-cell__ico img { height: 40px; width: auto; }
.adv-cell h4 { font-size: 1.12rem; margin-bottom: 8px; }
.adv-cell p { color:#b7b7b7; font-size:.95rem; margin: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__head { text-align: center; margin-bottom: 46px; }
.faq__logo { max-width: 260px; margin: 0 auto 18px; }
.faq__head h2 { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.9rem,4vw,2.8rem); }
.faq__head p { color: var(--text-dark-2); }
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.12); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 6px; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--text-dark);
}
.faq-q .pm {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(0,0,0,.35);
  display: grid; place-items: center; font-size: 18px; color: #444; transition: transform .3s;
}
.faq-item.is-open .faq-q .pm { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a__inner { padding: 0 6px 24px; color:#4a4a4a; font-size: .98rem; }
.faq-a strong { color:#141414; }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact h2 { font-size: clamp(1.7rem,3.4vw,2.3rem); margin: 6px 0 14px; }
.contact p { color:#c9c9c9; max-width: 520px; }
.contact__cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.contact-card {
  background: var(--dark-3); border-radius: var(--radius); padding: 30px 20px; text-align: center;
  transition: .25s; border: 1px solid rgba(255,255,255,.05);
}
.contact-card:hover { transform: translateY(-4px); background: #2a2a2a; }
.contact-card .t { font-family: var(--font-head); font-weight: 700; color:#fff; margin-bottom: 8px; }
.contact-card .v { color: var(--gold); font-size: .95rem; word-break: break-word; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: #cbcbcb; padding: 70px 0 30px; border-top: 1px solid rgba(255,255,255,.06); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer__logo { max-width: 190px; margin-bottom: 20px; }
.footer address { font-style: normal; font-size: .95rem; line-height: 1.9; color:#bcbcbc; }
.footer h4 { color:#fff; text-transform: uppercase; letter-spacing:.12em; font-size: 13px; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem; color:#8f8f8f;
}
.footer__bottom a { margin-left: 18px; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .2s;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* =========================================================
   PROJEKTANFRAGE WIZARD
   ========================================================= */
.wizard-nav { background: var(--dark); }
.wizard-wrap { background: var(--light); min-height: 72vh; padding: 60px 0 90px; }
.wizard {
  max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.08); padding: 46px 44px;
}
.wizard__progress { display: flex; gap: 8px; margin-bottom: 34px; }
.wizard__progress .bar { flex: 1; height: 6px; border-radius: 6px; background: #e0e0e0; overflow: hidden; }
.wizard__progress .bar span { display: block; height: 100%; width: 0; background: var(--gold); transition: width .4s var(--ease); }
.wizard__progress .bar.done span { width: 100%; }
.wizard-step { display: none; }
.wizard-step.is-active { display: block; animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wizard h2 { text-align: center; font-size: clamp(1.5rem,3.5vw,2.1rem); color: var(--text-dark); margin-bottom: 8px; }
.wizard .step-sub { text-align: center; color: var(--text-dark-2); margin-bottom: 30px; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 16px; }
.choice {
  border: 2px solid #e3e3e3; border-radius: var(--radius); padding: 22px 16px; text-align: center;
  cursor: pointer; transition: .2s; user-select: none; background:#fafafa;
}
.choice:hover { border-color: var(--gold); }
.choice.is-selected { border-color: var(--gold); background: #fff8ea; }
.choice .ico { color: var(--dark); margin-bottom: 12px; display: grid; place-items: center; }
.choice .ico svg { width: 34px; height: 34px; stroke: currentColor; stroke-width: 1.7; fill: none; }
.choice.is-selected .ico { color: #b9860b; }
.choice .lbl { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--text-dark); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .check-badge {
  position: absolute; top: 10px; right: 10px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--dark); display: none; place-items: center; font-size: 13px; font-weight: 700;
}
.choice { position: relative; }
.choice.is-selected .check-badge { display: grid; }

/* Optionslisten (Verzweigungs-Fragen) */
.opt-list { display: grid; gap: 12px; max-width: 540px; margin: 0 auto; }
.opt {
  display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  border: 2px solid #e3e3e3; border-radius: 12px; padding: 15px 18px; background: #fafafa; cursor: pointer;
  font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: var(--dark); transition: border-color .18s, background .18s;
}
.opt:hover { border-color: var(--gold); }
.opt.is-selected { border-color: var(--gold); background: #fff8ea; }
.opt .radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #ccc; flex: 0 0 auto; display: grid; place-items: center; transition: border-color .18s; }
.opt.is-selected .radio { border-color: var(--gold); }
.opt.is-selected .radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: #b9860b; }
.opt.multi .radio { border-radius: 6px; }
.opt.multi.is-selected .radio::after { border-radius: 2px; }

/* Upload-Feld */
.upload-drop {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  border: 2px dashed #d3d3d3; border-radius: 14px; padding: 32px 20px; cursor: pointer;
  color: #555; background: #fafafa; transition: border-color .2s, background .2s;
}
.upload-drop:hover { border-color: var(--gold); background: #fff8ea; }
.upload-drop > span:first-of-type { font-family: var(--font-head); font-weight: 600; color: var(--dark); }
.upload-drop .upload-hint { font-size: .85rem; color: #8a8a8a; word-break: break-word; }
.upload-drop svg { color: #b9860b; }

.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: 7px; color:#333; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid #dcdcdc; border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color:#222; background:#fff; transition: border .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 110px; resize: vertical; }
.field .hint { font-size: .8rem; color: #999; margin-top: 4px; }
.field.invalid input, .field.invalid textarea { border-color: #e0533d; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.wizard__actions { display: flex; justify-content: space-between; gap: 16px; margin-top: 34px; }
.wizard__actions .btn { flex: 0 0 auto; }
.btn-back { background: none; border: 0; color: var(--text-dark-2); font-family: var(--font-head); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.btn-back:hover { color: var(--text-dark); }
.wizard-success { text-align: center; padding: 20px 0; }
.wizard-success .check {
  width: 76px; height: 76px; border-radius: 50%; background: var(--green); color:#fff;
  display: grid; place-items: center; font-size: 40px; margin: 0 auto 22px;
}
.wizard-success h2 { color: var(--green); }
.error-text { color: #e0533d; font-size: .85rem; margin-top: 10px; min-height: 1em; text-align:center; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal { background: var(--light); color: var(--text-dark); padding: 70px 0; min-height: 60vh; }
.legal .container { max-width: 820px; }
.legal h1 { font-family: var(--font-round); font-weight: 400; margin-bottom: 24px; }
.legal h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.legal p, .legal address { color:#444; font-style: normal; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .sec { padding: 66px 0; }
  .hero__grid, .about__grid, .promo__grid, .jobs__grid, .pausch__grid, .adv__grid, .pagehero .hero__grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  /* Hero: Text + Buttons zuerst, Bild darunter (wie Original mobil) */
  .hero__media { order: 0; margin-top: 6px; }
  .jobs__body { order: -1; }
  .hero__sub { max-width: none; }
  /* Buttons volle Breite, gestapelt */
  .hero__body .btn-row, .pagehero .btn-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__body .btn-row .btn, .pagehero .btn-row .btn { width: 100%; justify-content: center; }
  .adv__cells { gap: 32px; }
  .steps { grid-template-columns: 1fr; gap: 40px; max-width: 420px; margin: 46px auto 0; }
  .weg__grid { grid-template-columns: repeat(2, 1fr); }
  .cert-icons { grid-template-columns: repeat(3, 1fr); gap: 26px 12px; }
  .weg-split { grid-template-columns: 1fr; }
  .weg__intro { grid-template-columns: 1fr; gap: 32px; }
  .contact__cards { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(4,1fr); }
  .partner-grid--wb { grid-template-columns: repeat(4,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .nav__links, .nav__cta .btn { display: none; }
  .nav__phone { display: inline-flex; }
  .nav__burger { display: flex; }
  .nav__cta { gap: 6px; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--dark-2); padding: 16px 24px 24px; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav.is-open .nav__links a { padding: 10px 0; width: 100%; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .sec { padding: 54px 0; }
  .container { padding: 0 18px; }
  .wizard { padding: 30px 22px; }
  .two-col { grid-template-columns: 1fr; }
  .btn { white-space: normal; }
  .serv-card, .rev-card { flex-basis: 84vw; }
  .adv__cells { grid-template-columns: 1fr !important; }
  .about__van, .about__logo { max-width: 100%; }
  .faq__logo { max-width: 70%; }
  .weg__grid { grid-template-columns: 1fr; }
  .cert-icons { grid-template-columns: repeat(2, 1fr); }
  .cert-shield { flex-direction: column; text-align: center; }
  .contact__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badges { grid-template-columns: 1fr 1fr; }
  .btn { padding: 13px 24px; }
  .reviews__foot { flex-direction: column; gap: 18px; }
}
