/* =====================================================================
   P&R Gebäudereinigung — "Architektonische Präzision in Blau"
   Konzept-Webseite · erstellt von Cwik Consulting
   Light-Mode, kontrastreiches Blau-System, verzahnte Sektionen.
   Keine Drittanbieter, keine externen Fonts (DSGVO-freundlich).
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --ink:        #011D4D;   /* tiefes Markenblau  */
  --ink-2:      #06245c;   /* leicht aufgehellt  */
  --blue:       #0757B6;   /* Signal-/Akzentblau */
  --blue-700:   #064a9c;
  --blue-300:   #7FB0E8;   /* helles Akzentblau  */
  --paper:      #FEFEFE;   /* Basis Weiß         */
  --mist:       #EFF4FB;   /* zarter Blauschleier*/
  --mist-2:     #E4EDF8;
  --line:       #DEE7F2;   /* feine Rahmen       */
  --line-soft:  #ECF1F8;
  --gray:       #525252;   /* gedämpfter Text    */
  --gray-2:     #6E7888;
  --shadow:     0 14px 40px -18px rgba(1, 29, 77, .35);
  --shadow-sm:  0 6px 20px -12px rgba(1, 29, 77, .40);
  --radius:     16px;
  --radius-sm:  11px;
  --maxw:       1180px;
  --gut:        clamp(20px, 5vw, 56px);

  --sans: "Segoe UI Variable", "Segoe UI", system-ui, -apple-system,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --script: "Segoe Script", "Bradley Hand", "Brush Script MT", "Comic Sans MS", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-700); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-300); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; letter-spacing: -.018em; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.6rem); }
h3 { font-size: 1.22rem; letter-spacing: -.01em; }
p  { color: #2b3a52; }
.muted { color: var(--gray); }

/* ---------- Layout-Helfer ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(56px, 8vw, 96px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--blue); border-radius: 2px;
}
.lead { font-size: 1.12rem; color: #324159; max-width: 60ch; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow { gap: 0; }

/* Akzent-Linie wie im Logo-Schriftzug */
.rule {
  display: inline-block; height: 3px; width: 54px; border-radius: 3px;
  background: linear-gradient(90deg, var(--ink), var(--blue));
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 12px 24px -10px rgba(7, 87, 182, .65);
}
.btn-primary:hover { background: var(--blue-700); color:#fff; transform: translateY(-2px); }
.btn-ghost {
  background: #fff; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--blue-300); color: var(--ink); transform: translateY(-2px); }
.btn-light { background:#fff; color: var(--ink); }
.btn-light:hover { background: var(--mist); color: var(--ink); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color:#fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color:#fff; color:#fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(254,254,254,.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(140%) blur(6px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-stuck { box-shadow: 0 8px 30px -22px rgba(1,29,77,.7); border-color: var(--line-soft); }
.nav { display: flex; align-items: center; gap: 22px; height: 74px; }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand-name { font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); white-space: nowrap; }
.brand-name b { color: var(--blue); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .95rem; white-space: nowrap;
  padding: 9px 12px; border-radius: 9px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--mist); color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); white-space: nowrap; flex: none; }
.nav-phone svg { width: 18px; height: 18px; color: var(--blue); }
.nav-toggle { display: none; }

/* Mobile-Nav */
.nav-burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 11px; padding: 0; place-items: center;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative;
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after  { position: absolute; top: 6px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(90px, 12vw, 150px); }
.hero::before {
  /* technisches Raster im Hintergrund */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 420px at 78% -8%, rgba(7,87,182,.10), transparent 60%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 78%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 70%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 70%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.15rem, 1.2rem + 4.2vw, 3.65rem);
  letter-spacing: -.026em;
}
.hero h1 .hl { color: var(--blue); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .14em;
  background: var(--blue-300); opacity: .45; border-radius: 3px; z-index: -1;
}
.hero-sub { margin-top: 22px; font-size: 1.14rem; color: #2f3f59; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 30px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink); }
.chip svg { width: 19px; height: 19px; color: var(--blue); flex: none; }

/* Hero-Visual: freigestelltes Logo + Skyline-Breakout */
.hero-visual { position: relative; min-height: 380px; }
.hero-card {
  position: relative; z-index: 2;
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; box-shadow: 0 10px 28px -16px rgba(1, 29, 77, .22);
  padding: 30px 30px 26px;
}
.hero-card .logo-emblem {
  width: min(330px, 78%); height: auto; margin: 4px auto 14px; display: block;
  filter: drop-shadow(0 12px 22px rgba(1,29,77,.18));
}
.hero-tagline {
  font-family: var(--script); color: var(--blue); font-size: 1.5rem;
  text-align: center; font-style: italic; line-height: 1.2;
}
.hero-card .divider { height:1px; background: var(--line); margin: 18px 0 16px; }
.hero-assurance {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--ink); font-size: .98rem;
}
.hero-assurance svg { width: 22px; height: 22px; color: var(--blue); flex: none; }
.hero-assurance b { font-weight: 800; }
.hero-badge {
  position: absolute; z-index: 3; right: -14px; top: -18px;
  background: var(--ink); color: #fff; border-radius: 999px;
  padding: 10px 18px; box-shadow: var(--shadow);
  transform: rotate(3deg);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap;
}

/* Wellen-Übergang (Logo-Motiv) als Sektionsverzahnung */
.wave-sep { position: relative; line-height: 0; margin-top: -1px; }
.wave-sep svg { width: 100%; height: clamp(46px, 7vw, 86px); display: block; }
/* dunkles Band mit welligem unteren Abschluss (weiße Welle auf dunklem Grund) */
.wave-sep--dark { background: var(--ink); margin-top: 0; }

/* =====================================================================
   USP / VERTRAUENS-BAND
   ===================================================================== */
.usp { background: var(--ink); color: #fff; position: relative; }
.usp .wrap { padding-block: 40px; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usp-item { display: flex; gap: 14px; align-items: flex-start; }
.usp-item .ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.08); display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14);
}
.usp-item .ic svg { width: 24px; height: 24px; color: var(--blue-300); }
.usp-item b { display: block; font-size: 1.04rem; }
.usp-item p { color: #c4d3ea; font-size: .9rem; margin-top: 2px; }

/* =====================================================================
   LEISTUNGEN
   ===================================================================== */
.sec-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: end; margin-bottom: 40px; }
.sec-head .lead { margin-top: 6px; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.svc {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px 26px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.svc .svc-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--mist); color: var(--blue); margin-bottom: 18px;
  transition: background .2s ease, color .2s ease;
}
.svc:hover .svc-ic { background: var(--blue); color: #fff; }
.svc .svc-ic svg { width: 28px; height: 28px; }
.svc h3 { margin-bottom: 8px; }
.svc p { color: var(--gray); font-size: .95rem; }
.svc ul { margin-top: 14px; display: grid; gap: 7px; }
.svc ul li { position: relative; padding-left: 22px; font-size: .9rem; color: #33425b; }
.svc ul li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 11px; height: 11px;
  background: var(--blue); border-radius: 3px; transform: rotate(45deg); opacity: .85;
}
.services-note {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
  font-size: 1.04rem; color: var(--gray);
}
.services-note strong { color: var(--ink); font-weight: 700; }
.services-note a {
  font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
}
.services-note a svg { width: 16px; height: 16px; }

/* =====================================================================
   SÄULEN  (SAUBER · ZUVERLÄSSIG · PROFESSIONELL)
   ===================================================================== */
.pillars { background: var(--mist); position: relative; }
.pillars-band { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.pillar { padding: 4px 38px; }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { padding-right: 0; }
.pillar + .pillar { border-left: 1px solid var(--line); }
.pillar .pic {
  width: 54px; height: 54px; border-radius: 15px; background: #fff; border: 1px solid var(--line);
  color: var(--blue); display: grid; place-items: center; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.pillar .pic svg { width: 27px; height: 27px; }
.pillar .key {
  display: block; font-size: .8rem; font-weight: 800; letter-spacing: .22em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 8px;
}
.pillar h3 { font-size: 1.32rem; margin-bottom: 10px; }
.pillar p { color: var(--gray); font-size: .96rem; }

/* =====================================================================
   ABLAUF / PROZESS
   ===================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; position: relative; }
.step { position: relative; padding-top: 8px; }
.step .dot {
  width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.25rem; margin-bottom: 16px;
  box-shadow: 0 10px 22px -12px rgba(1,29,77,.8); position: relative; z-index: 2;
}
.process-grid .step:not(:last-child)::after {
  content: ""; position: absolute; left: 54px; top: 35px; right: -18px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-300) 0 8px, transparent 8px 16px);
  z-index: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { font-size: .92rem; color: var(--gray); }

/* =====================================================================
   ZIELGRUPPEN
   ===================================================================== */
.audience { background: var(--mist); }
.aud-list { margin-top: 38px; border-top: 1px solid var(--line); }
.aud-row {
  display: grid; grid-template-columns: 54px 1fr; gap: 24px; align-items: center;
  padding: 24px 6px; border-bottom: 1px solid var(--line);
  transition: padding .2s ease, background .2s ease;
}
.aud-row:hover { background: rgba(255,255,255,.6); padding-left: 18px; padding-right: 18px; }
.aud-row .ic { width: 54px; height: 54px; border-radius: 14px; background: #fff; border: 1px solid var(--line); color: var(--blue); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.aud-row .ic svg { width: 27px; height: 27px; }
.aud-row .txt { display: grid; grid-template-columns: minmax(190px, 250px) 1fr; gap: 4px 28px; align-items: baseline; }
.aud-row b { font-size: 1.22rem; color: var(--ink); letter-spacing: -.01em; }
.aud-row .desc { color: var(--gray); font-size: 1.02rem; }

/* =====================================================================
   ÜBER UNS  (Split mit Breakout-Skyline)
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-media { position: relative; }
.about-panel {
  background: linear-gradient(160deg, var(--ink), var(--blue-700));
  border-radius: 22px; padding: 38px 34px; color: #fff; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.about-panel::before {
  content:""; position:absolute; right:-60px; bottom:-60px; width: 200px; height: 200px; z-index: 0;
  background: radial-gradient(circle, rgba(127,176,232,.28), transparent 68%);
}
.about-panel > * { position: relative; z-index: 1; }
.about-panel .quote {
  font-family: var(--script); font-style: italic; font-size: 1.85rem; line-height: 1.3;
  color: #fff; text-shadow: 0 2px 14px rgba(1,16,44,.55);
}
.about-panel .quote-by { margin-top: 16px; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-300); font-weight: 700; }
.about-mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px; }
.about-mini-stats div { background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 14px 12px; text-align:center; }
.about-mini-stats b { display:block; font-size: 1.35rem; }
.about-mini-stats span { font-size: .72rem; color:#c4d3ea; }
.about-list { margin-top: 24px; display: grid; gap: 14px; }
.about-list li { display:flex; gap: 13px; align-items:flex-start; }
.about-list .ic { flex:none; width: 30px; height:30px; border-radius: 9px; background: var(--mist); color: var(--blue); display:grid; place-items:center; }
.about-list .ic svg { width: 17px; height:17px; }
.about-list b { display:block; }
.about-list p { font-size: .92rem; color: var(--gray); }

/* =====================================================================
   KONTAKT / ANGEBOT
   ===================================================================== */
.contact { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.contact::before {
  content:""; position:absolute; inset:0; opacity:.5;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(80% 80% at 70% 10%, #000, transparent 75%);
          mask-image: radial-gradient(80% 80% at 70% 10%, #000, transparent 75%);
}
.contact .wrap { position: relative; z-index: 2; }
.contact h2 { color: #fff; }
.contact .eyebrow { color: var(--blue-300); }
.contact .eyebrow::before { background: var(--blue-300); }
.contact-lead { color: #c4d3ea; font-size: 1.1rem; margin-top: 12px; max-width: 44ch; }

/* Kontakt-Karten (ohne Formular – wir haben kein Form-Backend) */
.contact-lead-center { margin: 14px auto 0; max-width: 56ch; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 42px; }
.ccard {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px; padding: 28px 28px; color: #fff;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.ccard:hover { transform: translateY(-4px); border-color: var(--blue-300); background: rgba(255,255,255,.1); color: #fff; }
.ccard .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--blue); display: grid; place-items: center; margin-bottom: 16px; }
.ccard .ic svg { width: 24px; height: 24px; color: #fff; }
.ccard .k { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: #9fb4d4; font-weight: 700; margin-bottom: 4px; }
.ccard .v { font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; word-break: break-word; line-height: 1.2; }
.ccard .sub { font-size: .9rem; color: #b4c5de; margin-top: 8px; }
.ccard .arrow { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue-300); font-size: .95rem; }
.ccard .arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.ccard:hover .arrow svg { transform: translateX(4px); }
.contact-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 32px; padding-top: 28px; padding-bottom: 12px; border-top: 1px solid rgba(255,255,255,.12);
}
.contact-foot .area { display: inline-flex; align-items: center; gap: 12px; color: #cdd9ec; font-weight: 600; }
.contact-foot .area svg { width: 20px; height: 20px; color: var(--blue-300); flex: none; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #02153a; color: #c4d3ea; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 34px; padding-block: 56px; }
.footer-wordmark { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 14px; }
.footer-wordmark b { color: var(--blue-300); }
.footer-brand p { color: #9fb4d4; font-size: .93rem; max-width: 34ch; }
.footer h4 { color:#fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a, .footer ul li { color: #b4c5de; font-size: .94rem; }
.footer ul a:hover { color: #fff; }
.footer-contact a { display:flex; gap: 10px; align-items:flex-start; color:#cdd9ec; }
.footer-contact svg { width: 17px; height: 17px; color: var(--blue-300); flex:none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: #8ea4c4; font-size: .85rem; }
.footer-bottom nav { display:flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom nav a { color:#b4c5de; font-size: .85rem; }
.footer-bottom nav a:hover { color:#fff; }
.credit a { color: var(--blue-300); font-weight: 700; }
.credit a:hover { color:#fff; }

/* =====================================================================
   RECHTLICHE SEITEN (Impressum / Datenschutz)
   ===================================================================== */
.legal-hero { background: var(--mist); border-bottom: 1px solid var(--line); }
.legal-hero .wrap { padding-block: clamp(40px, 6vw, 72px); }
.legal-hero a.back { display:inline-flex; align-items:center; gap:8px; font-weight:600; margin-bottom: 14px; }
.legal-hero a.back svg { width:16px; height:16px; }
.legal-body { padding-block: clamp(40px, 6vw, 72px); }
.legal-body .wrap { max-width: 850px; }
.legal-body h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.legal-body p, .legal-body li { color: #33425b; font-size: 1rem; }
.legal-body p { margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; display: grid; gap: 6px; }
.legal-body a { font-weight: 600; word-break: break-word; }
.placeholder {
  background: var(--mist); border: 1px dashed var(--blue-300); color: var(--ink);
  border-radius: 4px; padding: 1px 8px; font-weight: 700; font-size: .92em;
}
.legal-note {
  display:flex; gap: 14px; background: #FFF8E6; border: 1px solid #F2E2B0; border-radius: 12px;
  padding: 16px 18px; margin-bottom: 30px;
}
.legal-note svg { width: 22px; height: 22px; color: #B5891B; flex:none; margin-top: 1px; }
.legal-note p { color: #6b5a1f; font-size: .92rem; margin: 0; }
.legal-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin-inline: auto; min-height: 0; margin-top: 8px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process-grid .step:not(:last-child)::after { display: none; }
  .pillars-band { grid-template-columns: 1fr; }
  .pillar { padding: 0; }
  .pillar + .pillar { border-left: none; border-top: 1px solid var(--line); padding-top: 30px; margin-top: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 1160px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: grid; }
  .site-header.nav-open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px var(--gut); gap: 4px;
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .nav-links a { padding: 12px 14px; }
}
@media (max-width: 760px) {
  /* Hero-Karte auf Mobil entschlacken, damit sie sauber passt */
  .hero-badge { display: none; }
  .hero-card { padding: 22px 20px 20px; border-radius: 18px; }
  .hero-card .logo-emblem { width: min(240px, 64%); margin-top: 0; }
  .hero-tagline { font-size: 1.3rem; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .usp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .ccard .v { font-size: 1.08rem; }
  .aud-row { grid-template-columns: 46px 1fr; gap: 16px; padding: 20px 4px; }
  .aud-row .ic { width: 46px; height: 46px; }
  .aud-row .txt { grid-template-columns: 1fr; gap: 3px; }
  .aud-row b { font-size: 1.1rem; }
  /* kompakter Header auf kleinen Screens: Burger muss immer sichtbar bleiben */
  .nav { gap: 12px; }
  .brand-name { font-size: 1.05rem; }
  .nav-cta .btn-primary { display: none; }
}

/* Ablauf auf Mobil: einspaltige, vertikale Timeline mit gepunkteter Verbindung */
@media (max-width: 620px) {
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .step { display: grid; grid-template-columns: 54px 1fr; gap: 0 20px; padding: 0 0 32px; align-items: start; }
  .step:last-child { padding-bottom: 0; }
  .step .dot { margin-bottom: 0; }
  .step-body { padding-top: 11px; }
  .process-grid .step:not(:last-child)::after {
    content: ""; display: block; position: absolute;
    left: 26px; top: 60px; bottom: -2px; right: auto; width: 2px; height: auto;
    background: repeating-linear-gradient(180deg, var(--blue-300) 0 6px, transparent 6px 12px);
    z-index: 1;
  }
}

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
