/* ==========================================================================
   Ostsee-Handwerker – Design-System
   Performantes, schlankes Custom-CSS (kein Framework, keine externen Requests)
   Farbwelt: Petrol/Ostsee + Amber (CTA) + Sand | Kontraste geprüft (WCAG AA)
   ========================================================================== */

:root {
  /* Farben */
  --petrol-950: #08202D;
  --petrol-900: #0B2A3A;
  --petrol-800: #0E3549;
  --petrol-700: #10445D;
  --petrol-600: #155B7E;
  --petrol-500: #1C6F97;
  --accent-400: #F4B34C;
  --accent-500: #F0A32F;
  --accent-600: #D98C12;
  --on-accent: #1A2430;
  --sand-50: #FAF7F2;
  --sand-100: #F3EDE2;
  --sea-50: #F0F6F9;
  --sea-100: #E2EEF4;
  --text: #22313C;
  --muted: #566774;
  --line: #DFE8EE;
  --white: #FFFFFF;
  --success: #177A4C;
  --wa: #1DA851;
  --wa-hover: #158C42;

  /* Typografie (System-Fonts: 0 Requests, DSGVO-clean) */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Radien & Schatten */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(11, 42, 58, .08), 0 1px 2px rgba(11, 42, 58, .06);
  --shadow-md: 0 6px 18px rgba(11, 42, 58, .10), 0 2px 6px rgba(11, 42, 58, .07);
  --shadow-lg: 0 18px 44px rgba(11, 42, 58, .16);

  --header-h: 72px;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--petrol-900);
  line-height: 1.22;
  margin: 0 0 .6em;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.95rem, 1.35rem + 2.4vw, 3.05rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 1.22rem + 1.1vw, 2.15rem); font-weight: 750; }
h3 { font-size: 1.22rem; font-weight: 700; }
p  { margin: 0 0 1em; }

a { color: var(--petrol-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--petrol-800); }

ul { padding-left: 1.2em; }

:focus-visible {
  outline: 3px solid var(--accent-500);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Utilities ---------- */
.container { width: min(1160px, 92%); margin-inline: auto; }
.container--narrow { width: min(840px, 92%); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  background: var(--petrol-900);
  color: var(--white);
  padding: .65em 1.1em;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--petrol-600);
  margin-bottom: .7em;
}

.section { padding-block: clamp(3rem, 2rem + 3.5vw, 5.25rem); }
.section--sand { background: var(--sand-50); }
.section--sea  { background: var(--sea-50); }
.section-head { max-width: 760px; margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .78em 1.45em;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent-500); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-600); color: var(--on-accent); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--petrol-700); color: var(--white); }
.btn-dark:hover { background: var(--petrol-800); color: var(--white); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--petrol-700); border-color: var(--petrol-700); }
.btn-ghost:hover { background: var(--sea-50); color: var(--petrol-900); }

.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: var(--wa-hover); color: var(--white); box-shadow: var(--shadow-md); }

.btn-light { background: var(--white); color: var(--petrol-800); }
.btn-light:hover { background: var(--sea-100); color: var(--petrol-900); }

.btn--lg { font-size: 1.08rem; padding: .9em 1.7em; }

/* ---------- Header & Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--petrol-900);
}
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.06rem; font-weight: 800; letter-spacing: -0.01em; }
.brand-text small { font-size: .74rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.site-nav a:not(.btn) {
  display: block;
  padding: .55em .85em;
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.site-nav a:not(.btn):hover { background: var(--sea-50); color: var(--petrol-800); }
.site-nav a[aria-current="page"] { color: var(--petrol-700); background: var(--sea-100); }
.nav-cta { margin-left: .8rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
}
.nav-toggle .bars { display: block; width: 24px; height: 2px; background: var(--petrol-900); border-radius: 2px; position: relative; transition: background .15s ease; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px;
  background: var(--petrol-900); border-radius: 2px; transition: transform .18s ease, top .18s ease;
}
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 919px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1rem 4% 1.4rem;
  }
  body.nav-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .15rem; }
  .site-nav a:not(.btn) { padding: .8em 1em; font-size: 1.05rem; }
  .nav-cta { margin: .8rem 0 0; width: 100%; }
}
@media (min-width: 920px) {
  .site-nav { display: flex !important; align-items: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(28, 111, 151, .55), transparent 60%),
    linear-gradient(150deg, var(--petrol-900) 0%, var(--petrol-800) 55%, var(--petrol-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after { /* dezente Wellenlinie unten */
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0 38c120-30 240-30 360 0s240 30 360 0 240-30 360 0 240 30 360 0v32H0z' fill='%23ffffff'/%3E%3C/svg%3E") bottom / cover no-repeat;
  opacity: .08;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 1rem + 3.5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.2rem, 2rem + 5vw, 6rem);
}
.hero .eyebrow { color: var(--accent-400); }
.hero h1 { color: var(--white); margin-bottom: .55em; }
.hero-lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.24rem); color: #D8E5EC; max-width: 56ch; margin-bottom: 1.6em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.9rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; font-size: .92rem; color: #C4D6E0; }
.hero-note span { display: inline-flex; align-items: center; gap: .45em; }
.hero-note svg { color: var(--accent-400); flex: none; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: clamp(.6rem, 2vw, 1.4rem);
  bottom: clamp(.6rem, 2vw, 1.4rem);
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--white);
  color: var(--text);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: .7rem 1rem;
  font-size: .9rem;
  font-weight: 650;
  max-width: calc(100% - 2rem);
}
.hero-badge svg { color: var(--success); flex: none; }
.hero-badge small { display: block; font-weight: 500; color: var(--muted); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 620px; }
}

/* ---------- Trust-Leiste / USPs ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.usp {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.usp svg { flex: none; color: var(--petrol-600); margin-top: .15rem; }
.usp strong { display: block; color: var(--petrol-900); font-size: .99rem; }
.usp span { font-size: .88rem; color: var(--muted); }
@media (max-width: 980px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usp-grid { grid-template-columns: 1fr; } }

/* ---------- Karten / Leistungs-Grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 1em; }
.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sea-100);
  color: var(--petrol-700);
  margin-bottom: 1rem;
}
.card-link { margin-top: auto; font-weight: 700; font-size: .95rem; text-decoration: none; display: inline-flex; align-items: center; gap: .35em; }
.card-link:hover { text-decoration: underline; }
.card--accent { border-color: var(--accent-500); background: linear-gradient(180deg, #FFF9EF, var(--white) 70%); }
.card--accent .card-icon { background: #FCEED3; color: var(--accent-600); }

/* ---------- Transparenz-Vergleich ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
@media (max-width: 820px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-panel {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.compare-panel--own { border-top: 4px solid var(--success); }
.compare-panel--partner { border-top: 4px solid var(--petrol-600); }
.compare-panel h3 { display: flex; align-items: center; gap: .55em; }
.compare-panel h3 svg { flex: none; }
.compare-panel--own h3 svg { color: var(--success); }
.compare-panel--partner h3 svg { color: var(--petrol-600); }
.compare-panel p { color: var(--muted); font-size: .97rem; }
.check-list, .dot-list { list-style: none; padding: 0; margin: 0 0 1em; }
.check-list li { display: flex; gap: .6em; align-items: flex-start; padding: .32em 0; }
.check-list svg { flex: none; color: var(--success); margin-top: .28em; }

/* ---------- Ablauf / Schritte ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 1.4rem 1.3rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.step-num {
  counter-increment: step;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--petrol-700);
  color: var(--white);
  font-weight: 800;
  margin-bottom: .9rem;
}
.step-num::before { content: counter(step); }
.step h3 { font-size: 1.08rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: .8rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-weight: 700;
  color: var(--petrol-900);
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq-icon { flex: none; color: var(--petrol-600); transition: transform .2s ease; }
.faq details[open] summary .faq-icon { transform: rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq-body { padding: 1rem 1.25rem 1.2rem; color: var(--text); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(140deg, var(--petrol-900), var(--petrol-700));
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 1.4rem + 2.5vw, 3.4rem);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 90% 10%, rgba(240, 163, 47, .18), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #D8E5EC; max-width: 60ch; }
.cta-band .hero-ctas { margin-bottom: 0; }

/* ---------- Kontaktbereich ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); }
.contact-card + .contact-card { margin-top: 1.2rem; }
.contact-card h3 { display: flex; align-items: center; gap: .55em; margin-bottom: .4em; }
.contact-card h3 svg { color: var(--petrol-600); flex: none; }
.contact-card p { color: var(--muted); font-size: .95rem; }
.contact-line { display: flex; align-items: center; gap: .7em; padding: .45em 0; font-weight: 600; }
.contact-line svg { color: var(--petrol-600); flex: none; }
.contact-line a { text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }

.mail-list { list-style: none; padding: 0; margin: .4rem 0 0; }
.mail-list li { display: flex; align-items: baseline; gap: .6em; padding: .35em 0; }
.mail-list .mail-label { flex: none; width: 118px; font-size: .86rem; font-weight: 700; color: var(--petrol-800); }
.mail-list a { font-weight: 600; font-size: .95rem; }

/* ---------- Formular ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.form-grid .form-full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label { display: block; font-weight: 700; font-size: .93rem; margin-bottom: .35em; color: var(--petrol-900); }
.field .req { color: var(--accent-600); }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: .3em; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #C6D4DD;
  border-radius: 10px;
  padding: .72em .9em;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--petrol-600);
  box-shadow: 0 0 0 3px rgba(28, 111, 151, .18);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #B3261E; }

.consent { display: flex; gap: .7em; align-items: flex-start; }
.consent input { margin-top: .35em; width: 18px; height: 18px; flex: none; accent-color: var(--petrol-700); }
.consent label { font-size: .88rem; color: var(--text); font-weight: 500; line-height: 1.5; }
.consent a { font-weight: 600; }

/* Honeypot: unsichtbar für Menschen, sichtbar fuer Bots */
.hp-field {
  position: absolute !important;
  left: -5000px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Breadcrumbs & Seitenkopf ---------- */
.breadcrumbs { padding: 1.1rem 0 0; font-size: .86rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35em; margin: 0; padding: 0; color: var(--muted); }
.breadcrumbs li { display: flex; align-items: center; gap: .35em; }
.breadcrumbs li + li::before { content: "/"; color: #B7C6D0; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--petrol-700); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--petrol-800); font-weight: 600; }

.page-hero {
  background: linear-gradient(150deg, var(--petrol-900), var(--petrol-700));
  color: var(--white);
  padding: clamp(2.4rem, 1.6rem + 3vw, 4.2rem) 0 clamp(2.6rem, 1.8rem + 3vw, 4.4rem);
}
.page-hero h1 { color: var(--white); max-width: 22ch; }
.page-hero p { color: #D8E5EC; max-width: 62ch; font-size: 1.1rem; margin-bottom: 0; }

/* ---------- Prosa-Inhalte (Rechtstexte etc.) ---------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 1.9em; font-size: 1.45rem; }
.prose h3 { margin-top: 1.5em; }
.prose ul { margin-bottom: 1em; }
.prose .update-note { background: var(--sea-50); border-left: 4px solid var(--petrol-600); padding: .9rem 1.1rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: .93rem; }

/* ---------- Info-/Hinweisbox ---------- */
.notice {
  display: flex;
  gap: .9em;
  align-items: flex-start;
  background: #FFF8EA;
  border: 1px solid #F2D9A4;
  border-radius: var(--r-md);
  padding: 1.05rem 1.2rem;
  font-size: .95rem;
}
.notice svg { flex: none; color: var(--accent-600); margin-top: .2em; }
.notice strong { color: var(--petrol-900); }

/* ---------- Servicegebiet ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45em 1em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--petrol-800);
  box-shadow: var(--shadow-sm);
}

/* ---------- Zwei-Spalten Content ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ---------- Stat-Zeile (ehrlich, ohne erfundene Zahlen) ---------- */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 620px) { .value-grid { grid-template-columns: 1fr; } }
.value {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.05rem 1.1rem; box-shadow: var(--shadow-sm);
}
.value svg { flex: none; color: var(--success); margin-top: .2em; }
.value strong { display: block; font-size: .98rem; color: var(--petrol-900); }
.value span { font-size: .88rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--petrol-950);
  color: #B9C9D4;
  margin-top: auto;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-block: clamp(2.4rem, 1.6rem + 2vw, 3.6rem) 2rem;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h2, .site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: .8em; }
.footer-brand { display: flex; align-items: center; gap: .6rem; color: var(--white); font-weight: 800; font-size: 1.05rem; margin-bottom: .9rem; }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.site-footer p { color: #B9C9D4; }
.site-footer a { color: #C9D9E3; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { padding: .28em 0; }
.footer-note { color: #8FA7B5; font-size: .85rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: #8FA7B5;
}

/* ---------- Schwebender WhatsApp-Button ---------- */
.wa-float {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .15s ease, background-color .15s ease;
}
.wa-float:hover { background: var(--wa-hover); transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Danke-Seite ---------- */
.success-hero { text-align: center; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.success-icon {
  width: 84px; height: 84px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: #E5F4EC;
  color: var(--success);
  display: grid; place-items: center;
}
.next-steps { text-align: left; max-width: 620px; margin: 0 auto; }

/* ---------- Scroll-Reveal (respektiert reduced motion) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Kleiner Print-Schnitt ---------- */
@media print {
  .site-header, .site-footer, .wa-float, .hero-ctas, .cta-band, .breadcrumbs { display: none !important; }
  body { font-size: 11pt; color: #000; }
}
