﻿/*
Theme Name: benchmarkc
Theme URI: https://benchmarkconsult.de
Author: internetgestalten.de 
Author URI: https://internetgestalten.de
Version: 0.9.0
Description: Wordpress Theme - Benchmark Consult 2026
*/
  /* ---------- Reset & Base ---------- */
  *,*::before,*::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Helvetica Neue", "Segoe UI", "Inter", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: #15243a;
    background: #fbfaf7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  :root {
    --navy-900: #0e1116;
    --navy-800: #1a1f28;
    --navy-700: #2a313d;
    --navy-600: #3d4654;
    --navy-50:  #eef1f6;
    --gold:     #00a8d7;
    --gold-soft:#5cc4e3;
    --ink:      #1a1f28;
    --ink-soft: #4a5360;
    --ink-mute: #7a8290;
    --paper:    #faf9f6;
    --paper-2:  #efece5;
    --rule:     #d6d2c8;
    --rule-dark:rgba(255,255,255,0.13);
    --maxw:     1240px;
    --gutter:   clamp(20px, 4vw, 56px);
  }

  /* ---------- Layout helpers ---------- */
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0; }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--gold);
    display: inline-block;
  }
  .eyebrow.on-dark { color: var(--gold-soft); }
  .eyebrow.on-dark::before { background: var(--gold-soft); }

  h1, h2, h3, h4 { font-weight: 500; color: var(--ink); margin: 0; letter-spacing: -0.01em; }
  h1 { font-size: clamp(36px, 5.4vw, 64px); line-height: 1.08; letter-spacing: -0.018em; font-weight: 400; }
  h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; font-weight: 400; }
  h3 { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.3; }
  h4 { font-size: 17px; line-height: 1.3; }

  .lede {
    font-size: clamp(17px, 1.4vw, 19px);
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 62ch;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 14px;
    letter-spacing: 0.04em;
    font-weight: 500;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  }
  .btn .arrow { display: inline-block; transform: translateY(-1px); transition: transform .25s ease; }
  .btn:hover .arrow { transform: translate(3px,-1px); }
  .btn-primary { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
  .btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
  .btn-ghost-light { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.35); }
  .btn-ghost-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
  .btn-ghost-dark { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
  .btn-ghost-dark:hover { background: var(--navy-800); color: #fff; }
  .btn-nav { padding: 9px 16px; font-size: 13px; background: var(--gold); color: var(--navy-900); border-radius: 2px; }
  .btn-nav:hover { background: var(--gold-soft); }

  /* ---------- Navigation ---------- */
  .nav { position: sticky; top: 0; z-index: 50; background: var(--navy-800); color: #fff; border-bottom: 1px solid rgba(0,168,215,0.35); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
  .brand { display: flex; align-items: center; gap: 18px; }
  .brand .logo-img { height: 102px; width: auto; display: block; filter: brightness(1.05); }
  .brand .tag { font-size: 19px; letter-spacing: 0.04em; text-transform: none; color: var(--gold-soft); border-left: 1px solid rgba(92,196,227,0.32); padding-left: 20px; align-self: center; }
  .nav-links { display: flex; align-items: center; gap: 26px; list-style: none; padding: 0; margin: 0; }
  .nav-links a { font-size: 15px; color: rgba(255,255,255,0.85); letter-spacing: 0.01em; padding: 6px 0; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; font-weight: 500; }
  .nav-links a:hover { color: #fff; border-bottom-color: var(--gold); }
  .nav-cta-wrap { display: flex; align-items: center; gap: 14px; }
  .nav-burger { display: none; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 10px 10px; border-radius: 2px; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 38px; }
  .burger-bar { display: block; width: 20px; height: 2px; background: #fff; border-radius: 1px; transition: opacity .2s, transform .25s; }
  .nav-burger[aria-expanded="true"] .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---------- Hero ---------- */
  .hero { position: relative; background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%); color: #fff; overflow: hidden; padding: clamp(80px, 12vw, 140px) 0 clamp(70px, 9vw, 110px); }
  .hero::before { content: ""; position: absolute; inset: 0; background: url("images/hero-bg.jpg") right center / cover no-repeat; opacity: 0.12; mix-blend-mode: lighten; pointer-events: none; z-index: 0; }
  .hero > * { position: relative; z-index: 1; }
  .hero .geometry { position: absolute; inset: 0; pointer-events: none; opacity: 0.6; }
  .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: end; position: relative; }
  .hero h1 { color: #fff; max-width: 18ch; }
  .hero h1 .accent { color: var(--gold-soft); }
  .hero .lede { color: rgba(255,255,255,0.78); margin-top: 28px; max-width: 52ch; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

  .hero-meta { border-left: 1px solid rgba(92,196,227,0.40); padding-left: 28px; margin-bottom: 8px; }
  .hero-meta .label { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 22px; display: block; }
  .hero-meta dl { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 0; }
  .hero-meta dt { font-size: 28px; font-weight: 300; color: #fff; letter-spacing: -0.01em; line-height: 1.1; }
  .hero-meta dd { font-size: 13px; color: rgba(255,255,255,0.68); margin: 4px 0 0; letter-spacing: 0.02em; }

  .hero-proof { margin-top: clamp(50px, 7vw, 80px); padding-top: 28px; border-top: 1px solid rgba(92,196,227,0.28); display: flex; flex-wrap: wrap; gap: 36px 56px; font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; }
  .hero-proof span { display: inline-flex; align-items: center; gap: 12px; }
  .hero-proof span::before { content: ""; width: 6px; height: 6px; background: var(--gold); display: inline-block; }

  /* ---------- Section base ---------- */
  section { 
    padding: clamp(72px, 9vw, 120px) 0; 
    scroll-margin-top: 30px;
  
  }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head h2 { margin-top: 14px; }
  .section-head p { margin: 18px 0 0; color: var(--ink-soft); }

  /* ---------- Scenarios ---------- */
  .scenarios { background: var(--paper); border-top: 1px solid var(--rule); }
  .scenarios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); }
  .scenario { padding: 44px 40px 44px 0; border-right: 1px solid var(--rule); position: relative; }
  .scenario:last-child { border-right: none; padding-right: 0; }
  .scenario:not(:first-child) { padding-left: 40px; }
  .scenario .idx { font-size: 12px; color: var(--gold); letter-spacing: 0.18em; font-weight: 600; }
  .scenario h3 { margin: 14px 0 18px; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; font-weight: 500; letter-spacing: -0.012em; }
  .scenario p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 28px; max-width: 36ch; }
  .scenario .ref { font-size: 12.5px; letter-spacing: 0.04em; color: var(--navy-700); display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid var(--gold); transition: gap .2s ease; }
  .scenario .ref:hover { gap: 14px; }

  /* ---------- Services Overview ---------- */
  .services { background: var(--navy-800); color: #fff; }
  .services .section-head h2 { color: #fff; }
  .services .section-head p { color: rgba(255,255,255,0.7); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .service { padding: 36px 32px; background: rgba(255,255,255,0.03); border: 1px solid rgba(92,196,227,0.22); display: flex; flex-direction: column; gap: 22px; min-height: 360px; transition: border-color .25s ease, background .25s ease; }
  .service:hover { border-color: var(--gold); background: rgba(0,168,215,0.05); }
  .service .num { font-size: 13px; color: var(--gold-soft); letter-spacing: 0.22em; font-weight: 500; }
  .service h3 { color: #fff; font-weight: 500; font-size: 22px; line-height: 1.25; }
  .service p { color: rgba(255,255,255,0.75); margin: 0; font-size: 15px; flex-grow: 1; }
  .service .cta { font-size: 13px; letter-spacing: 0.04em; color: var(--gold-soft); display: inline-flex; gap: 10px; align-items: center; border-top: 1px solid rgba(92,196,227,0.28); padding-top: 18px; }
  .service .cta:hover { color: var(--gold); }

  /* ---------- Service Detail Sections ---------- */
  .detail { background: var(--paper); border-top: 1px solid var(--rule); }
  .detail.alt { background: var(--paper-2); }
  .detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
  .detail-grid .left { position: sticky; top: 100px; }
  .detail h2 { max-width: 16ch; }
  .detail .sub { margin-top: 18px; color: var(--ink-soft); font-size: 17px; }
  .detail .right h3 { font-size: 17px; color: var(--navy-800); font-weight: 600; letter-spacing: 0.02em; margin-top: 36px; margin-bottom: 14px; padding-bottom: 6px; border-bottom: 1px solid var(--rule); }
  .detail .right h3:first-child { margin-top: 0; }
  .detail .lst { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 36px; }
  .detail .lst li { padding: 8px 0 8px 22px; position: relative; font-size: 14.5px; color: var(--ink); break-inside: avoid; line-height: 1.4; }
  .detail .lst li::before { content: ""; position: absolute; left: 0; top: 16px; width: 12px; height: 1px; background: var(--gold); }
  .detail .vorteile { background: #fff; border: 1px solid var(--rule); padding: 28px 32px; margin-top: 36px; }
  .detail .vorteile h3 { margin-top: 0; padding-bottom: 0; border: 0; color: var(--gold); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
  .detail .vorteile ul { list-style: none; padding: 0; margin: 16px 0 0; }
  .detail .vorteile li { padding: 6px 0 6px 24px; position: relative; font-size: 14.5px; }
  .detail .vorteile li::before { content: "✓"; position: absolute; left: 0; top: 6px; color: var(--gold); font-weight: 600; }

  /* ---------- DSI Band ---------- */
  .dsi { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .dsi-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
  .dsi h2 { max-width: 16ch; }
  .dsi .lede { margin-top: 22px; }
  .dsi-cities { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 22px 28px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-700); }
  .dsi-cities span { display: inline-flex; align-items: center; gap: 10px; }
  .dsi-cities span::before { content: ""; width: 5px; height: 5px; background: var(--gold); display: inline-block; transform: rotate(45deg); }
  .dsi-packages { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }
  .dsi-package { padding: 26px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 56px 1fr auto; align-items: baseline; gap: 24px; }
  .dsi-package .pn { font-size: 12px; color: var(--gold); letter-spacing: 0.18em; font-weight: 600; }
  .dsi-package h4 { font-size: 18px; font-weight: 500; color: var(--ink); margin: 0 0 6px; }
  .dsi-package p { font-size: 14px; color: var(--ink-soft); margin: 0; max-width: 48ch; }
  .dsi-package .pcta { font-size: 12px; letter-spacing: 0.04em; color: var(--navy-700); align-self: center; white-space: nowrap; }
  .dsi-package .pcta:hover { color: var(--gold); }

  /* ---------- References ---------- */
  .refs { background: var(--paper); }
  .refs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 64px; }
  .ref-card { background: #fff; border: 1px solid var(--rule); display: flex; flex-direction: column; }
  .ref-img { aspect-ratio: 16/9; background: #fff; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 28px 32px; border-bottom: 1px solid var(--rule); }
  .ref-img a.proj-link { display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 100%; transition: opacity .2s ease; }
  .ref-img a.proj-link:hover { opacity: 0.75; }
  .ref-img img.proj-logo { max-height: 96px; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
  .ref-img .placeholder-logo { text-align: center; } .ref-img .placeholder-logo .pl-text { font-size: 38px; letter-spacing: 0.06em; font-weight: 600; color: var(--ink); text-transform: uppercase; line-height: 1; } .ref-img .placeholder-logo small { display: block; font-size: 10px; letter-spacing: 0.25em; color: var(--gold); margin-top: 12px; font-weight: 600; text-transform: uppercase; }
  .ref-img .tag { position: absolute; right: 18px; bottom: 16px; background: var(--navy-800); color: #fff; font-size: 11px; letter-spacing: 0.08em; padding: 5px 12px; font-weight: 600; text-transform: uppercase; }
  .ref-body { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; }
  .ref-body .ref-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
  .ref-body h3 { margin: 12px 0 16px; font-size: 24px; font-weight: 500; color: var(--ink); }
  .ref-facts { display: flex; gap: 32px; flex-wrap: wrap; margin: 12px 0 22px; padding: 18px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .ref-facts div { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.02em; }
  .ref-facts div strong { display: block; color: var(--ink); font-size: 16px; font-weight: 500; margin-top: 4px; letter-spacing: -0.01em; }
  .ref-body p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 16px; }
  .ref-body ul { list-style: none; padding: 0; margin: 0; }
  .ref-body li { padding: 5px 0 5px 22px; position: relative; font-size: 13.5px; color: var(--ink); }
  .ref-body li::before { content: "→"; position: absolute; left: 0; color: var(--gold); top: 5px; }

  .erfahrung { padding-top: 36px; border-top: 1px solid var(--rule); }
  .erfahrung h3 { font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
  .erfahrung .lede { margin-bottom: 36px; }
  .erfahrung-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .erfahrung-card { background: #fff; border: 1px solid var(--rule); padding: 32px 28px; }
  .erfahrung-card .ek { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
  .erfahrung-card h4 { font-size: 17px; color: var(--ink); margin: 0 0 12px; font-weight: 500; }
  .erfahrung-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }

  /* ---------- Ãœber uns + Quote ---------- */
  .quote { background: var(--paper); }
  .quote-inner { max-width: 920px; margin: 0 auto; text-align: center; }
  .quote-mark { font-size: 56px; color: var(--gold); line-height: 1; font-family: Georgia, "Times New Roman", serif; }
  .quote blockquote { margin: 18px 0 30px; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.4; color: var(--ink); font-weight: 400; letter-spacing: -0.008em; }
  .quote cite { display: block; font-style: normal; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
  .quote cite strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 4px; letter-spacing: 0.04em; font-size: 14px; text-transform: none; }
  .quote-rule { width: 64px; height: 1px; background: var(--gold); margin: 32px auto 0; }

  .about { background: var(--paper-2); }
  .about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
  .portrait { aspect-ratio: 3/4; background: var(--navy-900); position: relative; overflow: hidden; }
  .portrait::after { content: none; }  .portrait img.p-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
  .portrait .ph-cap { position: absolute; left: 14px; bottom: 12px; color: #fff; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(14,17,22,0.55); padding: 4px 10px; backdrop-filter: blur(4px); z-index: 2; }
  .about-text h2 { margin-bottom: 14px; }
  .about-text .role { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 24px; }
  .about-text p { color: var(--ink-soft); font-size: 16px; margin: 0 0 14px; max-width: 60ch; }
  .vita { margin: 24px 0; padding: 20px 24px; background: #fff; border-left: 3px solid var(--gold); }
  .vita .vk { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
  .vita p { margin: 0; color: var(--ink); font-size: 14.5px; }
  .stationen { list-style: none; padding: 0; margin: 0; }
  .stationen li { padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .stationen li:last-child { border-bottom: 0; padding-bottom: 0; }
  .stationen li:first-child { padding-top: 0; }
  .stationen .stn-name { font-size: 14px; font-weight: 600; color: var(--ink); display: block; }
  .stationen .stn-ort  { font-size: 12px; color: var(--ink-mute); margin-left: 6px; font-weight: 400; }
  .stationen .stn-role { font-size: 13.5px; color: var(--ink-soft); display: block; margin-top: 4px; line-height: 1.45; }

  /* About â€” drei Pfeiler */
  .ueber-pfeiler { display: grid; grid-template-columns: 1fr; gap: 0; margin: 28px 0 6px; border-top: 1px solid var(--rule); }
  .pfeiler-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
  .pfeiler-item .pn { font-size: 12px; color: var(--gold); letter-spacing: 0.22em; font-weight: 600; }
  .pfeiler-item h4 { font-size: 16px; color: var(--ink); margin: 0 0 6px; font-weight: 600; }
  .pfeiler-item p { font-size: 14px; color: var(--ink-soft); margin: 0; max-width: 56ch; }

  /* About â€” Spezialisierung */
  .spezialisierung { margin-top: 80px; padding-top: 56px; border-top: 1px solid var(--rule); }
  .spez-head { max-width: 720px; margin-bottom: 36px; }
  .spez-head h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; color: var(--ink); margin: 14px 0 14px; letter-spacing: -0.012em; }
  .spez-head .lede { margin: 0; }
  .leitfragen {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: lf;
  }
  .leitfragen li {
    counter-increment: lf;
    position: relative;
    background: #fff;
    border: 1px solid var(--rule);
    padding: 38px 32px 36px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }
  .leitfragen li::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 56px;
    height: 3px;
    background: var(--gold);
    transition: width .35s ease;
  }
  .leitfragen li::after {
    content: counter(lf, decimal-leading-zero);
    position: absolute;
    top: 8px;
    right: 18px;
    font-size: 88px;
    line-height: 1;
    font-weight: 200;
    color: var(--navy-800);
    opacity: 0.07;
    letter-spacing: -0.04em;
    pointer-events: none;
    font-family: Georgia, "Times New Roman", serif;
  }
  .leitfragen li:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 18px 36px -22px rgba(12,39,66,0.35);
  }
  .leitfragen li:hover::before { width: 88px; }
  .leitfragen .lfk {
    font-size: 10.5px;
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
  }
  .leitfragen .lf {
    font-size: 18px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.3;
    display: block;
    max-width: 22ch;
    letter-spacing: -0.005em;
  }
  .spez-foot { font-size: 14.5px; color: var(--ink-soft); max-width: 78ch; margin: 0; }

  /* About â€” Ansatz + FÃ¼hrung Grid */
  .about-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--rule); }
  .about-grid2 h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 400; color: var(--ink); margin: 14px 0 16px; letter-spacing: -0.012em; }
  .about-grid2 p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; max-width: 56ch; }
  .ansatz-list { list-style: none; padding: 0; margin: 18px 0 0; }
  .ansatz-list li { padding: 8px 0 8px 22px; position: relative; font-size: 14.5px; color: var(--ink); border-bottom: 1px solid var(--rule); }
  .ansatz-list li:last-child { border-bottom: 0; }
  .ansatz-list li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 600; }

  /* About â€” Zielgruppen */
  .zielgruppen { margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--rule); }
  .zielgruppen h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; color: var(--ink); margin: 14px 0 30px; letter-spacing: -0.012em; }
  .zielgruppen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .zg-card { background: #fff; border: 1px solid var(--rule); padding: 30px 28px; position: relative; min-height: 200px; }
  .zg-card .zk { position: absolute; top: 18px; right: 22px; font-size: 28px; color: var(--gold); font-weight: 300; letter-spacing: -1px; line-height: 1; }
  .zg-card h4 { font-size: 17px; color: var(--ink); font-weight: 600; margin: 0 0 12px; max-width: 22ch; }
  .zg-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
  .zg-foot { font-size: 13.5px; color: var(--ink-soft); margin-top: 26px; font-style: italic; max-width: 78ch; }

  /* ---------- Team ---------- */
  .team { background: var(--paper); border-top: 1px solid var(--rule); }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .team-card { text-align: left; }
  .team-photo { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); position: relative; overflow: hidden; margin-bottom: 12px; }
  .team-photo.has-photo { background: var(--navy-900); }
  .team-photo .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
  .team-photo .initials { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(92,196,227,0.40); font-size: 36px; font-weight: 300; letter-spacing: -1px; }
  .team-photo .badge { display: none; }
  .team-photo .ph { position: absolute; left: 10px; bottom: 8px; color: rgba(255,255,255,0.55); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
  .team-card h4 { font-size: 14.5px; color: var(--ink); margin: 0 0 2px; font-weight: 600; }
  .team-card .role { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
  .team-card .org { font-size: 10.5px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-top: 4px; }
  .gruppenbild-note { margin-top: 40px; padding: 24px 28px; background: #fff; border: 1px dashed var(--rule); }
  .gruppenbild-note .nk { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy-800); font-weight: 600; margin-bottom: 8px; }
  .gruppenbild-note p { margin: 0; font-size: 14px; color: var(--ink-soft); }

  /* ---------- Partner ---------- */
  .partner { background: var(--navy-800); color: #fff; }
  .partner .section-head h2 { color: #fff; }
  .partner .section-head p { color: rgba(255,255,255,0.72); }
  .partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .partner-card { padding: 0 0 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(92,196,227,0.22); display: flex; flex-direction: column; }
  .partner-card.strat { background: rgba(255,255,255,0.03); border-color: rgba(92,196,227,0.22); }
  .partner-card .partner-logo { background: #fff; height: 92px; display: flex; align-items: center; justify-content: center; padding: 16px 22px; margin: 0 0 22px; }
  .partner-card .partner-logo img { max-height: 48px; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
  .partner-card .pe { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; margin: 0 22px 14px; }
  .partner-card.strat .pe { color: var(--gold); }
  .partner-card h4 { font-size: 16px; color: #fff; font-weight: 500; margin: 0 22px 12px; line-height: 1.3; }
  .partner-card p { font-size: 13px; color: rgba(255,255,255,0.72); margin: 0 22px 14px; }
  .partner-card .locs { font-size: 11px; color: rgba(92,196,227,0.62); letter-spacing: 0.06em; text-transform: uppercase; margin: 0 22px; }
  .partner-note { margin-top: 32px; font-size: 13px; color: rgba(255,255,255,0.55); font-style: italic; }

  /* ---------- Insights ---------- */
  .insights { background: var(--paper); }
  .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .insight { background: #fff; border: 1px solid var(--rule); padding: 28px 28px 32px; position: relative; }
  .insight .status { position: absolute; top: 16px; right: 16px; background: rgba(0,168,215,0.16); color: #1d6a86; font-size: 10px; letter-spacing: 0.12em; padding: 3px 9px; text-transform: uppercase; font-weight: 700; }
  .insight .ic { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy-800); font-weight: 600; margin-bottom: 8px; margin-top: 14px; }
  .insight h4 { font-size: 17px; color: var(--ink); margin: 0 0 10px; font-weight: 500; line-height: 1.3; }
  .insight p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

  /* ---------- FAQ ---------- */
  .faq { background: var(--paper-2); }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 18px;
  }
  details.fq {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 4px;
    margin: 0 0 16px;
    break-inside: avoid;
    transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
    overflow: hidden;
  }
  details.fq:hover { border-color: var(--gold); box-shadow: 0 8px 22px -14px rgba(12,39,66,0.22); transform: translateY(-1px); }
  details.fq[open] { border-color: var(--gold); }
  details.fq summary {
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    list-style: none;
    position: relative;
    padding: 18px 56px 18px 22px;
    line-height: 1.4;
  }
  details.fq summary::-webkit-details-marker { display: none; }
  details.fq summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,168,215,0.12);
    color: var(--gold);
    font-size: 18px;
    font-weight: 400;
    display: grid;
    place-items: center;
    transition: background .2s ease, color .2s ease;
  }
  details.fq:hover summary::after { background: var(--gold); color: #fff; }
  details.fq[open] summary::after { content: "−"; background: var(--gold); color: #fff; }
  details.fq[open] summary { border-bottom: 1px solid var(--rule); }
  details.fq p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    padding: 16px 22px 20px;
  }


  .faq-group { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 56px 0 14px; padding-top: 22px; border-top: 1px solid var(--rule); }
  .faq-group:first-of-type { margin-top: 16px; border-top: 0; padding-top: 0; }
  .faq-group-lead { font-size: 14px; color: var(--ink-soft); margin: -8px 0 18px; font-style: italic; max-width: 64ch; }

  /* ---------- Kontakt ---------- */
  .kontakt { background: var(--paper); }
  .kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
  .k-info, .k-form { background: #fff; border: 1px solid var(--rule); padding: 36px; }
  .k-info h3 { font-size: 22px; color: var(--ink); margin: 0 0 10px; font-weight: 500; }
  .k-info > p { color: var(--ink-soft); margin: 0 0 22px; font-size: 14.5px; }
  .k-line { display: flex; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .k-line:last-child { border-bottom: 0; }
  .k-line .lbl { font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.18em; text-transform: uppercase; width: 110px; flex-shrink: 0; }
  .k-line .val { color: var(--ink); font-weight: 500; font-size: 15px; flex: 1; }
  .k-line .val .placeholder { color: var(--gold); border: 1px dashed var(--gold); padding: 2px 8px; font-size: 11px; letter-spacing: 0.06em; }
  .k-form h3 { font-size: 22px; color: var(--ink); margin: 0 0 22px; font-weight: 500; }
  .k-form label { display: block; font-size: 11px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
  .k-form input, .k-form select, .k-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--rule); background: var(--paper); font-size: 14.5px; font-family: inherit; color: var(--ink); margin-bottom: 18px; border-radius: 2px; }
  .k-form input:focus, .k-form select:focus, .k-form textarea:focus { outline: 0; border-color: var(--gold); }
  .k-form textarea { resize: vertical; min-height: 100px; }
  .k-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .k-form .consent { font-size: 12px; color: var(--ink-mute); margin: 0 0 18px; }
  .k-form .consent input { width: auto; margin-right: 8px; margin-bottom: 0; }
  .k-form button { background: var(--navy-800); color: #fff; padding: 13px 24px; border: 0; font-size: 13.5px; letter-spacing: 0.04em; font-weight: 500; border-radius: 2px; cursor: pointer; }
  .k-form button:hover { background: var(--gold); color: var(--navy-900); }

  /* ---------- CTA strip ---------- */
  .cta-strip { background: var(--navy-900); color: #fff; padding: 70px 0; }
  .cta-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
  .cta-strip h3 { color: #fff; font-size: clamp(22px, 2.2vw, 28px); font-weight: 400; max-width: 28ch; }
  .cta-strip h3 .accent { color: var(--gold-soft); }

  /* ---------- Footer ---------- */
  footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding: 80px 0 28px; font-size: 14px; border-top: 1px solid var(--rule-dark); }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--rule-dark); }
  .footer-brand .logo-img-footer { height: 64px; width: auto; display: block; margin-bottom: 18px; filter: brightness(1.05); }
  .footer-brand .tag { font-size: 11px; letter-spacing: 0.04em; text-transform: none; color: var(--gold-soft); margin-bottom: 22px; }
  .footer-brand p { color: rgba(255,255,255,0.6); max-width: 38ch; margin: 0; font-size: 14px; }
  footer h5 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; font-weight: 500; }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a, .footer-col span { color: rgba(255,255,255,0.75); font-size: 14px; transition: color .2s ease; }
  .footer-col a:hover { color: var(--gold-soft); }
  .footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
  .footer-bottom .legal a { color: rgba(255,255,255,0.6); margin-left: 22px; }
  .footer-bottom .legal a:hover { color: var(--gold-soft); }

  .placeholder { color: var(--gold); border: 1px dashed var(--gold); padding: 2px 8px; font-size: 12px; letter-spacing: 0.06em; border-radius: 2px; display: inline-block; }


  /* ---------- Responsive ---------- */
  @media (max-width: 1320px) {
    .wrap { padding: 10px var(--gutter); }
    .nav-inner { padding-left: var(--gutter); padding-right: var(--gutter); }
  }

  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-meta { border-left: none; padding-left: 0; border-top: 1px solid rgba(92,196,227,0.40); padding-top: 32px; }
    .hero-meta dl { grid-template-columns: 1fr 1fr; gap: 24px; }
    .scenarios-grid { grid-template-columns: 1fr; }
    .scenario { border-right: none; border-bottom: 1px solid var(--rule); padding: 36px 0 !important; }
    .scenario:last-child { border-bottom: none; }
    .services-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .detail-grid .left { position: static; }
    .detail .lst { columns: 1; }
    .dsi-grid { grid-template-columns: 1fr; gap: 40px; }
    .refs-grid { grid-template-columns: 1fr; }
    .erfahrung-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-grid2 { grid-template-columns: 1fr; gap: 40px; }
    .leitfragen { grid-template-columns: 1fr; }
    .leitfragen li { border-right: 0; padding: 22px 0 !important; }
    .zielgruppen-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .partner-grid { grid-template-columns: 1fr 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .k-form .row-2 { grid-template-columns: 1fr; }
    .brand .logo-img { height: 64px; }
    .brand .tag { font-size: 14px; letter-spacing: 0.14em; }
    .brand { gap: 12px; }
    .nav-links { display: none; }
    .nav-links.nav-open { display: flex; flex-direction: column; align-items: flex-start; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-800); border-top: 1px solid rgba(92,196,227,0.2); padding: 12px var(--gutter) 20px; }
    .nav-links.nav-open li {
        display: block;
        width: 100%;
          
     }
    .nav-links.nav-open a { display: block; width: 100%; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
    .nav-links.nav-open li.has-dropdown ul.sub { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding: 0 0 0 16px; margin: 0; min-width: 0; box-shadow: none; }
    .nav-links.nav-open li.has-dropdown ul.sub a { font-size: 14px; padding: 9px 0; white-space: normal; }
    .nav-burger { display: flex; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 620px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .hero-meta dl { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .dsi-package { grid-template-columns: 1fr; gap: 8px; }
    .dsi-package .pn { letter-spacing: 0.22em; }
    .cta-strip-inner { flex-direction: column; align-items: flex-start; }
    .hero-proof { gap: 18px; }
  }

  /* ---------- Print / PDF ---------- */
  @media print {
    @page { size: A4 landscape; margin: 0; }
    .nav-cta-wrap, .nav-burger { display: none; }
    .nav { position: static; }
    section, footer { page-break-before: always; }
    section.hero { page-break-before: auto; }
    body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  }

  /* ---------- Impressum / Datenschutz ---------- */
  .legal-section { background: var(--paper-2); padding: clamp(60px, 7vw, 100px) 0; border-top: 1px solid var(--rule); }
  .legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .legal-col h3 { font-size: 22px; font-weight: 400; color: var(--ink); margin: 12px 0 28px; letter-spacing: -0.012em; }
  .legal-block { padding: 14px 0; border-top: 1px solid var(--rule); }
  .legal-block:first-of-type { border-top: 0; padding-top: 0; }


  #datenschutz h3,
  #datenschutz h4,
  .legal-block h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 6px; }

#datenschutz h2 { 
  font-size: 22px; font-weight: 400; color: var(--ink); margin: 1em 0 28px; letter-spacing: -0.012em;
 }

 #datenschutz h2:first-of-type {
  margin-top: 12px;
 }

  #datenschutz h3{
    border-top: 1px solid var(--rule);
    padding: 1.5em 0 .5em;
    margin-top: 10px;
  }
  #datenschutz h4 {
    letter-spacing: .2px;
    color: #111;
    border: none;
    margin-top: 1.5em;
  }

  #datenschutz p,
  #datenschutz ul,
  #datenschutz ol,
  .legal-block p { margin: 0 0 1em 0; font-size: 14.5px; color: var(--ink); line-height: 1.55; }

    #datenschutz ul,
  #datenschutz ol {
    padding-left: 1em;
  }

  .legal-note { margin-top: 28px; font-size: 12.5px; color: var(--ink-mute); font-style: italic; border-top: 1px solid var(--rule); padding-top: 14px; }
  .legal-note strong { color: var(--gold); font-weight: 600; font-style: normal; }
  @media (max-width: 820px) { .legal-grid { grid-template-columns: 1fr; gap: 48px; } }


  /* Dropdown-Navigation */
  .nav-links li.has-dropdown { position: relative; }
  .nav-links li.has-dropdown .dd-arrow { font-size: 10px; margin-left: 4px; color: var(--gold-soft); }
  .nav-links li.has-dropdown ul.sub {
    position: absolute; top: 100%; left: -14px;
    background: var(--navy-900); border: 1px solid rgba(92,196,227,0.18);
    list-style: none; padding: 8px 0; margin: 6px 0 0; min-width: 220px;
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
    z-index: 60;
  }
  .nav-links li.has-dropdown:hover ul.sub,
  .nav-links li.has-dropdown:focus-within ul.sub {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .nav-links li.has-dropdown ul.sub li { display: block; }
  .nav-links li.has-dropdown ul.sub a {
    display: block; padding: 8px 18px; font-size: 13px; color: rgba(255,255,255,0.85);
    border-bottom: 0; white-space: nowrap;
  }
  .nav-links li.has-dropdown ul.sub a:hover { background: rgba(92,196,227,0.08); color: #fff; }


  .detail-img { width: 100%; height: auto; margin-top: 28px; border-radius: 2px; filter: saturate(0.85) contrast(1.05); }
  @media (max-width: 980px) { .detail-img { margin-top: 18px; } }

  @media (max-width: 580px) {
    .brand .logo-img { height: 48px; }
    .brand .tag { font-size: 12px; letter-spacing: 0.1em; padding-left:10px; }
    .brand { gap: 10px; }
    .wrap.nav-inner { padding-top: 8px; padding-bottom: 8px; }
  }

  @media (max-width: 480px) {
    .k-line {
      flex-direction: column;
    }
    span.val span {
      display: block;
    }
  }

  /* ---------- Team LinkedIn ---------- */
  .team-card h4 .team-linkedin {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
  }
  .team-card h4 .team-linkedin:hover { border-bottom-color: var(--gold); }
  .team-card h4 .team-linkedin[data-linkedin-pending="true"] {
    cursor: default;
    pointer-events: none;
  }

  /* ---------- section background images ---------- */
  #kontakt,
  #partner,
  #szenarien,
  #leistungen,
  .detail { position: relative; overflow: hidden; }

  #kontakt::after,
  #partner::after,
  #szenarien::after,
  #leistungen::after,
  .detail::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(0.4) sepia(0.15);
  }
  
  #kontakt::after  { background-image: url('images/img_24.webp'); opacity: .09; }
  #partner::after  { background-image: url('images/img_23.webp'); opacity: .09; }
  #szenarien::after  { background-image: url('images/img_22.webp'); opacity: .09; }
  #leistungen::after  { background-image: url('images/img_20.webp'); opacity: .09; }
  #duediligence-detail::after   { background-image: url('images/img_02.jpg'); opacity: .09;}
  #controlling-detail::after    { background-image: url('images/img_03.jpg'); opacity: 0.07; }
  #restrukturierung-detail::after { background-image: url('images/img_04.jpg'); opacity: 0.07; }
  .detail .wrap { position: relative; z-index: 1; }



  @media (max-width: 1024px) { .detail::after { display: none; } }

  /* ---------- Datenschutz "mehr" ---------- */
  .js .ds-mehr-content { display: none; }
  .js .ds-mehr-btn {
    display: inline-flex; align-items: center;
    background: transparent; border: 1px solid var(--rule);
    color: var(--ink-soft); font-size: 13px; letter-spacing: 0.02em;
    padding: 9px 16px; border-radius: 2px; cursor: pointer;
    margin-top: 4px; transition: border-color .2s, color .2s;
  }
  .js .ds-mehr-btn:hover { border-color: var(--gold); color: var(--ink); }
  .no-js .ds-mehr-btn { display: none; }
  .js .ds-weniger-btn {
    display: inline-flex; align-items: center;
    background: transparent; border: 1px solid var(--rule);
    color: var(--ink-mute); font-size: 13px; letter-spacing: 0.02em;
    padding: 9px 16px; border-radius: 2px; cursor: pointer;
    margin-top: 12px; transition: border-color .2s, color .2s;
  }
  .js .ds-weniger-btn:hover { border-color: var(--rule-dark); color: var(--ink-soft); }
  .no-js .ds-weniger-btn { display: none; }