/* ==========================================================================
   Objektservice Stein — Design System
   Farbwelt aus dem Logo: Azurblau (Haus/Wortmarke), Stahlgrau, Tiefschwarzblau
   ========================================================================== */

:root {
  /* Marke */
  --brand:        #00A4DF;
  --brand-light:  #3CC4F5;
  --brand-dark:   #0083B4;
  --brand-deep:   #00688F;
  --steel:        #8A9099;

  /* Flaechen */
  --ink:          #0B1220;
  --ink-soft:     #131C2C;
  --ink-line:     #22304a;
  --bg:           #ffffff;
  --bg-alt:       #f4f7fa;
  --bg-tint:      #eaf5fc;

  /* Text */
  --text:         #16202c;
  --muted:        #566371;
  --line:         #e3e8ef;

  /* Struktur */
  --wrap:         1200px;
  --header-h:     100px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --radius:       14px;
  --radius-lg:    22px;
  --shadow-sm:    0 1px 2px rgba(11,18,32,.06), 0 2px 8px rgba(11,18,32,.05);
  --shadow-md:    0 4px 12px rgba(11,18,32,.07), 0 16px 40px rgba(11,18,32,.08);
  --shadow-lg:    0 10px 30px rgba(11,18,32,.10), 0 30px 70px rgba(11,18,32,.12);

  /* Typografie */
  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --ease:         cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-dark); }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display); line-height: 1.15; letter-spacing: -.02em;
  font-weight: 700; color: var(--ink); text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { text-wrap: pretty; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.25rem; border-radius: 0 0 10px 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

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

/* -------------------------------------------------------------- Layout -- */
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--narrow { width: min(760px, 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --------------------------------------------------------- Textbausteine -- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--brand-dark);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-light), var(--brand-dark));
}
.eyebrow--light { color: var(--brand-light); }

.lead { font-size: clamp(1.06rem, 1.6vw, 1.22rem); color: var(--muted); line-height: 1.65; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2.4em; }
.prose h3 { margin-top: 1.8em; font-size: 1.25rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.15rem; }
.prose li + li { margin-top: .5rem; }
.prose strong { color: var(--ink); font-weight: 600; }

/* -------------------------------------------------------------- Buttons -- */
.btn {
  --btn-bg: var(--brand); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border: 0; border-radius: 100px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: .97rem; line-height: 1;
  background: var(--btn-bg); color: var(--btn-fg); text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  box-shadow: 0 6px 18px rgba(0,164,223,.28);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,164,223,.36); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brand); background: var(--bg-tint); }

.btn--on-dark {
  --btn-bg: rgba(255,255,255,.08); --btn-fg: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); backdrop-filter: blur(6px);
}
.btn--on-dark:hover { background: rgba(255,255,255,.16); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.02rem; }

/* --------------------------------------------------------------- Header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(11,18,32,.06); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; color: var(--ink); }
.brand img { width: 168px; height: auto; }

.nav { margin-left: auto; }
.nav > ul { display: flex; align-items: center; gap: .35rem; list-style: none; padding: 0; margin: 0; }
.nav a {
  display: block; padding: .6rem .85rem; border-radius: 9px; text-decoration: none;
  font-weight: 500; font-size: .96rem; color: var(--text);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav a:hover, .nav a:focus-visible { background: var(--bg-tint); color: var(--brand-deep); }
.nav a[aria-current="page"], .nav .is-active > a { color: var(--brand-deep); font-weight: 600; }

.has-sub { position: relative; }
.has-sub > a::after {
  content: ""; display: inline-block; width: .42em; height: .42em; margin-left: .45em;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); opacity: .55;
}
.subnav {
  position: absolute; top: calc(100% + .4rem); left: 0; min-width: 290px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { padding: .58rem .8rem; font-size: .93rem; }

.header-cta { display: flex; align-items: center; gap: .75rem; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .95rem;
  padding: .55rem .85rem; border-radius: 100px;
}
.header-phone:hover { background: var(--bg-tint); color: var(--brand-deep); }
.header-phone svg { width: 17px; height: 17px; color: var(--brand); }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

@media (max-width: 1080px) {
  .brand img { width: 146px; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: 78px 0 0; background: #fff; margin: 0;
    padding: 1.25rem var(--gutter) 3rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .32s var(--ease);
    border-top: 1px solid var(--line);
  }
  .nav.is-open { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav > ul > li > a { font-size: 1.08rem; font-family: var(--font-display); font-weight: 600; padding: .8rem .5rem; }
  .has-sub > a::after { float: right; margin-top: .45em; }
  .subnav {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--line); border-radius: 0;
    margin: 0 0 .5rem .5rem; padding: 0 0 0 .6rem; display: none;
  }
  .has-sub.is-open .subnav { display: block; }
  .nav-mobile-cta { margin-top: 1.5rem; display: grid; gap: .7rem; }
}
@media (min-width: 1081px) { .nav-mobile-cta { display: none; } }

/* ----------------------------------------------------------------- Hero -- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 12% 20%, rgba(11,18,32,.94) 0%, rgba(11,18,32,.72) 42%, rgba(11,18,32,.35) 100%),
    linear-gradient(180deg, rgba(11,18,32,.72) 0%, rgba(11,18,32,.28) 45%, rgba(11,18,32,.9) 100%);
}
.hero-inner { padding-block: clamp(4.5rem, 12vw, 8.5rem); max-width: 44rem; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--brand-light); }
.hero .lead { color: rgba(255,255,255,.82); margin-top: 1.35rem; font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin-top: 2.6rem; padding: 0; list-style: none; }
.hero-badges li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .93rem; color: rgba(255,255,255,.8); font-weight: 500;
}
.hero-badges svg { width: 18px; height: 18px; color: var(--brand-light); flex: none; }

/* Signatur: Schwungkante am Hero-Fuss (Anlehnung an den Logo-Schwung) */
.hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; pointer-events: none; }
.hero-curve svg { width: 100%; height: clamp(38px, 5vw, 70px); display: block; }

/* Kompakter Seitenkopf fuer Unterseiten */
.pagehead { position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.pagehead-media { position: absolute; inset: 0; z-index: -2; }
.pagehead-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.pagehead::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(115% 105% at 6% 35%, rgba(11,18,32,.94), rgba(11,18,32,.62) 58%, rgba(11,18,32,.3)),
    linear-gradient(180deg, rgba(11,18,32,.74), rgba(11,18,32,.6));
}
.pagehead-inner { padding-block: clamp(2.8rem, 7vw, 5rem); max-width: 50rem; }
.pagehead h1 { color: #fff; margin-top: .3rem; }
.pagehead .lead { color: rgba(255,255,255,.8); margin-top: 1.1rem; }

/* ---------------------------------------------------------- Breadcrumbs -- */
.breadcrumbs { padding-top: 1.4rem; font-size: .86rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .3rem .55rem; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.62); }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: rgba(255,255,255,.3); }
.breadcrumbs a { color: rgba(255,255,255,.78); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------------------------------------------------------------- Cards -- */
.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.75rem; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-light), var(--brand-dark));
  transition: width .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d6dfea; }
.card:hover::before { width: 100%; }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .98rem; }

.card-link { text-decoration: none; color: inherit; display: block; }
.card-link:hover { color: inherit; }
.card-more {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--brand-dark);
}
.card-more svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.card-link:hover .card-more svg { transform: translateX(4px); }

.card-icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--bg-tint), #dcf0fb);
  color: var(--brand-dark); margin-bottom: 1.15rem;
}
.card-icon svg { width: 26px; height: 26px; }

/* Leistungskarte mit Bild */
.svc-card { padding: 0; }
.svc-card .svc-media { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-alt); }
.svc-card .svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-card .svc-body { padding: 1.6rem 1.6rem 1.75rem; }

/* Bildlose Karte: Markengrafik statt Foto */
.svc-media--pattern { position: relative; display: grid; place-items: center; background: linear-gradient(135deg, #0e2033, #123a55); }
.svc-media--pattern svg.pat-icon { width: 62px; height: 62px; color: rgba(255,255,255,.92); position: relative; z-index: 1; }
.svc-media--pattern::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 85% 15%, rgba(60,196,245,.35), transparent 60%),
    repeating-linear-gradient(125deg, rgba(255,255,255,.05) 0 2px, transparent 2px 16px);
}

/* ---------------------------------------------------------- Checkliste -- */
.checklist { list-style: none; padding: 0; display: grid; gap: .85rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: .25rem; border-radius: 50%;
  background: var(--bg-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230083B4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.checklist strong { display: block; color: var(--ink); font-weight: 600; }
.checklist--dark li::before { background-color: rgba(60,196,245,.16); }
.checklist--dark strong { color: #fff; }

/* ------------------------------------------------------------ Split-Bloc -- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.15fr .85fr; }
  .split--reverse .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

/* --------------------------------------------------------------- Zahlen -- */
.stats { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.stat { padding: 1.5rem 1.6rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.stat b {
  display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1; color: var(--brand-dark); letter-spacing: -.03em;
}
.stat span { display: block; margin-top: .5rem; font-size: .93rem; color: var(--muted); }

/* --------------------------------------------------------------- Ablauf -- */
.steps { counter-reset: s; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding: 1.6rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--brand-dark); display: block; margin-bottom: .8rem; letter-spacing: .05em;
}
.step h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ------------------------------------------------------------------ FAQ -- */
.faq { display: grid; gap: .8rem; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: #cfe4f3; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3.2rem 1.15rem 1.4rem; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 50%; width: 12px; height: 12px;
  border-right: 2.4px solid var(--brand-dark); border-bottom: 2.4px solid var(--brand-dark);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq .faq-body { padding: 0 1.4rem 1.35rem; color: var(--muted); }
.faq .faq-body > * + * { margin-top: .8rem; }

/* ---------------------------------------------------------------- Baender */
.cta-band { position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 120% at 88% 10%, rgba(0,164,223,.42), transparent 58%),
    radial-gradient(60% 100% at 5% 95%, rgba(0,131,180,.3), transparent 60%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); }
.cta-inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.4fr 1fr; } }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Vertrauensleiste */
.trustbar { background: var(--bg-alt); border-block: 1px solid var(--line); }
.trustbar ul { display: grid; gap: 1rem 2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); list-style: none; padding: 1.5rem 0; margin: 0; }
.trustbar li { display: flex; align-items: center; gap: .7rem; font-size: .95rem; font-weight: 500; color: var(--text); }
.trustbar svg { width: 22px; height: 22px; color: var(--brand); flex: none; }

/* -------------------------------------------------------------- Kontakt -- */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.35rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ci {
  flex: none; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--brand-dark);
}
.contact-list .ci svg { width: 21px; height: 21px; }
.contact-list b {
  display: block; font-family: var(--font-display); font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .15rem;
}
.contact-list a { font-size: 1.08rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--brand-dark); }
.contact-list span.val { font-size: 1.02rem; color: var(--text); }

.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .form-row-2 { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: .89rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field .req { color: var(--brand-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: 1rem; color: var(--text);
  background: #fff; border: 1.5px solid var(--line); border-radius: 11px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0,164,223,.14);
}
.field-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.field-check input { width: 19px; height: 19px; margin-top: .18rem; flex: none; accent-color: var(--brand); }
.form-note { font-size: .84rem; color: var(--muted); }

/* -------------------------------------------------------- Einsatzgebiet -- */
.area-list { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; }
.area-list li span {
  display: inline-block; padding: .55rem 1.05rem; border-radius: 100px;
  background: #fff; border: 1px solid var(--line); font-size: .93rem; font-weight: 500; color: var(--text);
}

/* --------------------------------------------------------------- Footer -- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(3rem, 6vw, 4.5rem) 0; font-size: .95rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.45fr 1fr 1fr 1.15fr; } }
.site-footer h2, .site-footer h3 {
  color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1.15rem; font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: var(--brand-light); }
.footer-brand img { width: 190px; margin-bottom: 1.15rem; }
.footer-brand p { max-width: 34ch; }
.footer-contact { display: grid; gap: .55rem; margin-top: 1.25rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; color: #fff; }
.footer-contact a:hover { color: var(--brand-light); }
.footer-contact svg { width: 16px; height: 16px; color: var(--brand); flex: none; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--ink-line);
  padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .8rem 1.75rem;
  align-items: center; justify-content: space-between; font-size: .88rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; }
.ai-note { font-size: .8rem; color: rgba(255,255,255,.42); max-width: 62ch; margin-top: .9rem; }

/* ------------------------------------------------------- Sticky Mobil-CTA */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  gap: .6rem; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; padding: .85rem 1rem; font-size: .93rem; }
@media (max-width: 720px) { .mobile-bar { display: flex; } body { padding-bottom: 72px; } }

/* ----------------------------------------------------------- Animationen -- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ------------------------------------------------------------- Rechtstext */
.legal { font-size: 1rem; }
.legal h2 { font-size: 1.35rem; margin-top: 2.5rem; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6rem; }
.legal p, .legal ul { color: var(--muted); }

/* --------------------------------- Seitenkopf ohne Foto (Markengrafik) -- */
.pagehead-pattern {
  position: absolute; inset: 0; z-index: -2; display: grid; place-items: center;
  background:
    radial-gradient(70% 110% at 82% 10%, rgba(60,196,245,.30), transparent 62%),
    radial-gradient(55% 100% at 5% 95%, rgba(0,131,180,.26), transparent 65%),
    repeating-linear-gradient(125deg, rgba(255,255,255,.045) 0 2px, transparent 2px 18px),
    var(--ink);
}
.pagehead-glyph {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.07);
}
.pagehead-glyph svg { width: clamp(220px, 34vw, 460px); height: auto; stroke-width: .8; }
@media (max-width: 780px) { .pagehead-glyph { right: -18%; } }

/* Zwei-Spalten-Checkliste in Leistungsuebersichten */
.checklist.grid { display: grid; }
.checklist.grid li { break-inside: avoid; }

/* Vorteils-Box klebt beim Scrollen mit */
@media (min-width: 900px) {
  .split > aside { position: sticky; top: 100px; align-self: start; }
}

/* ------------------------------------------------- Korrekturen / Feinschliff */
.nav > ul > li > a { white-space: nowrap; }
.brand img { width: 196px; }
.footer-brand img { width: 250px; }
.trustbar li { line-height: 1.35; }

/* Kopfzeile: Platz sparen, damit Navigation und CTA in eine Zeile passen */
@media (min-width: 1081px) {
  .header-inner { gap: 1rem; }
  .nav > ul { gap: .1rem; }
  .nav > ul > li > a { padding: .6rem .62rem; font-size: .935rem; }
}
@media (max-width: 1340px) { .header-phone { display: none; } }
@media (max-width: 1180px) and (min-width: 1081px) {
  .brand img { width: 168px; }
  .nav > ul > li > a { padding: .6rem .5rem; font-size: .9rem; }
  .header-cta .btn { padding: .85rem 1.2rem; font-size: .92rem; }
}

/* Checkliste: Titel und Text bilden gemeinsam ein Flex-Element */
.checklist li > div { min-width: 0; }
.checklist strong { display: block; margin-bottom: .15rem; }
.checklist { font-size: .98rem; color: var(--muted); }
.checklist.grid--2 { gap: 1.1rem 2rem; }

/* ------------------------------------------------------- Originallogo -- */
.brand img { width: 172px; height: auto; }
.footer-brand img { width: 210px; height: auto; }
@media (max-width: 1180px) and (min-width: 1081px) { .brand img { width: 152px; } }
@media (max-width: 1080px) {
  :root { --header-h: 84px; }
  .brand img { width: 142px; }
}
