/*
  Velotakt — Production Stylesheet (v7 Design)
  Designsprache: seriöse Spezialeinheit, dunkel-dominant.
  Inter Tight + JetBrains Mono über fonts.css lokal eingebunden.
*/

@import url('/assets/css/fonts.css');

/* === Accessibility-Basics ============================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #1A1A1A;
  color: #ECE5D8;
  padding: 12px 20px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 500;
  border-radius: 4px;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === Print-Styles ==================================================== */

@media print {
  body { background: white !important; color: black !important; }
  .site-nav, .demo-banner, .contact-final, .compliance-strip { display: none; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 80%; color: #555; }
  .footer { border-top: 1px solid #ccc; padding-top: 24px; margin-top: 48px; }
  .status-bar { display: none; }
  /* Cream-Sektionen lesbar im Druck */
  .philosophy__inner, .case-quote__inner, .compliance-download__inner {
    background: white !important;
    color: black !important;
  }
}

/* === v7-Designsystem ================================================= */

  :root {
    /* Hintergründe (dunkel-dominant) */
    --bg: #0E0E0E;               /* Hauptbackground, fast schwarz */
    --bg-2: #161616;             /* Sektionen mit minimaler Trennung */
    --bg-3: #1F1F1F;             /* Karten, Hervorhebungen */

    /* Text auf dunkel — Kontraste WCAG AA-konform */
    --paper: #F5F1E8;            /* Haupttext, Kontrast 16.4:1 */
    --paper-mute: #D4CFC2;       /* Sekundärtext, Kontrast 11.0:1 (vorher 6.5) */
    --paper-dim: #9A9489;        /* Tertiär, Kontrast 5.8:1 (vorher 3.2 — WCAG-Fehler) */

    /* Cream als Akzent (umgekehrt zur v6) */
    --cream: #ECE5D8;            /* nur noch invertierte Sektionen */
    --cream-deep: #E2DAC9;

    /* Signal-Rot, schärfer */
    --accent: #E63946;
    --accent-soft: #C82838;

    /* Trennlinien */
    --rule: #2A2A2A;
    --rule-strong: #3A3A3A;

    /* Status-Indikatoren */
    --status-active: #4ADE80;
    --status-warning: #FBBF24;
    --status-critical: var(--accent);

    /* Bildplatzhalter */
    --image-placeholder: #1A1A1A;
    --image-placeholder-text: #6E6A62;

    /* Mono-Schrift */
    --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

    /* Aliase für rückwärtskompatible Stellen (v6-Stile mit alten Variablennamen) */
    --ink: var(--paper);
    --ink-soft: var(--paper-mute);
    --ink-mute: var(--paper-dim);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--paper);
    font-family: 'Inter Tight', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.005em;
  }

  /* Mono für technische Daten, Status, Zeitstempel */
  .mono {
    font-family: var(--font-mono);
    font-feature-settings: 'tnum' 1;
    letter-spacing: 0;
  }

  /* DEMO-BANNER -------------------------------------------------- */
  .demo-banner {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ink);
    color: var(--cream);
    padding: 10px 32px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .demo-banner__label { font-weight: 500; }
  .demo-banner__nav { display: flex; gap: 24px; flex-wrap: wrap; }
  .demo-banner__nav a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .demo-banner__nav a:hover { opacity: 1; }

  /* SITE-HEADER -------------------------------------------------- */
  .site-header {
    padding: 28px 56px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
  }
  .site-logo {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.015em;
    color: var(--paper);
  }
  .site-logo__sub {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    color: var(--paper-dim);
    letter-spacing: 0.08em;
    margin-top: 4px;
    text-transform: uppercase;
  }
  .site-nav {
    display: flex;
    gap: 36px;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
  }
  .site-nav a {
    color: var(--paper);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .site-nav a:hover { border-bottom-color: var(--accent); }
  .site-nav__cta {
    background: var(--accent);
    color: var(--paper) !important;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none !important;
    transition: background 0.2s;
  }
  .site-nav__cta:hover { background: var(--accent-soft); border-bottom-color: transparent !important; }

  .page-section {
    padding: 0 56px;
    margin-bottom: 0;
  }
  .page-divider {
    height: 1px;
    background: var(--rule);
    margin: 120px 56px 0;
  }
  .page-label {
    background: var(--bg-2);
    color: var(--paper);
    padding: 60px 56px 32px;
    margin-top: 0;
    border-top: 1px solid var(--rule);
  }
  .page-label__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .page-label__title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    max-width: 640px;
  }

  /* HERO STARTSEITE --------------------------------------------- */
  .hero {
    padding: 40px 56px 0;
    position: relative;
  }
  .hero__grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 64px;
    align-items: end;
    min-height: 540px;
  }
  .hero__text {
    padding-bottom: 48px;
    min-width: 0;
  }
  .hero__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero__kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  .hero__headline {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(40px, 4.8vw, 64px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    overflow-wrap: break-word;
    hyphens: auto;
    color: var(--paper);
  }
  .hero__headline em {
    color: var(--accent);
    font-style: normal;
  }
  .hero__lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--paper-mute);
    max-width: 480px;
    margin-bottom: 32px;
  }
  .hero__cta-row {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--paper);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--accent-soft); }
  .btn-secondary {
    color: var(--paper);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
  }
  .hero__image {
    background: var(--image-placeholder);
    height: 580px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--rule);
  }

  /* STATUS-LEISTE — Operatoren-Konsole-Look ----------------------- */
  .status-bar {
    background: var(--bg-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 28px 56px;
    margin-top: 80px;
  }
  .status-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
  }
  .status-bar__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .status-bar__label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper-dim);
  }
  .status-bar__value {
    font-size: 16px;
    font-weight: 500;
    color: var(--paper);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--paper-dim);
    flex-shrink: 0;
  }
  .status-dot--active {
    background: var(--status-active);
    box-shadow: 0 0 8px var(--status-active);
    animation: pulse 2s ease-in-out infinite;
  }

  /* ECHTE BILDER (überschreibt image-placeholder, wenn vorhanden) -- */
  .photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--image-placeholder);
  }
  .photo--top { object-position: center top; }
  .photo--bottom { object-position: center bottom; }
  picture.photo-frame {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--image-placeholder);
    position: relative;
  }
  picture.photo-frame > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Wenn ein <picture> direkt in einem placeholder-Container sitzt, soll der Container nicht mehr leer aussehen */
  .image-placeholder:has(picture) {
    padding: 0;
    background: var(--image-placeholder);
  }
  .image-placeholder:has(picture)::before { display: none; }
  .image-placeholder:has(picture) .image-placeholder__label,
  .image-placeholder:has(picture) .image-placeholder__desc { display: none; }

  /* BILDPLATZHALTER --------------------------------------------- */
  .image-placeholder {
    background: var(--image-placeholder);
    color: var(--image-placeholder-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
    position: relative;
    overflow: hidden;
  }
  .image-placeholder::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px dashed rgba(184, 174, 153, 0.25);
    pointer-events: none;
  }
  .image-placeholder__label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 500;
  }
  .image-placeholder__desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--image-placeholder-text);
    max-width: 280px;
  }

  /* KENNZAHLEN -------------------------------------------------- */
  .stats {
    background: var(--bg);
    padding: 120px 56px 100px;
    margin-top: 0;
    border-bottom: 1px solid var(--rule);
  }
  .stats__intro {
    max-width: 560px;
    margin-bottom: 80px;
  }
  .stats__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .stats__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--paper);
  }
  .stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    border-top: 1px solid var(--rule);
    padding-top: 48px;
  }
  .stat__number {
    font-family: var(--font-mono);
    font-feature-settings: 'tnum' 1;
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: var(--paper);
  }
  .stat__unit {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 500;
  }
  .stat__caption {
    font-size: 14px;
    line-height: 1.55;
    color: var(--paper-mute);
    max-width: 240px;
  }

  /* LEISTUNGS-TEASER -------------------------------------------- */
  .services-teaser {
    padding: 120px 56px 0;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
  }
  .services-teaser__intro {
    padding-top: 12px;
  }
  .services-teaser__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .services-teaser__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--paper);
  }
  .services-teaser__list {
    display: grid;
    gap: 0;
  }
  .service-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
    transition: background 0.2s, padding-left 0.2s;
  }
  .service-row:hover {
    background: var(--bg-2);
    padding-left: 16px;
  }
  .service-row:last-child { border-bottom: none; }
  .service-row__num {
    font-family: var(--font-mono);
    font-feature-settings: 'tnum' 1;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding-top: 6px;
  }
  .service-row__name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
    color: var(--paper);
  }
  .service-row__desc {
    font-size: 15px;
    line-height: 1.55;
    color: var(--paper-mute);
    max-width: 560px;
  }

  /* PROZESS-TEASER ---------------------------------------------- */
  .process {
    padding: 120px 56px 0;
  }
  .process__head {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
    margin-bottom: 64px;
  }
  .process__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .process__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 520px;
    color: var(--paper);
  }
  .process__title em {
    color: var(--accent);
    font-style: normal;
  }
  .process__lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--paper-mute);
    padding-top: 8px;
  }
  .process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
  }
  .process-step {
    border-left: 1px solid var(--rule);
    padding-left: 16px;
  }
  .process-step__num {
    font-family: var(--font-mono);
    font-feature-settings: 'tnum' 1;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 0.12em;
  }
  .process-step__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.005em;
    color: var(--paper);
  }
  .process-step__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--paper-mute);
  }
  .process-step__time {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--paper-dim);
    margin-top: 12px;
    font-weight: 500;
  }

  /* TEAM-SEKTION ------------------------------------------------- */
  .team {
    padding: 120px 56px 0;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 80px;
    align-items: end;
  }
  .team__image {
    aspect-ratio: 4/3;
  }
  .team__text {
    padding-bottom: 24px;
  }
  .team__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .team__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--paper);
  }
  .team__title em {
    color: var(--accent);
    font-style: normal;
  }
  .team__body {
    font-size: 16px;
    line-height: 1.65;
    color: var(--paper-mute);
  }
  .team__body p { margin-bottom: 16px; }
  .team__link {
    display: inline-block;
    margin-top: 16px;
    color: var(--paper);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
  }

  /* CASE-STUDY-LISTE STARTSEITE --------------------------------- */
  /* EINSATZHISTORIE — tabellarisch ------------------------------ */
  .cases {
    padding: 120px 56px 0;
  }
  .cases__head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 56px;
  }
  .cases__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .cases__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--paper);
  }
  .cases__link {
    color: var(--paper);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
  }
  .cases__table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--rule);
  }
  .cases__row {
    display: grid;
    grid-template-columns: 100px 2fr 1.5fr 1fr 110px 100px;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--rule);
    align-items: center;
    transition: background 0.2s;
  }
  .cases__row:hover {
    background: var(--bg-2);
  }
  .cases__date,
  .cases__volume,
  .cases__duration,
  .cases__status {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--paper-mute);
  }
  .cases__client {
    font-size: 16px;
    font-weight: 500;
    color: var(--paper);
  }
  .cases__type {
    font-size: 14px;
    color: var(--paper-mute);
  }
  .cases__status--ok {
    color: var(--status-active);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cases__status--ok::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--status-active);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .cases__footnote {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }
  .cases__footnote p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--paper-dim);
    max-width: 720px;
  }
  .cases__footnote .mono {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-right: 8px;
  }

  /* PHILOSOPHIE-BLOCK ------------------------------------------- */
  .philosophy {
    padding: 120px 56px 0;
  }
  .philosophy__inner {
    background: var(--cream);
    color: var(--bg);
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
  }
  .philosophy__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--bg);
  }
  .philosophy__title em {
    color: var(--accent-soft);
    font-style: normal;
  }
  .philosophy__text {
    font-size: 17px;
    line-height: 1.6;
    color: #2A2A2A;
  }
  .philosophy__text p { margin-bottom: 20px; }
  .philosophy__text p:last-child { margin-bottom: 0; }

  /* COMPLIANCE-BLOCK STARTSEITE --------------------------------- */
  .compliance-strip {
    padding: 120px 56px 0;
  }
  .compliance-strip__inner {
    border-top: 1px solid var(--rule);
    padding-top: 64px;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
  }
  .compliance-strip__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .compliance-strip__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 360px;
    color: var(--paper);
  }
  .compliance-strip__title em {
    color: var(--accent);
    font-style: normal;
  }
  .compliance-strip__list {
    list-style: none;
  }
  .compliance-strip__list li {
    padding: 24px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 24px;
    align-items: baseline;
  }
  .compliance-strip__list li:first-child { padding-top: 0; }
  .compliance-strip__list li:last-child { border-bottom: none; }
  .compliance-strip__num {
    font-family: var(--font-mono);
    font-feature-settings: 'tnum' 1;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.12em;
  }
  .compliance-strip__item-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--paper);
  }
  .compliance-strip__item-desc {
    font-size: 14px;
    color: var(--paper-mute);
    line-height: 1.5;
  }
  .compliance-strip__download {
    color: var(--paper);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
    white-space: nowrap;
  }

  /* FAQ-SEKTION -------------------------------------------------- */
  .faq {
    padding: 120px 56px 0;
  }
  .faq__head {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
    margin-bottom: 48px;
  }
  .faq__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .faq__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--paper);
  }
  .faq__title em {
    color: var(--accent);
    font-style: normal;
  }
  .faq__list {
    border-top: 1px solid var(--rule);
  }
  .faq-item {
    border-bottom: 1px solid var(--rule);
    padding: 32px 0;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
    align-items: start;
  }
  .faq-item__question {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--paper);
  }
  .faq-item__answer {
    font-size: 16px;
    line-height: 1.65;
    color: var(--paper-mute);
    max-width: 640px;
  }

  /* KONTAKT-CTA STARTSEITE -------------------------------------- */
  .contact-final {
    padding: 120px 56px 0;
  }
  .contact-final__inner {
    background: var(--accent);
    color: var(--paper);
    padding: 80px;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 64px;
    align-items: end;
  }
  .contact-final__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
    hyphens: auto;
    min-width: 0;
    color: var(--paper);
  }
  .contact-final__title em {
    color: var(--bg);
    font-style: normal;
  }
  .contact-final__lead {
    font-size: 17px;
    line-height: 1.55;
    color: var(--paper);
    margin-bottom: 32px;
  }
  .contact-final__cta-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
  }
  .contact-final__btn {
    background: var(--bg);
    color: var(--paper);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }
  .contact-final__btn:hover { background: #000; }
  .contact-final__phone {
    color: var(--paper);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(245, 241, 232, 0.4);
    padding-bottom: 4px;
  }

  /* FOOTER ------------------------------------------------------- */
  .footer {
    background: var(--bg);
    color: var(--paper-mute);
    padding: 80px 56px 32px;
    margin-top: 0;
    border-top: 1px solid var(--rule);
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
  }
  .footer__brand {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--paper);
  }
  .footer__brand-sub {
    font-size: 13px;
    color: var(--paper-mute);
    line-height: 1.6;
    max-width: 320px;
  }
  .footer__col-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer__col a {
    display: block;
    color: var(--paper);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.2s;
  }
  .footer__col a:hover { color: var(--accent); }
  .footer__bottom {
    border-top: 1px solid var(--rule);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--paper-mute);
  }

  /* CASE-STUDY-SEITE -------------------------------------------- */
  .case-hero {
    padding: 60px 56px 0;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 64px;
    align-items: start;
  }
  .case-hero__meta {
    padding-top: 12px;
    min-width: 0;
  }
  .case-hero__tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .case-hero__tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }
  .case-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    overflow-wrap: break-word;
    hyphens: auto;
    color: var(--paper);
  }
  .case-hero__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--paper-mute);
    margin-bottom: 48px;
  }
  .case-hero__facts {
    border-top: 1px solid var(--rule);
    padding-top: 24px;
  }
  .case-hero__fact {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--font-mono);
    font-size: 13px;
    font-feature-settings: 'tnum' 1;
    color: var(--paper);
  }
  .case-hero__fact-label {
    color: var(--paper-dim);
    letter-spacing: 0.04em;
  }
  .case-hero__image {
    aspect-ratio: 4/3;
  }

  .case-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    border-top: 1px solid var(--rule);
    margin: 100px 56px 0;
    padding: 48px 0 0;
  }
  .case-number__value {
    font-feature-settings: 'tnum' 1;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
  }
  .case-number__label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .case-number__caption {
    font-size: 13px;
    color: var(--ink-mute);
    line-height: 1.5;
  }

  .case-narrative {
    padding: 120px 56px 0;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
  }
  .case-narrative__heading {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
    padding-top: 8px;
  }
  .case-narrative__body {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 640px;
  }
  .case-narrative__body p { margin-bottom: 24px; }
  .case-narrative__body h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin: 48px 0 16px;
    letter-spacing: -0.01em;
  }
  .case-narrative__body h3:first-child { margin-top: 0; }

  .case-gallery {
    padding: 120px 56px 0;
  }
  .case-gallery__grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 32px;
  }
  .case-gallery__main { aspect-ratio: 4/3; }
  .case-gallery__side {
    display: grid;
    gap: 32px;
  }
  .case-gallery__small { aspect-ratio: 4/3; }

  .case-quote {
    padding: 120px 56px 0;
  }
  .case-quote__inner {
    background: var(--cream);
    color: var(--bg);
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 64px;
    align-items: start;
  }
  .case-quote__attribution-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-soft);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .case-quote__name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--bg);
  }
  .case-quote__role {
    font-size: 13px;
    color: #5A5A5A;
    line-height: 1.5;
  }
  .case-quote__text {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--bg);
  }
  .case-quote__text::before {
    content: '„';
    color: var(--accent-soft);
    margin-right: 4px;
    font-weight: 500;
  }
  .case-quote__text::after {
    content: '"';
    color: var(--accent);
    margin-left: 4px;
    font-weight: 500;
  }

  /* LEISTUNGS-SEITE --------------------------------------------- */
  .services-hero {
    padding: 60px 56px 0;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 64px;
    align-items: end;
    min-height: 320px;
  }
  .services-hero__title {
    font-size: clamp(40px, 4.8vw, 56px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
    hyphens: auto;
    min-width: 0;
    color: var(--paper);
  }
  .services-hero__title em {
    color: var(--accent);
    font-style: normal;
  }
  .services-hero__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    padding-bottom: 12px;
  }

  .service-detail {
    padding: 120px 56px 0;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
  }
  .service-detail--reverse {
    grid-template-columns: 7fr 5fr;
  }
  .service-detail--reverse .service-detail__text {
    order: 2;
  }
  .service-detail__index {
    font-family: var(--font-mono);
    font-feature-settings: 'tnum' 1;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .service-detail__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    color: var(--paper);
  }
  .service-detail__body {
    font-size: 16px;
    line-height: 1.65;
    color: var(--paper-mute);
  }
  .service-detail__body p { margin-bottom: 16px; }
  .service-detail__list {
    list-style: none;
    margin-top: 32px;
    border-top: 1px solid var(--rule);
  }
  .service-detail__list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
    font-size: 14px;
    color: var(--paper);
  }
  .service-detail__list li::before {
    content: '→';
    color: var(--accent);
  }
  .service-detail__image {
    aspect-ratio: 5/6;
  }

  .service-not {
    padding: 120px 56px 0;
  }
  .service-not__inner {
    background: var(--accent);
    color: var(--paper);
    padding: 80px;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
  }
  .service-not__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--paper);
  }
  .service-not__title em {
    color: var(--bg);
    font-style: normal;
  }
  .service-not__list {
    list-style: none;
  }
  .service-not__list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(236, 229, 216, 0.15);
    font-size: 17px;
    line-height: 1.5;
  }
  .service-not__list li:first-child { padding-top: 0; }
  .service-not__list li:last-child { border-bottom: none; }

  .contact-band {
    padding: 120px 56px 0;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: end;
    padding-bottom: 0;
  }
  .contact-band__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .contact-band__title em {
    color: var(--accent);
    font-style: normal;
  }
  .contact-band__cta {
    border-top: 1px solid var(--rule);
    padding-top: 24px;
  }
  .contact-band__name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .contact-band__role {
    font-size: 14px;
    color: var(--ink-mute);
    margin-bottom: 16px;
  }
  .contact-band__line {
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 6px;
  }

  /* COMPLIANCE-SEITE -------------------------------------------- */
  .compliance-hero {
    padding: 60px 56px 0;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 64px;
    align-items: end;
    min-height: 320px;
  }
  .compliance-hero__meta {
    padding-bottom: 24px;
    min-width: 0;
  }
  .compliance-hero__tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .compliance-hero__tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }
  .compliance-hero__title {
    font-size: clamp(40px, 4.8vw, 56px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
    hyphens: auto;
    color: var(--paper);
  }
  .compliance-hero__title em {
    color: var(--accent);
    font-style: normal;
  }
  .compliance-hero__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    padding-bottom: 12px;
  }

  .compliance-section {
    padding: 100px 56px 0;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
    align-items: start;
  }
  .compliance-section__heading {
    padding-top: 8px;
  }
  .compliance-section__num {
    font-family: var(--font-mono);
    font-feature-settings: 'tnum' 1;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .compliance-section__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--paper);
  }
  .compliance-section__body {
    font-size: 16px;
    line-height: 1.65;
    color: var(--paper-mute);
    max-width: 640px;
  }
  .compliance-section__body p { margin-bottom: 16px; }
  .compliance-section__body strong {
    color: var(--paper);
    font-weight: 600;
  }
  .compliance-section__facts {
    margin-top: 24px;
    border-top: 1px solid var(--rule);
  }
  .compliance-section__fact {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-feature-settings: 'tnum' 1;
  }
  .compliance-section__fact-label {
    color: var(--paper-dim);
    letter-spacing: 0.04em;
  }
  .compliance-section__fact-value {
    color: var(--paper);
  }

  .compliance-download {
    padding: 120px 56px 0;
  }
  .compliance-download__inner {
    background: var(--cream);
    color: var(--bg);
    padding: 80px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
  }
  .compliance-download__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--bg);
  }
  .compliance-download__title em {
    color: var(--accent-soft);
    font-style: normal;
  }
  .compliance-download__text {
    font-size: 16px;
    line-height: 1.6;
    color: #2A2A2A;
    margin-bottom: 24px;
  }
  .compliance-download__btn {
    display: inline-block;
    background: var(--bg);
    color: var(--paper);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
  }

  /* KONTAKTSEITE ------------------------------------------------- */
  .contact-hero {
    padding: 60px 56px 0;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 64px;
    align-items: end;
    min-height: 280px;
  }
  .contact-hero__meta {
    padding-bottom: 24px;
    min-width: 0;
  }
  .contact-hero__tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .contact-hero__tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }
  .contact-hero__title {
    font-size: clamp(40px, 4.8vw, 56px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--paper);
  }
  .contact-hero__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--paper-mute);
    padding-bottom: 12px;
  }

  .contact-grid {
    padding: 80px 56px 0;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
  }
  .contact-direct {
    border-top: 1px solid var(--rule);
    padding-top: 32px;
    min-width: 0;
  }
  .contact-direct__label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .contact-direct__name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .contact-direct__role {
    font-size: 14px;
    color: var(--ink-mute);
    margin-bottom: 28px;
  }
  .contact-direct__line {
    display: block;
    font-size: 17px;
    color: var(--ink);
    text-decoration: none;
    margin-bottom: 8px;
    padding: 6px 0;
  }
  .contact-direct__line:hover {
    color: var(--accent);
  }
  .contact-direct__hours {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    font-size: 14px;
    color: var(--ink-mute);
    line-height: 1.6;
  }
  .contact-direct__hours strong {
    color: var(--ink);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
  }
  .contact-direct__urgent {
    margin-top: 24px;
    padding: 24px;
    background: var(--cream);
    color: var(--bg);
    border-left: 3px solid var(--accent-soft);
  }
  .contact-direct__urgent strong {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--accent-soft);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .contact-direct__urgent-phone {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--bg);
    text-decoration: none;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
    transition: color 0.2s;
  }
  .contact-direct__urgent-phone:hover {
    color: var(--accent-soft);
  }
  .contact-direct__urgent-note {
    font-size: 13px;
    line-height: 1.55;
    color: #2A2A2A;
    margin: 0;
  }

  .contact-form {
    border-top: 1px solid var(--rule);
    padding-top: 32px;
    min-width: 0;
  }
  .contact-form__label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .contact-form__intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 520px;
  }
  .contact-form__iframe-wrap {
    background: var(--cream);
    padding: 24px;
  }
  .contact-form__iframe-wrap iframe {
    display: block;
    width: 100%;
    border: none;
  }

  /* RESPONSIVE -------------------------------------------------- */
  @media (max-width: 900px) {
    .site-header,
    .hero,
    .stats,
    .services-teaser,
    .process,
    .team,
    .cases,
    .philosophy,
    .compliance-strip,
    .faq,
    .contact-final,
    .footer,
    .case-hero,
    .case-narrative,
    .case-gallery,
    .case-quote,
    .services-hero,
    .service-detail,
    .service-not,
    .contact-band,
    .compliance-hero,
    .compliance-section,
    .compliance-download,
    .contact-hero,
    .contact-grid,
    .page-label,
    .page-divider {
      padding-left: 24px;
      padding-right: 24px;
      margin-left: 0;
      margin-right: 0;
    }
    .hero__grid,
    .services-teaser,
    .process__head,
    .process__steps,
    .team,
    .case-hero,
    .case-narrative,
    .case-gallery__grid,
    .case-quote__inner,
    .services-hero,
    .service-detail,
    .service-not__inner,
    .contact-band,
    .philosophy__inner,
    .compliance-strip__inner,
    .compliance-strip__list li,
    .faq__head,
    .faq-item,
    .contact-final__inner,
    .compliance-hero,
    .compliance-section,
    .compliance-section__fact,
    .compliance-download__inner,
    .contact-hero,
    .contact-grid,
    .footer__grid,
    .stats__grid,
    .cases__grid,
    .case-numbers {
      grid-template-columns: 1fr !important;
      gap: 32px;
    }
    .hero__image { height: 360px; }
    .site-nav { gap: 16px; font-size: 13px; }
    .site-nav__cta { padding: 8px 14px; font-size: 12px; }
    .demo-banner { flex-direction: column; gap: 8px; align-items: flex-start; }
  }
