/* ═══════════════════════════════════════════════════
   ATLAS @ SERVICE Solutions — Klassischer Dienstleister
   Navy · Gelb · Weiß · klassisch deutsch
   ═══════════════════════════════════════════════════ */

:root {
  --white:    #FFFFFF;
  --bg-2:     #F2F2F0;
  --bg-3:     #E6E6E2;
  --line:     #D5D5CF;
  --line-2:   #B5B5AE;
  --ink:      #1A1A1A;
  --ink-2:    #383838;
  --ink-3:    #585858;
  --stone:    #767676;
  --stone-2:  #9A9A9A;
  --navy:     #1B3A6B;
  --navy-2:   #244A86;
  --navy-3:   #0F2748;
  --navy-soft:#E7ECF4;
  --yellow:   #F2C94C;
  --yellow-2: #DBB031;
  --yellow-3: #FFE08A;
  --yellow-soft: #FFF8E1;
  --red:      #C8102E;

  --container: 1200px;
  --gutter:    1.5rem;
  --radius:    4px;
  --radius-lg: 6px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-1: 0 1px 2px rgba(15,39,72,.05), 0 1px 3px rgba(15,39,72,.04);
  --shadow-2: 0 2px 4px rgba(15,39,72,.06), 0 4px 12px rgba(15,39,72,.08);
  --shadow-3: 0 6px 16px rgba(15,39,72,.10), 0 12px 32px rgba(15,39,72,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;   /* damit Anker-Sprünge nicht unter dem sticky Nav landen */
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
[id] { scroll-margin-top: 100px; }

body {
  background: var(--white);
  color: var(--ink-2);
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Display-Schrift (Manrope) — modern, geometrisch, für Headlines */
.hero-title,
.section-header-title,
.page-header h1,
.legal-title,
.service-tile h3,
.feature-cell h4,
.subservice-card h3,
.cta-block h2,
.hero-visual h2,
.process-step h4,
.cb-title,
.brand-name {
  font-family: 'Manrope', 'Open Sans', sans-serif;
  font-feature-settings: "ss01", "ss02";
}

img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--navy-2); }
button { font-family: inherit; cursor: pointer; }
strong, b { font-weight: 700; color: var(--ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ─── EYEBROW / SECTION-TYPO ─── */
.eyebrow {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: .35rem 0;
  border-bottom: 3px solid var(--yellow);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 65ch;
}

/* ─── TOP BANNER (klassischer Service-Streifen) ─── */
.top-banner {
  background: var(--navy-3);
  color: var(--white);
  font-size: .8rem;
  font-weight: 400;
  border-bottom: 2px solid var(--yellow);
}
.top-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .42rem var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.2rem; flex-wrap: wrap;
}
.top-banner a {
  color: var(--white);
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600;
}
.top-banner a:hover { color: var(--yellow); }
.top-banner .dot {
  display: inline-block; width: 9px; height: 9px;
  background: var(--yellow);
  border-radius: 50%;
  margin-right: .55rem;
  vertical-align: middle;
}
.top-banner-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* ─── NAV ─── */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .75rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .85rem;
  padding-block: .1rem;
}
.brand-mark {
  width: auto; height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform .25s var(--ease);
}
.brand:hover .brand-mark { transform: scale(1.04); }
.brand-name {
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--stone);
  text-transform: uppercase;
  display: flex; flex-direction: column; line-height: 1.2;
  padding-left: .85rem;
  border-left: 2px solid var(--yellow);
}
.brand-name small {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--stone-2);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-list {
  list-style: none;
  display: flex; gap: 0;
  align-items: center;
}
.nav-list a {
  display: inline-block;
  padding: .75rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-2);
  position: relative;
  transition: color .15s, background .15s;
}
.nav-list a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -1px;
  height: 3px; background: var(--yellow);
  transition: left .2s var(--ease), right .2s var(--ease);
}
.nav-list a:hover { color: var(--navy); background: var(--bg-2); }
.nav-list a:hover::after { left: 0; right: 0; }
.nav-list a.active { color: var(--navy); }
.nav-list a.active::after { left: 0; right: 0; }

.nav-side { display: flex; align-items: center; gap: .9rem; }

/* ─── BUTTONS — leicht rund, klassisch ─── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .85rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { transition: transform .2s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 1px 2px rgba(15,39,72,.12);
}
.btn-primary:hover {
  background: var(--navy-3);
  border-color: var(--navy-3);
  color: var(--white);
  box-shadow: 0 6px 14px rgba(15,39,72,.18);
  transform: translateY(-1px);
}

/* CTA-Variante: gelber Akzent — flat, modern, kein Bevel */
.btn-yellow,
.btn-orange {
  background: var(--yellow);
  color: var(--navy-3);
  border-color: var(--yellow);
  box-shadow: 0 1px 2px rgba(15,39,72,.08);
}
.btn-yellow:hover,
.btn-orange:hover {
  background: var(--yellow-2);
  border-color: var(--yellow-2);
  color: var(--navy-3);
  box-shadow: 0 6px 14px rgba(219,176,49,.30);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-ghost {
  padding: .85rem 0;
  border: none; background: transparent;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--navy-2); border-bottom-color: var(--navy-2); }

.btn-link {
  font-family: 'Open Sans', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: .4rem;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--yellow);
  transition: color .15s, gap .15s var(--ease);
}
.btn-link:hover { color: var(--navy-2); gap: .7rem; }

/* ─── HAMBURGER + MOBILE NAV ─── */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 2px solid var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  align-items: center; justify-content: center;
  position: relative;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--navy);
  position: absolute; left: 11px;
  transition: transform .25s, top .25s, opacity .15s;
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 3px solid var(--yellow);
  padding: 1.2rem var(--gutter) 3rem;
  z-index: 55;
  transform: translateY(-100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a::after { content: "›"; color: var(--yellow); font-size: 1.5rem; font-weight: 400; }
.mobile-nav-footer { margin-top: 2rem; display: flex; flex-direction: column; gap: .9rem; }

/* ─── HERO ─── */
.hero {
  border-bottom: 4px solid var(--yellow);
  background: var(--navy-soft);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(27,58,107,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; top: 0; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,201,76,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem var(--gutter) 4.5rem;
  position: relative;
  z-index: 1;
}
.hero-text {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.hero-text .lead { margin-inline: auto; }
.hero-text .hero-actions { justify-content: center; }
.hero-title {
  font-weight: 800;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
  color: var(--navy-3);
  margin: 1.1rem 0 2.2rem;
}
.hero-title .o { color: var(--yellow-2); }
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 520px;
  margin-bottom: 2.4rem;
}
.hero-actions {
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
}
.hero-microtrust {
  display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.8rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: .01em;
}
.hero-microtrust span {
  display: inline-flex; align-items: center; gap: .4rem;
}
.hero-microtrust span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-stats {
  display: inline-grid; grid-template-columns: repeat(3, auto);
  align-self: center;
  margin-top: 2.2rem;
  padding: 1rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, var(--shadow-2);
  gap: 0;
  position: relative;
}
.hero-stats::before {
  content: ""; position: absolute;
  top: 0; left: 20%; right: 20%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.hero-stat { padding-right: 1.6rem; }
.hero-stat + .hero-stat { padding-left: 1.6rem; border-left: 1px solid var(--line); }
.hero-stat b {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  line-height: 1;
  display: block;
  white-space: nowrap;
}
.hero-stat b .o { color: var(--yellow-2); display: inline; }
.hero-stat > span {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--stone);
  margin-top: .35rem;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hero visual: kompakte Kontakt-Card */
.hero-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-2);
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.hero-visual-tag {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}
.hero-visual-tag::before {
  content: ""; width: 8px; height: 8px;
  background: var(--yellow); border-radius: 50%;
}
.hero-visual-phone {
  background: var(--navy-3);
  color: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
  display: block;
  transition: background .15s;
}
.hero-visual-phone:hover { background: var(--navy); color: var(--white); }
.hero-visual-phone-label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .35rem;
}
.hero-visual-phone-num {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.005em;
  line-height: 1.1;
}
.hero-visual-phone-sub {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
  font-weight: 400;
}
.hero-visual-meta {
  display: flex; flex-direction: column; gap: .55rem;
  padding-top: .2rem;
}
.hero-visual-meta-row {
  display: grid; grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  font-size: .87rem;
  line-height: 1.45;
  align-items: baseline;
  padding-block: .4rem;
  border-bottom: 1px dashed var(--line);
}
.hero-visual-meta-row:last-child { border-bottom: none; }
.hero-visual-meta-row b {
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; color: var(--stone);
}
.hero-visual-meta-row span { color: var(--ink-2); font-weight: 600; }
.hero-visual-meta-row a { color: var(--navy); font-weight: 600; }
.hero-visual-meta-row a:hover { color: var(--yellow-2); }
.hero-visual-mark {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  width: 32px; height: 32px;
  opacity: .9;
}

/* ─── TICKER STRIP (Zertifizierungen / Trust-Strip — klassisch reduziert) ─── */
.ticker {
  background: var(--navy);
  color: var(--white);
}
.ticker-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .015em;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: .65rem;
  justify-content: center;
  padding: .25rem 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.ticker-item:last-child { border-right: none; }
.ticker-item::before {
  content: ""; width: 18px; height: 18px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.5l2.5 2.5L10 3.5' stroke='%231B3A6B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 820px) {
  .ticker-inner { grid-template-columns: repeat(2, 1fr); gap: .8rem 0; }
  .ticker-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-block: .6rem; }
  .ticker-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ─── SECTIONS ─── */
.section {
  padding-block: 4.5rem;
  position: relative;
}
.section-tight { padding-block: 3rem; }
.section-gray { background: var(--bg-2); }
.section-warm { background: var(--yellow-soft); }
.section-ink, .section-navy { background: var(--navy-3); color: var(--white); }
.section-ink .lead, .section-navy .lead { color: rgba(255,255,255,.78); }
.section-ink .eyebrow, .section-navy .eyebrow { color: var(--yellow); border-color: var(--yellow); }
.section-ink .section-header, .section-navy .section-header { border-bottom-color: rgba(255,255,255,.18); }

/* ─── SECTION MARKER (dezent — Mini-Tag oben) ─── */
.section-marker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .3rem 0;
  margin-bottom: 1.4rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
}
.section-marker b {
  color: var(--navy);
  font-weight: 700;
  padding: .25rem .55rem;
  background: var(--navy-soft);
  border-radius: 3px;
}
.section-marker em {
  font-style: normal;
  color: var(--stone-2);
  font-weight: 500;
  font-size: .66rem;
  margin-left: .3rem;
}
.section-marker .rule { display: none; }
.section-marker > span { letter-spacing: .06em; }

.section-ink .section-marker,
.section-navy .section-marker {
  color: rgba(255,255,255,.55);
  border-bottom-color: rgba(255,255,255,.2);
}
.section-ink .section-marker b,
.section-navy .section-marker b { color: var(--yellow); }
.section-ink .section-marker em,
.section-navy .section-marker em { color: rgba(255,255,255,.45); }

/* ─── HEAVY DIVIDER (entfernt — Section-Marker reicht als Trennung) ─── */
.heavy-divider { display: none; }
.heavy-divider-inner { display: none; }

.section-header {
  margin-bottom: 2.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.section-header-title {
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--navy-3);
  margin-top: .4rem;
}
.section-ink .section-header-title,
.section-navy .section-header-title { color: var(--white); }
.section-header-title .o { color: var(--yellow-2); }
.section-header-meta { margin-top: 1rem; max-width: 720px; }
.section-header-meta .lead { max-width: none; }

/* ─── SERVICE TILES (Startseite — 2 große Säulen, klassisch) ─── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.service-tile {
  position: relative;
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: 10px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-top-color .25s;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.service-tile::after {
  content: ""; position: absolute;
  inset: -1px -1px auto -1px;
  height: 80px;
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(242,201,76,.12), transparent 70%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-top-color: var(--yellow);
}
.service-tile:hover::after { opacity: 1; }

.service-tile-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}
.service-tile-num {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}
.service-tile-num .o { color: var(--yellow-2); }
.service-tile-tag {
  font-family: 'Open Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: .5rem;
}
.service-tile h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--navy-3);
  margin-bottom: .7rem;
}
.service-tile p {
  font-size: .96rem;
  line-height: 1.6;
  color: var(--ink-3);
  flex: 1;
}
.service-tile ul {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: 1.4rem;
}
.service-tile ul li {
  font-family: 'Open Sans', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .35rem .7rem;
  background: var(--navy-soft);
  color: var(--navy-3);
  border-radius: var(--radius);
}
.service-tile-cta {
  margin-top: 1.6rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: .4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.service-tile-cta::after { content: "›"; color: var(--yellow-2); font-size: 1.3rem; line-height: 1; transition: transform .2s var(--ease); }
.service-tile:hover .service-tile-cta::after { transform: translateX(4px); }

/* ─── VALUE / FEATURE GRID (Werte / Warum-Atlas — klassische Karten) ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.feature-cell {
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  display: flex; flex-direction: column;
  gap: .65rem;
  box-shadow: var(--shadow-1);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-left-color .2s;
}
.feature-cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-left-color: var(--navy);
}
.feature-cell-index {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--yellow-2);
  text-transform: uppercase;
}
.feature-cell-icon {
  width: 44px; height: 44px;
  background: var(--navy-soft);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: .3rem;
  transition: background .2s, color .2s;
}
.feature-cell:hover .feature-cell-icon { background: var(--navy); color: var(--white); }
.feature-cell h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-3);
}
.feature-cell p {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ─── SUB-SERVICE GRID (Detailseiten — klassische Service-Karten) ─── */
.subservice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.subservice-card {
  padding: 1.7rem 1.7rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: 10px;
  display: flex; flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-1);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-top-color .2s;
}
.subservice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-top-color: var(--yellow);
}
.subservice-card-num {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--navy);
}
.subservice-card-num .o { color: var(--yellow-2); }
.subservice-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .2rem;
}
.subservice-card-icon {
  width: 44px; height: 44px;
  background: var(--navy-soft);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background .2s, color .2s;
}
.subservice-card:hover .subservice-card-icon { background: var(--yellow); color: var(--navy-3); }
.subservice-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--navy-3);
}
.subservice-card p {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ─── PROCESS (klassische Steps) ─── */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.process-step {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: .65rem;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.process-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.process-step::before {
  content: ""; position: absolute;
  top: -1px; left: 1.4rem;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--yellow-2), var(--yellow));
  border-radius: 0 0 2px 2px;
}
.process-step-num {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--yellow-2);
  text-transform: uppercase;
  margin-top: .5rem;
}
.process-step h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-3);
}
.process-step p {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink-3);
}

/* ─── STATS ROW (klassischer Daten-Block) ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.stat {
  padding: 1.6rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.stat::before {
  content: "";
  position: absolute; top: 0; left: 20%; right: 20%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.stat b {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}
.stat b .o { color: var(--yellow-2); display: inline; }
.stat > span {
  display: block;
  margin-top: .7rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--stone);
  text-transform: uppercase;
}

/* ─── BULLET CHECKS ─── */
.checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 2rem;
}
.checks li {
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  display: grid; grid-template-columns: 20px 1fr;
  gap: .8rem;
  align-items: baseline;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-2);
  box-shadow: var(--shadow-1);
}
.checks li::before {
  content: "✓";
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
}
.checks li b { color: var(--navy-3); font-weight: 700; }

/* ─── INDUSTRY TABLE (klassisches Listing) ─── */
.industry-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.industry-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.5rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.industry-row:last-child { border-bottom: none; }
.industry-row:nth-child(even) { background: var(--bg-2); }
.industry-row b {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--navy);
  text-transform: uppercase;
}
.industry-row span {
  font-size: .96rem;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ─── CTA BLOCK ─── */
.cta-block {
  background:
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(242,201,76,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 0%, rgba(36,74,134,.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 2.8rem 2.5rem;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--yellow);
  box-shadow: var(--shadow-2);
}
.cta-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: .5;
}
.cta-block h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  color: var(--white);
}
.cta-block h2 .o { color: var(--yellow); }
.cta-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin-top: .8rem;
  max-width: 480px;
}
.cta-block-actions { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.cta-block-actions .btn-ghost {
  color: rgba(255,255,255,.85);
  border-bottom-color: var(--yellow);
}
.cta-block-actions .btn-ghost:hover { color: var(--yellow); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: linear-gradient(160deg, var(--navy-soft) 0%, var(--white) 100%);
  border-bottom: 4px solid var(--yellow);
  padding: 3rem 0 3.5rem;
}
.page-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.breadcrumb {
  display: flex; gap: .5rem; flex-wrap: wrap;
  font-family: 'Open Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--yellow-2); }
.breadcrumb span { color: var(--stone-2); }

.page-header h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-3);
  margin-top: 1rem;
}
.page-header h1 .o { color: var(--yellow-2); }

.page-header-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.page-header-meta div {
  padding: .6rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.page-header-meta b {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.page-header-meta span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-3);
}

/* ─── CONTACT LAYOUT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem; align-items: start;
}
.contact-info {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-row {
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.contact-row b {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.contact-row a, .contact-row span {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-3);
  line-height: 1.5;
  display: block;
}
.contact-row a:hover { color: var(--yellow-2); }

.contact-cta {
  background: var(--navy-3);
  color: var(--white);
  border-left: 4px solid var(--yellow);
}
.contact-cta b { color: var(--yellow); }
.contact-cta a, .contact-cta span { color: var(--white); font-size: 1.45rem; }
.contact-cta a:hover { color: var(--yellow); }
.contact-cta small {
  display: block; margin-top: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  font-weight: 400;
}

/* ─── FORMS ─── */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: var(--shadow-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-family: 'Open Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-3);
}
.field label .req { color: var(--red); margin-left: .15rem; }
.field input, .field textarea, .field select {
  font: 400 .95rem/1.4 'Open Sans', sans-serif;
  padding: .75rem .9rem;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--stone-2); }
.field textarea { min-height: 130px; line-height: 1.5; resize: vertical; }
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%231B3A6B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.consent {
  display: grid; grid-template-columns: 1.3rem 1fr; gap: .7rem;
  align-items: flex-start;
  font-size: .88rem; line-height: 1.5;
  color: var(--ink-3);
}
.consent input[type="checkbox"] {
  appearance: none;
  width: 1.1rem; height: 1.1rem; margin-top: .15rem;
  border: 1.5px solid var(--navy);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  position: relative;
}
.consent input[type="checkbox"]:checked { background: var(--navy); border-color: var(--navy); }
.consent input[type="checkbox"]:checked::after {
  content: ""; position: absolute; top: 1px; left: 5px;
  width: 4px; height: 8px;
  border: solid var(--white); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent a { color: var(--navy); border-bottom: 1px solid var(--yellow); }
.consent a:hover { color: var(--yellow-2); }

.form-footer {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  margin-top: .4rem;
}
.form-status {
  font-family: 'Open Sans', sans-serif;
  font-size: .85rem; font-weight: 600;
  color: var(--ink-3);
}
.form-status.ok { color: #1B7A3B; }
.form-status.err { color: var(--red); }

/* ─── MAP ─── */
.map-wrap {
  margin-top: 2.8rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  aspect-ratio: 21/9;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-note {
  margin-top: .9rem;
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .9rem;
  color: var(--ink-3);
}
.map-note a {
  color: var(--navy);
  border-bottom: 1px solid var(--yellow);
  font-weight: 600;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-3);
  color: var(--white);
  border-top: 4px solid var(--yellow);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 2.5rem;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { max-width: 360px; display: flex; flex-direction: column; gap: 1.1rem; }
.footer-brand .brand { gap: .85rem; }
.footer-brand .brand-mark {
  background: var(--white);
  padding: .35rem;
  border-radius: 6px;
  height: 56px;
}
.footer-brand .brand-name {
  color: rgba(255,255,255,.85);
  border-left-color: var(--yellow);
}
.footer-brand .brand-name small { color: var(--yellow); }
.footer-brand p {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}
.footer-cert {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: .5rem .8rem;
  background: rgba(242, 201, 76, .12);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  align-self: flex-start;
}

.footer-col h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-family: 'Open Sans', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.footer-col a:hover { color: var(--yellow); }
.footer-col address {
  font-style: normal;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.6rem var(--gutter);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
}
.footer-legal a { color: inherit; }
.footer-legal a:hover { color: var(--yellow); }

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding-block: 2.5rem 4rem;
}
.legal-page-inner {
  max-width: 880px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.legal-back-link {
  font-family: 'Open Sans', sans-serif;
  font-size: .88rem; font-weight: 600;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: .35rem;
  margin-bottom: 2rem;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--yellow);
}
.legal-back-link::before { content: "‹"; color: var(--yellow-2); font-size: 1.3rem; line-height: 1; }
.legal-back-link:hover { color: var(--yellow-2); }

.legal-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--navy-3);
  margin-bottom: .5rem;
}
.legal-title .o { color: var(--yellow-2); }
.legal-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 3px solid var(--yellow);
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  margin-bottom: 2.2rem;
  box-shadow: var(--shadow-1);
}
.legal-card-label {
  font-family: 'Open Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.legal-card-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy-3);
  margin-bottom: 1rem;
}
.legal-card-rows { display: flex; flex-direction: column; gap: .5rem; }
.legal-card-row {
  display: grid; grid-template-columns: 6rem 1fr;
  gap: 1rem;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.legal-card-row b {
  font-family: 'Open Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--stone);
  text-transform: uppercase;
}
.legal-card-row a { color: var(--navy); border-bottom: 1px solid var(--yellow); }
.legal-card-row a:hover { color: var(--yellow-2); }

.legal-block {
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line);
}
.legal-block:last-child { border-bottom: none; }
.legal-block-tag {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--yellow-2);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.legal-block h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-3);
  margin-bottom: .9rem;
}
.legal-block p, .legal-block li {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: .7rem;
}
.legal-block ul, .legal-block ol { margin: .7rem 0 .9rem 1.3rem; }
.legal-block a { color: var(--navy); border-bottom: 1px solid var(--yellow); }
.legal-block a:hover { color: var(--yellow-2); }
.legal-block strong { color: var(--navy-3); font-weight: 700; }

.legal-notice {
  background: var(--yellow-soft);
  border: 1px solid var(--yellow);
  border-left: 4px solid var(--yellow-2);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  margin-bottom: 2.4rem;
}
.legal-notice b {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--navy-3);
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.legal-notice p {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ─── FAQ (Accordion klassisch) ─── */
.faq { display: flex; flex-direction: column; gap: .8rem; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: box-shadow .2s, border-left-color .2s;
}
.faq-item[open] { border-left-color: var(--yellow); box-shadow: var(--shadow-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-3);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--yellow-2);
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { content: "−"; transform: rotate(0deg); }
.faq-item-body {
  padding: 0 1.4rem 1.2rem;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-3);
}

/* ─── TESTIMONIALS (klassische Karten mit Zitat) ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.testimonial::before {
  content: "„";
  font-family: 'Manrope', serif;
  position: absolute;
  top: -.4rem; left: 1.2rem;
  font-size: 4rem; line-height: 1;
  color: var(--yellow);
  font-weight: 800;
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  font-style: italic;
  margin-top: 1.4rem;
}
.testimonial-author {
  display: flex; flex-direction: column; gap: .15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.testimonial-author b {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy-3);
}
.testimonial-author span {
  font-size: .82rem;
  color: var(--stone);
}

/* ─── HERO WATERMARK (subtiles Logo rechts oben — kein Box) ─── */
.hero-watermark {
  position: absolute;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  width: 360px; height: auto;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}

/* ─── SKIP TO CONTENT ─── */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--navy-3);
  color: var(--white);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  z-index: 100;
  transition: top .2s var(--ease);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ─── FOKUS-STYLES (Tastatur-Navigation sichtbar) ─── */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 2px;
}
button:focus-visible, a:focus-visible {
  outline-offset: 3px;
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 90;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  padding: 1.4rem 1.5rem;
  transform: translateY(180%);
  transition: transform .35s var(--ease);
}
#cookie-banner.show { transform: translateY(0); }
.cb-label {
  font-family: 'Open Sans', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--yellow-2);
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.cb-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-3);
  margin-bottom: .5rem;
}
.cb-text {
  font-size: .88rem;
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 1rem;
}
.cb-text a { color: var(--navy); border-bottom: 1px solid var(--yellow); }
.cb-actions { display: flex; gap: .55rem; flex-wrap: wrap; }
.cb-actions .btn { padding: .55rem .9rem; font-size: .82rem; }

/* ─── REVEAL ─── */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.rv.on { opacity: 1; transform: none; }
.rv-1 { transition-delay: .08s; }
.rv-2 { transition-delay: .16s; }
.rv-3 { transition-delay: .24s; }

/* ─── EASTER EGG (Konfetti-Punkte in Navy + Gelb) ─── */
.logo-burst-stage { position: fixed; inset: 0; pointer-events: none; z-index: 95; }
.lb-particle {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0;
  animation: lbFly .9s var(--ease) forwards;
}
@keyframes lbFly {
  0%   { opacity: 1; transform: translate(0,0) scale(.4); }
  100% { opacity: 0; transform: translate(var(--dx,0), var(--dy,0)) scale(1.4); }
}
.brand-mark.spin { animation: brandPunch .8s var(--ease) 1; }
@keyframes brandPunch {
  0%   { transform: scale(1) rotate(0); }
  50%  { transform: scale(1.18) rotate(-10deg); }
  100% { transform: scale(1) rotate(0); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Tablet · Mobile · Smartphone · klein
   ═══════════════════════════════════════════════════ */

/* ─── TABLET (≤1100px) ─── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding-top: 3rem; }
  .hero-visual { margin-bottom: 3rem; }
  .service-grid { grid-template-columns: 1fr; }
  .feature-grid, .subservice-grid, .process, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .page-header-meta { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .hero-watermark { display: none; }
}

/* ─── MOBILE / TABLET (≤820px) ─── */
@media (max-width: 820px) {
  /* Nav */
  .nav-list { display: none; }
  .nav-side .btn-primary { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand-mark { height: 44px; }
  .brand-name {
    font-size: .7rem;
    padding-left: .65rem;
    border-left-width: 2px;
  }
  .brand-name small { font-size: .6rem; }

  /* Top-Banner — kompakter */
  .top-banner { font-size: .72rem; }
  .top-banner-inner { padding: .35rem var(--gutter); gap: .35rem .8rem; }
  .top-banner-meta { gap: .8rem; }

  /* Section-Marker — auf Mobile reduziert */
  .section-marker { font-size: .62rem; gap: .55rem; margin-bottom: 1.2rem; }
  .section-marker em { display: none; }

  /* Section-Headers + Sections */
  .section { padding-block: 3rem; }
  .section-tight { padding-block: 2.4rem; }
  .section-header-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-header { padding-bottom: 1rem; margin-bottom: 1.6rem; }

  /* Hero — kompakt */
  .hero-inner { padding: 2.2rem var(--gutter) 2.6rem; }
  .hero-title { font-size: clamp(2rem, 7.5vw, 2.8rem); }
  .hero-lead { font-size: 1rem; margin-bottom: 1.6rem; }
  .hero-actions { gap: .6rem; flex-direction: column; width: 100%; max-width: 320px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-microtrust {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .65rem 1rem;
    margin-top: 1.5rem;
    font-size: .76rem;
  }

  /* Page-Header */
  .page-header { padding: 2rem 0 2.4rem; }
  .page-header h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .page-header-meta { grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1.4rem; padding-top: 1rem; }
  .page-header-meta b { font-size: .68rem; margin-bottom: .25rem; }
  .page-header-meta span { font-size: .92rem; }

  /* Cards Padding kompakter */
  .service-tile { padding: 1.5rem 1.4rem; }
  .feature-cell, .subservice-card, .process-step { padding: 1.4rem 1.3rem; }
  .testimonial { padding: 1.5rem 1.4rem; }

  /* Service-Tile Headlines kleiner */
  .service-tile h3 { font-size: 1.3rem; }
  .service-tile p { font-size: .92rem; }
  .service-tile-num { font-size: 2rem; }

  /* Listen / Tabellen */
  .checks { grid-template-columns: 1fr; }
  .industry-row { grid-template-columns: 7rem 1fr; gap: .8rem; padding: .9rem 1rem; }

  /* CTA */
  .cta-block { padding: 2rem 1.5rem; }
  .cta-block h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .cta-block-actions { width: 100%; align-items: stretch; }
  .cta-block-actions .btn { width: 100%; justify-content: center; }
  .cta-block-actions .btn-ghost { text-align: center; }

  /* Contact */
  .contact-row { padding: 1.2rem 1.3rem; }
  .contact-row a, .contact-row span { font-size: 1rem; }
  .contact-cta a, .contact-cta span { font-size: 1.3rem; }

  /* FAQ kompakter */
  .faq-item summary { padding: 1rem 1.1rem; font-size: .95rem; gap: .6rem; }
  .faq-item summary::after { font-size: 1.4rem; }
  .faq-item-body { padding: 0 1.1rem 1rem; font-size: .9rem; }

  /* Testimonials */
  .testimonial-quote { font-size: .94rem; }

  /* Map */
  .map-wrap { aspect-ratio: 4/3; margin-top: 2rem; }

  /* Trust Strip */
  .ticker-item { font-size: .78rem; padding: .2rem .6rem; }
}

/* ─── SMARTPHONE (≤560px) ─── */
@media (max-width: 560px) {
  :root { --gutter: 1rem; }
  body { font-size: 15.5px; }

  /* Top-Banner — Region weg, nur Kontakt */
  .top-banner-inner { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .top-banner > .top-banner-inner > span:first-child {
    width: 100%; padding-bottom: .35rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .top-banner-meta { width: 100%; justify-content: space-between; gap: .5rem; flex-wrap: nowrap; }
  .top-banner-meta a { font-size: .76rem; }

  /* Nav */
  .nav-inner { gap: .6rem; padding: .65rem var(--gutter); }
  .brand-mark { height: 40px; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-nav { top: 70px; padding: 1rem var(--gutter) 2rem; }
  .mobile-nav a { font-size: 1.1rem; padding: .85rem 0; }

  /* Stack alle Grids einspaltig */
  .feature-grid, .subservice-grid, .process, .stats, .testimonials { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-header-meta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; padding-block: 2.6rem 1.6rem; }
  .footer-brand { max-width: none; }
  .industry-row { grid-template-columns: 1fr; gap: .25rem; padding: .85rem 1rem; }
  .industry-row b { font-size: .72rem; color: var(--yellow-2); }

  /* Hero kompakter */
  .hero-inner { padding: 1.6rem var(--gutter) 2.2rem; }
  .hero-title { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
  .hero-lead { font-size: .96rem; margin-bottom: 1.4rem; }
  .hero-actions { max-width: none; }
  .hero-microtrust {
    grid-template-columns: 1fr;
    gap: .4rem;
    font-size: .8rem;
    justify-items: start;
    text-align: left;
  }
  .hero-microtrust span { width: 100%; }

  /* Eyebrow + Section-Marker */
  .eyebrow { font-size: .72rem; padding-bottom: .3rem; }
  .section-marker { flex-wrap: wrap; }

  /* Sections noch enger */
  .section { padding-block: 2.4rem; }
  .section-tight { padding-block: 2rem; }
  .section-header-title { font-size: clamp(1.4rem, 6.5vw, 1.8rem); }

  /* Cards Padding */
  .service-tile { padding: 1.4rem 1.2rem; min-height: auto; }
  .service-tile h3 { font-size: 1.2rem; }
  .feature-cell, .subservice-card, .process-step { padding: 1.3rem 1.1rem; }
  .testimonial { padding: 1.4rem 1.2rem; }
  .testimonial::before { font-size: 3rem; top: -.2rem; left: .9rem; }
  .form-card { padding: 1.2rem; }

  /* CTA */
  .cta-block { padding: 1.6rem 1.2rem; gap: 1.4rem; }
  .cta-block h2 { font-size: clamp(1.3rem, 5.5vw, 1.6rem); }
  .cta-block p { font-size: .94rem; }

  /* Page-Header-Meta nur 2 wichtige zeigen */
  .page-header-meta div { padding: .55rem .85rem; }

  /* Legal Pages */
  .legal-page { padding-block: 1.8rem 3rem; }
  .legal-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .legal-card { padding: 1.3rem; }
  .legal-card-row { grid-template-columns: 1fr; gap: .2rem; }
  .legal-block { padding-block: 1.4rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; padding-block: 1.2rem; }
  .footer-legal { gap: 1rem; flex-wrap: wrap; }

  /* Trust-Strip */
  .ticker-inner { padding: .8rem var(--gutter); }
  .ticker-item { font-size: .75rem; }

  /* Buttons mind. 44px Touch-Target */
  .btn { padding: .9rem 1.3rem; min-height: 44px; }
  .nav-list a { padding: .85rem 1rem; min-height: 44px; }

  /* Form-Fields größere Touch-Targets */
  .field input, .field textarea, .field select { padding: .85rem .9rem; font-size: 1rem; }
  /* iOS Zoom verhindern bei <16px Font auf Input */

  /* Cookie-Banner */
  #cookie-banner { left: .6rem; right: .6rem; bottom: .6rem; max-width: none; padding: 1.1rem 1.2rem; }
  .cb-actions { flex-direction: column; }
  .cb-actions .btn { width: 100%; justify-content: center; }
}

/* ─── KLEINE SMARTPHONES (≤400px) ─── */
@media (max-width: 400px) {
  :root { --gutter: .85rem; }
  body { font-size: 15px; }

  /* Top-Banner — nur Telefon, E-Mail weg */
  .top-banner-meta a:nth-child(2) { display: none; }

  /* Brand-Name verstecken auf sehr engen Screens — nur Logo */
  .brand-name { display: none; }

  /* Hero noch enger */
  .hero-title { font-size: clamp(1.75rem, 9vw, 2.2rem); }
  .hero-lead { font-size: .92rem; }

  /* Service-Tile-Chips ohne overflow */
  .service-tile ul { gap: .3rem; }
  .service-tile ul li { font-size: .68rem; padding: .3rem .55rem; }

  /* CTA Padding */
  .cta-block { padding: 1.4rem 1rem; border-radius: 6px; }
  .cta-block h2 { font-size: 1.25rem; }
}

/* ─── TOUCH-DEVICES: Hover-Effekte reduzieren ─── */
@media (hover: none) {
  .service-tile:hover,
  .feature-cell:hover,
  .subservice-card:hover,
  .process-step:hover,
  .stat:hover {
    transform: none;
  }
  .btn:hover {
    transform: none;
  }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .rv { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════
   FLOATING ELEMENTS: Back-to-top + Sticky Call (Mobile)
   ═══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  right: 1.2rem; bottom: 1.4rem;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .15s;
  z-index: 70;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-3); }
.back-to-top svg { color: var(--yellow); }

/* Sticky-Call: nur auf Mobile, fixed unten links */
.sticky-call {
  position: fixed;
  left: 1rem; bottom: 1rem;
  background: var(--yellow);
  color: var(--navy-3);
  padding: .75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700; font-size: .9rem;
  display: none;
  align-items: center; gap: .5rem;
  box-shadow: var(--shadow-3);
  text-decoration: none;
  z-index: 70;
  border: 2px solid var(--yellow-2);
}
.sticky-call svg { color: var(--navy); }
.sticky-call:hover { background: var(--yellow-2); color: var(--navy-3); }
@media (max-width: 820px) {
  .sticky-call { display: inline-flex; }
}

/* Cookie-Banner: über Sticky-Call ggf. positioniert */
@media (max-width: 820px) {
  #cookie-banner.show ~ .sticky-call,
  body:has(#cookie-banner.show) .sticky-call { display: none; }
}

/* FAQ + Details Focus-Style */
.faq-item summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

/* Form-Status mit Symbol-Indikator */
.form-status[role="status"]:not(:empty)::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px;
  background: currentColor;
  border-radius: 50%;
  margin-right: .55rem;
  vertical-align: 1px;
}

/* Footer-Brand auf Mobile sauberer */
@media (max-width: 560px) {
  .footer-brand .brand { flex-direction: row; align-items: center; }
  .footer-brand .brand-mark { height: 48px; }
  .footer-brand .brand-name { font-size: .7rem; }
  .back-to-top { right: .8rem; bottom: 4.4rem; }  /* nicht über sticky-call */
}

/* ═══════════════════════════════════════════════════
   PRINT STYLESHEET
   ═══════════════════════════════════════════════════ */
@media print {
  *, *::before, *::after { background: none !important; box-shadow: none !important; color: black !important; }
  html, body { background: white; font-size: 11pt; line-height: 1.5; }

  /* Komponenten ausblenden, die für Print nicht relevant sind */
  .site-nav, .mobile-nav, .menu-toggle, .top-banner,
  .hero-actions, .hero-microtrust, .hero-watermark,
  .heavy-divider, .section-marker, .ticker,
  .service-tile-cta, .cta-block, .map-wrap, .map-note,
  .back-to-top, .sticky-call, #cookie-banner,
  .skip-link, .btn, .form-card, footer .footer-bottom,
  .faq-item summary::after { display: none !important; }

  /* Sections kompakter */
  .section, .section-tight, .page-header, .legal-page { padding-block: 1rem !important; }
  .hero { border-bottom: 1px solid #999; }

  /* Links unterstrichen, URL hinter externen Links anzeigen */
  a { color: black !important; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .85em; color: #555 !important; }
  a[href^="tel:"]::after, a[href^="mailto:"]::after { content: ""; }

  /* Footer-Grid einspaltig */
  .footer-grid { display: block !important; padding: 1rem 0 !important; border: none !important; }
  .footer-col { margin-bottom: 1rem; }

  /* Karten/Detail-Container ohne Schmuck */
  .service-tile, .feature-cell, .subservice-card, .process-step, .testimonial,
  .stat, .form-card, .contact-row, .legal-card, .faq-item, .industry-table {
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
    page-break-inside: avoid;
  }

  /* Headlines */
  h1, h2, h3, h4 { page-break-after: avoid; color: black !important; }
  .o, .hero-title .o, .section-header-title .o, .legal-title .o { color: black !important; font-weight: 800; }

  /* FAQ alle Details öffnen */
  details { display: block !important; }
  details summary { font-weight: 700; }
  details > div { display: block !important; padding: 0 !important; }
}
