/* =====================================================================
   Drescher Consulting (DCG) — Design-System
   Modernes Redesign · Strategie & KI · Markenfarben beibehalten
   ---------------------------------------------------------------------
   Ein einziges, gemeinsames Stylesheet für alle Seiten.
   Alle Farben/Abstände als CSS-Variablen -> in WordPress einfach unter
   "Design > Customizer > Zusätzliches CSS" einfügen und anpassen.
   ===================================================================== */

/* ------------------------------------------------------------------ *
 * 1. Design-Tokens (Marke)
 * ------------------------------------------------------------------ */
:root {
  /* Markenfarben (aus drescher-consulting.de übernommen) */
  --dcg-lime:        #C9D509;   /* Primär-Akzent (Limette) */
  --dcg-lime-dark:   #A1AA07;   /* Limette dunkel (Hover) */
  --dcg-lime-soft:   #EEF3B9;   /* Limette sehr hell (Flächen) */
  --dcg-teal:        #00ACAD;   /* Sekundär-Akzent (Petrol) */
  --dcg-teal-dark:   #007F80;

  --dcg-ink:         #1C2024;   /* Dunkel / Text stark */
  --dcg-ink-2:       #2B3036;   /* Dunkel (Footer/Bänder) */
  --dcg-grey:        #5A6068;   /* Fließtext */
  --dcg-grey-light:  #8A9099;   /* Sekundärtext */
  --dcg-line:        #E5E8E2;   /* Linien / Rahmen */
  --dcg-bg:          #FFFFFF;   /* Seitenhintergrund */
  --dcg-bg-soft:     #F6F8F1;   /* Abschnitts-Hintergrund (leicht lime) */
  --dcg-white:       #FFFFFF;

  /* Typografie — Segoe UI (Wunsch DCG), mit Fallbacks für Nicht-Windows */
  --font-head: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(28,32,36,.06);
  --shadow-md: 0 10px 30px rgba(28,32,36,.08);
  --shadow-lg: 0 24px 60px rgba(28,32,36,.12);
  --header-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------------------------------------------ *
 * 2. Reset & Basis
 * ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dcg-grey);
  background: var(--dcg-bg);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--dcg-teal-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--dcg-ink); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--dcg-ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

/* ------------------------------------------------------------------ *
 * 3. Layout-Helfer
 * ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
/* großzügiger vertikaler Weißraum zwischen Sektionen (Feedback: mehr Ruhe/Hochwertigkeit) */
.section { padding: clamp(72px, 9.5vw, 150px) 0; }
.section--soft { background: var(--dcg-bg-soft); }
.section--ink { background: var(--dcg-ink); color: #C9CDD3; }
.section--ink h2, .section--ink h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.center.narrow { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-head);
  font-weight: 600; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dcg-teal-dark);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--dcg-lime); display: inline-block; }
.section--ink .eyebrow { color: var(--dcg-lime); }
.lead { font-size: 1.2rem; color: var(--dcg-grey); }
.section--ink .lead { color: #C9CDD3; }

/* ------------------------------------------------------------------ *
 * 4. Buttons
 * ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.btn--primary { background: var(--dcg-lime); color: var(--dcg-ink); }
.btn--primary:hover { background: var(--dcg-lime-dark); color: var(--dcg-ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--dcg-ink); border-color: var(--dcg-line); }
.btn--ghost:hover { border-color: var(--dcg-ink); color: var(--dcg-ink); }
.btn--light { background: #fff; color: var(--dcg-ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--dcg-ink); }
.btn--on-ink { background: var(--dcg-lime); color: var(--dcg-ink); }
.btn--on-ink:hover { background: #fff; color: var(--dcg-ink); }
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.textlink { font-family: var(--font-head); font-weight: 600; color: var(--dcg-ink); display: inline-flex; align-items: center; gap: .4em; }
.textlink::after { content: "→"; transition: transform .2s var(--ease); color: var(--dcg-teal-dark); }
.textlink:hover { color: var(--dcg-teal-dark); }
.textlink:hover::after { transform: translateX(4px); }

/* ------------------------------------------------------------------ *
 * 5. Header & Navigation
 * ------------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-open { background: #fff; box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* Logo (Text-Wortmarke; echtes Logo per <img> ersetzbar) */
.brand { display: inline-flex; align-items: baseline; gap: .12em; font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: var(--dcg-ink); }
.brand b { color: var(--dcg-ink); font-weight: 800; }
.brand span { color: var(--dcg-lime-dark); font-weight: 800; }
.brand .dot { color: var(--dcg-lime); }

/* Primärnavigation */
.nav { display: flex; align-items: center; gap: 2px; }
.nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a, .nav .nav-toggle {
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  color: var(--dcg-ink); padding: .6em .85em; border-radius: 8px;
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: .35em; white-space: nowrap;
}
.nav a:hover, .nav .nav-toggle:hover { color: var(--dcg-teal-dark); background: var(--dcg-bg-soft); }
.nav .caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s var(--ease); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 600px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s var(--ease); border: 1px solid var(--dcg-line);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .caret { transform: rotate(225deg) translateY(2px); }
/* rechtsbündige Dropdowns für die letzten Navigationspunkte (kein Überlauf rechts) */
.nav > ul > li:nth-last-child(-n+3) .dropdown { left: auto; right: 0; }
.dropdown a { display: block; padding: 13px 16px; border-radius: 10px; }
.dropdown a strong { display: block; font-weight: 700; color: var(--dcg-ink); font-size: 1.02rem; margin-bottom: 3px; }
.dropdown a small { font-weight: 400; color: var(--dcg-grey-light); font-size: .84rem; line-height: 1.45; font-family: var(--font-body); }
.dropdown a:hover { background: var(--dcg-bg-soft); }
.dropdown a:hover strong { color: var(--dcg-teal-dark); }

/* Header rechts: Sprache + CTA */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang { display: inline-flex; gap: 2px; font-family: var(--font-head); font-weight: 600; font-size: .85rem; align-items: center; }
.lang a { color: var(--dcg-grey-light); padding: 2px 4px; }
.lang a.is-active { color: var(--dcg-ink); }
.lang a:hover { color: var(--dcg-teal-dark); }
.lang .sep { color: var(--dcg-line); }

/* Hamburger */
.burger { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; position: relative; }
.burger span, .burger span::before, .burger span::after {
  content: ""; position: absolute; left: 9px; right: 9px; height: 2px; background: var(--dcg-ink);
  border-radius: 2px; transition: all .25s var(--ease);
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.is-open .burger span { background: transparent; }
.is-open .burger span::before { top: 0; transform: rotate(45deg); }
.is-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------------ *
 * 6. Hero
 * ------------------------------------------------------------------ */
.hero {
  position: relative; padding-top: calc(var(--header-h) + clamp(40px, 7vw, 90px));
  padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(201,213,9,.18), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(0,172,173,.10), transparent 55%),
    var(--dcg-bg);
}
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .hl { color: var(--dcg-ink); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .34em; background: var(--dcg-lime); z-index: -1; border-radius: 3px; }
.hero .lead { max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-trust { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; font-size: .9rem; color: var(--dcg-grey-light); font-family: var(--font-head); font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5em; }
.hero-trust span::before { content: "✓"; color: var(--dcg-lime-dark); font-weight: 800; }

/* Hero-Visual (Inline-SVG-Komposition) */
.hero-visual { position: relative; }
.hero-visual .card-float {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 14px 18px; font-family: var(--font-head); font-weight: 700; color: var(--dcg-ink);
  display: flex; align-items: center; gap: .6rem; font-size: .95rem;
}
.hero-visual .card-float i { width: 38px; height: 38px; border-radius: 10px; background: var(--dcg-lime-soft); color: var(--dcg-lime-dark); display: grid; place-items: center; font-style: normal; font-size: 1.1rem; }
.hero-visual .cf-1 { top: 8%; left: -6%; }
.hero-visual .cf-2 { bottom: 10%; right: -4%; }
.hero-visual .cf-2 i { background: rgba(0,172,173,.12); color: var(--dcg-teal-dark); }

/* dezente Hero-Animation: sanftes Einblenden + ruhiges Schweben (Feedback: Hero animieren) */
.hero-visual > svg { animation: dcg-rise .9s var(--ease) both; }
.hero-visual .card-float { animation: dcg-float 6s ease-in-out infinite; }
.hero-visual .cf-1 { animation-delay: 0s; }
.hero-visual .cf-2 { animation: dcg-float 7s ease-in-out infinite; animation-delay: .8s; }
@keyframes dcg-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes dcg-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ------------------------------------------------------------------ *
 * 7. Kennzahlen-Band
 * ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dcg-line); border: 1px solid var(--dcg-line); border-radius: var(--radius); overflow: hidden; }
.stat { background: #fff; padding: 28px 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--dcg-ink); letter-spacing: -.03em; }
.stat .num em { color: var(--dcg-lime-dark); font-style: normal; }
.stat .lbl { font-size: .92rem; color: var(--dcg-grey); margin-top: .2rem; }

/* ------------------------------------------------------------------ *
 * 8. Section-Header
 * ------------------------------------------------------------------ */
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; }

/* ------------------------------------------------------------------ *
 * 9. Karten-Grids
 * ------------------------------------------------------------------ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--dcg-line); border-radius: var(--radius);
  padding: 30px; transition: all .25s var(--ease); position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ico {
  width: 52px; height: 52px; border-radius: 13px; background: var(--dcg-lime-soft);
  color: var(--dcg-lime-dark); display: grid; place-items: center; margin-bottom: 18px;
}
.card .ico svg { width: 26px; height: 26px; }
.card.alt .ico { background: rgba(0,172,173,.12); color: var(--dcg-teal-dark); }
.card h3 { margin-bottom: .4em; }
.card p { font-size: .98rem; margin-bottom: 1.1rem; }
.card .textlink { font-size: .95rem; }

/* Pillar-Karte (große 3-Säulen-Karte) */
.pillar { padding: 34px 30px 30px; }
.pillar .tag { font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dcg-teal-dark); }
.pillar h3 { font-size: 1.5rem; margin: .35em 0 .5em; }
.pillar ul { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.pillar li { padding: .35em 0 .35em 1.6em; position: relative; font-size: .96rem; border-bottom: 1px solid var(--dcg-line); }
.pillar li:last-child { border-bottom: 0; }
.pillar li::before { content: ""; position: absolute; left: 0; top: .85em; width: 8px; height: 8px; border-radius: 50%; background: var(--dcg-lime); }

/* ------------------------------------------------------------------ *
 * 10. KI-Highlight (Split-Sektion)
 * ------------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split.rev .split-media { order: 2; }
.feature-list { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; gap: 1rem; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: .9rem; align-items: start; }
.feature-list .fi { width: 28px; height: 28px; border-radius: 8px; background: var(--dcg-lime); color: var(--dcg-ink); display: grid; place-items: center; font-weight: 800; font-size: .8rem; }
.section--ink .feature-list .fi { background: var(--dcg-lime); color: var(--dcg-ink); }
.feature-list strong { color: var(--dcg-ink); font-family: var(--font-head); display: block; }
.section--ink .feature-list strong { color: #fff; }
.feature-list span { font-size: .96rem; }

/* dekorative Media-Box mit Inline-SVG */
.media-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: linear-gradient(135deg, var(--dcg-ink) 0%, var(--dcg-ink-2) 100%); aspect-ratio: 4/3; display: grid; place-items: center; position: relative; }
.media-box.soft { background: linear-gradient(135deg, var(--dcg-lime-soft), #fff); }

/* ------------------------------------------------------------------ *
 * 11. Prozess-Steps
 * ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; }
.step .n { width: 46px; height: 46px; border-radius: 50%; background: var(--dcg-ink); color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; }
.step:first-child .n { background: var(--dcg-lime); color: var(--dcg-ink); }
.step h3 { font-size: 1.12rem; }
.step p { font-size: .94rem; margin: 0; }

/* ------------------------------------------------------------------ *
 * 12. Branchen-Chips
 * ------------------------------------------------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: .5em; padding: .7em 1.2em; border: 1px solid var(--dcg-line); border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--dcg-ink); background: #fff; transition: all .2s var(--ease); }
.chip:hover { border-color: var(--dcg-lime); background: var(--dcg-lime-soft); }
.chip .d { width: 8px; height: 8px; border-radius: 50%; background: var(--dcg-lime); }

/* ------------------------------------------------------------------ *
 * 13. Referenz-/Logo-Wall
 * ------------------------------------------------------------------ */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--dcg-line); border: 1px solid var(--dcg-line); border-radius: var(--radius); overflow: hidden; }
.logo-wall div { background: #fff; aspect-ratio: 16/7; display: grid; place-items: center; color: var(--dcg-grey-light); font-family: var(--font-head); font-weight: 700; letter-spacing: .04em; font-size: .95rem; }

/* ------------------------------------------------------------------ *
 * 14. CTA-Band
 * ------------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; background: var(--dcg-ink); color: #fff; border-radius: clamp(20px, 3vw, 30px); padding: clamp(40px, 6vw, 70px); }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(201,213,9,.35), transparent 65%); }
.cta-band .inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { color: #fff; margin: 0; max-width: 18ch; }
.cta-band p { color: #C9CDD3; margin: .6rem 0 0; }

/* ------------------------------------------------------------------ *
 * 15. Footer
 * ------------------------------------------------------------------ */
.site-footer { background: var(--dcg-ink-2); color: #AEB4BC; padding: clamp(50px, 7vw, 80px) 0 30px; font-size: .94rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand b { color: #fff; }
.footer-col h4 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-col a { color: #AEB4BC; }
.footer-col a:hover { color: var(--dcg-lime); }
.footer-contact p { margin: 0 0 .5rem; }
.footer-contact a { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .86rem; }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 18px; }
.cert { display: inline-flex; align-items: center; gap: .5em; color: var(--dcg-lime); font-family: var(--font-head); font-weight: 600; }

/* ------------------------------------------------------------------ *
 * 16. Innenseiten: Page-Hero (kompakt)
 * ------------------------------------------------------------------ */
.page-hero { padding-top: calc(var(--header-h) + clamp(40px, 6vw, 70px)); padding-bottom: clamp(40px, 6vw, 64px); background: radial-gradient(800px 400px at 90% -20%, rgba(201,213,9,.16), transparent 60%), var(--dcg-bg-soft); }
.page-hero .crumbs { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--dcg-grey-light); margin-bottom: 1rem; }
.page-hero .crumbs a { color: var(--dcg-grey-light); }
.page-hero .crumbs a:hover { color: var(--dcg-teal-dark); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 60ch; }

/* ------------------------------------------------------------------ *
 * 17. Kontakt-Layout
 * ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); }
.contact-card { background: #fff; border: 1px solid var(--dcg-line); border-radius: var(--radius); padding: 32px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--dcg-ink); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--dcg-line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--dcg-ink); background: #fff; transition: border .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--dcg-teal); box-shadow: 0 0 0 3px rgba(0,172,173,.12); }
.contact-info .ci { display: flex; gap: 1rem; padding: 18px 0; border-bottom: 1px solid var(--dcg-line); }
.contact-info .ci:last-child { border-bottom: 0; }
.contact-info .ci .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--dcg-lime-soft); color: var(--dcg-lime-dark); display: grid; place-items: center; }
.contact-info .ci strong { display: block; color: var(--dcg-ink); font-family: var(--font-head); }

/* ------------------------------------------------------------------ *
 * 18. Werte / Team
 * ------------------------------------------------------------------ */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.member { display: flex; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--dcg-line); border-radius: var(--radius); padding: 24px; }
.member .avatar { flex: none; width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, var(--dcg-lime), var(--dcg-teal)); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: var(--dcg-ink); font-size: 1.5rem; }
.member h3 { margin: 0; font-size: 1.2rem; }
.member .role { color: var(--dcg-teal-dark); font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.member .role + p { font-size: .92rem; margin-top: .4rem; }

/* ------------------------------------------------------------------ *
 * 19. Animationen (reveal on scroll)
 * ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual > svg, .hero-visual .card-float { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ *
 * 20. Responsive
 * ------------------------------------------------------------------ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .team { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  /* Mobile-Navigation */
  .burger { display: block; z-index: 1100; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: #fff;
    flex-direction: column; align-items: stretch; padding: 16px 24px 40px;
    transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  .is-open .nav { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li { border-bottom: 1px solid var(--dcg-line); }
  .nav a, .nav .nav-toggle { width: 100%; padding: 16px 4px; font-size: 1.05rem; justify-content: space-between; }
  .dropdown {
    position: static; min-width: 0; box-shadow: none; border: 0; padding: 0 0 12px;
    grid-template-columns: 1fr; opacity: 1; visibility: visible; transform: none;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .has-dropdown.open .dropdown { max-height: 800px; }
  .has-dropdown.open .caret { transform: rotate(225deg) translateY(2px); }
  .dropdown a { padding: 12px 10px; background: var(--dcg-bg-soft); margin: 4px 0; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { display: none; }
  .nav .mobile-cta { display: block; margin-top: 20px; }
  .nav .mobile-cta .btn { display: inline-flex; width: 100%; justify-content: center; }
}

@media (min-width: 761px) { .nav .mobile-cta { display: none; } }

@media (max-width: 540px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .stats, .steps { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: .8rem 1.4rem; }
}

/* ================================================================== *
 * 21. Weiterentwicklung — ausgebauter Footer (Social, CTA-Streifen)
 *     (Top-Navigation: 5 Punkte wie Webseite 1.0; Hamburger erst < 760px
 *      über den Basis-Block in Abschnitt 20 — kein 1279px-Breakpoint mehr)
 * ================================================================== */

/* Footer CTA-Streifen (oben im Footer) */
.footer-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px; padding-bottom: 42px; margin-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-cta h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.95rem); margin: 0; max-width: 26ch; line-height: 1.2; }
.footer-cta p { margin: .5rem 0 0; color: #AEB4BC; }

/* Social-Icons im Footer */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--dcg-lime); color: var(--dcg-ink); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }

/* etwas mehr Luft zwischen den Footer-Spalten */
.site-footer .footer-top { gap: 48px; }

@media (max-width: 760px) {
  .footer-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ================================================================== *
 * 22. Team-Fotos (Führungskreis) & Ansprechpartner-Block
 *     Echte Personenfotos im Stil hochwertiger Beratungs-Websites
 * ================================================================== */
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.person {
  background: #fff; border: 1px solid var(--dcg-line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.person .photo { aspect-ratio: 4/5; overflow: hidden; background: var(--dcg-bg-soft); }
.person .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; transition: transform .5s var(--ease); }
.person:hover .photo img { transform: scale(1.04); }
.person .p-body { padding: 18px 20px 22px; }
.person h3 { margin: 0 0 2px; font-size: 1.16rem; }
.person .role { color: var(--dcg-teal-dark); font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.person p { font-size: .9rem; margin: .55rem 0 0; color: var(--dcg-grey); line-height: 1.55; }

/* Foto in der bestehenden .member-Karte (z. B. Geschäftsführung auf Über uns) */
.member .avatar { overflow: hidden; }
.member .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; border-radius: 50%; }

/* Ansprechpartner-Block (auf Beratungsfeld-Seiten) */
.contact-person {
  display: flex; align-items: center; gap: 26px;
  background: #fff; border: 1px solid var(--dcg-line); border-radius: var(--radius);
  padding: 26px 30px; box-shadow: var(--shadow-sm);
}
.contact-person .cp-photo { flex: none; width: 104px; height: 104px; border-radius: 50%; overflow: hidden; background: var(--dcg-bg-soft); }
.contact-person .cp-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.contact-person .cp-photo.is-initials { background: linear-gradient(135deg, var(--dcg-lime), var(--dcg-teal)); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: var(--dcg-ink); font-size: 2.1rem; letter-spacing: .02em; }
.contact-person .eyebrow { margin-bottom: .5rem; }
.contact-person h3 { margin: 0; font-size: 1.3rem; }
.contact-person .role { color: var(--dcg-teal-dark); font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-top: .1rem; }
.contact-person .cp-links { margin-top: .7rem; display: flex; flex-wrap: wrap; gap: 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: .92rem; }

@media (max-width: 860px) {
  .people { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .people { grid-template-columns: 1fr; }
  .contact-person { flex-direction: column; text-align: center; align-items: center; }
  .contact-person .cp-links { justify-content: center; }
}

/* ================================================================== *
 * 23. Kundenlogo-Slider (Logo-Marquee) — Stil hochwertiger Referenzen
 * ================================================================== */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track { display: flex; gap: 24px; width: max-content; animation: dcg-marquee 34s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track .logo-item {
  flex: none; width: 176px; height: 88px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--dcg-line); border-radius: var(--radius-sm);
  color: var(--dcg-grey-light); font-family: var(--font-head); font-weight: 700; letter-spacing: .05em; font-size: .95rem;
}
@keyframes dcg-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* ================================================================== *
 * 24. Top-Navigation: Leiste bleibt bis 769px sichtbar
 *     - 769–1120px: kompaktere Horizontal-Leiste (kleinere Schrift/Abstände)
 *     - unter 769px: Hamburger-/Slide-in-Menü
 * ================================================================== */
/* Kompakte, aber sichtbare Leiste auf schmaleren Desktop-/Tablet-Breiten.
   Sekundärelemente (Sprache, Kontakt-Button) werden hier ausgeblendet, damit
   die Marke + 5 Menüpunkte ohne Überlauf passen; beides bleibt im Slide-in-Menü
   (unter 769px) und im Footer erreichbar. */
@media (min-width: 769px) and (max-width: 1120px) {
  .brand { font-size: 1.05rem; }
  .nav a, .nav .nav-toggle { font-size: .82rem; padding: .45em .5em; gap: .2em; }
  .nav > ul { gap: 0; }
  .header-actions .lang,
  .header-actions .btn { display: none; }
  .site-header .container { padding-inline: 18px; }
}

/* ================================================================== *
 * 25. Ansprechpartner — 1–2 Personen je Beratungsfeld, mit Kontaktdaten
 * ================================================================== */
.people-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.people-contact .contact-person { width: 100%; }
.contact-person .cp-links { flex-direction: column; gap: .4rem; align-items: flex-start; }
.contact-person .cp-links a { color: var(--dcg-teal-dark); display: inline-flex; align-items: center; gap: .5em; word-break: break-word; }
.contact-person .cp-links a:hover { color: var(--dcg-ink); }
.contact-person .cp-links svg { width: 15px; height: 15px; flex: none; color: var(--dcg-teal-dark); }

@media (max-width: 768px) {
  .burger { display: block; z-index: 1100; }
  .site-header .nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: #fff;
    flex-direction: column; align-items: stretch; padding: 16px 24px 40px;
    transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  .site-header.is-open .nav { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li { border-bottom: 1px solid var(--dcg-line); }
  .nav a, .nav .nav-toggle { width: 100%; padding: 16px 4px; font-size: 1.05rem; justify-content: space-between; }
  .has-dropdown .dropdown {
    position: static; min-width: 0; box-shadow: none; border: 0; padding: 0 0 12px;
    grid-template-columns: 1fr; opacity: 1; visibility: visible; transform: none;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .has-dropdown.open .dropdown { max-height: 900px; }
  .has-dropdown.open .caret { transform: rotate(225deg) translateY(2px); }
  .dropdown a { padding: 12px 10px; background: var(--dcg-bg-soft); margin: 4px 0; }
  .header-actions .btn { display: none; }
  .nav .mobile-cta { display: block; margin-top: 20px; }
  .nav .mobile-cta .btn { display: inline-flex; width: 100%; justify-content: center; }
}
