/* ==========================================================================
   SparStromundGas — Design System
   Markenfarben: Blau #00498E · Grün #31AA39 (aus dem Logo)
   ========================================================================== */

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---- Farben ---- */
  --navy-950: #05192e;
  --navy-900: #082A47;
  --navy-800: #0C3556;
  --blue-700: #003C75;
  --blue-600: #00498E;   /* ★ Marke */
  --blue-500: #1461AE;
  --blue-100: #E3EDF7;
  --green-800: #1B6F22;  /* Weiß darauf: 6,28:1 */
  --green-700: #1E7A25;  /* Weiß darauf: 5,43:1 · auf Weiß: 5,43:1 */
  --green-600: #268C2E;
  --green-500: #31AA39;  /* ★ Marke — nur dekorativ, nicht als Textfarbe */
  --green-400: #4FC257;
  --green-100: #E4F4E5;

  --ink-900: #0E1B29;
  --ink-700: #2C3E50;
  --ink-500: #5B6B7C;
  --ink-400: #8494A5;

  --bg: #FFFFFF;
  --bg-tint: #F4F8FB;
  --border: #E4EAF0;

  /* ---- Typo ---- */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --text-sm: 0.9rem;
  --text-base: 1.0625rem;

  /* ---- Sonstiges ---- */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(8, 42, 71, .06), 0 4px 12px rgba(8, 42, 71, .05);
  --shadow-md: 0 4px 8px rgba(8, 42, 71, .07), 0 12px 32px rgba(8, 42, 71, .10);
  --shadow-lg: 0 8px 16px rgba(8, 42, 71, .10), 0 24px 64px rgba(8, 42, 71, .16);
  --ease: cubic-bezier(.22, .8, .36, 1);
  --container: 1180px;
}

/* ---- Reset & Basis ---- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: 24px; }
.container--narrow { max-width: 820px; }
.center { text-align: center; margin-top: 48px; }

.ico { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico-bolt, .chip-ico .ico { fill: currentColor; stroke: none; }

.grad {
  background: linear-gradient(92deg, var(--green-400), var(--green-500) 55%, #7BD581);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Auf hellem Grund: dunklerer Verlauf für ≥3:1 Großtext-Kontrast */
.grad--on-light { background-image: linear-gradient(92deg, var(--green-600), var(--green-700)); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 650; line-height: 1; white-space: nowrap;
  border: 1.5px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer; text-decoration: none;
  padding: .95em 1.7em; font-size: 1rem;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn--sm { padding: .68em 1.25em; font-size: .92rem; }
.btn--lg { padding: 1.05em 2em; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff;
  box-shadow: 0 2px 6px rgba(30, 122, 37, .35), 0 8px 24px rgba(30, 122, 37, .25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(30, 122, 37, .4), 0 14px 36px rgba(30, 122, 37, .35); }
.btn--primary:active { transform: translateY(0) scale(.99); }

.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .35); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .6); transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .1); border-color: #fff; transform: translateY(-2px); }

:focus-visible { outline: 3px solid var(--green-700); outline-offset: 2px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 200;
  background: var(--navy-950); color: #fff; font-weight: 650;
  padding: 12px 22px; border-radius: var(--radius-pill);
}
.skip-link:focus-visible { left: 12px; outline-color: #fff; }
/* Auf dunklen Flächen braucht der Fokusring Weiß (green-700 dort < 3:1) */
.hero :focus-visible, .section--dark :focus-visible, .cta-panel :focus-visible, .site-footer :focus-visible { outline-color: #fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 24px rgba(8, 42, 71, .06); }
.header-inner { display: flex; align-items: center; gap: 32px; height: 74px; }
.brand-logo { height: 46px; width: auto; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a {
  font-size: .96rem; font-weight: 550; color: var(--ink-700);
  padding: 6px 2px; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--green-500); transition: right .25s var(--ease);
}
.main-nav a:hover { color: var(--ink-900); }
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
/* Desktop: CTA führt zum Formular · Mobil: direkt anrufen */
.cta-phone { display: none; }
@media (max-width: 920px) {
  .cta-desktop { display: none; }
  .cta-phone { display: inline-flex; }
}

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; padding: 8px 24px 20px;
  background: rgba(255, 255, 255, .97); border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 0; font-weight: 550; color: var(--ink-700); border-bottom: 1px solid var(--border); }
.mobile-menu-cta { color: var(--green-700); font-weight: 700; }

@media (max-width: 920px) {
  .main-nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 480px) {
  /* Buttons dürfen auf schmalen Screens umbrechen statt den Viewport zu sprengen */
  .btn { white-space: normal; text-align: center; padding-inline: 1.2em; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--navy-950); color: #fff; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
/* Foto ganz unten; die Scrim-Verläufe darüber halten den Text WCAG-AA-lesbar */
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 42%; z-index: 0;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(56% 70% at 82% 16%, rgba(0, 73, 142, .42), transparent 70%),
    radial-gradient(48% 60% at 8% 92%, rgba(49, 170, 57, .20), transparent 72%),
    linear-gradient(105deg, rgba(5, 25, 46, .96) 0%, rgba(5, 25, 46, .92) 38%, rgba(6, 32, 58, .76) 64%, rgba(8, 42, 71, .56) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5; z-index: 2;
  background-image: radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: radial-gradient(70% 70% at 60% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 60% 40%, #000 0%, transparent 100%);
}
.hero-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 56px; align-items: center; padding-block: 88px 96px;
}
.hero h1 { color: #fff; margin-bottom: .45em; }
.hero-sub { font-size: 1.18rem; color: rgba(255, 255, 255, .78); max-width: 34em; margin-bottom: 1.8em; }

.badge-pill {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .88rem; font-weight: 550; letter-spacing: .01em;
  color: #CFF3D2;
  background: rgba(49, 170, 57, .14);
  border: 1px solid rgba(79, 194, 87, .4);
  border-radius: var(--radius-pill);
  padding: .5em 1.1em; margin: 0 0 22px;
}
.badge-pill .ico { width: 1em; height: 1em; color: var(--green-400); }
.badge-pill span { line-height: 1.45; }
.badge-pill strong { color: #fff; font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-trust { list-style: none; display: flex; gap: 40px; padding: 0; margin: 0; flex-wrap: wrap; }
.hero-trust li { display: flex; flex-direction: column; gap: 2px; }
.hero-trust strong { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.hero-trust span { font-size: .86rem; color: rgba(255, 255, 255, .62); }

/* Portrait-Karte */
.hero-visual { display: flex; justify-content: center; }
.portrait-card {
  position: relative; width: min(100%, 460px);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #F2F7FB 0%, #DCE9F4 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .12);
  overflow: visible;
}
.portrait-img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  object-fit: cover;
}
.portrait-name {
  position: absolute; left: 18px; bottom: 18px;
  display: flex; flex-direction: column; gap: 1px;
  background: rgba(8, 42, 71, .82); color: #fff;
  backdrop-filter: blur(8px);
  padding: 10px 18px; border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.portrait-name strong { font-size: 1rem; }
.portrait-name span { font-size: .8rem; color: rgba(255, 255, 255, .7); }

.chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink-900);
  border-radius: 14px; padding: 10px 16px;
  font-size: .82rem; line-height: 1.3;
  box-shadow: var(--shadow-md);
  animation: float 5.5s ease-in-out infinite;
}
.chip strong { font-size: .92rem; }
.chip--tl { top: 26px; left: -26px; }
.chip--br { bottom: 60px; right: -20px; animation-delay: -2.7s; }
.chip-ico {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #fff;
}
.chip-ico .ico { width: 1.05em; height: 1.05em; stroke: currentColor; fill: none; }
.chip-ico--green { background: var(--green-500); }
.chip-ico--blue { background: var(--blue-600); }
.chip-ico--blue .ico { fill: currentColor; stroke: none; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-block: 64px 72px; gap: 64px; }
  .hero-visual { order: 2; }
  .chip--tl { left: -6px; }
  .chip--br { right: -6px; }
  /* Einspaltig: Text steht über die volle Breite — Scrim rundum dunkel genug halten,
     Foto bleibt als atmosphärischer Schleier oben/rechts sichtbar. */
  .hero-bg::before {
    background:
      radial-gradient(60% 40% at 78% 8%, rgba(0, 73, 142, .38), transparent 72%),
      linear-gradient(180deg, rgba(5, 25, 46, .74) 0%, rgba(5, 25, 46, .90) 46%, rgba(6, 32, 58, .96) 100%);
  }
  .anfrage-bg::before {
    background:
      radial-gradient(60% 40% at 22% 8%, rgba(49, 170, 57, .22), transparent 72%),
      linear-gradient(180deg, rgba(5, 25, 46, .74) 0%, rgba(5, 25, 46, .90) 46%, rgba(6, 32, 58, .96) 100%);
  }
}

/* ==========================================================================
   Logo-Marquee
   ========================================================================== */
.logos { padding: 34px 0 42px; border-bottom: 1px solid var(--border); }
.logos-title {
  text-align: center; font-size: .84rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500);
  margin-bottom: 26px;
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track {
  display: flex; align-items: center; gap: 72px; width: max-content;
  animation: marquee 36s linear infinite;
  padding-inline: 36px;
}
.marquee:hover .marquee-track,
.marquee.paused .marquee-track { animation-play-state: paused; }
.marquee-toggle {
  margin-left: 14px; padding: 3px 12px; font: inherit; font-size: .78rem; font-weight: 600;
  letter-spacing: normal; text-transform: none;
  color: var(--ink-500); background: none; border: 1px solid var(--border);
  border-radius: var(--radius-pill); cursor: pointer;
}
.marquee-toggle:hover { color: var(--ink-700); border-color: var(--ink-400); }
.marquee-track img {
  height: 44px; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s;
}
.marquee-track img:hover { filter: grayscale(0) opacity(1); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Sections & Cards
   ========================================================================== */
.section { padding-block: 96px; }
.section--tint { background: var(--bg-tint); }
.section--dark { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); }

/* Foto-Band für dunkle Sektionen: Bild unten, Scrim + Brand-Glow darüber (Text bleibt AA-lesbar) */
.section--photo { position: relative; overflow: hidden; }
.section-photo-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.section-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.section-photo-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(58% 60% at 82% 12%, rgba(0, 73, 142, .38), transparent 68%),
    radial-gradient(46% 60% at 8% 96%, rgba(49, 170, 57, .18), transparent 72%),
    linear-gradient(180deg, rgba(5, 25, 46, .93) 0%, rgba(6, 32, 58, .86) 52%, rgba(8, 42, 71, .82) 100%);
}
.section--photo > .container { position: relative; z-index: 1; }
.on-dark { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center, .section--tint .section-head, .section--dark .section-head { margin-inline: auto; text-align: center; }
.section-sub { font-size: 1.12rem; color: var(--ink-500); }
.section--dark .section-sub { color: rgba(255, 255, 255, .7); }

.eyebrow {
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: 14px;
}
.eyebrow--light { color: var(--green-400); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 940px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Vorteile */
.benefit { padding: 32px 28px; }
.grid-4 .benefit h3 { font-size: 1.12rem; }
.grid-4 .benefit p { font-size: .94rem; }
.benefit-ico {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 22px;
}
.benefit-ico .ico { width: 26px; height: 26px; }
.benefit-ico--green { background: var(--green-100); color: var(--green-600); }
.benefit-ico--blue { background: var(--blue-100); color: var(--blue-600); }
.benefit p { margin: 0; color: var(--ink-500); }
.benefit strong { color: var(--ink-900); }

/* Kundenergebnisse */
.big-counter {
  font-size: clamp(3rem, 7vw, 4.8rem); font-weight: 800; letter-spacing: -.03em;
  line-height: 1; margin: 8px 0 0;
  background: linear-gradient(92deg, var(--green-700), var(--green-600), var(--blue-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Ersparnis-Timeline (Jahr für Jahr) ---- */
.savings-timeline { max-width: 620px; margin: 14px auto 0; display: flex; flex-direction: column; gap: 15px; }
.sv-row { display: grid; grid-template-columns: 3em 1fr 5.6em; align-items: center; gap: 14px; }
.sv-year { font-weight: 700; font-size: .95rem; color: var(--ink-500); text-align: right; }
.sv-track { height: 20px; background: var(--bg-tint); border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.sv-bar { height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--green-600), var(--green-500)); }
.js .sv-bar { width: 0; transition: width 1.2s cubic-bezier(.22, 1, .36, 1); }
.js .savings-timeline.visible .sv-bar { width: var(--w); }
.sv-amount { font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; color: var(--navy-900); white-space: nowrap; text-align: right; font-variant-numeric: tabular-nums; }
.sv-row--now .sv-bar { background: linear-gradient(90deg, var(--blue-600), var(--navy-900)); }
.sv-row--now .sv-year, .sv-row--now .sv-amount { color: var(--blue-600); }
.sv-caption { text-align: center; margin: 16px auto 0; max-width: 42em; font-size: .92rem; color: var(--ink-500); }
@media (prefers-reduced-motion: reduce) { .js .sv-bar { width: var(--w); transition: none; } }

/* ESV: reine Faktenzeilen ohne Vorher/Nachher-Optik */
.case-kicker { margin: -4px 0 12px; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--green-700); }
ul.case-rows--plain li:first-child strong { color: var(--navy-900); text-decoration: none; }
ul.case-rows--plain li:last-child strong { color: var(--navy-900); }

.cases { margin-bottom: 8px; }
.case { overflow: hidden; display: flex; flex-direction: column; }
.case-media { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.case:hover .case-media img { transform: scale(1.04); }
.case-media--logo { display: grid; place-items: center; background: var(--bg-tint); }
.case-media--logo img { width: 60%; height: auto; object-fit: contain; }
.tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(8, 42, 71, .85); color: #fff; backdrop-filter: blur(6px);
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .45em 1em; border-radius: var(--radius-pill);
}
.case-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.case-body h3 { margin-bottom: 18px; }
.case-rows { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 0; flex: 1; align-content: start; }
.case-rows li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 10px 2px; border-bottom: 1px dashed var(--border);
}
.case-rows span { font-size: .92rem; color: var(--ink-500); }
.case-rows strong { font-size: 1.05rem; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.case-rows li:first-child strong { color: var(--ink-500); text-decoration: line-through; text-decoration-color: rgba(180, 84, 60, .55); text-decoration-thickness: 2px; }
.case-rows li:last-child strong { color: var(--blue-600); }
.case-saving {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--green-100); border-radius: 14px; padding: 14px 18px; margin: 0;
}
.case-saving span { font-size: .82rem; font-weight: 600; color: var(--green-700); line-height: 1.3; }
.case-saving strong { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; color: var(--green-700); white-space: nowrap; }
.case-note { margin: 10px 0 0; font-size: .9rem; color: var(--ink-500); }
.case-lead { margin: 0 0 18px; font-size: .95rem; color: var(--ink-500); line-height: 1.5; }
.case-saving--solo { margin-top: auto; }

/* Split-Layouts */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.split--reverse { grid-template-columns: .95fr 1.05fr; }
@media (max-width: 940px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split-visual { order: 2; }
}

.checklist { list-style: none; padding: 0; margin: 0 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--ink-700); font-size: .98rem; }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%;
  background: var(--green-500) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 12px no-repeat;
}
@media (max-width: 560px) { .checklist { grid-template-columns: 1fr; } }

.photo-card { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card--tall { aspect-ratio: 4 / 4.4; }
.quote-chip {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 16px 22px;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em;
  box-shadow: var(--shadow-md);
}
.quote-chip span { display: block; font-weight: 500; font-size: .84rem; color: var(--ink-500); margin-top: 3px; }

/* Vergleich */
.compare { align-items: start; }
.compare-card { padding: 36px 32px; }
.section--dark .compare-card { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); box-shadow: none; }
.section--dark .compare-card h3 { color: rgba(255, 255, 255, .85); }
.compare-card--best {
  position: relative;
  background: #fff !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-lg) !important;
  transform: scale(1.03);
}
.compare-card--best:hover { transform: scale(1.03) translateY(-4px); }
.compare-card--best h3 { color: var(--blue-600) !important; }
.best-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .5em 1.4em; border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(30, 122, 37, .4);
}
.check-list, .x-list { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 13px; }
.check-list li, .x-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; line-height: 1.5; }
.check-list li::before {
  content: ""; flex: none; width: 21px; height: 21px; margin-top: 2px; border-radius: 50%;
  background: var(--green-500) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 11px no-repeat;
}
.x-list li { color: rgba(255, 255, 255, .62); }
.x-list li::before {
  content: ""; flex: none; width: 21px; height: 21px; margin-top: 2px; border-radius: 50%;
  background: rgba(255, 255, 255, .12) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f0a3a3" stroke-width="3" stroke-linecap="round"><path d="M18 6 6 18M6 6l12 12"/></svg>') center / 10px no-repeat;
}
.compare-card--best .btn { margin-top: 22px; }

/* Über mich */
.pull-quote {
  margin: 28px 0; padding: 20px 26px;
  border-left: 4px solid var(--green-500);
  background: var(--green-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.08rem; color: var(--ink-700);
}
.signature { display: flex; flex-direction: column; margin-top: 26px; }
.signature strong { font-size: 1.1rem; }
.signature span { color: var(--ink-500); font-size: .92rem; }

/* Ablauf */
.steps {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  padding: 0; margin: 0;
}
@media (max-width: 940px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 38px 32px 34px; position: relative; }
.step-num {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff; font-size: 1.3rem; font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0, 73, 142, .3);
}
.step p { margin: 0; color: var(--ink-500); }

/* FAQ */
.accordion { display: grid; gap: 14px; }
.accordion details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.accordion details[open] { box-shadow: var(--shadow-md); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  cursor: pointer; list-style: none;
  padding: 22px 26px;
  font-weight: 650; font-size: 1.05rem; letter-spacing: -.01em;
}
.accordion summary::-webkit-details-marker { display: none; }
.acc-ico { position: relative; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-100); }
.acc-ico::before, .acc-ico::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; background: var(--blue-600);
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
}
.acc-ico::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .acc-ico::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc-body { padding: 0 26px 24px; color: var(--ink-500); }
.acc-body p { margin: 0; }
.faq-note { text-align: center; margin-top: 34px; color: var(--ink-500); }
.faq-note a { font-weight: 650; }

/* CTA */
/* CTA-Finale: full-bleed dunkles Band mit Skyline-Foto — gleiche Bild-/Scrim-Sprache
   wie die Anfrage-Sektion, damit Formular + Abschluss als ein Block wirken. */
.cta-section {
  position: relative; overflow: hidden; padding-block: clamp(66px, 9vw, 112px);
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
}
.cta-section > picture { position: absolute; inset: 0; z-index: 0; }
.cta-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 50%; z-index: 0;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(55% 90% at 88% 6%, rgba(49, 170, 57, .28), transparent 60%),
    radial-gradient(48% 82% at 4% 100%, rgba(0, 73, 142, .5), transparent 66%),
    linear-gradient(100deg, rgba(5, 25, 46, .95) 0%, rgba(5, 25, 46, .85) 46%, rgba(8, 42, 71, .58) 100%);
}
.cta-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.cta-copy, .cta-actions { position: relative; z-index: 2; }
.cta-inner h2 { margin-bottom: .4em; }
.cta-inner > .cta-copy p { color: rgba(255, 255, 255, .74); margin: 0; font-size: 1.1rem; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.cta-mail { color: rgba(255, 255, 255, .62); font-size: .95rem; }
.cta-mail a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 940px) {
  .cta-inner { grid-template-columns: 1fr; gap: 26px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 18px; background: #fff; padding: 8px 14px; border-radius: 12px; }
.footer-brand p { font-size: .95rem; max-width: 30em; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 6px; }
.footer-col a { color: rgba(255, 255, 255, .7); font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 26px;
  font-size: .88rem; color: rgba(255, 255, 255, .5);
}
.footer-legal a { color: rgba(255, 255, 255, .75); }
.footer-legal a:hover { color: #fff; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Gigant-Wortmarke im Footer (dezent, nach unten ausgeblendet, Ränder laufen aus) */
.footer-megamark {
  font-family: var(--font); font-weight: 800; line-height: .8; letter-spacing: -.05em;
  font-size: clamp(30px, 11.5vw, 150px); white-space: nowrap; text-align: center;
  margin: 44px 0 -6px; padding: 0 6px; overflow: hidden; user-select: none; pointer-events: none;
  background: linear-gradient(176deg, rgba(255, 255, 255, .38), rgba(49, 170, 57, .22) 62%, rgba(255, 255, 255, .04));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Google-Rezensionen */
.stars { color: #E8A200; letter-spacing: .06em; }
.review { margin: 0; padding: 30px 28px; display: flex; flex-direction: column; }
.review-stars { margin: 0 0 12px; color: #E8A200; font-size: 1.05rem; letter-spacing: .1em; }
.review blockquote { margin: 0 0 18px; color: var(--ink-700); flex: 1; }
.review figcaption { font-weight: 700; }
.review figcaption span { display: block; font-weight: 500; font-size: .84rem; color: var(--ink-500); margin-top: 2px; }
.reviews-link { text-align: center; margin: 36px 0 0; }
.reviews-link a { font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }

/* Mobiler Schnellkontakt-Balken: erscheint unter 700px nach dem Hero */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; gap: 8px; padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
  background: rgba(5, 25, 46, .96); backdrop-filter: blur(10px);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.mobile-cta-bar a {
  flex: 1; text-align: center; padding: 9px 6px; white-space: nowrap;
  border-radius: var(--radius-pill); font-weight: 650; font-size: .88rem;
  color: #fff; border: 1.5px solid rgba(255, 255, 255, .3);
}
.mobile-cta-bar__primary { background: linear-gradient(135deg, var(--green-700), var(--green-800)); border-color: transparent !important; }
@media (max-width: 700px) {
  .mobile-cta-bar { display: flex; }
  .mobile-cta-bar.show { transform: translateY(0); }
  body.has-cta-bar { padding-bottom: 54px; }
}

/* ==========================================================================
   Scroll-Reveal & Motion
   ========================================================================== */
/* Nur verstecken, wenn JS läuft (html.no-js → html.js per Inline-Script im <head>) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.visible { opacity: 1; transform: none; }
.d-1 { transition-delay: .1s; }
.d-2 { transition-delay: .2s; }
.d-3 { transition-delay: .3s; }
.d-4 { transition-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .chip { animation: none; }
  /* Marquee steht still: Logos statisch zentriert, Duplikate ausblenden */
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; row-gap: 24px; }
  .marquee-track img[aria-hidden] { display: none; }
  * { transition-duration: .01ms !important; }
}

/* ==========================================================================
   Kontaktformular
   ========================================================================== */
/* Anfrage-Sektion: dunkles Panel im Hero-Stil, Formular als Blickfang */
.anfrage-section { position: relative; overflow: hidden; }
.anfrage-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.anfrage-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 56%; z-index: 0;
}
.anfrage-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(56% 70% at 85% 10%, rgba(49, 170, 57, .20), transparent 65%),
    radial-gradient(52% 78% at 6% 92%, rgba(0, 73, 142, .42), transparent 70%),
    linear-gradient(255deg, rgba(5, 25, 46, .95) 0%, rgba(5, 25, 46, .90) 40%, rgba(6, 32, 58, .74) 66%, rgba(8, 42, 71, .56) 100%);
}
.anfrage-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .45; z-index: 2;
  background-image: radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: radial-gradient(65% 70% at 30% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(65% 70% at 30% 40%, #000 0%, transparent 100%);
}
.anfrage-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 64px; align-items: center;
}
.anfrage-copy h2 { margin-bottom: .5em; }
.anfrage-sub { font-size: 1.12rem; color: rgba(255, 255, 255, .78); margin-bottom: 30px; }
.anfrage-points { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 16px; }
.anfrage-points li {
  position: relative; padding-left: 38px;
  color: rgba(255, 255, 255, .72); line-height: 1.5;
}
.anfrage-points li strong { color: #fff; }
.anfrage-points li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-500) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 12px no-repeat;
}
/* Vorteile-Liste neben dem Formular (dunkler Abschnitt) */
.vorteile-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 20px; }
.vorteile-list li { display: flex; gap: 15px; align-items: flex-start; }
.vorteile-list .benefit-ico { flex: none; width: 46px; height: 46px; margin-bottom: 0; border-radius: 13px; }
.vorteile-list .benefit-ico .ico { width: 22px; height: 22px; }
.vorteile-list .benefit-ico--green { background: var(--green-500); color: #fff; }
.vorteile-list .benefit-ico--blue { background: var(--blue-600); color: #fff; }
.vorteile-list .v-txt { display: flex; flex-direction: column; gap: 3px; color: rgba(255, 255, 255, .74); font-size: .96rem; line-height: 1.45; }
.vorteile-list .v-txt strong { color: #fff; font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }

.anfrage-personal {
  margin: 0 0 18px; padding: 14px 18px;
  border-left: 3px solid var(--green-500); border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, .06);
  color: #fff; font-weight: 550; font-style: italic;
}
.anfrage-personal span { display: block; margin-top: 4px; font-style: normal; font-weight: 400; font-size: .88rem; color: rgba(255, 255, 255, .65); }
.anfrage-alt { color: rgba(255, 255, 255, .62); font-size: .98rem; margin: 0; }
.anfrage-alt a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Kompakte Vergleichs-Liste neben dem Formular (dunkel) */
.vs-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.vs-list li {
  position: relative; padding: 13px 16px 13px 46px; border-radius: 12px;
  background: rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .7);
  font-size: .94rem; line-height: 1.45;
}
.vs-list li strong { display: block; color: #fff; font-size: 1.02rem; font-weight: 700; margin-bottom: 2px; }
.vs-list li::before {
  position: absolute; left: 13px; top: 13px; width: 22px; height: 22px;
  border-radius: 50%; display: grid; place-items: center;
  font-size: .78rem; font-weight: 800; line-height: 1;
}
.vs-good { background: rgba(49, 170, 57, .16); box-shadow: inset 0 0 0 1px rgba(49, 170, 57, .45); }
.vs-good::before { content: "✓"; background: var(--green-500); color: #fff; }
.vs-bad::before { content: "✕"; background: #e5484d; color: #fff; }

/* Kompakte Google-Rezensionen */
.section--slim { padding-block: 48px; }
.reviews-rating { text-align: center; margin: 0 auto 26px; font-size: 1.08rem; color: var(--ink-700); }
.reviews-rating strong { color: var(--ink-900); font-weight: 800; }
.reviews-rating .stars { color: #E8A200; letter-spacing: .06em; }
.reviews-marquee { overflow: hidden; margin: 6px 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reviews-marquee-track { display: flex; gap: 20px; width: max-content; padding: 6px 10px; animation: marquee 42s linear infinite; }
.reviews-marquee:hover .reviews-marquee-track,
.reviews-marquee.paused .reviews-marquee-track { animation-play-state: paused; }
.reviews-toggle { vertical-align: middle; }
.review-chip {
  flex: 0 0 clamp(280px, 78vw, 360px); margin: 0; padding: 22px 24px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review-chip blockquote { margin: 0 0 12px; font-size: .95rem; font-style: italic; color: var(--ink-700); line-height: 1.5; flex: 1; }
.review-chip figcaption { font-weight: 700; font-size: .9rem; color: var(--ink-900); }
.review-chip figcaption span { color: #E8A200; font-weight: 700; font-style: normal; }
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .reviews-marquee-track .review-chip[aria-hidden] { display: none; }
  .reviews-toggle { display: none; }
}

/* FAQ-Akkordeon auf dunklem Foto-Band */
.section--dark .accordion details { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); box-shadow: none; }
.section--dark .accordion details[open] { background: rgba(255, 255, 255, .12); }
.section--dark .accordion summary { color: #fff; }
.section--dark .acc-ico { background: rgba(255, 255, 255, .18); }
.section--dark .acc-ico::before, .section--dark .acc-ico::after { background: #fff; }
.section--dark .acc-body { color: rgba(255, 255, 255, .76); }
.section--dark .faq-note { color: rgba(255, 255, 255, .72); }
.section--dark .faq-note a { color: #fff; }
@media (max-width: 940px) {
  .anfrage-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* Fokusring im weißen Formular-Card wieder grün (Sektion ist dunkel) */
.anfrage-section .lead-form :focus-visible,
.anfrage-section .form-success :focus-visible { outline-color: var(--green-700); }

.lead-form {
  position: relative; overflow: hidden;
  padding: 40px 40px 36px; display: grid; gap: 24px;
  box-shadow: 0 30px 90px rgba(2, 12, 24, .55), 0 0 70px rgba(49, 170, 57, .22);
}
.lead-form::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-500));
}
@media (max-width: 560px) { .lead-form { padding: 30px 22px 26px; } }
.lead-form:hover { transform: none; box-shadow: 0 30px 90px rgba(2, 12, 24, .55), 0 0 70px rgba(49, 170, 57, .22); }

.form-eyebrow {
  margin: 4px 0 0; font-size: .8rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-700);
}
.form-title { margin: 2px 0 4px; font-size: clamp(1.65rem, 3.6vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
.form-sub { margin: 0 0 6px; font-size: .95rem; color: var(--ink-500); }

/* Cases: 3 nebeneinander, auf Tablet 2, auf Handy 1 */
@media (min-width: 601px) and (max-width: 940px) { .cases.grid-3 { grid-template-columns: repeat(2, 1fr); } }
.form-proof { margin: -14px 0 0; text-align: center; font-size: .88rem; font-weight: 600; color: var(--green-700); }
.form-group { border: 0; padding: 0; margin: 0; }
.form-group legend { font-weight: 700; font-size: 1rem; padding: 0; margin-bottom: 12px; letter-spacing: -.01em; }

.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-radio { position: relative; cursor: pointer; }
.pill-radio input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.pill-radio span {
  display: inline-flex; align-items: center;
  padding: .68em 1.4em; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); background: var(--bg-tint);
  font-weight: 600; font-size: .96rem; color: var(--ink-700);
  transition: all .2s var(--ease);
}
.pill-radio:hover span { border-color: var(--green-400); }
.pill-radio input:checked + span {
  background: var(--green-100); border-color: var(--green-500); color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(49, 170, 57, .12);
}
.pill-radio input:focus-visible + span { outline: 3px solid var(--green-700); outline-offset: 2px; }

.form-field { display: grid; gap: 7px; }
.form-field label { font-weight: 650; font-size: .95rem; }
.form-field label small { font-weight: 450; color: var(--ink-500); }
.form-field input {
  font: inherit; color: var(--ink-900);
  padding: .8em 1em; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--bg-tint);
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.form-field input:hover { border-color: var(--ink-400); }
.form-field input:focus { outline: none; border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 3px rgba(49, 170, 57, .14); }
.form-field input.invalid { border-color: var(--_err, #B4543C); background: #FBF1EE; }
.form-field input::placeholder { color: var(--ink-500); }
#branche-field { margin-top: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-hint { margin: -12px 0 0; font-size: .84rem; color: var(--ink-500); }
.form-privacy { margin: 4px 0 0; font-size: .82rem; color: var(--ink-500); text-align: center; }
.form-privacy a { text-decoration: underline; text-underline-offset: 2px; color: var(--ink-500); }

.form-error {
  margin: 0; padding: 14px 18px; border-radius: 12px;
  background: #FBEAE5; border: 1px solid #ECC5B8; color: #8F3D28;
  font-size: .95rem; font-weight: 550;
}

.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form-success { padding: 56px 40px; text-align: center; }
.form-success:hover { transform: none; box-shadow: var(--shadow-sm); }
.success-ico {
  display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 22px;
  border-radius: 50%; color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 8px 24px rgba(49, 170, 57, .35);
}
.success-ico .ico { width: 32px; height: 32px; stroke-width: 2.6; }
.form-success p { margin: 0; color: var(--ink-500); }
.next-steps {
  margin: 22px auto 0; padding: 0 0 0 22px; max-width: 34em; text-align: left;
  color: var(--ink-700); display: grid; gap: 8px; font-weight: 550;
}
.success-boost { margin-top: 22px !important; max-width: 36em; margin-inline: auto; }
.form-success .btn { margin-top: 16px; }
.vcard-link { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--blue-600); text-decoration: underline; text-underline-offset: 3px; }

/* Unterseiten (Impressum / Datenschutz) */
.legal-page { padding: 72px 0 96px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1em; }
.legal-page h2 { font-size: 1.3rem; margin-top: 2em; }
.legal-page .back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: 32px; }
.header-actions--solo { margin-left: auto; }
.form-success--page { display: grid; }
.form-error--page { display: block; }
.mt-18 { margin-top: 18px; }
.hinweis-box {
  background: var(--green-100); border-left: 4px solid var(--green-700);
  border-radius: 0 12px 12px 0; padding: 18px 22px;
}

/* ==========================================================================
   Druckansicht — Gewerbekunden drucken ("dem Chef zeigen")
   ========================================================================== */
@media print {
  .site-header, .mobile-menu, .mobile-cta-bar, .marquee, .marquee-toggle,
  .hero-bg, .anfrage-bg, .section-photo-bg, .chip, .burger, .hero-ctas, .cta-section,
  #anfrage form, .skip-link { display: none !important; }
  .hero, .section--dark, .anfrage-section, .site-footer { background: none !important; color: #000 !important; }
  .hero h1, .on-dark, .anfrage-copy h2, .hero-sub, .anfrage-sub, .anfrage-points li,
  .anfrage-points li strong, .compare-card, .site-footer, .footer-col a, .footer-brand p,
  .anfrage-personal, .anfrage-alt, .anfrage-alt a { color: #000 !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .card { box-shadow: none !important; border: 1px solid #bbb; break-inside: avoid; }
  .section { padding-block: 24px; }
  .accordion details { break-inside: avoid; }
  .accordion details > .acc-body { display: block; }
  main::after {
    content: "SparStromundGas GmbH · +49 176 56768838 · shersad@sparstromundgas.de · sparstromundgas.de";
    display: block; margin-top: 24px; font-weight: 700;
  }
}
