/* =========================================================
   Elektriker Aachen · Sevim Service · Vermittlung
   Designsystem: ruhig, dunkelblau, ein Akzent (Bernstein).
   ========================================================= */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-900: #071120;
  --navy-800: #0b1a30;
  --navy-700: #12264a;
  --navy-600: #1b3566;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #5b6b82;
  --line: #e3e8ef;
  --line-2: #cfd6e0;
  --surface: #f5f7fa;
  --surface-2: #eef2f6;
  --white: #ffffff;
  --amber: #f2a71b;
  --amber-600: #d9920f;
  --amber-100: #fff3d6;
  --amber-700: #8f5c00;
  --green: #1a9c5b;
  --red: #c8321f;

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(7, 17, 32, .06), 0 1px 1px rgba(7, 17, 32, .04);
  --shadow-md: 0 10px 30px -12px rgba(7, 17, 32, .25);
  --shadow-lg: 0 30px 60px -20px rgba(7, 17, 32, .35);
  --container: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
strong { font-weight: 700; }
small { font-size: .875em; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--navy-900); color: #d6deea; }
.section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-700); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.section--dark .eyebrow { color: var(--amber); }
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; }
.section--dark .lead { color: #b7c3d6; }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 1000; }
.skip-link:focus { left: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .9rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 1.5px solid transparent; cursor: pointer; line-height: 1; white-space: nowrap;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--amber); color: var(--navy-900); box-shadow: 0 8px 20px -8px rgba(242, 167, 27, .7); }
.btn--primary:hover { background: #ffb42a; }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(7,17,32,.35); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink); }
.brand__sub { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .22rem; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a { padding: .55rem .8rem; border-radius: 10px; font-weight: 600; font-size: .95rem; color: var(--ink-2); white-space: nowrap; }
.nav a:hover { background: var(--surface-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); background: var(--surface-2); }
.header__cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line-2); background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-menu { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

/* Hero */
.hero {
  position: relative; overflow: hidden; background: var(--navy-900); color: #fff;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 6rem);
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(242,167,27,.22), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(27,53,102,.55), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 40% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 40%, #000 20%, transparent 75%);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero .lead { color: #c3cddd; margin-top: 1.4rem; font-size: 1.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__note { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 1.2rem; color: #9fb0c8; font-size: .92rem; }
.hero__note span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__note svg { width: 16px; height: 16px; color: var(--amber); }
.hero .eyebrow { color: var(--amber); }

/* Contact card in hero */
.qcard {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 1.6rem;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
}
.qcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.qcard__head h2 { font-size: 1.25rem; }
.qcard__head p { color: var(--muted); font-size: .92rem; margin: .25rem 0 0; }
.qcard__badge { flex: none; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--amber-100); color: var(--amber-600); padding: .35rem .6rem; border-radius: 999px; }
.qcard__list { list-style: none; display: grid; gap: .6rem; }
.qcard__row {
  display: flex; align-items: center; gap: .9rem; padding: .85rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.qcard__row:hover { border-color: var(--navy-900); transform: translateY(-1px); }
.qcard__row--primary { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.qcard__row--primary:hover { background: var(--navy-700); border-color: var(--navy-700); }
.qcard__ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--surface-2); color: var(--navy-900); flex: none; }
.qcard__row--primary .qcard__ico { background: var(--amber); color: var(--navy-900); }
.qcard__ico svg { width: 20px; height: 20px; }
.qcard__row strong { display: block; font-size: 1rem; line-height: 1.2; }
.qcard__row span { display: block; font-size: .85rem; color: var(--muted); }
.qcard__row--primary span { color: #b7c3d6; }
.qcard__foot { margin-top: 1rem; font-size: .82rem; color: var(--muted); display: flex; gap: .5rem; align-items: flex-start; }
.qcard__foot svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--green); }

/* Trust strip */
.strip { background: var(--white); border-bottom: 1px solid var(--line); }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { display: flex; gap: .9rem; align-items: flex-start; padding: 1.4rem 1.2rem; border-left: 1px solid var(--line); }
.strip__item:first-child { border-left: 0; padding-left: 0; }
.strip__item svg { width: 22px; height: 22px; color: var(--amber-600); flex: none; margin-top: 3px; }
.strip__item strong { display: block; font-size: .98rem; }
.strip__item span { font-size: .88rem; color: var(--muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.step__num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--navy-900); color: var(--amber); font-weight: 800; font-size: 1.05rem; margin-bottom: 1.1rem; }
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--ink-2); margin: 0; font-size: .98rem; }

/* Service cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; display: flex; flex-direction: column; gap: .7rem;
}
a.card:hover, .card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card__ico { width: 48px; height: 48px; border-radius: 13px; background: var(--navy-900); color: var(--amber); display: grid; place-items: center; margin-bottom: .4rem; }
.card__ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--ink-2); margin: 0; font-size: .97rem; }
.card__more { margin-top: auto; padding-top: .6rem; font-weight: 700; font-size: .92rem; color: var(--navy-600); display: inline-flex; align-items: center; gap: .35rem; }
.card__more svg { width: 16px; height: 16px; transition: transform .15s ease; }
a.card:hover .card__more svg { transform: translateX(3px); }

/* Feature / why list */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.why__list { list-style: none; display: grid; gap: 1rem; }
.why__item { display: flex; gap: 1rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.why__item svg { width: 22px; height: 22px; color: var(--amber-600); flex: none; margin-top: 3px; }
.why__item strong { display: block; margin-bottom: .15rem; }
.why__item p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.honest {
  background: var(--navy-900); color: #d6deea; border-radius: var(--radius-lg); padding: 2rem;
  position: relative; overflow: hidden;
}
.honest::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(242,167,27,.35), transparent 65%); }
.honest h3 { color: #fff; margin-bottom: .6rem; font-size: 1.35rem; }
.honest p { margin: 0 0 .8rem; }
.honest p:last-child { margin: 0; }
.honest .tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .8rem; }

/* Region */
.region { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; }
.chips li { padding: .5rem .9rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .92rem; font-weight: 600; color: var(--ink-2); }
.chips li.is-main { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* Partner CTA */
.partner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #d6deea; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden;
}
.partner::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 48px 48px; opacity: .5; pointer-events: none; }
.partner > * { position: relative; }
.partner h2 { color: #fff; }
.partner ul { list-style: none; display: grid; gap: .7rem; margin-top: 1.2rem; }
.partner li { display: flex; gap: .7rem; align-items: flex-start; }
.partner li svg { width: 20px; height: 20px; color: var(--amber); flex: none; margin-top: 3px; }
.partner__box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 1.6rem; }
.partner__box h3 { color: #fff; margin-bottom: .5rem; }
.partner__box p { color: #b7c3d6; font-size: .95rem; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.3rem; }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 0; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--muted); line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-2); padding-bottom: 1.1rem; margin: 0; }

/* Contact */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact__info { display: grid; gap: 1rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.info-row svg { width: 22px; height: 22px; color: var(--amber-600); flex: none; margin-top: 2px; }
.info-row strong { display: block; }
.info-row a { color: var(--navy-600); font-weight: 700; }
.info-row a:hover { text-decoration: underline; }
.info-row span { color: var(--muted); font-size: .92rem; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
.field label small { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: .8rem .95rem; border: 1.5px solid var(--line-2); border-radius: 12px; background: #fff; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-900); box-shadow: 0 0 0 4px rgba(11,26,48,.1); }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--navy-900); }
.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.form__hint { font-size: .85rem; color: var(--muted); }
.form__status { margin-top: 1rem; padding: .9rem 1rem; border-radius: 12px; font-weight: 600; display: none; }
.form__status.is-ok { display: block; background: #e7f6ee; color: #0f6b3d; }
.form__status.is-err { display: block; background: #fdecea; color: #9a2417; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* Bottom CTA */
.cta { background: var(--navy-900); color: #fff; }
.cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta h2 { color: #fff; }
.cta p { color: #b7c3d6; margin: .5rem 0 0; max-width: 56ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Footer */
.footer { background: var(--navy-900); color: #9fb0c8; border-top: 1px solid rgba(255,255,255,.08); padding: 3.5rem 0 2rem; font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer h3 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: .5rem; }
.footer a:hover { color: #fff; }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: #9fb0c8; }
.footer__about { margin-top: 1rem; max-width: 40ch; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; }
.footer__legal { color: #7f91ab; font-size: .82rem; max-width: 70ch; margin-top: .8rem; }

/* Page hero (subpages) */
.page-hero { background: var(--navy-900); color: #fff; padding: clamp(3rem, 6vw, 5rem) 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 90% 0%, rgba(242,167,27,.18), transparent 60%); }
.page-hero > * { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-hero .lead { color: #c3cddd; margin-top: 1rem; }
.page-hero .eyebrow { color: var(--amber); }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; color: #9fb0c8; margin-bottom: 1.2rem; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: #5b6b82; }
.breadcrumb a:hover { color: #fff; }

/* Prose (legal, about) */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 2.2rem 0 .8rem; }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.3rem; margin-bottom: 1em; display: grid; gap: .35rem; }
.prose a { color: var(--navy-600); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.placeholder { background: var(--amber-100); border: 1px dashed var(--amber-600); padding: .05rem .4rem; border-radius: 6px; color: #7a5200; font-weight: 700; }

/* Service detail */
.service { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; padding: clamp(2rem, 4vw, 3rem) 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 1rem); }
.service:first-of-type { border-top: 0; }
.service h2 { font-size: 1.7rem; margin-bottom: .6rem; }
.service ul { list-style: none; display: grid; gap: .5rem; }
.service li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-2); }
.service li svg { width: 18px; height: 18px; color: var(--amber-600); flex: none; margin-top: 4px; }
.service__ico { width: 56px; height: 56px; border-radius: 16px; background: var(--navy-900); color: var(--amber); display: grid; place-items: center; margin-bottom: 1rem; }
.service__ico svg { width: 28px; height: 28px; }

/* Alert */
.alert { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem 1.2rem; border-radius: var(--radius); background: #fdecea; border: 1px solid #f5c6c0; color: #7a1f14; }
.alert svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.alert strong { display: block; }
.alert p { margin: 0; font-size: .95rem; }

/* Notice */
.notice { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem 1.2rem; border-radius: var(--radius); background: var(--amber-100); border: 1px solid #f3d99b; color: #5b3d00; }
.notice svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--amber-600); }
.notice p { margin: 0; font-size: .95rem; }

/* Mobile sticky call bar */
.callbar { display: none; }

/* Utilities */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Reveal animation (progressive enhancement) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item { border-left: 0; padding-left: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .why, .region, .contact, .partner, .service { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: .8rem 1.25rem 1.2rem; gap: .2rem; box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem .9rem; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .header__cta .btn--ghost { display: none; }
  .brand__sub { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .form__grid, .strip__grid, .footer__grid { grid-template-columns: 1fr; }
  .strip__item { padding: 1rem 0; border-top: 1px solid var(--line); }
  .strip__item:first-child { border-top: 0; }
  .hero__actions .btn { width: 100%; }
  .header__cta .btn--primary { padding: .7rem .9rem; font-size: .9rem; }
  .header__cta .btn--primary .btn__label { display: none; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.95); border-top: 1px solid var(--line); backdrop-filter: blur(10px);
  }
  .callbar .btn { padding: .85rem 1rem; }
  body { padding-bottom: 72px; }
  .footer { padding-bottom: 5rem; }
}

/* Refined editorial layout; shared navigation and compact homepage. */
:root { --ink: #202824; --ink-2: #48514c; --muted: #646c66; --surface: #f6f6f2; --line: #e3e5de; --container: 1200px; }
.header { background: rgba(255,255,252,.94); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.brand__name { font-size: 1.08rem; letter-spacing: -.035em; }
.brand__sub { font-size: .64rem; letter-spacing: .08em; }
.brand__mark { width: 39px; height: 39px; }
.nav { gap: .6rem; }
.nav a { font-size: .83rem; }
.btn { border-radius: 8px; font-size: .86rem; font-weight: 700; padding: .95rem 1.25rem; box-shadow: none; transition: background .2s ease, transform .2s ease; }
.btn--dark { background: #26382f; }
.btn--dark:hover { background: #354c3e; }
.btn--primary { background: #edb65b; color: #242a23; box-shadow: none; }
.btn--primary:hover { background: #f3c474; }
.header__cta .btn { padding: .8rem 1.05rem; font-size: .8rem; }
.footer { background: #202c25; padding: 2.25rem 0 1.35rem; color: #c5cec7; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer__links { display: flex; gap: 1.7rem; font-size: .8rem; flex-wrap: wrap; }
.footer .brand__sub { color: #bbc6bd; }
.footer__legal { color: #bbc6bd; max-width: 85ch; font-size: .73rem; line-height: 1.7; margin: 1.5rem 0 0; }
.footer__bottom { margin-top: 1.3rem; padding-top: 1rem; font-size: .73rem; }
.home-refined { background: #fdfdfb; }
.home-refined h1,.home-refined h2,.home-refined h3 { font-weight: 600; letter-spacing: -.045em; }
.home-refined h2 { font-size: clamp(1.8rem,3.1vw,2.6rem); line-height: 1.16; }
.kicker { display: block; color: #59674f; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.05rem; }
.intro { display: grid; grid-template-columns: 1.05fr 1fr; margin-top: 30px; border-radius: 15px; overflow: hidden; background: #f0f1e9; min-height: 510px; }
.intro__copy { padding: 54px 38px 40px 46px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.intro .kicker { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.7rem; }
.intro .kicker>span { width: 6px; height: 6px; background: #a47532; border-radius: 50%; }
.intro h1 { font-size: clamp(2.5rem,4.15vw,3.65rem); line-height: 1.08; letter-spacing: -.055em; }
.intro h1 em { color: #667558; font-style: normal; }
.intro__copy>p { color: #5b635b; font-size: .96rem; line-height: 1.8; max-width: 42ch; margin: 1.5rem 0 1.65rem; }
.intro__actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.text-link { display: inline-flex; align-items: center; gap: .7rem; font-size: .8rem; font-weight: 700; text-underline-offset: 5px; }
.text-link:hover { text-decoration: underline; }
.text-link svg { width: 17px; height: 17px; }
.intro__note { margin-top: 1.6rem; font-size: .66rem; color: #656e62; }
.intro__image { position: relative; min-height: 100%; background: #72796e url('/assets/img/elektriker-einsatz.png') center center / cover no-repeat; }
.intro__image::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(13,23,17,.55)); }
.image-label { position: absolute; bottom: 28px; left: 28px; z-index: 1; display: flex; align-items: center; gap: .85rem; color: #fff; font-size: .75rem; line-height: 1.65; }
.image-label svg { width: 23px; height: 23px; }
.image-label strong { font-weight: 600; }
.service-line { display: flex; align-items: center; justify-content: center; gap: 4rem; padding: 24px 0; border-bottom: 1px solid var(--line); }
.service-line>span { display: flex; align-items: center; gap: .65rem; font-size: .72rem; color: #586158; }
.service-line svg { width: 18px; height: 18px; color: #798468; }
.offer-section { padding-top: 66px; padding-bottom: 68px; scroll-margin-top: 95px; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; }
.section-heading .text-link { margin-bottom: 4px; }
.offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.offer { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 11px; padding: 25px; background: #fff; transition: border-color .25s,transform .25s,box-shadow .25s; }
.offer:hover { border-color: #9da88e; transform: translateY(-3px); box-shadow: 0 12px 30px #26382f08; }
.offer__icon { width: 40px; height: 40px; display: grid; place-items: center; background: #f0f2e9; border-radius: 8px; color: #62714e; margin-bottom: 22px; }
.offer__icon svg { width: 21px; height: 21px; }
.offer h3 { font-size: 1.05rem; letter-spacing: -.025em; }
.offer p { font-size: .81rem; color: #646c66; line-height: 1.8; margin: 12px 0 22px; max-width: 33ch; }
.offer__bottom { display: flex; justify-content: space-between; font-size: .73rem; font-weight: 700; margin-top: auto; }
.offer__bottom>span { font-size: 1rem; color: #6a795b; }
.process-section { padding: 52px 0; background: #f1f2ec; }
.process-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.process-intro { color: #646c66; font-size: .86rem; max-width: 34ch; margin: 18px 0 0; line-height: 1.8; }
.process-list { list-style: none; }
.process-list li { display: flex; gap: 21px; padding: 20px 0; border-bottom: 1px solid #daddd2; }
.process-list li:first-child { padding-top: 0; }
.process-list li:last-child { border: 0; padding-bottom: 0; }
.process-number { font-size: .8rem; color: #687650; font-weight: 700; padding-top: 2px; }
.process-list h3 { font-size: .97rem; letter-spacing: -.02em; }
.process-list p { color: #646c66; font-size: .8rem; line-height: 1.75; margin: 7px 0 0; }
.contact-section { padding-top: 55px; padding-bottom: 55px; }
.contact-panel { background: #26382f; color: #e4e9e0; border-radius: 13px; padding: 38px 42px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-panel h2 { color: #fff; font-size: clamp(1.7rem,2.8vw,2.25rem); }
.contact-panel .kicker { color: #c1cdaf; margin-bottom: 12px; }
.contact-panel p { color: #c4cdbf; font-size: .82rem; margin: 13px 0 0; }
.contact-panel__actions { display: flex; flex-direction: column; align-items: center; gap: 15px; flex-shrink: 0; }
.contact-panel__actions>a:not(.btn) { font-size: .72rem; color: #d6dfd0; }
@media(min-width:821px) and (max-width:1050px) { .intro__copy { padding: 35px 28px; } .intro { min-height: 490px; } .header__inner { gap: .6rem; } .nav a { padding-inline: .45rem; } }
@media(max-width:820px) {
 .intro { grid-template-columns: 1fr 1fr; min-height: 450px; margin-top: 20px; }
 .intro__copy { padding: 32px 24px; }
 .intro h1 { font-size: 2.55rem; }
 .intro__copy>p { font-size: .85rem; }
 .intro__actions { gap: 1rem; }
 .service-line { gap: 1.4rem; }
 .service-line>span { font-size: .64rem; }
 .offer { padding: 20px; }
 .process-layout { gap: 35px; }
 .footer__top { align-items: flex-start; }
 .footer__links { gap: .7rem 1rem; justify-content: flex-end; }
 .contact-panel { padding: 30px; }
}
@media(max-width:640px) {
 .container { width: calc(100% - 32px); }
 .header__inner { gap: 10px; }
 .brand__name { font-size: .92rem; }
 .brand__sub { font-size: .54rem; }
 .brand__mark { width: 34px; height: 34px; }
 .header__cta>.btn { display: none; }
 .intro { grid-template-columns: 1fr; margin-top: 16px; }
 .intro__copy { padding: 32px 24px 28px; }
 .intro .kicker { margin-bottom: 22px; }
 .intro h1 { font-size: clamp(2.3rem,9.5vw,3rem); }
 .intro__copy>p { margin: 19px 0 22px; max-width: 40ch; font-size: .86rem; }
 .intro__note { margin-top: 19px; }
 .intro__image { min-height: 250px; background-position: center 55%; }
 .image-label { bottom: 19px; left: 24px; }
 .service-line { padding: 19px 0; gap: 12px; justify-content: space-between; }
 .service-line>span { flex: 1; font-size: .57rem; line-height: 1.6; gap: 6px; }
 .service-line svg { width: 16px; height: 16px; flex-shrink: 0; }
 .offer-section { padding-top: 39px; padding-bottom: 39px; }
 .section-heading { align-items: flex-start; flex-direction: column; gap: 16px; margin-bottom: 21px; }
 .offer-grid { grid-template-columns: 1fr; gap: 12px; }
 .offer { padding: 22px; display: grid; grid-template-columns: 40px 1fr; column-gap: 17px; }
 .offer__icon { grid-row: 1 / 4; margin-bottom: 0; }
 .offer h3 { font-size: 1rem; align-self: center; }
 .offer p { grid-column: 2; margin: 8px 0 13px; max-width: none; }
 .offer__bottom { grid-column: 2; }
 .process-section { padding: 37px 0; }
 .process-layout { grid-template-columns: 1fr; gap: 29px; }
 .process-intro { max-width: 40ch; }
 .process-list li { padding: 17px 0; }
 .contact-section { padding-block: 32px; }
 .contact-panel { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 23px; }
 .contact-panel__actions { align-items: flex-start; }
 .footer__top { flex-direction: column; gap: 22px; }
 .footer__links { justify-content: flex-start; font-size: .75rem; }
 .footer { padding: 30px 0 100px; }
 .callbar { grid-template-columns: 1fr; padding: 10px 16px max(10px,env(safe-area-inset-bottom)); }
}

/* One-tap contact throughout the site. */
.btn--sms { background: #e3eddf; color: #263d29; border-color: #c7d6c0; }
.btn--sms:hover { background: #d4e4ce; border-color: #aec0a5; }
.header__cta .btn { white-space: nowrap; }
.direct-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 25px; }
.contact-panel__actions { flex-direction: row; flex-wrap: wrap; flex-shrink: 1; justify-content: flex-end; }
.direct-contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.direct-contact-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 12px; transition: border-color .2s, background .2s; }
.direct-contact-card:hover { background: var(--surface); border-color: #a5b398; }
.direct-contact-card h2 { font-size: 1.25rem; letter-spacing: -.035em; }
.direct-contact-card p { font-size: .87rem; color: var(--muted); margin: 16px 0 24px; }
.direct-contact-card strong { margin-top: auto; font-size: .87rem; display: flex; justify-content: space-between; gap: 10px; }
@media(min-width:821px) and (max-width:1050px) {
 .header__cta { gap: 6px; }
 .header__cta .btn { padding: .7rem .8rem; font-size: .74rem; }
 .nav { gap: .1rem; }
}
@media(max-width:820px) {
 .contact-panel { flex-wrap: wrap; }
 .contact-panel__actions { justify-content: flex-start; }
 .direct-contact-grid { grid-template-columns: 1fr; gap: 14px; }
}
@media(max-width:640px) {
 .header__cta>.btn--primary { display: inline-flex; padding: .65rem; }
 .header__cta>.btn--primary span { display: none; }
 .header__cta>.btn--sms { display: inline-flex; padding: .65rem .75rem; font-size: .75rem; }
 .header__cta>.btn--sms svg { display: none; }
 .header__cta { gap: 6px; }
 .nav-toggle { width: 36px; height: 36px; border-radius: 8px; }
 .header .brand { gap: 7px; }
 .header .brand__name { font-size: .8rem; }
 .header .brand__sub { font-size: .46rem; }
 .header .brand__mark { width: 29px; height: 29px; }
 .intro__actions { gap: 10px; }
 .intro__actions .btn { padding: .85rem 1rem; font-size: .79rem; }
 .callbar { grid-template-columns: 1fr 1fr; gap: 9px; }
 .callbar .btn { font-size: .85rem; padding-inline: .6rem; }
 .contact-panel__actions { gap: 10px; }
}

/* Compact landing page with direct contact and a short service overview. */
.home-refined { min-height: 100svh; display: flex; flex-direction: column; }
.home-refined #main { flex: 1; padding: 24px 0 0; }
.home-refined .intro { margin-top: 0; min-height: clamp(420px, 65svh, 620px); }
.home-refined .intro__copy>p { max-width: 35ch; }
.footer { padding: 20px 0; }
.footer__legal { margin: 0; max-width: none; }
.footer__bottom { margin-top: 12px; padding-top: 12px; }
.footer__links { gap: 18px; font-size: .73rem; }
@media(max-width:640px) {
 .home-refined #main { padding: 16px 0 0; }
 .home-refined .intro { min-height: 0; }
 .home-refined .intro__copy { padding: 28px 24px; }
 .home-refined .intro__image { min-height: 210px; }
 .footer { padding: 18px 0 94px; }
 .footer__legal { font-size: .68rem; }
 .footer__bottom { gap: 9px; }
 .footer__links { gap: 14px; }
}

.compact-services { padding-top: 48px; padding-bottom: 56px; }
.compact-services__heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.home-refined .compact-services h2 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); }
.compact-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.compact-services__grid>a { display: flex; align-items: center; gap: 14px; padding: 23px 18px; border: 1px solid var(--line); border-radius: 10px; transition: background .2s, border-color .2s; }
.compact-services__grid>a:hover { background: #f1f2ec; border-color: #a5b398; }
.compact-services .offer__icon { flex-shrink: 0; margin: 0; }
.home-refined .compact-services h3 { font-size: .9rem; letter-spacing: -.025em; }
.compact-services p { margin: 7px 0 0; font-size: .72rem; color: var(--muted); }
.compact-services__grid>a>span:last-child { margin-left: auto; color: #62714e; }
@media(max-width:1024px) {
 .compact-services__grid { gap: 10px; }
 .compact-services__grid>a { padding: 18px 14px; gap: 10px; }
 .compact-services__grid>a>span:last-child { display: none; }
}
@media(max-width:820px) {
 .compact-services__grid { grid-template-columns: 1fr; }
 .compact-services__grid>a>span:last-child { display: block; }
}
@media(max-width:640px) {
 .compact-services { padding-top: 32px; padding-bottom: 36px; }
 .compact-services__heading { flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
}
