/* =============================================
   MS FUSSBODENHEIZUNG — MAIN CSS
   ============================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* === VARIABLES === */
:root {
  --red:        #CC1F1F;
  --red-dark:   #A81818;
  --red-alpha:  rgba(204,31,31,.12);
  --blue:       #1A5DAD;
  --ink:        #1A1A1A;
  --ink2:       #3D3A33;
  --muted:      #6F6A64;   /* 4,83:1 auf --page (WCAG AA); vorher #9A9590 = 2,68:1 */
  --border:     rgba(20,18,14,.1);
  --page:       #F5F3EF;
  --surface:    #EDEAE4;
  --surface2:   #E6E2DA;
  --white:      #FFFFFF;
  --font-d:     'Anton', 'Arial Black', sans-serif;
  --font-b:     'DM Sans', system-ui, sans-serif;
  --r2:         8px;
  --r4:         12px;
  --r8:         18px;
  --shadow-sm:  0 2px 12px rgba(20,18,14,.06);
  --shadow-md:  0 8px 40px rgba(20,18,14,.10);
  --shadow-lg:  0 20px 60px rgba(20,18,14,.14);
  --section-pad: 110px 0;
}

/* === BASE === */
body {
  font-family: var(--font-b);
  background: var(--page);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4 { font-family: var(--font-d); line-height: 1.1; letter-spacing: .03em; text-wrap: balance; }
p { overflow-wrap: break-word; word-wrap: break-word; }
h1 { font-size: clamp(38px, 5.5vw, 72px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p  { font-weight: 300; color: var(--ink2); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media(max-width:767px){ .container { padding: 0 20px; } }

/* =============================================
   NAVIGATION
   ============================================= */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#mainNav.scrolled {
  background: rgba(245,243,239,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 48px;
  box-shadow: 0 1px 0 var(--border);
}

/* Logo */
.nav-logo-wrap { display: flex; align-items: center; text-decoration: none; }
/* Auf dem dunklen Hero läuft das Logo weiß (wie im Footer),
   auf heller Nav (gescrollt / Mobile-Menü offen) wieder farbig. */
#nav-logo {
  height: 48px; width: auto; display: block;
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,.35));
  transition: filter .3s;
}
#mainNav.scrolled #nav-logo,
#mainNav.menu-open #nav-logo { filter: none; }
#footer-logo {
  height: 54px; width: auto; display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) opacity(0.75);
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--red); border-radius: 2px; transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
#mainNav.scrolled .nav-links a { color: var(--ink2); }
#mainNav.scrolled .nav-links a:hover, #mainNav.scrolled .nav-links a.active { color: var(--ink); }

/* Nav CTA */
.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 10px 22px; border-radius: 50px;
  background: var(--red); color: #fff;
  transition: background .3s, transform .2s, box-shadow .3s;
  border: none; cursor: pointer;
}
.nav-cta:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px rgba(204,31,31,.35);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: background .4s, transform .3s, opacity .3s;
}
#mainNav.scrolled .nav-burger span { background: var(--ink); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--page); z-index: 490; padding: 100px 32px 40px;
  flex-direction: column; gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-d); font-size: 32px; letter-spacing: .04em;
  color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--red); }
.nav-mobile .nav-cta-mobile {
  margin-top: 24px; text-align: center; display: block;
  background: var(--red); color: #fff; padding: 16px; border-radius: var(--r4);
  font-family: var(--font-d); font-size: 20px; letter-spacing: .04em;
}

@media(max-width:900px){
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #mainNav { padding: 18px 20px; }
  #mainNav.scrolled { padding: 12px 20px; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px;
  background: var(--red); color: #fff;
  font-family: var(--font-b); font-size: 15px; font-weight: 600;
  transition: background .3s, transform .2s, box-shadow .3s;
  border: none; cursor: pointer; text-decoration: none;
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 28px rgba(204,31,31,.35);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px;
  background: transparent; color: #fff;
  font-family: var(--font-b); font-size: 15px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: border-color .3s, background .3s, transform .2s;
  cursor: pointer; text-decoration: none;
}
.btn-ghost:hover {
  border-color: #fff; background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  background: transparent; color: var(--red);
  font-family: var(--font-b); font-size: 15px; font-weight: 600;
  border: 2px solid var(--red);
  transition: background .3s, color .3s, transform .2s;
  cursor: pointer; text-decoration: none;
}
.btn-outline:hover {
  background: var(--red); color: #fff; transform: translateY(-2px);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal   { opacity:0; transform:translateY(44px);  transition: opacity .8s cubic-bezier(.19,1,.22,1), transform .8s cubic-bezier(.19,1,.22,1); }
.reveal-l { opacity:0; transform:translateX(-50px); transition: opacity .9s cubic-bezier(.19,1,.22,1), transform .9s cubic-bezier(.19,1,.22,1); }
.reveal-r { opacity:0; transform:translateX(50px);  transition: opacity .9s cubic-bezier(.19,1,.22,1), transform .9s cubic-bezier(.19,1,.22,1); }
.reveal-s { opacity:0; transform:scale(.93);        transition: opacity .75s cubic-bezier(.34,1.56,.64,1), transform .75s cubic-bezier(.34,1.56,.64,1); }
.reveal.in-view,.reveal-l.in-view,.reveal-r.in-view,.reveal-s.in-view { opacity:1; transform:none; }
@media(prefers-reduced-motion:reduce){
  .reveal,.reveal-l,.reveal-r,.reveal-s { opacity:1 !important; transform:none !important; transition:none !important; }
}

/* =============================================
   CTA SPLIT SECTION
   ============================================= */
.cta-split-section { background: var(--white); }
.cta-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-split-text { display: flex; flex-direction: column; gap: 20px; }
.cta-split-text h2 { font-size: clamp(28px, 3.5vw, 44px); }
.cta-split-text h2 { position: relative; padding-bottom: 18px; }
.cta-split-text h2::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 64px; height: 3px; background: var(--red); border-radius: 2px;
}
.cta-split-text > p { font-size: 16px; color: var(--ink2); line-height: 1.7; }
.cta-checklist {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.cta-checklist li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--ink);
}
.cta-checklist li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(204,31,31,0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' stroke='%23CC1F1F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4,10 8,14 16,6'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* === ÜBER-UNS: FACHBETRIEB-KARTE === */
.fb-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r8);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.fb-card-media { position: relative; min-height: 360px; background: var(--surface); }
.fb-card-media > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.fb-card-logo {
  position: absolute; bottom: 18px; left: 18px;
  width: 92px; height: auto;
  background: rgba(255,255,255,.92);
  padding: 8px 11px; border-radius: var(--r2);
  box-shadow: var(--shadow-sm);
}
.fb-card-body {
  padding: clamp(28px, 3.6vw, 56px);
  display: flex; flex-direction: column; gap: 18px;
}
.fb-card-title {
  position: relative; padding-bottom: 16px;
  font-size: clamp(26px, 3vw, 40px); color: var(--ink);
}
.fb-card-title span { color: var(--red); }
.fb-card-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 64px; height: 3px; background: var(--red); border-radius: 2px;
}
.fb-card-lead { font-size: 17px; line-height: 1.6; color: var(--ink2); }
.fb-card-lead strong { color: var(--ink); font-weight: 600; }
.fb-card-list { margin: 4px 0 6px; gap: 14px; }
.fb-card-list li { align-items: flex-start; }
.fb-card-list li::before { margin-top: 1px; }
.fb-card-list li span { min-width: 0; }
.fb-card-list li strong { font-weight: 600; }
.fb-card-cta { align-self: flex-start; margin-top: 6px; }
@media (max-width: 860px) {
  .fb-card { grid-template-columns: 1fr; }
  .fb-card-media { min-height: 0; aspect-ratio: 16 / 10; }
  .fb-card-title { font-size: 24px; }
  .fb-card-lead { font-size: 16px; }
}

.cta-split-btns {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px;
}
.cta-split-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; color: var(--ink);
  text-decoration: none; transition: color .2s;
}
.cta-split-phone:hover { color: var(--red); }
.cta-phone-avatar {
  display: none; /* nur Mobile sichtbar */
}
.cta-split-img {
  border-radius: var(--r8); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.cta-split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .cta-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-split-img { display: none; } /* großes Portrait auf Mobile ausblenden */
  .cta-split-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-split-btns .btn-primary { text-align: center; }
  .cta-split-phone {
    background: var(--surface);
    border-radius: var(--r4);
    padding: 13px 18px;
    gap: 12px;
  }
  .cta-phone-avatar {
    display: block;
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 2px solid rgba(204,31,31,0.2);
  }
}

/* Pipe animation overlay */
#pipes-svg {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; display: none;
  overflow: visible;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  /* Platz unten reservieren, damit die Hero-Buttons nicht mit der Trust-Leiste überlappen */
  padding-bottom: 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/leistung-fraesen.webp') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,18,14,.82) 0%,
    rgba(20,18,14,.55) 55%,
    rgba(20,18,14,.18) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 22px;
  max-width: 100%;
  letter-spacing: .14em;
  /* kein flex-wrap: sonst rutscht der Punkt bei umbrechendem Text
     auf eine eigene Zeile ueber den Text */
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.hero-title {
  color: #fff; margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-title span { color: var(--red); }
/* Ortszeile in der H1 (Phase 1: Local SEO) — kleiner als das Keyword, in Weiß */
.hero-title .hero-title-loc {
  display: inline-block; margin-top: 10px;
  font-size: .46em; line-height: 1.2;
  color: rgba(255,255,255,.9);
  letter-spacing: .05em;
}
.hero-hl {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero-hl::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background: var(--red);
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
}
.hero-hl.animate::after {
  animation: hlUnderline 1.4s cubic-bezier(.65,.05,.36,1) forwards;
}
@keyframes hlUnderline {
  to { transform: scaleX(1); }
}
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust strip */
.hero-trust {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(20,18,14,.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: stretch;
}
.trust-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(204,31,31,.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.trust-label { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.trust-sub   { font-size: 11px; color: rgba(255,255,255,.55); }

@media(max-width:767px){
  /* keep absolute positioning — just stack vertically */
  .hero-trust { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 13px 24px; }
  .trust-item:last-child { border-bottom: none; }
  /* extra bottom padding so hero content isn't hidden behind the trust strip */
  #hero { padding-bottom: 320px; }
  .hero-content { padding-top: 60px; }
}

/* =============================================
   SUB-HERO (inner pages)
   ============================================= */
.sub-hero {
  position: relative; padding: 160px 0 80px;
  background: var(--ink); overflow: hidden;
}
.sub-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
.sub-hero-content { position: relative; z-index: 2; }
.sub-hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(30px, 4vw, 50px); }
/* zweite Zeile der Unterseiten-H1 (Claim) — kleiner als die Keyword-Zeile */
.sub-hero h1 .h1-sub {
  display: block; margin-top: 10px;
  font-size: .52em; letter-spacing: .04em;
  color: rgba(255,255,255,.72);
}
.sub-hero p  { color: rgba(255,255,255,.65); font-size: 17px; }
.breadcrumb  {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.breadcrumb span { color: var(--red); }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: var(--section-pad); }
.section-alt { background: var(--surface); }
.section-dark { background: var(--ink); }

.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 560px; font-size: 16px; line-height: 1.75; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* =============================================
   SERVICE SPLIT — 2-Column Premium Layout
   ============================================= */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.svc-split-left {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.svc-split-left h2 {
  margin-top: 4px;
}

.svc-split-left p {
  font-size: 1rem;
  line-height: 1.75;
}

.svc-split-left .btn {
  margin-top: 8px;
}

/* List */
.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.svc-list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  transition: background .2s;
}

.svc-list-item:last-child {
  border-bottom: 1px solid var(--border);
}

.svc-list-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-alpha);
  border-radius: var(--r4);
  margin-top: 2px;
}

.svc-list-icon svg {
  width: 26px;
  height: 26px;
}

.svc-list-body {
  flex: 1;
}

.svc-list-body h3 {
  font-size: clamp(17px, 2vw, 22px);
  margin-bottom: 8px;
  color: var(--ink);
}

.svc-list-body p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ink2);
  margin: 0;
}

@media(max-width: 900px) {
  .svc-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .svc-split-left {
    position: static;
  }
  .svc-list-item {
    padding: 28px 0;
  }
}

/* =============================================
   BENEFITS — GLASSMORPHISM CARDS
   ============================================= */
.section-benefits {
  position: relative;
  background: var(--surface);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.benefit-glass {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(220, 80, 80, 0.10) 0%,
    rgba(255, 255, 255, 0.62) 45%,
    rgba(255, 230, 230, 0.14) 100%
  );
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(204, 31, 31, 0.18);
  border-radius: var(--r8);
  padding: 44px 40px;
  box-shadow:
    0 12px 40px rgba(204, 31, 31, 0.08),
    0 2px 8px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(204, 31, 31, 0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.benefit-glass:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 55px rgba(204, 31, 31, 0.13),
    0 2px 8px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(204, 31, 31, 0.09);
}
.benefit-glass-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(204, 31, 31, 0.1);
  border: 1px solid rgba(204, 31, 31, 0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 22px;
}
.benefit-glass h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 14px;
  color: var(--ink);
}
.benefit-glass p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink2);
  font-weight: 300;
}
/* Flex-Ansatz: justify-content:center zentriert letzte unvollständige Reihe automatisch */
@media (min-width: 901px) {
  .benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
  }
  .benefit-glass {
    flex: 0 1 calc(33.333% - 19px);
  }
}
@media(max-width:900px){
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media(max-width:600px){
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-glass { padding: 32px 24px; }
}

/* =============================================
   PROCESS — Vertikale Timeline
   ============================================= */
.process-timeline {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

/* Vertikale Linie links */
.proc-line-track {
  position: absolute;
  left: 25px; top: 26px; bottom: 26px;
  width: 6px; border-radius: 3px;
  background: rgba(204,31,31,.10);
  z-index: 0;
}
.proc-line-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--red); border-radius: 3px;
}
.proc-line-fill::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px; background: rgba(255,255,255,.42);
}

/* Jede Zeile: Kreis links + Text rechts */
.proc-item {
  display: flex; align-items: flex-start; gap: 28px;
  margin-bottom: 52px; position: relative;
}
.proc-item:last-child { margin-bottom: 0; }

/* Nummerierter Kreis */
.proc-num {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 16px; color: var(--ink2);
  position: relative; z-index: 1;
  transition: background .35s, border-color .35s, color .35s, box-shadow .35s;
}
.proc-item.active .proc-num {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 0 0 7px rgba(204,31,31,.12);
}

/* Text rechts */
.proc-content { padding-top: 11px; }
.proc-content h3 { font-size: 19px; margin-bottom: 8px; }
.proc-content p   { font-size: 14px; color: var(--ink2); line-height: 1.65; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r4); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(204,31,31,.6) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
}

@media(max-width:900px){ .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .gallery-grid { grid-template-columns: 1fr; } }

.gallery-extra { display: none; }

.gallery-more-wrap {
  text-align: center;
  margin-top: 32px;
}
.btn-gallery-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border: 2px solid var(--border);
  border-radius: var(--r4);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-gallery-more:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-alpha);
}
.gallery-btn-arrow {
  display: inline-block;
  transition: transform .35s ease;
  font-size: 18px;
  line-height: 1;
}
.btn-gallery-more.open .gallery-btn-arrow {
  transform: rotate(180deg);
}

/* =============================================
   STATS
   ============================================= */
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border-radius: var(--r8); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-item {
  background: var(--white); text-align: center;
  padding: 48px 24px;
}
.stat-num {
  font-family: var(--font-d); font-size: clamp(40px,5vw,64px);
  color: var(--red); line-height: 1; display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}

@media(max-width:600px){
  .stats-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--red);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 36px; position: relative; }
.cta-banner .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px;
  background: #fff; color: var(--red);
  font-size: 15px; font-weight: 700;
  transition: transform .2s, box-shadow .3s;
  position: relative;
}
.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

/* =============================================
   REVIEWS / BEWERTUNGEN
   ============================================= */
/* ── Reviews Carousel ── */
/* ── Reviews Split Layout ── */
.reviews-section { background: var(--surface); padding: 80px 0 64px; overflow: hidden; }

/* ── Kopf ── */
.reviews-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.reviews-head h2 { margin-bottom: 16px; }
.reviews-head .reviews-score { justify-content: center; margin-bottom: 10px; }
.reviews-head p { font-size: 15px; line-height: 1.65; color: var(--ink2); margin: 0; }

/* ── Durchlaufendes Band ──
   Der Track enthält die Karten zweimal; die Animation schiebt ihn um
   genau die Hälfte, dadurch ist der Übergang unsichtbar. */
.rev-marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.rev-track {
  display: flex; width: max-content; gap: 20px;
  padding: 4px 10px;
  animation: revLauf 90s linear infinite;
}
@keyframes revLauf {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - 10px), 0, 0); }   /* halbe Strecke + halber Gap */
}
.rev-marquee:hover .rev-track,
.rev-marquee:focus-within .rev-track { animation-play-state: paused; }

/* ── Karte im Band ── */
.rev-card {
  flex: 0 0 auto; width: 360px;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 30px rgba(20,18,14,.07);
  border-radius: 22px; padding: 26px 26px 22px;
}
.rev-text {
  font-size: 15px; line-height: 1.7; color: var(--ink2); margin: 0 0 20px;
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.rev-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px;
}
.rev-meta { display: flex; flex-direction: column; gap: 2px; }
.rev-name { font-style: normal; font-weight: 600; font-size: 15px; color: var(--ink); }
.rev-stars { color: #F5A623; font-size: 13px; letter-spacing: 2px; }

@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none; }
  .rev-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}
@media (max-width: 600px) {
  .rev-card { width: 300px; padding: 22px 22px 18px; }
  .rev-track { animation-duration: 70s; }
}

.reviews-cta-row { text-align: center; margin-top: 52px; }

@media (max-width: 960px) {
  .reviews-split { grid-template-columns: 1fr; gap: 40px; }
  .reviews-left h2 br { display: none; }
  .reviews-right { gap: 10px; }
}
@media (max-width: 500px) {
  .rev-arrow { display: none; }
  .rev-card { padding: 28px 22px; }
}

/* ── Reviews Trust Bar (Kontaktseite) ── */
.reviews-trust-bar {
  background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 28px 0;
}
.reviews-trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.rtb-score {
  display: flex; align-items: center; gap: 14px;
}
.rtb-g {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rtb-number { font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1; }
.rtb-stars-row { color: #F5A623; font-size: 15px; letter-spacing: 1px; }
.rtb-label { font-size: 12px; color: var(--muted); margin-top: 2px; }
.rtb-divider { width: 1px; height: 44px; background: var(--border); }
.rtb-quotes { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.rtb-quote {
  background: var(--surface); border-radius: var(--r8);
  padding: 12px 16px; max-width: 240px;
  font-size: 13px; color: var(--ink2); line-height: 1.5;
  border: 1px solid var(--border);
}
.rtb-quote strong { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }
@media (max-width: 700px) {
  .rtb-divider { display: none; }
  .rtb-quotes { display: none; }
}

/* ── Google Button ── */
.stars { color: #F5A623; display: flex; gap: 4px; justify-content: center; margin-bottom: 16px; }
.btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 50px;
  background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 600;
  transition: background .3s, transform .2s;
}
.btn-google:hover { background: var(--ink2); transform: translateY(-2px); }

/* =============================================
   LEISTUNGEN PAGE — DETAIL CARDS
   ============================================= */
.lsv-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 80px;
}
.lsv-detail:nth-child(odd) .lsv-text { order: 1; }
.lsv-detail:nth-child(odd) .lsv-img  { order: 2; }
.lsv-img {
  border-radius: var(--r8); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.lsv-img img { width: 100%; height: 100%; object-fit: cover; }
.lsv-text .section-label { display: block; }
.lsv-text h2 { margin-bottom: 16px; }
.lsv-text p  { margin-bottom: 20px; }
.lsv-bullets { margin-bottom: 28px; }
.lsv-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink2); margin-bottom: 10px;
}
.lsv-bullets li::before {
  content: '✓'; color: var(--red); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

@media(max-width:800px){
  .lsv-detail { grid-template-columns: 1fr; gap: 32px; }
  .lsv-detail:nth-child(odd) .lsv-text { order: 2; }
  .lsv-detail:nth-child(odd) .lsv-img  { order: 1; }
}

/* Vorteile grid */
.vorteile-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.vorteil-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); padding: 28px 24px;
  border-radius: var(--r4); border: 1px solid var(--border);
}
.vorteil-icon {
  width: 46px; height: 46px; border-radius: var(--r2);
  background: var(--red-alpha); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.vorteil-item h3 { font-size: 16px; margin-bottom: 6px; font-family: var(--font-b); font-weight: 700; }
.vorteil-item p  { font-size: 13px; }
@media(max-width:600px){ .vorteile-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left;
  font-family: var(--font-b); font-size: 16px; font-weight: 600;
  color: var(--ink); transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .3s, transform .3s;
}
.faq-item.open .faq-icon { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--ink2); line-height: 1.8;
  transition: max-height .4s ease, padding .4s;
}
.faq-item.open .faq-a { max-height: 480px; padding-bottom: 22px; }

/* =============================================
   ÜBER UNS
   ============================================= */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img {
  border-radius: var(--r8); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-img img { width: 100%; display: block; }
.about-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--red); color: #fff; border-radius: var(--r4);
  padding: 14px 18px; box-shadow: var(--shadow-md);
}
.about-badge .ab-num {
  font-family: var(--font-d); font-size: 28px; display: block; line-height: 1;
}
.about-badge .ab-txt { font-size: 11px; font-weight: 500; letter-spacing: .1em; opacity: .85; }
.about-text .section-label { display: block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.about-vals {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.av-item {
  text-align: center; padding: 22px 14px;
  background: var(--surface); border-radius: var(--r4);
}
.av-icon { margin-bottom: 10px; color: var(--red); display: flex; align-items: center; justify-content: center; }
.av-item h4 { font-size: 14px; letter-spacing: .02em; }

@media(max-width:800px){
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-vals { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .av-item { padding: 18px 8px; aspect-ratio: 1 / 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .av-item h4 { font-size: 12px; }
  .av-icon svg { width: 22px; height: 22px; }
  /* Badge mobil kompakter & in die Karte gerückt */
  .about-badge { bottom: 16px; left: 16px; padding: 10px 14px; }
  .about-badge .ab-num { font-size: 22px; }
  .about-badge .ab-txt { font-size: 10px; }
  .about-img { max-width: 280px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .about-img img { width: 100%; height: 100%; object-fit: cover !important; object-position: center 20%; }
}

/* =============================================
   KONTAKT FORMULAR
   ============================================= */
.contact-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px; align-items: start;
}
.contact-form-wrap {
  background: var(--white); border-radius: var(--r8);
  padding: 44px 48px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r2);
  font-family: var(--font-b); font-size: 14px; color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,31,31,.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  padding: 16px 0 10px; border-top: 1px solid var(--border);
  margin-top: 8px; margin-bottom: 4px;
}
.form-radio-group {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.radio-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r2);
  border: 1.5px solid var(--border); cursor: pointer;
  font-size: 13px; font-weight: 500; transition: border-color .2s, background .2s;
}
.radio-option input { display: none; }
.radio-option.selected,
.radio-option:has(input:checked) {
  border-color: var(--red); background: var(--red-alpha);
}
.form-submit {
  margin-top: 24px; width: 100%; padding: 16px;
  border-radius: var(--r4); background: var(--red); color: #fff;
  font-family: var(--font-b); font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; letter-spacing: .02em;
  transition: background .3s, transform .2s, box-shadow .3s;
}
.form-submit:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,31,31,.3);
}

/* Contact info sidebar */
.contact-info { position: sticky; top: 120px; }
.contact-card {
  background: var(--white); border-radius: var(--r8);
  padding: 36px 30px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.contact-card h3 { font-size: 20px; margin-bottom: 22px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.contact-row:last-child { margin-bottom: 0; }
.ci-icon {
  width: 40px; height: 40px; border-radius: var(--r2);
  background: var(--red-alpha); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.ci-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.ci-val { font-size: 15px; font-weight: 600; color: var(--ink); }
.ci-val a { color: inherit; transition: color .2s; }
.ci-val a:hover { color: var(--red); }

@media(max-width:900px){
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--ink);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr .8fr 1.1fr 1.2fr;
  gap: 44px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
#footer-logo { height: 60px; width: auto; opacity: .9; }
.footer-logo-text {
  margin-top: 14px; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.62); line-height: 1.7; max-width: 280px;
}
.footer-col h3 {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,.6); margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,.6); display:flex; align-items:center; }
.footer-contact-item svg { color: rgba(255,255,255,.5); flex-shrink:0; }
.footer-contact-item a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }

/* ── NAP-Block im Footer (Phase 1: Local SEO) ── */
.footer-contact-item.footer-nap { align-items: flex-start; }
.footer-nap address {
  font-style: normal; font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,.6);
}
.footer-nap address strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* ── Öffnungszeiten im Footer ── */
.footer-contact-item.footer-hours { align-items: flex-start; }
.footer-hours-list { display: flex; flex-direction: column; gap: 2px; }
.footer-hours-list strong {
  font-size: 14px; line-height: 1.55; font-weight: 600;
  color: rgba(255,255,255,.85); margin-bottom: 3px;
}
.footer-hours-list span { gap: 8px; line-height: 1.55; }
.footer-hours-list b {
  font-weight: 400; min-width: 46px;
  color: rgba(255,255,255,.62);
}
/* ── Einsatzgebiet-Spalte im Footer ── */
.footer-orte {
  list-style: none; margin: 0; padding: 0;
  columns: 2; column-gap: 20px;
}
.footer-orte li {
  font-size: 13px; line-height: 1.75;
  color: rgba(255,255,255,.62);
  break-inside: avoid;
}
.footer-orte-more {
  display: inline-block; margin-top: 14px;
  font-size: 13px; font-weight: 600; color: var(--red);
  transition: color .2s;
}
.footer-orte-more:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.58); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,.58);
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-baltify {
  font-size: 11px; color: rgba(255,255,255,.55);
  text-decoration: none; letter-spacing: .04em;
  transition: color .2s;
}
/* baltify im Markenrot: aufgehellt auf #EE5B4A, weil das
   Original-Rot #CC1F1F auf --ink nur 3,1:1 erreicht (AA braucht 4,5) */
.footer-baltify:hover { color: rgba(255,255,255,.6); }
.footer-baltify span { color: #EE5B4A; font-weight: 700; }
.footer-baltify:hover span { color: #FF7A6B; }

/* ===== LEGAL PAGES (Impressum / Datenschutz) ===== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--dark);
  margin: 2.5rem 0 .75rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.5rem 0 .4rem;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul {
  margin: .5rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.legal-content a { color: var(--red); text-decoration: underline; }
.legal-content a:hover { opacity: .8; }

@media(max-width:800px){
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col-area { grid-column: 1 / -1; }
}
@media(max-width:500px){
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* =============================================
   UTILITIES
   ============================================= */
.text-red { color: var(--red); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

/* =============================================
   FUNNEL
   ============================================= */
.funnel-progress-bar-wrap {
  height: 5px; background: var(--border); border-radius: 3px;
  margin-bottom: 10px; overflow: hidden;
}
.funnel-progress-fill {
  height: 100%; background: var(--red); border-radius: 3px;
  transition: width .45s cubic-bezier(.4,0,.2,1);
}
.funnel-step-indicator {
  font-size: 12px; color: var(--muted); letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 32px;
}
.funnel-step-indicator strong { color: var(--red); }

.funnel-step { display: none; }
.funnel-step.active { display: block; animation: fSlideIn .28s ease; }
@keyframes fSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.funnel-step > h3 {
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px; line-height: 1.3;
}
.funnel-sub {
  font-size: 13px; color: var(--muted); margin-bottom: 22px;
}

/* — Bundesland grid — */
.bl-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px;
  margin-bottom: 4px;
}
.bl-btn {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r2); padding: 12px 8px;
  font-size: 12px; font-weight: 500; color: var(--ink2);
  cursor: pointer; transition: all .16s; text-align: center;
  line-height: 1.3; font-family: var(--font-b);
}
.bl-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-alpha); }
.bl-btn.selected { border-color: var(--red); background: var(--red-alpha); color: var(--red); font-weight: 700; }

/* — Icon cards (Gebäudetyp) — */
.icon-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 8px;
}
.icon-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r3); padding: 26px 12px 20px;
  text-align: center; cursor: pointer; transition: all .2s;
}
.icon-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.icon-card.selected { border-color: var(--red); background: var(--red-alpha); }
.ic-icon { margin-bottom: 11px; display: flex; align-items: center; justify-content: center; }
.ic-label { font-size: 12px; font-weight: 600; color: var(--ink2); line-height: 1.35; }
.icon-card.selected .ic-label { color: var(--red); }

/* — Photo cards (Bodenart) — */
.photo-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 8px;
}
.photo-card {
  border: 2px solid var(--border); border-radius: var(--r3);
  overflow: hidden; cursor: pointer; transition: all .2s;
}
.photo-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.photo-card.selected { border-color: var(--red); }
.photo-card.selected .pc-label { background: var(--red); color: #fff; }
.pc-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.pc-unknown {
  width: 100%; aspect-ratio: 4/3; background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--muted);
}
.pc-label {
  padding: 9px 8px; text-align: center; font-size: 11.5px; font-weight: 600;
  color: var(--ink2); background: var(--surface2);
  transition: background .18s, color .18s; line-height: 1.3;
}

/* — Funnel navigation — */
.funnel-nav {
  display: flex; align-items: center; gap: 12px; margin-top: 26px;
}
.funnel-back {
  background: none; border: none; color: var(--muted); font-size: 13px;
  cursor: pointer; padding: 0; transition: color .18s;
  display: flex; align-items: center; gap: 5px; font-family: var(--font-b);
}
.funnel-back:hover { color: var(--ink); }
.funnel-next-btn {
  margin-left: auto; background: var(--red); color: #fff;
  border: none; border-radius: var(--r2); padding: 13px 30px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: opacity .18s; font-family: var(--font-b);
}
.funnel-next-btn:hover { opacity: .87; }

/* — Thank you screen — */
.funnel-thanks { text-align: center; padding: 40px 16px 24px; }
.thanks-check {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(42,122,42,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: #2a7a2a;
}
.funnel-thanks h3 { font-size: 24px; margin-bottom: 10px; }
.funnel-thanks p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 28px; max-width: 400px; margin-left: auto; margin-right: auto; }
.thanks-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* — Responsive — */
@media (max-width: 640px) {
  .bl-grid { grid-template-columns: repeat(3, 1fr); }
  .icon-cards { grid-template-columns: repeat(2, 1fr); }
  .photo-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 28px 22px; }
}

/* ── Partnerbetriebe: Strip (Startseite) + Sektion (Über uns) ── */
.partner-strip {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.partner-strip-label {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  text-align: center; margin: 0 0 14px;
}
.partner-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.partner-item {
  display: flex; align-items: center;
  opacity: .88;
}
.partner-item img {
  height: 64px; width: auto; display: block; object-fit: contain;
}
/* Über uns: größer, ohne Graustufe */
.partner-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.partner-logos-lg { gap: 72px; }
.partner-logos-lg .partner-item { opacity: 1; }
.partner-logos-lg .partner-item img { height: 108px; }
@media (max-width: 600px) {
  .partner-logos    { gap: 34px; }
  .partner-logos-lg { gap: 40px; }
  .partner-item img { height: 52px; }
  .partner-logos-lg .partner-item img { height: 82px; }
}

/* ── Ablauf-Zeile unter dem Kontakt-Formular ── */
.ablauf-strip {
  background: #fff; border-radius: var(--r8, 14px);
  padding: 28px 32px; margin-top: 34px;
  box-shadow: 0 10px 34px rgba(20,18,14,.07);
}
.ablauf-strip h3 {
  font-family: var(--font-d); font-size: 19px;
  margin: 0 0 20px; color: var(--ink);
}
.ablauf-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.ablauf-steps li { display: flex; gap: 13px; align-items: flex-start; }
.ablauf-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 13px;
}
.ablauf-t { font-weight: 600; font-size: 14px; margin-bottom: 3px; color: var(--ink); }
.ablauf-s { font-size: 12.5px; line-height: 1.5; color: var(--muted); }
@media(max-width:900px){ .ablauf-steps { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px){ .ablauf-steps { grid-template-columns: 1fr; gap: 18px; } }

/* ── Inhaber-Trust-Badge (Funnel, Sidebar, Über uns) ── */
.funnel-trust {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 4px;
}
.funnel-trust img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(204,31,31,.25);
}
.funnel-trust .funnel-sub { margin: 0; }
.ci-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(204,31,31,.25);
}
.inhaber-block {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin: 0 auto;
}
.inhaber-block img { margin-bottom: 8px; }
.inhaber-block img {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 3px solid rgba(204,31,31,.25);
}
.inhaber-name {
  font-family: var(--font-d); font-size: 22px;
  color: var(--ink); margin: 0;
}
.inhaber-title {
  font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink2); margin: 0;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.call-float {
  position: fixed; bottom: 98px; right: 28px; z-index: 9000;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(204,31,31,.4);
  text-decoration: none; transition: transform .22s, box-shadow .22s;
}
.call-float:hover {
  transform: scale(1.11) translateY(-2px);
  box-shadow: 0 8px 32px rgba(204,31,31,.55);
  color: #fff;
}

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.45);
  text-decoration: none; transition: transform .22s, box-shadow .22s;
}
.wa-float:hover {
  transform: scale(1.11) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
  color: #fff;
}
.wa-float svg { flex-shrink: 0; }
/* subtle pulse ring */
.wa-float::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,.35);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.9); opacity: .7; }
  70%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* =============================================
   AKTIONS-TOPBAR (über der Navigation)
   ============================================= */
:root { --offer-bar-h: 40px; }

.offer-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  min-height: var(--offer-bar-h);
  background: linear-gradient(90deg, #B81818 0%, #CC1F1F 45%, #E63232 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
  letter-spacing: .01em;
  box-shadow: 0 1px 0 rgba(0,0,0,.15);
  overflow: hidden;
}
.offer-bar[hidden] { display: none !important; }
.offer-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent 0, transparent 60px,
    rgba(255,255,255,.06) 60px, rgba(255,255,255,.06) 120px
  );
  pointer-events: none;
}
.offer-bar-inner {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 6px 24px;
  max-width: 100%;
  white-space: nowrap;
}
.offer-bar-info {
  display: flex; align-items: center; gap: 14px;
}
.offer-bar-action {
  display: flex; align-items: center; gap: 14px;
}
.offer-bar-flame { font-size: 15px; animation: offerFlame 1.6s ease-in-out infinite; }
@keyframes offerFlame {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%      { transform: scale(1.15) rotate(3deg); }
}
.offer-bar-text strong { font-weight: 700; }
.offer-bar-scope {
  font-weight: 400;
  opacity: .82;
  font-size: 12px;
  margin-left: 2px;
}
.offer-bar-divider { opacity: .5; }
.offer-bar-cd {
  display: inline-flex; align-items: center; gap: 4px;
  font-variant-numeric: tabular-nums;
}
.offer-bar-cd .cd-num {
  display: inline-block; min-width: 22px; text-align: center;
  font-weight: 700; font-size: 13px;
  background: rgba(0,0,0,.22);
  border-radius: 4px; padding: 2px 4px;
  margin-left: 2px;
}
.offer-bar-cd .cd-unit { opacity: .75; font-size: 11px; margin-right: 4px; }
.offer-bar-cta {
  background: #fff; color: var(--red);
  font-weight: 700; font-size: 12px;
  padding: 6px 14px; border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  margin-left: 6px;
}
.offer-bar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

/* Nav nach unten verschieben, wenn Topbar aktiv */
body.has-offer-bar #mainNav         { top: var(--offer-bar-h); }
body.has-offer-bar .nav-mobile      { top: var(--offer-bar-h); }
/* Hero-Content runter, damit Offer-Card unter Nav+Bar sitzt */
body.has-offer-bar .hero-content    { padding-top: calc(80px + var(--offer-bar-h)); }

@media(max-width: 900px){
  :root { --offer-bar-h: 64px; }
  .offer-bar { font-size: 12px; }
  .offer-bar-inner {
    flex-direction: column;
    gap: 4px;
    padding: 7px 12px;
    white-space: normal;
  }
  .offer-bar-info {
    gap: 8px;
    justify-content: center;
  }
  .offer-bar-action {
    gap: 10px;
    justify-content: center;
  }
  .offer-bar-divider { display: none; }
  .offer-bar-scope { display: none; }
  .offer-bar-cd .cd-num { min-width: 20px; padding: 1px 3px; font-size: 11px; }
  .offer-bar-cd .cd-unit { font-size: 9px; margin: 0 3px 0 1px; }
  .offer-bar-cta { padding: 4px 14px; font-size: 11px; }
}
@media(max-width: 767px){
  body.has-offer-bar .hero-content { padding-top: calc(60px + var(--offer-bar-h)); }
}
@media(max-width: 520px){
  .offer-bar { font-size: 11px; line-height: 1.35; }
  .offer-bar-flame { font-size: 13px; }
  .offer-bar-inner { gap: 3px; padding: 6px 8px; }
  .offer-bar-info { gap: 6px; }
  .offer-bar-action { gap: 8px; }
  .offer-bar-cd .cd-num { min-width: 17px; padding: 1px 3px; font-size: 10px; }
  .offer-bar-cd .cd-unit { font-size: 8px; margin: 0 2px 0 1px; }
  .offer-bar-cta { padding: 4px 12px; font-size: 10px; }
}

/* =============================================
   AKTIONS-CARD im Hero
   ============================================= */
.offer-card {
  display: block;
  position: relative;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(204,31,31,.92) 0%, rgba(184,24,24,.92) 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 10px 32px rgba(204,31,31,.32),
    0 2px 0 rgba(255,255,255,.08) inset;
  text-decoration: none; color: #fff;
  max-width: 380px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer-card[hidden] { display: none !important; }
.offer-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.22), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0,0,0,.20), transparent 55%);
  pointer-events: none;
}
.offer-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 50px rgba(204,31,31,.45),
    0 2px 0 rgba(255,255,255,.12) inset;
}
.offer-card-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 10px;
  position: relative;
}
.offer-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 9px; border-radius: 50px;
}
.offer-card-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.6);
  animation: offerPulse 1.6s ease-out infinite;
}
@keyframes offerPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.offer-card-price {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.92);
}
.offer-card-price strong {
  font-family: var(--font-d, 'Anton'), sans-serif;
  font-size: 21px; font-weight: 400;
  letter-spacing: .02em;
  color: #fff;
  display: inline-block;
  vertical-align: -1px;
}
.offer-card-scope {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 10px;
}
.offer-scope-item {
  font-size: 10px; font-weight: 600;
  letter-spacing: .04em;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  padding: 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
}
.offer-card-cd {
  position: relative;
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.offer-card-cd-label {
  font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-right: 3px;
}
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 4px 6px;
  min-width: 38px;
}
.cd-val {
  font-family: var(--font-d, 'Anton'), sans-serif;
  font-size: 17px; line-height: 1;
  color: #fff;
}
.cd-lbl {
  font-size: 8px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 3px;
}
.cd-sep {
  font-family: var(--font-d, 'Anton'), sans-serif;
  font-size: 16px; color: rgba(255,255,255,.45);
  align-self: flex-start; padding-top: 3px;
}
.offer-card-cta {
  position: relative;
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 50px;
  background: #fff; color: var(--red);
  transition: background .25s, color .25s;
}
.offer-card:hover .offer-card-cta {
  background: var(--ink);
  color: #fff;
}

@media(max-width: 520px){
  .offer-card { padding: 10px 13px; max-width: 100%; }
  .offer-card-top { margin-bottom: 8px; }
  .offer-card-price { font-size: 13px; }
  .offer-card-price strong { font-size: 18px; }
  .offer-scope-item { font-size: 9px; padding: 2px 7px; }
  .cd-block { min-width: 34px; padding: 4px 5px; }
  .cd-val { font-size: 15px; }
  .cd-lbl { font-size: 7px; }
  .offer-card-cta { font-size: 10px; padding: 6px 12px; }
}

/* =============================================
   AKTIONS-REMINDER (Kontakt-Funnel)
   ============================================= */
.offer-reminder {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 22px;
  padding: 14px 20px 14px 16px;
  background: rgba(255,255,255,.97);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
  max-width: 100%;
}
.offer-reminder[hidden] { display: none !important; }
.offer-reminder-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(204,31,31,.12); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.offer-reminder-title {
  font-size: 14px; font-weight: 700; color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: .01em;
}
.offer-reminder-sub {
  font-size: 13px; color: var(--ink2, #555);
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}
.offer-reminder-sub strong { color: var(--red); font-weight: 700; }
.offer-reminder-cd {
  font-weight: 600; color: var(--ink);
  margin-left: 2px;
  white-space: nowrap;
}

@media(max-width: 520px){
  .offer-reminder { padding: 12px 14px; gap: 10px; }
  .offer-reminder-icon { width: 30px; height: 30px; }
  .offer-reminder-icon svg { width: 16px; height: 16px; }
  .offer-reminder-title { font-size: 13px; }
  .offer-reminder-sub { font-size: 11.5px; }
}

/* =============================================
   A11Y-HELPER
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   FRÄSEN STATT ABRISS — Kontrast-Band (Startseite)
   ============================================= */
.myth-section { padding: 88px 0; }
.myth-section .section-header { margin-bottom: 44px; }

.myth-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}

.myth-card {
  border-radius: var(--r8);
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.myth-card p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
.myth-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Links: die Annahme */
.myth-card-fear {
  background: rgba(20,18,14,.045);
  border: 1px solid var(--border);
}
.myth-card-fear .myth-tag { color: var(--muted); }
.myth-card-fear p { color: var(--ink2); }

/* Rechts: die Realität */
.myth-card-fact {
  background: linear-gradient(
    135deg,
    rgba(220, 80, 80, 0.10) 0%,
    rgba(255, 255, 255, 0.72) 45%,
    rgba(255, 230, 230, 0.16) 100%
  );
  border: 1px solid rgba(204, 31, 31, 0.20);
  box-shadow:
    0 12px 40px rgba(204, 31, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.myth-card-fact .myth-tag { color: var(--red); }
.myth-card-fact p { color: var(--ink); font-weight: 400; }

.myth-arrow {
  align-self: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(204,31,31,.28);
}

@media(max-width:860px){
  .myth-section { padding: 64px 0; }
  .myth-section .section-header { margin-bottom: 34px; }
  .myth-grid { grid-template-columns: 1fr; gap: 16px; max-width: 520px; }
  .myth-card { padding: 30px 24px; }
  .myth-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* =============================================
   VERGLEICH — Neuaufbau vs. Einfräsen (Leistungen)
   ============================================= */
.compare-section .section-header p { text-wrap: balance; }
.compare-wrap {
  max-width: 940px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r8);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th,
.compare-table td {
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

.compare-table thead th {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--ink);
  background: var(--surface);
  padding-top: 22px;
  padding-bottom: 22px;
}
.compare-table thead .compare-th-new {
  background: rgba(204,31,31,.09);
  color: var(--red);
}
.compare-table tbody th {
  font-family: var(--font-b);
  font-weight: 600;
  color: var(--ink);
  width: 26%;
  background: rgba(20,18,14,.022);
}
.compare-table tbody td { color: var(--ink2); font-weight: 300; }
.compare-table tbody .compare-col-new {
  color: var(--ink);
  font-weight: 500;
  background: rgba(204,31,31,.035);
}

/* Mobil: Tabelle wird zu gestapelten Karten */
@media(max-width:720px){
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td { display: block; }
  .compare-table thead { display: none; }
  .compare-table {
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .compare-table tbody tr {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r4);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .compare-table tbody th {
    width: auto;
    font-family: var(--font-d);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .03em;
    background: var(--surface);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
  }
  .compare-table tbody td {
    padding: 14px 20px 16px;
    border-bottom: 1px solid var(--border);
  }
  .compare-table tbody tr td:last-child { border-bottom: 0; }
  .compare-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
  }
  .compare-table tbody .compare-col-new::before { color: var(--red); }
}

/* ═══════════════════════════════════════════════
   EINZUGSGEBIET (Phase 2 — Local SEO)
   ═══════════════════════════════════════════════ */
#einzugsgebiet { text-align: center; }
#einzugsgebiet h2 { margin-bottom: 26px; }
#einzugsgebiet .area-count { color: var(--red); }

.area-intro {
  max-width: 66ch; margin: 0 auto 18px;
  font-size: 16px; line-height: 1.75; color: var(--ink2);
  text-align: center; text-wrap: pretty;
}
.area-intro strong { color: var(--ink); font-weight: 600; }

.area-cards {
  margin-top: 46px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; text-align: left;
}
.area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r8);
  padding: 26px 28px 24px;
}
.area-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.area-card-head h3 {
  font-family: var(--font-b);
  font-size: 15px; font-weight: 700; letter-spacing: .01em;
  color: var(--ink); margin: 0; line-height: 1.3;
}
.area-card-note {
  font-size: 12px; color: var(--muted); white-space: nowrap;
}
.area-list {
  list-style: none; margin: 0; padding: 0;
  columns: 2; column-gap: 24px;
}
.area-list li {
  font-size: 14.5px; line-height: 2.05;
  color: var(--ink2); break-inside: avoid;
}
.area-list li.is-home {
  font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.area-list li.is-home span {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--red);
  padding: 2px 7px; border-radius: 4px;
}

.area-note {
  margin-top: 34px; font-size: 15px; color: var(--ink2);
}
.area-note a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.area-note a:hover { color: var(--red-dark); }

@media (max-width: 900px) {
  .area-cards { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 640px) {
  .area-intro { font-size: 15px; }
  .area-cards { margin-top: 34px; }
  .area-card { padding: 22px 20px 20px; }
  .area-card-head { flex-direction: column; gap: 3px; align-items: flex-start; }
  .area-list li { font-size: 14px; line-height: 1.95; }
}

/* Footer: der 4-spaltige Aufbau braucht Platz — auf mittleren Breiten früher umbrechen */
@media (max-width: 1080px) and (min-width: 801px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 36px; }
  .footer-col-area { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); }
  .footer-orte { columns: 4; }
}
@media (max-width: 800px) {
  .footer-orte { columns: 3; }
}
@media (max-width: 520px) {
  .footer-orte { columns: 2; }
}

/* ── 404 ── */
.nf-wrap { text-align: center; max-width: 640px; }
.nf-text { font-size: 17px; line-height: 1.75; color: var(--ink2); margin-bottom: 28px; }
.nf-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 30px; }
.nf-phone { font-size: 15px; color: var(--muted); }
.nf-phone a { color: var(--red); font-weight: 600; }

/* ═══════════════════════════════════════════════
   BARRIEREFREIHEIT (Phase 1b)
   ═══════════════════════════════════════════════ */

/* Skip-Link: nur sichtbar, wenn er den Fokus hat */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--red); color: #fff;
  padding: 12px 22px; border-radius: 0 0 var(--r4) var(--r4);
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: top .18s ease-out;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: -6px; }

/* Sichtbarer Fokus für Tastaturbedienung (vorher gab es keine einzige Regel) */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
.hero-btns a:focus-visible,
.btn-primary:focus-visible,
.nav-cta:focus-visible {
  outline-color: #fff; outline-offset: 4px;
}
#footer a:focus-visible,
.sub-hero a:focus-visible,
#hero a:focus-visible {
  outline-color: #fff;
}

/* Cookie-Einstellungen im Footer (DSGVO-Widerruf) */
.footer-consent-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-b); font-size: inherit;
  color: rgba(255,255,255,.58); transition: color .2s;
}
.footer-consent-btn:hover { color: #fff; }

/* ── Bewertungs-Score (Phase 2) ── */
.reviews-score {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
  margin: 4px 0 12px;
}
.reviews-score-stars { color: #F5A623; font-size: 26px; letter-spacing: 3px; }
.reviews-score-count { font-size: 15px; color: var(--ink2); font-weight: 600; }

/* Bewertung im Hero */
.hero-rating {
  margin: 20px 0 0; font-size: 15px;
  color: rgba(255,255,255,.92);
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero-rating-stars { color: #FFC24D; letter-spacing: 2px; font-size: 15px; }
.hero-rating strong { font-weight: 700; }
.hero-rating a {
  color: rgba(255,255,255,.92);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.45);
  transition: text-decoration-color .2s;
}
.hero-rating a:hover { text-decoration-color: #fff; }
.reviews-profil-link { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* Karten ohne JS: alle sichtbar untereinander statt gestapelt */
.reviews-card-outer .rev-card[hidden] { display: none; }

/* FAQ-Abbinder auf der Startseite */
.faq-more {
  margin-top: 26px; text-align: center;
  font-size: 15px; color: var(--ink2);
}
.faq-more a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq-more a:hover { color: var(--red-dark); }

/* ═══════════════════════════════════════════════
   FUNNEL — Phase 4
   ═══════════════════════════════════════════════ */

/* Schritt 1: PLZ + Ort */
.funnel-grid-2 {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px;
}
.funnel-field label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink2); margin-bottom: 7px;
}
.funnel-field label span { color: var(--red); }
.funnel-field input {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: var(--r4);
  font-family: var(--font-b); font-size: 16px; color: var(--ink);
  background: #fff; transition: border-color .2s;
}
.funnel-field input:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-alpha);
}

/* Fehlermeldung im Funnel */
.funnel-error {
  margin: 14px 0 0; padding: 11px 14px;
  background: var(--red-alpha); border-left: 3px solid var(--red);
  border-radius: 0 var(--r4) var(--r4) 0;
  font-size: 14px; line-height: 1.55; color: var(--red-dark);
}
.funnel-error:empty { display: none; }

/* Weiter-Button (Schritt 1 und 2 hatten keinen) */
.funnel-next {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px; border: 0;
  background: var(--red); color: #fff;
  font-family: var(--font-b); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .25s, transform .2s;
}
.funnel-next:hover { background: var(--red-dark); transform: translateY(-1px); }
.funnel-nav-end { display: flex; justify-content: flex-end; margin-top: 22px; }

/* Auswahlkarten: sichtbarer Zustand für Tastaturnutzer */
.icon-card, .photo-card { cursor: pointer; }
.icon-card:focus-visible, .photo-card:focus-visible {
  outline: 3px solid var(--red); outline-offset: 3px;
}

/* WhatsApp als gleichwertiger Weg neben dem Formular */
.funnel-alt {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 10px;
  font-size: 15px; color: var(--ink2);
}
.funnel-alt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  background: #075E54; color: #fff; font-weight: 600; font-size: 15px;
  transition: filter .2s, transform .2s;
}
.funnel-alt-btn:hover { filter: brightness(.93); transform: translateY(-1px); }

@media (max-width: 560px) {
  .funnel-grid-2 { grid-template-columns: 1fr; }
  .funnel-alt { flex-direction: column; gap: 12px; }
}

/* ── Fliesen & Naturstein (Leistungen) ── */
.fn-split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.fn-text h2 { margin-bottom: 20px; }
.fn-text p { font-size: 16px; line-height: 1.8; color: var(--ink2); margin-bottom: 16px; }
.fn-text p strong { color: var(--ink); }
.fn-bullets { list-style: none; margin: 24px 0 28px; padding: 0; }
.fn-bullets li {
  position: relative; padding-left: 28px; margin-bottom: 11px;
  font-size: 15.5px; line-height: 1.6; color: var(--ink2);
}
.fn-bullets li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--red); font-weight: 700;
}
.fn-img img {
  width: 100%; height: auto; border-radius: var(--r8);
  display: block; box-shadow: 0 18px 50px rgba(20,18,14,.13);
}
@media (max-width: 900px) {
  .fn-split { grid-template-columns: 1fr; gap: 34px; }
  .fn-img { order: -1; }
}

/* ═══════════════════════════════════════════════
   HERO auf großen Bildschirmen
   Container (1200px) und Textblock (640px) ließen bei breiten
   Monitoren rechts fast die halbe Fläche ungenutzt. Ab 1400px
   bekommt der Hero deshalb mehr Breite und eine größere Headline.
   ═══════════════════════════════════════════════ */
/* #hero ist ein Flex-Container — ohne width:100% schrumpft der .container
   auf Inhaltsbreite und margin:auto zentriert ihn. Genau das ließ den
   Textblock auf breiten Monitoren mittig „schweben". */
#hero .container { width: 100%; }

/* Die längste Zeile ist "nachträglich einfräsen." — sie misst rund das
   10,1-fache der Schriftgröße. Der Textblock muss also breiter sein als
   font-size × 10,1, sonst bricht die Zeile ungewollt um. Deshalb wachsen
   Schriftgröße und Blockbreite hier gemeinsam. */
@media (min-width: 901px) and (max-width: 1399px) {
  .hero-content { max-width: 800px; }
  .hero-title   { font-size: clamp(50px, 5.1vw, 76px); }   /* 76 × 10,1 = 768 < 800 */
}

@media (min-width: 1400px) {
  #hero .container { max-width: 1560px; padding-left: 72px; padding-right: 72px; }
  .hero-content    { max-width: 1020px; }
  .hero-title      { font-size: clamp(72px, 5.4vw, 94px); }   /* 94 × 10,1 = 950 < 1020 */
  .hero-sub        { font-size: 19px; max-width: 40em; }
  .hero-btns       { margin-top: 34px; }
}

@media (min-width: 1800px) {
  #hero .container { max-width: 1780px; padding-left: 90px; padding-right: 90px; }
  .hero-content    { max-width: 1120px; }
  .hero-title      { font-size: 104px; }                       /* 104 × 10,1 = 1046 < 1120 */
  .hero-sub        { font-size: 20px; }
}

/* Trust-Leiste unter dem Hero: gleiche Innenkante wie der Hero-Text */
@media (min-width: 1400px) {
  .hero-trust { padding-left: 72px; padding-right: 72px; }
}
@media (min-width: 1800px) {
  .hero-trust { padding-left: 90px; padding-right: 90px; }
}

/* ── Belegbare Projekte (zwei Referenzen mit Ort und Eckdaten) ── */
.projekt-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 34px;
}
.projekt-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r8); overflow: hidden;
  display: flex; flex-direction: column;
}
.projekt-card img {
  width: 100%; height: auto; /* height-Attribut neutralisieren, sonst greift aspect-ratio nicht */
  aspect-ratio: 4/3; object-fit: cover; display: block;
}
@media (max-width: 700px) {
  .projekt-card img { aspect-ratio: 16/10; } /* mobil flacher, Karte bleibt kompakt */
}
.projekt-body { padding: 18px 22px 20px; }
.projekt-body h3 {
  font-family: var(--font-b); font-size: 17px; font-weight: 700;
  color: var(--ink); margin: 0 0 10px; letter-spacing: .01em;
}
.projekt-fakten {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 24px;
}
.projekt-fakten li { font-size: 14px; color: var(--muted); }
.projekt-fakten span {
  display: block; font-family: var(--font-d);
  font-size: 22px; color: var(--red); line-height: 1.15;
}
@media (max-width: 700px) {
  .projekt-cards { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Float-Buttons mobil: kompakter, Hero-Rating weicht aus ── */
@media(max-width:700px){
  .call-float { width: 52px; height: 52px; bottom: 84px; right: 14px; }
  .wa-float   { width: 52px; height: 52px; bottom: 20px; right: 14px; }
  .hero-rating { max-width: calc(100% - 78px); }
}
