:root {
  --blue: #2b7fd4;
  --blue-dark: #1f6fc0;
  --navy: #122a3d;
  --navy-2: #0e2230;
  --ink: #1b2733;
  --muted: #5a6b78;
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --line: #e4e9ee;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(18, 42, 61, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1240px, 92%); margin: 0 auto; }

.hl {
  background: var(--navy);
  color: #fff;
  padding: 0 .25em;
  border-radius: 6px;
  display: inline-block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 16px 34px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.25); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1300;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo img { height: 52px; width: auto; object-fit: contain; display: block; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-weight: 700;
  letter-spacing: .05em;
  font-size: .92rem;
  color: var(--navy);
  position: relative;
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.btn-kontakt {
  background: var(--navy);
  color: #fff !important;
  padding: 14px 34px;
  border-radius: 40px;
}
.btn-kontakt:hover { background: var(--navy-2); }
.caret { font-size: .7em; }

.nav-dropdown { position: relative; }
/* Desktop-only hover dropdown. Scoped to >900px so a tap on touch devices
   (which triggers :hover) can't shift the mobile accordion submenu sideways. */
@media (min-width: 901px) {
  .dropdown-menu {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: .22s;
  }
  .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--blue); }

.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1310; position: relative; }
.burger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-backdrop { position: fixed; inset: 0; background: rgba(10, 25, 40, .45); opacity: 0; visibility: hidden; transition: opacity .32s ease; z-index: 1290; }
.nav-backdrop.show { opacity: 1; visibility: visible; }
/* iOS-proof scroll lock (JS pins body.top to the saved scrollY) */
body.menu-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }

/* HERO */
.hero { position: relative; display: flex; min-height: 600px; background: var(--blue); overflow: hidden; }
.hero-left { flex: 1 1 50%; display: flex; align-items: center; position: relative; z-index: 2; }
.hero-content { padding: 70px clamp(20px, 5vw, 90px) 70px; width: min(640px, 100%); margin-left: auto; }
.hero h1 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 26px;
}
.hero-lead { color: #fff; font-weight: 700; letter-spacing: .02em; margin-bottom: 18px; font-size: 1.02rem; }
.hero-text { color: rgba(255,255,255,.92); margin-bottom: 34px; }
.hero-right { flex: 1 1 50%; position: relative; }
.hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--blue);
  clip-path: polygon(0 0, 18% 0, 0 100%, 0 100%);
}

/* USP-LEISTE */
.usp-bar { background: var(--navy); padding: 26px 0; }
.usp-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 28px; }
.usp-item { display: flex; align-items: center; gap: 14px; color: #fff; }
.usp-ic { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); }
.usp-ic svg { width: 26px; height: 26px; }
.usp-item div { display: flex; flex-direction: column; line-height: 1.25; }
.usp-item strong { font-weight: 800; font-size: .98rem; }
.usp-item span { color: rgba(255,255,255,.7); font-size: .82rem; }

/* PARTNERS */
.partners { padding: 56px 0; background: var(--bg-soft); }
.partners-title { text-align: center; color: var(--muted); font-weight: 600; letter-spacing: .12em; font-size: .78rem; margin-bottom: 30px; }
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 48px; }
.partner-item {
  color: #8895a1;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .02em;
  opacity: .8;
  transition: opacity .2s, color .2s;
}
.partner-item:hover { opacity: 1; color: var(--blue); }

/* CLIENT LOGO MARQUEE */
.clients { padding: 60px 0 64px; background: #fff; overflow: hidden; }
.clients .partners-title { margin-bottom: 38px; }
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* Rand-Verlauf über Overlays statt mask-image: vermeidet den iOS-Safari-Bug,
   bei dem ein maskiertes Element mit animiertem Kind erst nach einem
   Repaint (Antippen) gezeichnet wird. */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(to right, #fff, rgba(255,255,255,0)); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, #fff, rgba(255,255,255,0)); }
.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  /* Bewegung wird per JS (requestAnimationFrame) gesteuert – zuverlässig auf iOS Safari. */
  transform: translate3d(0, 0, 0);
}
.logo-track img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex: 0 0 auto;
  -webkit-user-drag: none;
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.section-title.light { color: #fff; text-align: left; }
.section-sub { text-align: center; color: var(--muted); max-width: 680px; margin: 0 auto 56px; }

/* LEISTUNGEN */
.leistungen { padding: 90px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 44px;
}
.service-card { text-align: center; display: block; color: inherit; }
.service-more { display: inline-block; margin-top: 14px; color: var(--blue); font-weight: 800; letter-spacing: .03em; font-size: .92rem; opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s; }
.service-card:hover .service-more { opacity: 1; transform: translateY(0); }
.service-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-ic {
  position: absolute; left: 16px; bottom: 16px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--blue); color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(18,42,61,.28);
  transition: transform .25s;
}
.service-ic svg { width: 24px; height: 24px; }
.service-card:hover .service-ic { transform: translateY(-4px); }
.service-card h3 { color: var(--blue); font-weight: 800; letter-spacing: .03em; margin: 22px 0 8px; font-size: 1.25rem; }
.service-card p { color: var(--muted); max-width: 440px; margin: 0 auto; }

/* WARUM WIR */
.warum { padding: 90px 0; }
.warum .section-title { margin-bottom: 56px; }
.warum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.warum-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.warum-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.warum-icon { width: 64px; height: 64px; color: var(--blue); margin-bottom: 22px; }
.warum-icon svg { width: 100%; height: 100%; }
.warum-card h3 { color: var(--navy); font-weight: 800; font-size: 1.18rem; line-height: 1.3; margin-bottom: 14px; }
.warum-card p { color: var(--muted); }

/* SO ARBEITEN WIR */
.process { padding: 90px 0; background: var(--bg-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 26px 30px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.process-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
  border-radius: 50%; font-weight: 900; font-size: 1rem;
}
.process-ic { display: inline-grid; place-items: center; width: 56px; height: 56px; color: var(--blue); margin-bottom: 16px; }
.process-ic svg { width: 100%; height: 100%; }
.process-step h3 { color: var(--navy); font-weight: 800; font-size: 1.12rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: .94rem; }

/* PARALLAX */
.parallax {
  height: 460px;
  background-image: linear-gradient(rgba(18,42,61,.35), rgba(18,42,61,.35)), url('images/parallax.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* TEAM */
.team { padding: 90px 0; }
.team-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  background: var(--navy);
}
.team-block.reverse .team-text { order: 2; }
.team-block.reverse .team-img { order: 1; }
.team-text { padding: 60px clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.team-text.dark { color: #fff; }
.team-text h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.team-text p { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.team-text .btn { align-self: flex-start; }
.team-img { min-height: 360px; position: relative; }
.team-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* INNOVATION */
.innovation { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); padding: 90px 0; color: #fff; }
.innovation-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.innovation-text p { color: rgba(255,255,255,.85); margin-bottom: 26px; }
.check-list { list-style: none; margin-bottom: 34px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 600; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem;
}
.innovation-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stat-ic { display: inline-grid; place-items: center; width: 38px; height: 38px; color: var(--blue); margin: 0 auto 10px; }
.stat-ic svg { width: 100%; height: 100%; }
.stat .num { display: block; font-size: 2.2rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stat .lbl { display: block; color: rgba(255,255,255,.8); font-size: .9rem; margin-top: 6px; }

/* DEUTSCHLANDWEIT */
.bundesweit { padding: 90px 0; text-align: center; }
.map-wrap { margin: 40px auto 0; max-width: 540px; }
.map-wrap img { width: 100%; height: auto; }

/* FAQ */
.faq { padding: 90px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 28px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--bg-soft); color: var(--blue);
  border-radius: 50%; font-size: 1.3rem; font-weight: 700; line-height: 1;
  transition: transform .25s, background .25s, color .25s;
}
.faq-item[open] summary::after { content: "−"; background: var(--blue); color: #fff; }
.faq-item summary:hover { color: var(--blue); }
.faq-body { padding: 0 26px 24px; color: var(--muted); }
.faq-body p { margin: 0; }

/* KONTAKT */
.kontakt { padding: 90px 0; background: var(--bg-soft); }
.kontakt-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.kontakt-info .section-title { text-align: left; }
.kontakt-info > p { color: var(--muted); margin-bottom: 28px; }
.contact-list { list-style: none; display: grid; gap: 14px; }
.contact-list li { color: var(--ink); }
.contact-list a { color: var(--blue); font-weight: 600; }
.kontakt-form {
  background: #fff;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kontakt-form input, .kontakt-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: .95rem;
  resize: vertical;
  transition: border .2s, box-shadow .2s;
}
.kontakt-form input:focus, .kontakt-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,127,212,.15);
}
.kontakt-form .btn { justify-self: start; }
.form-hint { font-size: .9rem; color: var(--blue); font-weight: 600; min-height: 1em; }
.form-hint.ok { color: #1a7f37; }
.form-hint.err { color: #c0392b; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; line-height: 1.45; color: #5a6b78; cursor: pointer; }
.form-consent input { width: 18px; height: 18px; min-width: 18px; margin-top: 1px; accent-color: var(--blue); cursor: pointer; }
.form-consent a { color: var(--blue); font-weight: 600; text-decoration: underline; }
/* Honeypot: für Menschen unsichtbar, fängt Bots ab */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* FOOTER */
.site-footer { background: var(--navy-2); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 50px; width: auto; object-fit: contain; display: block; margin-bottom: 18px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; letter-spacing: .03em; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.78); transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-col p { line-height: 1.9; }
.footer-col p a { display: inline; padding: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; }
.footer-bottom a { color: rgba(255,255,255,.78); }
.footer-bottom a:hover { color: var(--blue); }
.footer-bottom .footer-credit { flex: 1; text-align: center; letter-spacing: .2px; }
.footer-bottom .footer-credit a { color: var(--blue); font-weight: 700; }
.footer-bottom .footer-credit a:hover { color: #fff; }
@media (max-width: 700px) { .footer-bottom .footer-credit { flex: 0 0 100%; order: 3; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  /* Fixed header on mobile: always visible, and (without backdrop-filter) it no
     longer forms a containing block that would misplace the fixed menu on iOS. */
  .site-header {
    position: fixed; top: 0; left: 0; right: 0;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    background: #fff;
  }
  body { padding-top: 76px; }
  .main-nav {
    position: fixed;
    top: 76px; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    width: min(330px, 88%);
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    box-shadow: var(--shadow);
    transform: translateX(110%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    z-index: 1300;
  }
  .main-nav.open { transform: translateX(0); }

  /* Premium mobile nav rows */
  .main-nav > .nav-link:not(.btn-kontakt),
  .nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
  }
  .main-nav > .nav-link.active { color: var(--blue); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > .nav-link { border-bottom: 1px solid var(--line); }
  .caret { transition: transform .28s ease; font-size: .8em; }
  .nav-dropdown.open > .nav-link { color: var(--blue); }
  .nav-dropdown.open .caret { transform: rotate(180deg); }

  /* Collapsible submenu */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: auto;
    padding: 0;
    background: var(--bg-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
  }
  .nav-dropdown.open .dropdown-menu { max-height: 620px; }
  .dropdown-menu a {
    padding: 13px 16px 13px 28px;
    font-size: .86rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    hyphens: auto;
    overflow-wrap: break-word;
  }
  .dropdown-menu a:last-child { border-bottom: none; }

  /* Kontakt button as centered pill */
  .main-nav > .btn-kontakt {
    margin: 18px 24px 0;
    text-align: center;
    justify-content: center;
  }
  .burger { display: flex; }
  .hero { flex-direction: column; }
  .hero-right { min-height: 320px; flex-basis: auto; }
  .hero-right::before { display: none; }
  .hero-content { margin: 0; width: 100%; }
  .innovation-inner, .kontakt-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .warum-grid { grid-template-columns: 1fr; }
  .team-block, .team-block.reverse { grid-template-columns: 1fr; }
  .team-block.reverse .team-text { order: 2; }
  .team-block.reverse .team-img { order: 1; }
  .team-block .team-text { order: 2; }
  .team-block .team-img { order: 1; }
  .parallax { background-attachment: scroll; height: 320px; }
  .usp-inner { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .innovation-stats { grid-template-columns: 1fr 1fr; }
  .usp-inner { grid-template-columns: 1fr; gap: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 38px 22px 42px; }
  .hero h1 { font-size: 1.85rem; line-height: 1.1; margin-bottom: 16px; }
  .hero-lead { font-size: .92rem; margin-bottom: 14px; }
  .hero-text { font-size: .96rem; margin-bottom: 26px; }
}

/* ============ SERVICE SUBPAGES ============ */
/* Intro / Über uns block */
.about { padding: 90px 0; }
.about-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.about-text .eyebrow { color: var(--blue); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; margin-bottom: 12px; }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; line-height: 1.15; color: var(--navy); margin-bottom: 20px; }
.about-text > p { color: var(--muted); margin-bottom: 26px; }
.about-inner .check-list { list-style: none; margin-bottom: 32px; display: block; }
.about-inner .check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; padding-left: 0; font-weight: 600; color: var(--ink); }
.about-inner .check-list li::before { content: ""; position: static; flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat; }
.about-img { position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Centered intro (no image) */
.about-inner--center { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; text-align: center; }
.about-inner--center .check-list { display: inline-block; text-align: left; margin-left: auto; margin-right: auto; }

/* Specialization grid */
.spec { padding: 90px 0; background: var(--bg-soft); }
.spec .section-title { margin-bottom: 56px; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spec-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; display: flex; align-items: center; gap: 18px; font-weight: 700; color: var(--navy); transition: transform .25s, box-shadow .25s; }
.spec-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.spec-item .spec-ic { flex: 0 0 48px; height: 48px; color: var(--blue); }
.spec-item .spec-ic svg { width: 100%; height: 100%; }

/* Problems (dark) */
.problems { padding: 90px 0; background: var(--navy); color: #fff; }
.problems .section-title { color: #fff; }
.problems .section-sub { color: rgba(255,255,255,.75); }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.problem-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 34px; }
.problem-card h3 { color: var(--blue); font-size: 1.18rem; font-weight: 800; margin-bottom: 12px; }
.problem-card p { color: rgba(255,255,255,.8); }

/* Differentiators */
.diff { padding: 90px 0; }
.diff .section-title { margin-bottom: 56px; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.diff-card { padding: 36px 30px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.diff-num { width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.diff-card h3 { color: var(--navy); font-weight: 800; font-size: 1.18rem; margin-bottom: 12px; }
.diff-card p { color: var(--muted); }

/* Testimonials */
.testi { padding: 90px 0; background: var(--bg-soft); }
.testi .section-title { margin-bottom: 14px; }
.testi-rating { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 1.02rem; }
.testi-rating strong { color: var(--navy); }
.testi-rating-stars { color: #f5a623; letter-spacing: 2px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.testi-stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.7; margin-bottom: 22px; }
.testi-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.testi-who strong { display: block; color: var(--navy); }
.testi-who span { color: var(--muted); font-size: .9rem; }

/* Feature band (Partner) */
/* Partner parallax band */
.partner-parallax {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 110px 0;
  text-align: center;
}
.partner-parallax .parallax-content { position: relative; width: 100%; }
.partner-parallax h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 900;
  line-height: 1.18;
  max-width: 900px;
  margin: 0 auto 30px;
}
.partner-parallax .hl { background: var(--blue); }
@media (max-width: 900px) { .partner-parallax { background-attachment: scroll; padding: 90px 0; } }

.partner-cta { padding: 90px 0; }
.partner-cta .section-title { margin-bottom: 14px; }
.partner-cta .section-sub { margin-bottom: 48px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) and (min-width: 901px) { .feature-grid--4 { grid-template-columns: repeat(2, 1fr); } }
.feature-card { text-align: center; padding: 34px 26px; border-radius: var(--radius); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-ic { width: 54px; height: 54px; color: var(--blue); margin: 0 auto 18px; }
.feature-ic svg { width: 100%; height: 100%; }
.feature-card h3 { color: var(--navy); font-weight: 800; font-size: 1.08rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .95rem; }

/* CTA band */
.cta-band { padding: 80px 0; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 620px; margin: 0 auto 32px; }

/* Why others fail (text block) */
.why-text { padding: 84px 0; }
.why-text .section-title { margin-bottom: 26px; }
.why-text p { max-width: 880px; margin: 0 auto; text-align: center; color: var(--muted); font-size: 1.06rem; line-height: 1.85; }

/* Fehlende Struktur (4 columns) */
.struggle { padding: 90px 0; background: var(--bg-soft); }
.struggle .section-title { margin-bottom: 16px; }
.struggle .section-sub { margin-bottom: 52px; }
.struggle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.struggle-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.struggle-col h3 { color: var(--navy); font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; }
.struggle-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.struggle-col li { position: relative; padding-left: 22px; color: var(--muted); font-size: .95rem; }
.struggle-col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

/* Genügend Zeit (text block) */
.time-text { padding: 62px 0 34px; }
.time-text .section-title { margin-bottom: 18px; }
.time-text p { max-width: 880px; margin: 0 auto; text-align: center; color: var(--muted); font-size: 1.06rem; line-height: 1.8; }

/* Drei Vorteile */
.benefits { padding: 0 0 64px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 30px; }
.benefit-card { text-align: center; padding: 22px 24px; }
.benefit-ic { width: 52px; height: 52px; color: var(--blue); margin: 0 auto 14px; }
.benefit-ic svg { width: 100%; height: 100%; }
.benefit-card h3 { color: var(--navy); font-weight: 800; font-size: 1.18rem; margin-bottom: 12px; }
.benefit-card p { color: var(--muted); }
.benefits-cta { text-align: center; }

/* Service hero subtitle reuse: ensure breadcrumb spacing */
.svc-hero .hero-content { padding-top: 60px; padding-bottom: 60px; }
.breadcrumb { color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-img { min-height: 300px; }
  .spec-grid, .diff-grid, .feature-grid, .struggle-grid, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }

  /* Testimonials: horizontaler Swipe-Slider statt untereinander */
  .testi-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    scroll-padding-left: 4%;
    padding: 4px 4% 14px;
    margin: 0 -4%;
    scrollbar-width: none;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .spec-grid, .diff-grid, .feature-grid, .struggle-grid, .benefit-grid { grid-template-columns: 1fr; }
}

/* ============ LEGAL PAGES (Impressum / Datenschutz) ============ */
.legal { padding: 70px 0 90px; }
.legal-head { background: var(--navy); color: #fff; padding: 56px 0; margin-bottom: 56px; }
.legal-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; }
.legal-head .breadcrumb { margin-bottom: 14px; }
.legal-body { width: min(840px, 92%); margin: 0 auto; }
.legal-body h2 { color: var(--navy); font-size: 1.3rem; font-weight: 800; margin: 36px 0 12px; }
.legal-body h3 { color: var(--navy); font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; }
.legal-body p { color: var(--ink); margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 22px; color: var(--ink); }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--blue); }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong { color: var(--navy); }
.legal-body .muted { color: var(--muted); font-size: .92rem; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 13px 15px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .55);
}
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float .wa-label { white-space: nowrap; }
body.menu-open .wa-float { display: none; }

@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .wa-float .wa-label { display: none; }
}
