/* SeoGeos — Variant A "Klare Linie" */

/* ============================================================
   Manrope — selbst gehostet (DSGVO-konform, ohne Google Fonts)
   Schriftdateien gehören in /fonts/ (siehe fonts/README.md)
   ============================================================ */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-800.woff2') format('woff2');
}

:root {
  color-scheme: light;
  --bg: #F4F6FB;
  --bg-2: #FFFFFF;
  --bg-3: #EDF1F8;
  --ink: #0A1530;
  --ink-2: #3C4660;
  --ink-3: #5C6580;
  --line: #DCE3EF;
  --line-2: #C8D2E3;
  --brand: #2451E8;
  --brand-deep: #1735A8;
  --brand-soft: #E2EAFE;
  --accent: #00B79C;
  --warn: #F0B429;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10,21,48,0.05);
  --shadow: 0 8px 28px -8px rgba(10,21,48,0.12);
  --max: 1240px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Gezielt nur dort, wo es nötig ist, damit lange Worte/URLs nicht aus Grid-/Flex-Containern brechen */
.hero-grid > *, .about-grid > *, .deep-card > *, .section-head > *,
.contact-grid > *, .footer-grid > *, .pkg-grid > *,
.svc, .value, .member, .step, .kpi, .post-card, .field { min-width: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 12.5px; letter-spacing: 0.02em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(244,246,251,0.78);
  border-bottom: 1px solid var(--line);
}

/* Wenn Mobile-Menü offen: ganzes Nav-Element nach ganz oben holen
   und Cookie-Banner verstecken, damit nichts darüber liegt */
body:has(.nav-toggle-input:checked) .nav { z-index: 9999; }
body:has(.nav-toggle-input:checked) .sg-banner { display: none; }
body:has(.nav-toggle-input:checked) { overflow: hidden; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.01em;
}
.logo .wm { display: inline; letter-spacing: -0.01em; }
.logo .sep { color: var(--ink-3); margin: 0 0.12em; font-weight: 700; }
.logo .s { color: var(--ink-3); font-weight: 500; margin-left: 0.05em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ink);
  position: relative; overflow: hidden;
  display: inline-block;
  flex: 0 0 38px;
  vertical-align: middle;
}
.logo-mark::before, .logo-mark::after {
  content: ""; position: absolute; border-radius: 999px;
  width: 18px; height: 18px; top: 10px;
}
.logo-mark::before { background: var(--brand); left: 5px; }
.logo-mark::after { background: var(--accent); right: 5px; mix-blend-mode: screen; }
.logo small { color: var(--ink-3); font-weight: 500; font-size: 12px; margin-left: 2px; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: 15px; color: var(--ink-2);
  transition: color .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
}

/* ---------- Mobile Burger Menu ---------- */
.nav-toggle-input {
  position: absolute; opacity: 0; pointer-events: none;
}
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
  transition: background .15s, border-color .15s;
}
.nav-burger:hover { background: var(--bg-3); }
.nav-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}

/* Mobile-Overlay-Nav — auf Body-Ebene, kann jeden Stacking-Kontext überwinden */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #0A1530;
  z-index: 99999;
  padding: 84px 28px 40px;
  overflow-y: auto;
  flex-direction: column;
  animation: navSlide .25s ease-out;
}
.mobile-menu a {
  display: block;
  font-size: 22px;
  font-weight: 600;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #FFFFFF;
  text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a[aria-current="page"] { color: #8FB0FF; }
.mobile-menu a.mm-cta { color: #C2F0DE; }
.mobile-menu a.mm-cta span { margin-left: 6px; transition: transform .2s ease; display: inline-block; }
.mobile-menu a.mm-cta:hover span { transform: translateX(4px); }
.nav-toggle-input:checked ~ .mobile-menu { display: flex; }

/* Sichtbarer Schließen-Button (×) im Mobile-Menü oben rechts */
.mobile-close {
  position: absolute;
  top: 14px; right: 18px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  font-size: 0; /* hide whitespace */
}
.mobile-close span {
  display: block;
  font-size: 30px; line-height: 1;
  font-weight: 300;
  color: #FFFFFF;
  margin-top: -3px; /* optisch zentrieren */
}
.mobile-close:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}
.mobile-close:focus-visible {
  outline: 2px solid #8FB0FF;
  outline-offset: 2px;
}

/* Burger animiert sich zum X, wenn Menü offen — jetzt versteckt, da .mobile-close den X übernimmt */
.nav-toggle-input:checked ~ .nav .nav-burger { display: none; }

@keyframes navSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform .15s, background .15s;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--bg-2); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Eyebrow / Tag ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-deep); background: var(--brand-soft);
  padding: 6px 12px; border-radius: 999px;
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); }

/* ---------- Headlines ---------- */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.025em; line-height: 1.05; }
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 800; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; line-height: 1.08; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0; }
.lead { font-size: 19px; color: var(--ink-2); line-height: 1.55; max-width: 56ch; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 56px;
}
.section-head p { color: var(--ink-2); font-size: 17.5px; max-width: 48ch; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 80px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center;
}
.hero h1 { margin: 22px 0 24px; }
.hero h1 em {
  font-style: normal; color: var(--brand);
  background: linear-gradient(180deg, transparent 64%, var(--brand-soft) 64%);
  padding: 0 4px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.hero-trust div .n { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.hero-trust div .l { color: var(--ink-3); font-size: 13px; margin-top: 2px; }

/* hero chart card */
.hero-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card-title { font-weight: 700; font-size: 15px; }
.hero-card-sub { color: var(--ink-3); font-size: 12px; }
.live { display:inline-flex; align-items:center; gap:6px; color: #007A66; font-weight:700; font-size:12px; }
.live::before { content:""; width: 7px; height: 7px; border-radius:999px; background: #007A66; box-shadow: 0 0 0 4px rgba(0,122,102,0.18); }
.legend { display:flex; gap: 18px; margin-top: 14px; font-size: 12.5px; color: var(--ink-2); }
.legend span { display:inline-flex; align-items:center; gap:6px; }
.legend i { width: 10px; height: 10px; border-radius: 3px; display:inline-block; }
.legend .sw-google { background: var(--brand); }
.legend .sw-ai { background: var(--accent); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; background: var(--bg-2);
}
.marquee-row {
  display: flex; gap: 56px; white-space: nowrap; align-items: center;
  color: var(--ink-2); font-weight: 600; font-size: 16px;
}
.marquee-row span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-row span::before { content: ""; width: 6px; height: 6px; background: var(--ink-3); border-radius: 999px; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.services--3 { grid-template-columns: repeat(3, 1fr); }
.svc {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative; overflow: hidden;
}
.svc-num {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 13px; color: var(--ink-3);
}
.svc h3 { font-size: 28px; letter-spacing: -0.02em; }
.svc p { color: var(--ink-2); }
.svc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.svc ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.svc ul li::before {
  content: ""; width: 16px; height: 16px; margin-top: 4px; flex: 0 0 16px;
  background: var(--brand-soft);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  background-color: var(--brand);
}
.svc .visual {
  background: var(--bg); border-radius: 12px;
  padding: 18px; border: 1px solid var(--line);
  margin-top: auto;
}
.svc-tag {
  position: absolute; top: 22px; right: 22px;
  font-family: ui-monospace, monospace; font-size: 11.5px;
  color: var(--ink-3); letter-spacing: 0.04em;
}

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 38px; left: 38px; right: 38px;
  border-top: 1px dashed var(--line-2);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  display: grid; place-items: center; font-weight: 800; font-size: 20px;
  color: var(--brand);
  margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }

/* ---------- KPI ---------- */
.kpi-band {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.kpi .n {
  font-size: 56px; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(180deg, #fff 60%, #8FB0FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kpi .l { color: #B5BFD6; font-size: 13.5px; margin-top: 10px; max-width: 22ch; }

/* ---------- CTA ---------- */
.cta-band {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 64px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 999px;
  background: radial-gradient(closest-side, var(--brand-soft), transparent 70%);
}
.cta-band h2 { font-size: 38px; }
.cta-band p { color: var(--ink-2); margin-top: 14px; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: flex-end; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.footer { padding: 56px 0 32px; border-top: 1px solid var(--line); background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4, .footer .col-title { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: 14px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { color: var(--ink-2); font-size: 14.5px; }
.footer ul a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; color: var(--ink-3); font-size: 13px;
}

/* ---------- Referenzen / Trust Strip ---------- */
.references { padding-bottom: 96px; }
.ref-logos {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.ref-logos li { display: flex; }
.ref-logos a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 28px 32px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ref-logos a:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px -12px rgba(10,21,48,0.18);
}
.ref-logos img {
  max-width: 100%;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease;
}
.ref-logos a:hover img,
.ref-logos a:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
}
.ref-logos a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ---------- Subpage hero ---------- */
.page-hero { padding: 56px 0 48px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 64px); }
.page-hero p { color: var(--ink-2); max-width: 60ch; margin-top: 20px; font-size: 19px; }

/* ---------- Leistungen detail ---------- */
.deep-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start;
  margin-bottom: 22px;
}
.deep-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: ui-monospace, monospace; font-size: 12px;
  color: var(--ink-3); padding: 5px 10px; border: 1px solid var(--line);
  border-radius: 999px; margin-bottom: 18px;
}
.deep-card h2 { font-size: 36px; }
.deep-card .desc { color: var(--ink-2); margin: 16px 0 24px; font-size: 17px; }
.deep-card .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.deep-card .grid-2 div { font-size: 14.5px; }
.deep-card .grid-2 strong { display: block; margin-bottom: 4px; font-weight: 600; }
.deep-card .grid-2 span { color: var(--ink-2); }
.deep-card .card-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  padding: 12px 20px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  transition: background .15s, border-color .15s, color .15s;
}
.deep-card .card-cta:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.deep-card .card-cta .arrow {
  transition: transform .2s;
}
.deep-card .card-cta:hover .arrow { transform: translateX(3px); }
.deep-card .visual {
  background: var(--bg); border-radius: 14px; padding: 22px;
  border: 1px solid var(--line); min-height: 260px;
}

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.avatar {
  aspect-ratio: 1/1; border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg));
  border: 1px solid var(--line); margin-bottom: 18px;
  display: grid; place-items: center;
  color: var(--ink-3); font-family: ui-monospace, monospace; font-size: 12px;
  position: relative; overflow: hidden;
}
.avatar::after {
  content:""; position: absolute; inset:0;
  background-image:
    repeating-linear-gradient(135deg, rgba(36,81,232,0.06) 0 8px, transparent 8px 16px);
}
.member h3 { font-size: 18px; }
.member .role { color: var(--brand); font-size: 13.5px; font-weight: 600; margin-top: 4px; }
.member p { color: var(--ink-2); font-size: 14.5px; margin-top: 12px; line-height: 1.5; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value {
  border: 1px solid var(--line); background: var(--bg-2);
  border-radius: var(--radius); padding: 28px;
}
.value .n { font-family: ui-monospace, monospace; font-size: 12px; color: var(--ink-3); }
.value h3 { margin: 14px 0 8px; font-size: 20px; }
.value p { color: var(--ink-2); font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; min-width: 0; }
.form {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm);
  min-width: 0;
}
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; color: var(--ink-2); font-weight: 600; }
.field input, .field textarea, .field select {
  border: 1px solid var(--line-2); background: var(--bg);
  border-radius: 10px; padding: 12px 14px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand); background: var(--bg-2);
}
/* ============================================================
   Über uns — Layout-Helper (responsive)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.career-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.profile-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px;
  display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start;
}
.profile-avatar {
  aspect-ratio: 1/1; border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg));
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  color: var(--ink-3); font-family: ui-monospace, monospace; font-size: 12px;
}
.profile-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: relative; z-index: 1;
}
.profile-avatar::after {
  content:""; position: absolute; inset:0;
  background-image: repeating-linear-gradient(135deg, rgba(36,81,232,0.06) 0 8px, transparent 8px 16px);
  pointer-events: none;
}
.profile-avatar:has(img)::after { display: none; }
.profile-meta { display: grid; gap: 10px; margin-top: 18px; }
.profile-meta .row { display: flex; gap: 14px; font-size: 14px; color: var(--ink-2); }
.profile-meta .row .k { color: var(--ink-3); width: 110px; flex: 0 0 110px; }
.profile-meta .row .v { color: var(--ink); }
@media (max-width: 960px) {
  .about-grid, .career-grid, .profile-card { grid-template-columns: 1fr; gap: 32px; }
  .profile-card { padding: 28px; }
  .profile-avatar { max-width: 280px; }
}

.field textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   Brand-Card — Großformat-Logo + Slogan für Über uns / Kontakt
   ============================================================ */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
}
.brand-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  display: grid;
  justify-items: center;
  position: relative;
  overflow: hidden;
}
.brand-card::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 240px; height: 240px; border-radius: 999px;
  background: radial-gradient(closest-side, var(--brand-soft), transparent 70%);
  pointer-events: none;
}
.brand-card > * { position: relative; z-index: 1; }
.brand-card img {
  width: 100%; max-width: 360px; height: auto; display: block;
}
@media (max-width: 540px) {
  .brand-card { padding: 22px; }
  .brand-card img { max-width: 280px; }
}

/* ============================================================
   Datenschutz-Info-Banner (kein Tracking, keine Cookies — nur Hinweis)
   ============================================================ */
.sg-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  max-width: 880px; margin: 0 auto;
  background: var(--bg-2); color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px -8px rgba(10,21,48,0.18);
  padding: 16px 18px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .35s;
}
.sg-banner--visible { transform: translateY(0); opacity: 1; }
.sg-banner-inner {
  display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.sg-banner-text {
  flex: 1 1 320px;
  font-size: 14.5px; line-height: 1.5; color: var(--ink-2);
}
.sg-banner-text strong { color: var(--ink); font-weight: 600; }
.sg-banner-text a {
  color: var(--brand); text-decoration: underline; text-underline-offset: 3px;
}
.sg-banner-btn {
  flex: 0 0 auto;
  background: var(--ink); color: #fff;
  border: 0; border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.sg-banner-btn:hover { background: var(--brand); }
.sg-banner-btn:active { transform: scale(0.97); }
@media (max-width: 540px) {
  .sg-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px; }
  .sg-banner-inner { gap: 12px; }
  .sg-banner-btn { width: 100%; padding: 12px 18px; }
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-meta { display: grid; gap: 24px; }
.contact-meta .block {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; background: var(--bg-2);
}
.contact-meta h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin: 0 0 8px; font-weight: 700; }
.contact-meta .v { font-size: 18px; font-weight: 600; }
.contact-meta .s { color: var(--ink-2); font-size: 14.5px; margin-top: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .section-head, .services, .team, .values, .deep-card, .cta-band, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .kpi-band { grid-template-columns: 1fr 1fr; padding: 28px; }
  .cta-band { padding: 32px; }
  .ref-logos { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ref-logos li:last-child { grid-column: 1 / -1; max-width: 60%; margin: 0 auto; width: 100%; }

  /* Hide desktop nav, show burger */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }

  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  section { padding: 64px 0; }
}
@media (max-width: 540px) {
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .kpi-band { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .ref-logos { grid-template-columns: 1fr; }
  .ref-logos li:last-child { max-width: 100%; }
  .ref-logos a { min-height: 120px; padding: 24px; }
}

/* ---------- Engere Mobile-Anpassungen ---------- */
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero h1 { font-size: clamp(34px, 8.5vw, 52px); }
  .page-hero h1 { font-size: clamp(30px, 7.5vw, 44px); }
  h2 { font-size: clamp(26px, 6vw, 38px); }
  .hero { padding: 32px 0 48px; }
  .page-hero { padding: 36px 0 32px; }
  section { padding: 56px 0; }
  .deep-card { padding: 26px; }
  .deep-card .grid-2 { grid-template-columns: 1fr; gap: 14px; }
  .deep-card h2 { font-size: 28px; }
  .deep-card .visual { padding: 16px; }
  .cta-band { padding: 26px; }
  .cta-band h2 { font-size: 28px; }
  .kpi-band { padding: 24px; gap: 20px; }
  .kpi .n { font-size: 40px; }
  .kpi .l { font-size: 12.5px; }
  .svc { padding: 24px; }
  .svc h3 { font-size: 22px; }
  .hero-card { padding: 18px; }
  .legend { flex-direction: column; gap: 6px; }
  .lead { font-size: 17px; }
  .section-head { margin-bottom: 36px; gap: 14px; }
  .footer { padding: 40px 0 24px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .post-card .body { padding: 18px; }
  .form { padding: 26px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .nav-inner { height: 60px; }
  .nav-toggle-input:checked ~ .nav-links { top: 60px; }
  .hero-trust { grid-template-columns: 1fr; }
  .marquee-row { gap: 32px; font-size: 14px; }
  .btn { padding: 12px 18px; font-size: 14.5px; }
  .nav-cta { font-size: 13px; padding: 8px 12px; }
  .logo { font-size: 17px; }
  .logo small { display: none; }
}
