@import url('/fonts/fonts.css');
    :root {
      --blue:      #006fb7;
      --blue-deep: #005a96;
      --navy:      #0d2643;
      --navy-deep: #091c33;
      --sky:       #e8f3fa;
      --soft:      #f2f4f6;
      --white:     #ffffff;
      --ink:       #12283f;
      --ink-soft:  #44586d;
      --mint:      #2fb673;
      --sun:       #ffc233;
      --coral:     #ff5c5c;

      --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
      --body:    'Hanken Grotesk', ui-sans-serif, system-ui, sans-serif;

      --max: 1280px;
      --pad: clamp(20px, 4vw, 48px);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
    html, body { overflow-x: hidden; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--body);
      font-size: 16.5px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

    .wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

    ::selection { background: var(--blue); color: #fff; }

    h1, h2, h3 { font-family: var(--display); font-weight: 750; line-height: 1.04; letter-spacing: -0.015em; }

    /* ── Buttons ──────────────────────────────────────────────────── */

    .btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 8px 8px 8px 26px;
      border-radius: 999px;
      font-family: var(--body);
      font-size: 15.5px; font-weight: 600;
      transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
    }
    .btn .circ {
      display: inline-flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 50%;
      font-size: 15px;
      transition: transform 0.2s;
    }
    .btn:hover .circ { transform: rotate(45deg); }
    /* Mail-Icon nicht mitdrehen, nur leicht kippen */
    .btn:hover .circ--mail { transform: rotate(-8deg); }
    .btn--navy { background: var(--navy); color: #fff; }
    .btn--navy .circ { background: var(--blue); color: #fff; }
    .btn--navy:hover { background: var(--navy-deep); }
    .btn--blue { background: var(--blue); color: #fff; }
    .btn--blue .circ { background: var(--navy); color: #fff; }
    .btn--blue:hover { background: var(--blue-deep); }
    .btn--white { background: #fff; color: var(--navy); }
    .btn--white .circ { background: var(--blue); color: #fff; }
    .btn--white:hover { transform: translateY(-2px); }
    .btn--ghost { background: #fff; border: 1.5px solid rgba(18, 40, 63, 0.25); color: var(--ink); padding: 14px 28px; }
    .btn--ghost:hover { border-color: var(--ink); }

    /* ── Header ───────────────────────────────────────────────────── */

    #header {
      position: sticky; top: 0; z-index: 60;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      transition: box-shadow 0.2s;
    }
    #header.scrolled { box-shadow: 0 2px 24px rgba(13, 38, 67, 0.08); }
    #header .bar { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
    #header .logo svg { height: 38px; width: auto; display: block; }

    .nav-desktop { display: none; }
    @media (min-width: 1024px) {
      .nav-desktop {
        display: flex; align-items: center; gap: 4px;
        background: var(--navy);
        border-radius: 999px;
        padding: 6px;
      }
    }
    .nav-btn {
      display: flex; align-items: center; gap: 7px;
      padding: 9px 18px;
      border-radius: 999px;
      font-size: 14.5px; font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      transition: background 0.15s, color 0.15s;
    }
    .nav-btn .chev { font-size: 8px; opacity: 0.6; transition: transform 0.2s; }
    .nav-btn:hover, .nav-btn[aria-expanded="true"] { background: rgba(255, 255, 255, 0.14); color: #fff; }
    .nav-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
    .nav-cta-pill { display: none; }
    @media (min-width: 1024px) {
      .nav-cta-pill {
        display: inline-flex; align-items: center;
        padding: 9px 22px;
        border-radius: 999px;
        background: var(--blue);
        color: #fff;
        font-size: 14.5px; font-weight: 700;
        transition: background 0.15s;
      }
      .nav-cta-pill:hover { background: var(--blue-deep); }
    }

    .panel {
      position: absolute; left: var(--pad); right: var(--pad); top: calc(100% + 6px);
      max-width: calc(var(--max) - 2 * var(--pad));
      margin: 0 auto;
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 24px 70px rgba(13, 38, 67, 0.18);
      border: 1px solid rgba(13, 38, 67, 0.06);
      display: none;
      overflow: hidden;
    }
    .panel.open { display: block; }
    .panel .inner { padding: 36px 40px; }
    .panel-grid { display: grid; gap: 36px; }
    .panel-col-title {
      display: block;
      font-family: var(--display);
      font-size: 15.5px; font-weight: 700;
      margin-bottom: 12px;
      color: var(--navy);
    }
    .panel-col-title:hover { color: var(--blue); }
    .panel ul li a { display: block; font-size: 13.5px; color: var(--ink-soft); padding: 4px 0; }
    .panel ul li a:hover { color: var(--blue); }
    .panel-foot {
      margin-top: 28px; padding-top: 20px;
      border-top: 1px solid rgba(13, 38, 67, 0.08);
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
    }
    .panel-foot .note { font-size: 12.5px; color: var(--ink-soft); }
    .panel-foot a { font-size: 13.5px; font-weight: 700; color: var(--blue); }

    .burger {
      display: inline-flex; align-items: center;
      padding: 9px 18px;
      border-radius: 999px;
      background: var(--navy); color: #fff;
      font-size: 13.5px; font-weight: 700;
    }
    @media (min-width: 1024px) { .burger { display: none; } }
    #mobile-nav {
      display: none;
      background: #fff;
      border-top: 1px solid rgba(13, 38, 67, 0.08);
      max-height: calc(100vh - 76px);
      overflow-y: auto;
    }
    #mobile-nav.open { display: block; }
    #mobile-nav details { border-bottom: 1px solid rgba(13, 38, 67, 0.07); }
    #mobile-nav summary {
      list-style: none;
      display: flex; justify-content: space-between; align-items: center;
      padding: 16px var(--pad);
      font-family: var(--display);
      font-size: 16px; font-weight: 700;
      cursor: pointer;
    }
    #mobile-nav summary::-webkit-details-marker { display: none; }
    #mobile-nav summary::after { content: '+'; color: var(--blue); font-size: 20px; }
    #mobile-nav details[open] summary::after { content: '–'; }
    #mobile-nav .sub { padding: 0 var(--pad) 16px; }
    #mobile-nav .sub a {
      display: block; padding: 8px 0 8px 16px;
      border-left: 2px solid var(--sky);
      font-size: 14.5px; color: var(--ink-soft);
    }
    #mobile-nav > a.mob-top {
      display: block; padding: 16px var(--pad);
      border-bottom: 1px solid rgba(13, 38, 67, 0.07);
      font-family: var(--display); font-size: 16px; font-weight: 700;
    }
    #mobile-nav .mob-cta {
      display: block; margin: 20px var(--pad) 26px;
      background: var(--blue); color: #fff;
      text-align: center; padding: 15px;
      border-radius: 999px;
      font-size: 15px; font-weight: 700;
    }

    /* ── Hero: Typo-Plakat ────────────────────────────────────────── */

    #hero {
      position: relative;
      /* Füllt zusammen mit dem Header (76px) immer den ganzen Monitor */
      min-height: calc(100svh - 76px);
      display: flex; flex-direction: column; justify-content: center;
      padding-top: clamp(16px, 3vh, 40px);
      /* Platz am unteren Rand, in den das Laufband hineinstreift */
      padding-bottom: clamp(72px, 11vh, 130px);
    }
    .hero-display {
      font-family: var(--display);
      font-weight: 800;
      color: var(--ink);
      line-height: 0.9;
      letter-spacing: -0.03em;
      user-select: none;
    }
    .hero-display .hd-line { display: block; white-space: nowrap; }
    .hero-display { --hd-base: max(calc((100vw - var(--max)) / 2 + var(--pad)), var(--pad)); }
    .hero-display .hd-line { font-size: clamp(2.4rem, 6.6vw, 6.2rem); }
    .hd-1 { margin-left: var(--hd-base); }
    .hd-2 { margin-left: calc(var(--hd-base) + 7vw); }
    .hd-3 { margin-left: calc(var(--hd-base) + 15vw); }
    /* Mobil: Treppe kollabiert zu wenig Platz -> links bündig, mehr Zeilenhöhe */
    @media (max-width: 760px) {
      .hero-display { line-height: 1.12; }
      .hero-display .hd-line { font-size: clamp(2.2rem, 9.5vw, 3.4rem); }
      .hd-1, .hd-2, .hd-3 { margin-left: var(--hd-base); }
      /* Kontur-Schrift ist bei kleiner Größe schlecht lesbar -> gefüllt */
      .hero-display .hd--outline { color: var(--ink); -webkit-text-stroke: 0; }
    }
    /* Handgezeichneter Kringel um „läuft.“ */
    .circled { position: relative; display: inline-block; }
    .circled svg {
      position: absolute;
      left: -7%; top: -16%;
      width: 114%; height: 132%;
      pointer-events: none;
      overflow: visible;
    }
    .circled svg path {
      fill: none;
      stroke: var(--navy);
      stroke-width: 5;
      stroke-linecap: round;
      stroke-dasharray: 1500;
      stroke-dashoffset: 1500;
      animation: draw 1.1s ease-out 0.7s forwards;
    }
    @keyframes draw { to { stroke-dashoffset: 0; } }
    @media (prefers-reduced-motion: reduce) { .circled svg path { animation: none; stroke-dashoffset: 0; } }

    /* Riesiges Kontur-„&“ im Hintergrund: alles aus einer Hand */
    .hero-2010 {
      position: absolute;
      right: 5vw; top: -7vh;
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(18rem, 42vw, 38rem);
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 3px rgba(0, 111, 183, 0.16);
      rotate: 7deg;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }
    .hero-display { position: relative; z-index: 1; }

    /* Headline-Rhythmus: eine Zeile als Kontur */
    .hd--outline { color: transparent; -webkit-text-stroke: 3.5px var(--ink); }

    /* Gestaffelter Einflug der Zeilen */
    .js .hd-line { opacity: 0; transform: translateX(-46px) rotate(-1.2deg); animation: hd-in 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
    .js .hd-1 { animation-delay: 0.05s; }
    .js .hd-2 { animation-delay: 0.16s; }
    .js .hd-3 { animation-delay: 0.27s; }
    @keyframes hd-in { to { opacity: 1; transform: translateX(0) rotate(0); } }
    @media (prefers-reduced-motion: reduce) { .js .hd-line { opacity: 1; transform: none; animation: none; } }

    /* Kleine Akzentformen, schweben langsam */
    .deco { position: absolute; pointer-events: none; z-index: 0; animation: deco-float 5.5s ease-in-out infinite alternate; }
    @media (prefers-reduced-motion: reduce) { .deco { animation: none; } }
    @keyframes deco-float { from { translate: 0 0; } to { translate: 0 -14px; } }
    .deco--plus {
      width: 26px; height: 26px;
      left: clamp(8px, 5vw, 90px); top: 9vh;
      animation-delay: 0.8s;
    }
    .deco--plus::before, .deco--plus::after { content: ''; position: absolute; background: var(--mint); border-radius: 3px; }
    .deco--plus::before { left: 10px; top: 0; width: 6px; height: 26px; }
    .deco--plus::after { top: 10px; left: 0; height: 6px; width: 26px; }
    .deco--dot {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--coral);
      right: 16vw; top: 46%;
    }
    .deco--square {
      width: 16px; height: 16px;
      background: var(--sun);
      rotate: 18deg;
      left: 7vw; bottom: 12vh;
      animation-delay: 1.6s;
    }

    /* Pfeil-Doodle zur Kontakt-Pille */
    .hero-foot { position: relative; }
    .hero-arrow {
      display: none;
      position: absolute;
      right: 444px; bottom: 20px;
      width: 96px; height: 62px;
      pointer-events: none;
    }
    @media (min-width: 1000px) { .hero-arrow { display: block; } }
    .hero-arrow path {
      fill: none;
      stroke: var(--navy);
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-foot {
      display: grid; gap: 32px;
      padding-top: clamp(28px, 4vh, 52px);
      padding-bottom: 0;
      align-items: end;
    }
    @media (min-width: 900px) { .hero-foot { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
    .hero-foot .lede {
      font-size: clamp(1.1rem, 1.7vw, 1.35rem);
      line-height: 1.55;
      max-width: 46ch;
      font-weight: 500;
    }
    .hero-foot .lede b { color: inherit; font-weight: inherit; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
    @media (min-width: 900px) { .hero-actions { justify-content: flex-end; } }

    /* ── Schiefes Laufband ────────────────────────────────────────── */

    .band-tilt {
      rotate: -2deg;
      margin: 0 -4vw clamp(8px, 2vh, 28px);
      /* Zieht das Band nach oben, sodass es den unteren Monitorrand streift */
      margin-top: calc(-1 * clamp(52px, 9vh, 116px));
      width: 108vw;
      position: relative;
      z-index: 2;
    }
    .band {
      background: var(--blue);
      padding: clamp(14px, 1.8vw, 24px) 0;
      overflow: hidden;
    }
    .band-inner {
      display: flex;
      width: max-content;
      animation: band-slide 28s linear infinite;
    }
    .band-inner:hover { animation-play-state: paused; }
    @media (prefers-reduced-motion: reduce) { .band-inner { animation: none; } }
    @keyframes band-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .band span {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(1.7rem, 3.4vw, 3rem);
      line-height: 1;
      white-space: nowrap;
      padding-right: 0.55em;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .band span:nth-child(even) {
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
    }

    /* ── Sektions-Gerüst ──────────────────────────────────────────── */

    section .inner { padding-top: clamp(64px, 9vh, 110px); padding-bottom: clamp(64px, 9vh, 110px); }
    .kicker {
      display: inline-block;
      font-size: 13.5px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 16px;
    }
    .sec-title { font-size: clamp(2.1rem, 4.8vw, 3.6rem); max-width: 22ch; }
    .sec-sub { margin-top: 18px; max-width: 58ch; color: var(--ink-soft); font-size: 17px; }

    .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }
    .js .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

    /* Schwebende runde Farbflächen */
    .shell {
      margin-left: clamp(8px, 1.4vw, 20px);
      margin-right: clamp(8px, 1.4vw, 20px);
      border-radius: clamp(28px, 4vw, 48px);
      overflow: visible;
      position: relative;
    }

    /* ── Kartenstapel (Leistungen) ────────────────────────────────── */

    #leistungen .head-row {
      display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 40px;
      justify-content: space-between;
    }
    .deck {
      margin-top: clamp(48px, 7vh, 80px);
      display: flex; flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      padding: 0 clamp(0px, 2vw, 40px);
    }
    .dcard {
      --rot: 0deg;
      width: min(356px, 88vw);
      background: #fff;
      border: 2px solid var(--navy);
      border-radius: 22px;
      padding: 30px 28px 26px;
      margin: 14px -10px;
      rotate: var(--rot);
      box-shadow: 7px 7px 0 var(--shadow, var(--blue));
      display: flex; flex-direction: column;
      position: relative;
      transition: rotate 0.25s, translate 0.25s, box-shadow 0.25s, z-index 0s;
      z-index: 1;
    }
    @media (min-width: 900px) { .dcard { margin: 18px -16px; } }
    .dcard:nth-child(1) { --rot: -3.5deg; }
    .dcard:nth-child(2) { --rot: 2.2deg; translate: 0 26px; }
    .dcard:nth-child(3) { --rot: -1.6deg; }
    .dcard:nth-child(4) { --rot: 3deg; translate: 0 18px; }
    .dcard:nth-child(5) { --rot: -2.4deg; }
    .dcard:hover { rotate: 0deg; translate: 0 -10px; box-shadow: 12px 12px 0 var(--shadow, var(--blue)); z-index: 5; }
    .dcard--blue  { --shadow: var(--blue); }
    .dcard--mint  { --shadow: var(--mint); }
    .dcard--coral { --shadow: var(--coral); }
    .dcard--sun   { --shadow: var(--sun); }
    .dcard--sky   { --shadow: #7cc3e8; }

    .dcard .no {
      position: absolute;
      top: -20px; left: 20px;
      background: var(--shadow, var(--blue));
      color: #fff;
      font-family: var(--display);
      font-weight: 800;
      font-size: 15px;
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--navy);
      rotate: -6deg;
    }
    .dcard--sun .no, .dcard--sky .no { color: var(--navy); }
    .dcard h3 { font-size: 1.4rem; font-weight: 750; margin-top: 8px; }
    .dcard p { margin-top: 10px; font-size: 17px; color: var(--ink-soft); }
    .dcard .more {
      margin-top: auto; padding-top: 22px;
      font-size: 14px; font-weight: 700; color: var(--blue);
    }
    .dcard:hover .more { text-decoration: underline; }

    /* ── Kontur-Zahlen ────────────────────────────────────────────── */

    #zahlen .inner {
      padding-top: clamp(80px, 11vh, 140px);
      padding-bottom: clamp(110px, 16vh, 190px);
    }
    .num-row {
      display: flex; flex-wrap: wrap;
      gap: 24px clamp(28px, 5vw, 80px);
      align-items: flex-start;
      justify-content: center;
    }
    .num { text-align: center; }
    .num:nth-child(even) { translate: 0 clamp(14px, 3vh, 38px); }
    .num .big {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(3.6rem, 8.5vw, 7.5rem);
      line-height: 1;
      letter-spacing: -0.02em;
      color: transparent;
      -webkit-text-stroke: 3px var(--blue);
      transition: color 0.3s;
      cursor: default;
    }
    .num:hover .big { color: var(--blue); }
    .num .big sup { font-size: 0.4em; -webkit-text-stroke: 2px var(--blue); }
    .num .lbl {
      display: inline-block;
      margin-top: 14px;
      background: var(--navy); color: #fff;
      font-size: 17px; font-weight: 700;
      padding: 7px 16px;
      border-radius: 999px;
      rotate: -2deg;
    }
    .num:nth-child(even) .lbl { rotate: 2deg; background: var(--blue); }

    /* ── Navy-Fläche: Haltung ─────────────────────────────────────── */

    #anders { background: var(--navy); color: #fff; }
    #anders .kicker { color: #7cc3e8; }
    #anders .sec-sub { color: rgba(255, 255, 255, 0.7); }
    #anders .sec-title { max-width: 18ch; }
    .usp-grid {
      margin-top: clamp(40px, 6vh, 64px);
      display: grid; gap: 20px;
    }
    @media (min-width: 760px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
    .usp {
      background: rgba(255, 255, 255, 0.05);
      border: 1.5px solid rgba(255, 255, 255, 0.13);
      border-radius: 22px;
      padding: 26px 26px 24px;
      display: flex; gap: 20px; align-items: flex-start;
      transition: background 0.2s, rotate 0.2s;
    }
    .usp:hover { background: rgba(255, 255, 255, 0.09); rotate: -0.5deg; }
    @media (min-width: 760px) {
      .usp:nth-child(2) { translate: 0 22px; }
      .usp:nth-child(3) { translate: 0 -8px; }
      .usp:nth-child(4) { translate: 0 14px; }
    }
    .usp .badge {
      flex-shrink: 0;
      display: inline-flex; align-items: center; justify-content: center;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--blue);
    }
    .usp:nth-child(2) .badge { background: var(--mint); }
    .usp:nth-child(3) .badge { background: var(--sun); }
    .usp:nth-child(4) .badge { background: var(--coral); }
    .usp .badge svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .usp:nth-child(3) .badge svg { stroke: var(--navy); }
    .usp h3 { font-size: 1.2rem; }
    .usp p { margin-top: 8px; font-size: 14px; color: rgba(255, 255, 255, 0.72); }

    /* M365-Stempel klebt auf der Navy-Fläche */
    .stamp {
      position: absolute;
      right: clamp(6px, 5vw, 80px);
      top: -70px;
      width: clamp(150px, 17vw, 210px);
      height: clamp(150px, 17vw, 210px);
      z-index: 5;
      rotate: 8deg;
      filter: drop-shadow(0 14px 30px rgba(13, 38, 67, 0.3));
    }
    .stamp a { display: block; width: 100%; height: 100%; position: relative; }
    .stamp .ring {
      position: absolute; inset: 0;
      animation: stamp-spin 24s linear infinite;
    }
    @media (prefers-reduced-motion: reduce) { .stamp .ring { animation: none; } }
    @keyframes stamp-spin { to { transform: rotate(360deg); } }
    .stamp svg { width: 100%; height: 100%; display: block; }
    /* Kern-Text als SVG, damit er immer mit dem Stempel mitskaliert */
    .stamp-core { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

    /* ── Manifest ─────────────────────────────────────────────────── */

    #manifest .these {
      display: grid;
      grid-template-columns: clamp(90px, 14vw, 190px) 1fr;
      gap: clamp(16px, 3vw, 48px);
      align-items: center;
      padding: clamp(20px, 3.5vh, 36px) 0;
      border-bottom: 1.5px solid rgba(18, 40, 63, 0.1);
    }
    #manifest .these:first-of-type { border-top: 1.5px solid rgba(18, 40, 63, 0.1); }
    #manifest .these .tno {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 2.5px var(--blue);
      rotate: -3deg;
      transition: color 0.25s, rotate 0.25s;
      text-align: center;
    }
    #manifest .these:nth-child(even) .tno { rotate: 2.5deg; -webkit-text-stroke-color: var(--navy); }
    #manifest .these:hover .tno { color: var(--blue); rotate: 0deg; }
    #manifest .these:nth-child(even):hover .tno { color: var(--navy); }
    #manifest .these p {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.25rem, 2.6vw, 2.1rem);
      line-height: 1.25;
      letter-spacing: -0.01em;
      max-width: 26ch;
    }
    #manifest .these p em {
      font-style: normal;
      box-shadow: inset 0 -0.42em 0 rgba(255, 194, 51, 0.65);
    }
    #manifest .these:hover { background: linear-gradient(90deg, transparent, rgba(232, 243, 250, 0.6), transparent); }

    /* ── Claim-Umschalter (nur Entwurf) ───────────────────────────── */

    #claim-switch {
      display: inline-block;
      position: fixed;
      left: 18px; bottom: 18px;
      z-index: 90;
      background: var(--sun);
      color: var(--navy);
      border: 2px dashed rgba(13, 38, 67, 0.5);
      border-radius: 999px;
      padding: 10px 20px;
      font-family: var(--display);
      font-size: 13.5px; font-weight: 750;
      rotate: -2deg;
      box-shadow: 0 8px 24px rgba(13, 38, 67, 0.2);
      transition: rotate 0.2s, scale 0.2s;
    }
    #claim-switch:hover { rotate: 1deg; scale: 1.05; }
    /* Auf Mobil ausblenden: Menü + CTA decken den Kontakt ab */
    @media (max-width: 760px) { #claim-switch { display: none; } }

    /* ── Chat: Wann Kunden kommen ─────────────────────────────────── */

    #chat-sec .chat-grid {
      margin-top: clamp(40px, 6vh, 64px);
      max-width: 1120px;
      display: grid; gap: 20px clamp(28px, 4vw, 56px);
    }
    @media (min-width: 900px) { #chat-sec .chat-grid { grid-template-columns: 1fr 1fr; } }
    .chat-col { display: flex; flex-direction: column; gap: 20px; }
    .chat-tail { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 20px; }
    .chat-tail .bub--out { align-self: center; }
    /* Unregelmäßige, dezente Kippung statt Links-rechts-Muster */
    .chat-col:nth-child(1) .bub:nth-child(1) { rotate: -0.7deg; }
    .chat-col:nth-child(1) .bub:nth-child(2) { rotate: 0.3deg; }
    .chat-col:nth-child(1) .bub:nth-child(3) { rotate: -0.2deg; }
    .chat-col:nth-child(1) .bub:nth-child(4) { rotate: 0.6deg; }
    .chat-col:nth-child(1) .bub:nth-child(5) { rotate: -0.4deg; }
    .chat-col:nth-child(2) .bub:nth-child(1) { rotate: 0.4deg; }
    .chat-col:nth-child(2) .bub:nth-child(2) { rotate: -0.6deg; }
    .chat-col:nth-child(2) .bub:nth-child(3) { rotate: 0.2deg; }
    .chat-col:nth-child(2) .bub:nth-child(4) { rotate: -0.5deg; }
    .bub {
      max-width: min(78%, 560px);
      padding: 18px 26px;
      border-radius: 24px;
      font-size: 16.5px;
      line-height: 1.5;
      position: relative;
    }
    .bub--in {
      background: var(--soft);
      align-self: flex-start;
      border-bottom-left-radius: 6px;
      position: relative;
      cursor: help;
    }
    /* Dezenter Hinweis, dass hinter der Bubble ein Beleg steckt */
    .bub--in::after {
      content: 'ⓘ';
      position: absolute;
      top: 9px; right: 13px;
      font-size: 13px;
      color: rgba(18, 40, 63, 0.3);
    }
    /* Beleg-Overlay bei Hover / Fokus / Tipp */
    .bub--in .beleg {
      position: absolute;
      left: -2px; right: -2px; top: -2px;
      min-height: calc(100% + 4px);
      background: var(--navy); color: #fff;
      border-radius: 24px;
      border-bottom-left-radius: 6px;
      padding: 16px 24px;
      display: flex; flex-direction: column; gap: 6px; justify-content: center;
      font-size: 13.5px; line-height: 1.5;
      opacity: 0; visibility: hidden; translate: 0 5px;
      transition: opacity 0.18s ease, translate 0.18s ease, visibility 0.18s;
      z-index: 6;
      box-shadow: 0 16px 38px rgba(13, 38, 67, 0.28);
    }
    .bub--in:hover .beleg,
    .bub--in:focus-within .beleg,
    .bub--in.open .beleg { opacity: 1; visibility: visible; translate: 0 0; }
    .beleg .lbl {
      font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: #7cc3e8;
    }
    .beleg a {
      margin-top: 4px;
      font-size: 13px; font-weight: 700;
      color: var(--sun);
      text-decoration: underline;
      text-underline-offset: 3px;
      align-self: flex-start;
    }
    .beleg a:hover { color: #fff; }
    .bub--in .meta {
      display: block;
      font-size: 12px; font-weight: 700;
      color: var(--ink-soft);
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .bub--typing {
      background: var(--soft);
      align-self: flex-start;
      display: inline-flex; gap: 5px; align-items: center;
      padding: 20px 24px;
    }
    .bub--typing i {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(18, 40, 63, 0.35);
      animation: typing 1.2s ease-in-out infinite;
    }
    .bub--typing i:nth-child(2) { animation-delay: 0.15s; }
    .bub--typing i:nth-child(3) { animation-delay: 0.3s; }
    @keyframes typing { 0%, 60%, 100% { translate: 0 0; } 30% { translate: 0 -5px; } }
    @media (prefers-reduced-motion: reduce) { .bub--typing i { animation: none; } }
    .bub--out {
      background: var(--blue);
      color: #fff;
      align-self: flex-end;
      border-bottom-right-radius: 6px;
      font-weight: 600;
    }
    .bub--out a { text-decoration: underline; text-underline-offset: 3px; font-weight: 700; white-space: nowrap; }
    .bub--out a:hover { color: var(--sun); }

    /* ── Technologie-Band ─────────────────────────────────────────── */

    /* ── Schlanker Domain-Check-Einstieg (hell, nach Leistungen) ──── */

    #check-teaser .inner { padding-top: clamp(20px, 3vh, 36px); padding-bottom: clamp(48px, 7vh, 80px); }
    .teaser-box {
      background: var(--sky);
      border-radius: clamp(20px, 3vw, 32px);
      padding: clamp(26px, 4vw, 44px);
      display: grid; gap: 22px 40px;
      align-items: center;
    }
    @media (min-width: 880px) { .teaser-box { grid-template-columns: 1fr auto; } }
    .teaser-box .t-eyebrow {
      font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
      color: var(--blue); margin-bottom: 8px;
    }
    .teaser-box h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 750; max-width: 20ch; }
    .teaser-box p { margin-top: 8px; font-size: 15px; color: var(--ink-soft); max-width: 46ch; }
    .teaser-form { display: flex; flex-wrap: wrap; gap: 10px; }
    .teaser-form input {
      flex: 1; min-width: 200px;
      background: #fff;
      border: 1.5px solid rgba(18, 40, 63, 0.18);
      border-radius: 999px;
      padding: 14px 22px;
      font-family: var(--body); font-size: 15px; color: var(--ink);
      transition: border-color 0.15s;
    }
    .teaser-form input::placeholder { color: var(--ink-soft); opacity: 0.7; }
    .teaser-form input:focus { outline: none; border-color: var(--blue); }
    .teaser-form button {
      display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
      background: var(--navy); color: #fff;
      border-radius: 999px; padding: 14px 26px;
      font-family: var(--body); font-size: 14.5px; font-weight: 700;
      transition: background 0.15s;
    }
    .teaser-form button:hover { background: var(--navy-deep); }
    .teaser-note { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); }

    /* ── Security-Check (Lead-Magnet) ─────────────────────────────── */

    #check { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
    #check .inner { position: relative; z-index: 1; }
    /* Beispiel-Befund: zeigt das Liefer-Ergebnis (Substanz statt Deko).
       Mobile-first gestapelt; ab Desktop rechts neben dem Text – nur dort ist
       Platz ohne Überlappung mit Formular/Pills. */
    .check-befund {
      margin-top: clamp(36px, 5vh, 52px);
      max-width: 480px;
      border-left: 2px solid var(--blue);
      padding: 6px 0 6px 26px;
    }
    .cb-eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: #7cc3e8; margin-bottom: 18px;
    }
    .cb-rows { display: flex; flex-direction: column; }
    .cb-row {
      display: flex; align-items: center; gap: 14px;
      padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .cb-row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .cb-glyph { width: 16px; text-align: center; font-size: 15px; font-weight: 800; }
    .cb-label { flex: 1; font-size: 15.5px; font-weight: 650; color: #fff; }
    .cb-verdict { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
    .cb-row--ok   .cb-glyph, .cb-row--ok   .cb-verdict { color: #46c47e; }
    .cb-row--warn .cb-glyph, .cb-row--warn .cb-verdict { color: #ffc233; }
    .cb-row--bad  .cb-glyph, .cb-row--bad  .cb-verdict { color: #ff6b6b; }
    .cb-explain-lbl {
      margin-top: 18px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255, 255, 255, 0.45);
    }
    .cb-consequence { margin-top: 5px; font-size: 14.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.82); }
    .cb-consequence b { color: #fff; font-weight: 750; }
    .cb-report {
      display: inline-flex; align-items: center; gap: 9px;
      margin-top: 20px; font-size: 14px; font-weight: 700; color: #7cc3e8;
    }
    .cb-report:hover { color: #a9d8f0; }
    @media (min-width: 1201px) {
      .check-befund {
        position: absolute; top: 50%; right: 0;
        width: min(42%, 420px); margin-top: 0; max-width: none;
        transform: translateY(-50%);
      }
      /* .reveal-Transform ist spezifischer – hier überschreiben, sonst geht die
         vertikale Zentrierung (translateY(-50%)) beim Einblenden verloren. */
      .js .check-befund.reveal    { transform: translateY(calc(-50% + 22px)); }
      .js .check-befund.reveal.in { transform: translateY(-50%); }
    }
    #check .kicker { color: #7cc3e8; }
    #check h2 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); color: #fff; max-width: 16ch; }
    #check .check-sub { margin-top: 18px; max-width: 56ch; font-size: 17px; color: rgba(255, 255, 255, 0.72); }
    .check-form {
      margin-top: clamp(28px, 4vh, 40px);
      display: flex; flex-wrap: wrap; gap: 12px;
      max-width: 640px;
    }
    .check-form input {
      flex: 1; min-width: 240px;
      background: rgba(255, 255, 255, 0.07);
      border: 1.5px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      padding: 16px 26px;
      font-family: var(--body); font-size: 16px; color: #fff;
      transition: border-color 0.15s, background 0.15s;
    }
    .check-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
    .check-form input:focus { outline: none; border-color: var(--blue); background: rgba(255, 255, 255, 0.1); }
    .check-form button {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--blue); color: #fff;
      border-radius: 999px; padding: 16px 30px;
      font-family: var(--body); font-size: 15.5px; font-weight: 700;
      transition: background 0.15s;
    }
    .check-form button:hover { background: #0b85d4; }
    .check-trust {
      margin-top: 18px;
      display: flex; flex-wrap: wrap; gap: 6px 20px;
      font-size: 13px; color: rgba(255, 255, 255, 0.5);
    }
    .check-trust span { display: inline-flex; align-items: center; gap: 8px; }
    .check-trust span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #46c47e; }
    .check-scope {
      margin-top: clamp(26px, 4vh, 38px);
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .check-scope span {
      font-size: 12.5px; font-weight: 600;
      color: rgba(255, 255, 255, 0.82);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 999px; padding: 7px 15px;
    }

    /* ── Aus der Praxis (Referenzen) ──────────────────────────────── */

    #praxis { background: var(--soft); }
    #praxis .praxis-head {
      display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
      gap: 16px 32px;
    }
    #praxis .praxis-all {
      font-size: 15px; font-weight: 700; color: var(--blue);
      white-space: nowrap;
    }
    #praxis .praxis-all:hover { color: var(--blue-deep); }
    .praxis-grid {
      margin-top: clamp(36px, 5vh, 56px);
      display: grid; gap: 22px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 760px) { .praxis-grid { grid-template-columns: repeat(3, 1fr); } }
    .case-card {
      display: flex; flex-direction: column;
      background: #fff;
      border: 2px solid var(--navy);
      border-radius: 22px;
      padding: 26px 26px 22px;
      box-shadow: 6px 6px 0 var(--shadow, var(--blue));
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .case-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--shadow, var(--blue)); }
    .case-card--mint  { --shadow: var(--mint); }
    .case-card--blue  { --shadow: var(--blue); }
    .case-card--sky   { --shadow: #7cc3e8; }
    .case-card--coral { --shadow: var(--coral); }
    .case-card--sun   { --shadow: var(--sun); }
    .case-tags { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
    .case-tag {
      font-family: var(--mono, var(--body));
      font-size: 12px; font-weight: 700;
      color: #fff; background: var(--navy);
      padding: 4px 12px; border-radius: 999px;
    }
    .case-card--mint  .case-tag { background: var(--mint); }
    .case-card--blue  .case-tag { background: var(--blue); }
    .case-card--sky   .case-tag { background: #1f7fb8; }
    .case-card--coral .case-tag { background: var(--coral); }
    .case-card--sun   .case-tag { background: #9a6b00; }
    .case-size { font-size: 13px; color: var(--ink-soft); }
    .case-card h3 { font-size: 1.25rem; font-weight: 750; line-height: 1.2; }
    .case-card p { margin-top: 12px; font-size: 15px; color: var(--ink-soft); flex: 1; }
    .case-client {
      margin-top: 22px; padding-top: 16px;
      border-top: 1px solid rgba(18, 40, 63, 0.12);
      font-size: 13px; font-weight: 600; color: var(--ink-soft);
    }

    /* ── Technologie-Band ─────────────────────────────────────────── */

    #tech { padding: clamp(56px, 8vh, 90px) 0; }
    #tech .lbl {
      text-align: center;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 34px;
    }
    .logo-track {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
      mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    }
    .logo-inner {
      display: flex; align-items: center; gap: 3.6rem;
      width: max-content;
      animation: logo-slide 60s linear infinite;
    }
    .logo-inner:hover { animation-play-state: paused; }
    @media (prefers-reduced-motion: reduce) { .logo-inner { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }
    .logo-inner img {
      height: 42px; width: auto;
      filter: grayscale(1); opacity: 0.5;
      transition: filter 0.25s, opacity 0.25s;
    }
    .logo-inner img:hover { filter: grayscale(0); opacity: 1; }
    @keyframes logo-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── CTA: Reden wir. ──────────────────────────────────────────── */

    #cta {
      background: var(--blue);
      color: #fff;
      overflow: hidden;
    }
    #cta .inner {
      position: relative;
      text-align: center;
      padding-top: clamp(72px, 10vh, 120px);
      padding-bottom: clamp(72px, 10vh, 120px);
    }
    #cta h2 {
      font-size: clamp(3.4rem, 11vw, 9rem);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.025em;
    }
    #cta h2 .stroke {
      color: transparent;
      -webkit-text-stroke: 3px #fff;
    }
    #cta .sec-sub {
      margin: 26px auto 0;
      color: rgba(255, 255, 255, 0.85);
    }
    #cta .actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
    #cta .tel-pill {
      display: inline-flex; align-items: center; gap: 14px;
      background: #fff; color: var(--navy);
      border-radius: 999px;
      padding: 10px 12px 10px 30px;
      font-family: var(--display);
      font-size: clamp(1.2rem, 2.6vw, 1.8rem);
      font-weight: 800;
      transition: transform 0.15s;
    }
    #cta .tel-pill:hover { transform: translateY(-3px) rotate(-1deg); }
    #cta .tel-pill .circ {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--blue); color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    #cta .micro {
      margin-top: 30px;
      font-size: 13.5px; font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
      display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center;
    }

    /* ── Footer ───────────────────────────────────────────────────── */

    footer.site { background: var(--navy); color: #fff; margin-top: clamp(8px, 1.4vw, 20px); }
    footer.site .inner { padding-top: 60px; padding-bottom: 36px; }
    .foot-grid { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; }
    @media (min-width: 900px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
    .foot-brand { grid-column: 1 / -1; }
    @media (min-width: 900px) { .foot-brand { grid-column: auto; } }
    .foot-brand svg { height: 24px; width: auto; }
    .foot-brand p { margin-top: 16px; font-size: 14px; color: rgba(255, 255, 255, 0.55); }
    .foot-col h4 {
      font-size: 12.5px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 16px;
    }
    .foot-col a { display: block; padding: 4.5px 0; font-size: 14.5px; color: rgba(255, 255, 255, 0.8); }
    .foot-col a:hover { color: #fff; }
    .foot-base {
      margin-top: 52px; padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
    }
    .foot-base .dc { display: flex; align-items: center; gap: 9px; }
    .foot-base .dc::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #46c47e; }

    /* ── Artikel-Liste (Wissen-Übersicht) ─────────────────────────── */
    .artikel-list {
      margin-top: clamp(36px, 5vh, 56px);
      border-top: 1px solid rgba(18, 40, 63, 0.12);
    }
    .artikel-item {
      display: block;
      padding: clamp(22px, 3vh, 34px) 0;
      border-bottom: 1px solid rgba(18, 40, 63, 0.12);
      transition: padding-left 0.2s;
    }
    .artikel-item:hover { padding-left: 10px; }
    .artikel-meta {
      font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
      color: var(--blue); text-transform: uppercase;
    }
    .artikel-item h2 {
      font-family: var(--display);
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 750; line-height: 1.15;
      margin-top: 8px; max-width: 30ch;
    }
    .artikel-item:hover h2 { color: var(--blue); }
    .artikel-item p { margin-top: 10px; font-size: 17px; color: var(--ink-soft); max-width: 60ch; }
    .artikel-more {
      display: inline-block; margin-top: 14px;
      font-size: 14px; font-weight: 700; color: var(--blue);
    }

    /* ─── WISSENSDATENBANK: kompakte Glossar-Übersicht ─── */
    .wdb-index { margin-top: clamp(36px, 5vh, 56px); display: grid; gap: clamp(32px, 5vh, 52px); }
    .wdb-group { border-top: 1px solid rgba(18, 40, 63, 0.12); padding-top: clamp(18px, 2.5vh, 26px); }
    .wdb-group__title {
      font-family: var(--display); font-weight: 750;
      font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.2; color: var(--ink);
      margin-bottom: clamp(12px, 2vh, 18px);
    }
    .wdb-terms { list-style: none; columns: 2 17rem; column-gap: clamp(24px, 4vw, 56px); }
    .wdb-terms li { break-inside: avoid; }
    .wdb-terms a {
      display: block; padding: 7px 0;
      font-size: 17px; line-height: 1.35;
      border-bottom: 1px solid rgba(18, 40, 63, 0.08);
      transition: color 0.15s, padding-left 0.15s;
    }
    .wdb-terms a:hover { color: var(--blue); padding-left: 6px; }

    /* ─── PROSE: Fließtext aus dem CMS (Seiten, Artikel, Impressum …) ─── */
    .prose { font-size: 17px; color: var(--ink-soft); }
    .prose > * + * { margin-top: 1.15em; }
    .prose p { line-height: 1.7; }
    .prose h2 {
      font-family: var(--display); font-weight: 750;
      font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.2;
      color: var(--ink); margin-top: 2.2em;
    }
    .prose h3 {
      font-family: var(--display); font-weight: 700;
      font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.25;
      color: var(--ink); margin-top: 1.8em;
    }
    .prose h2 + *, .prose h3 + * { margin-top: 0.6em; }
    .prose ul, .prose ol { padding-left: 1.3em; }
    .prose li + li { margin-top: 0.4em; }
    .prose li { line-height: 1.6; }
    /* ── Inline-Textlinks: dezente, animierte Unterstreichung (Stil A) ──
       Ruhe: dünne 1,5px-Linie in Brand-Blau. Hover: 2px tiefere Linie
       wischt von links ein + Text vertieft sich. Gilt für allen Fließtext. */
    .prose a, .step p a, .faq-item p a, .sec-sub a {
      color: var(--ink);
      text-decoration: none;
      background-image:
        linear-gradient(var(--blue), var(--blue)),
        linear-gradient(var(--blue-deep), var(--blue-deep));
      background-repeat: no-repeat;
      background-position: 0 100%, 0 100%;
      background-size: 100% 1.5px, 0% 2px;
      padding-bottom: 2px;
      transition: background-size .3s ease, color .2s ease;
    }
    .prose a:hover, .step p a:hover, .faq-item p a:hover, .sec-sub a:hover {
      color: var(--blue-deep);
      background-size: 100% 1.5px, 100% 2px;
    }
    @media (prefers-reduced-motion: reduce) {
      .prose a, .step p a, .faq-item p a, .sec-sub a { transition: none; }
    }
    .prose strong { color: var(--ink); font-weight: 700; }
    .prose blockquote {
      border-left: 3px solid var(--blue); padding-left: 1em;
      color: var(--ink-soft); font-style: italic;
    }

    /* ── Projekt-Detail: Leistungs-Tags + Ergebnis-Callout ──────────── */
    /* Bildlose Referenzen: ruhige Metadaten-Chips oben, darunter ein
       plakatives Ergebnis-Statement als typografischer Blickfang. */
    .proj-tags {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-top: 24px; padding: 0; list-style: none;
    }
    .proj-tag {
      font-family: var(--mono, var(--body));
      font-size: 12.5px; font-weight: 600;
      color: var(--ink-soft); background: #fff;
      border: 1.5px solid rgba(13, 40, 63, 0.18);
      padding: 5px 13px; border-radius: 999px;
    }

    .proj-callout {
      --accent: var(--blue);
      margin-top: clamp(40px, 6vh, 68px);
      border-left: 6px solid var(--accent);
      padding-left: clamp(20px, 3vw, 34px);
    }
    .proj-callout__label {
      display: block;
      font-family: var(--mono, var(--body));
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 14px;
    }
    .proj-callout__text {
      font-family: var(--display); font-weight: 750;
      font-size: clamp(1.7rem, 4.2vw, 2.7rem);
      line-height: 1.07; letter-spacing: -0.02em;
      color: var(--ink); max-width: 20ch;
    }
    .proj-callout--mint  { --accent: var(--mint); }
    .proj-callout--blue  { --accent: var(--blue); }
    .proj-callout--sky   { --accent: #1f7fb8; }
    .proj-callout--coral { --accent: var(--coral); }
    .proj-callout--sun   { --accent: #9a6b00; }

    /* ── Bereichs-Hub: Wegweiser-Karten (Einstiegsseiten, Ebene 1) ──── */
    /* Zweck: schneller, gestalteter Verteiler in die tieferen Leistungs-
       seiten – bewusst Karte/Wegweiser, kein Homepage-Klon. */
    .hub {
      margin-top: clamp(40px, 6vh, 72px);
      display: grid; gap: clamp(16px, 2.2vw, 24px);
      grid-template-columns: 1fr;
    }
    @media (min-width: 680px)  { .hub { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1080px) { .hub--3 { grid-template-columns: repeat(3, 1fr); } }

    .hub-card {
      position: relative; display: flex; flex-direction: column;
      background: #fff; border: 2px solid var(--navy); border-radius: 20px;
      padding: clamp(22px, 2.4vw, 30px) clamp(22px, 2.4vw, 30px) clamp(20px, 2.2vw, 26px);
      box-shadow: 6px 6px 0 var(--accent, var(--blue));
      rotate: var(--rot, 0deg);
      transition: transform .22s ease, box-shadow .22s ease, rotate .22s ease;
    }
    /* Dezente Schräge als Marken-Nicken (nicht die ±3,5°-Dramatik der Startseite);
       beim Hover richtet sich die Karte gerade, damit die Pills exakt treffbar sind. */
    @media (min-width: 680px) {
      .hub-card:nth-child(odd)  { --rot: -1.8deg; }
      .hub-card:nth-child(even) { --rot:  1.8deg; }
    }
    .hub-card:hover { rotate: 0deg; transform: translate(-2px, -4px); box-shadow: 12px 12px 0 var(--accent, var(--blue)); z-index: 2; }
    .hub-card--blue  { --accent: var(--blue); }
    .hub-card--mint  { --accent: var(--mint); }
    .hub-card--coral { --accent: var(--coral); }
    .hub-card--sun   { --accent: var(--sun); }
    .hub-card--sky   { --accent: #7cc3e8; }

    .hub-card__top { display: flex; align-items: center; gap: 12px; }
    .hub-card__no {
      font-family: var(--display); font-weight: 800; font-size: 14px;
      color: #fff; background: var(--accent, var(--blue));
      width: 34px; height: 34px; border-radius: 50%; flex: none;
      display: inline-flex; align-items: center; justify-content: center;
      border: 2px solid var(--navy); rotate: -6deg;
    }
    .hub-card--sun .hub-card__no, .hub-card--sky .hub-card__no { color: var(--navy); }
    .hub-card__title { font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 750; line-height: 1.1; }
    .hub-card__title a:hover { color: var(--blue); }
    .hub-card__lead { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

    .hub-card__links {
      margin-top: 20px; padding-top: 16px;
      border-top: 1.5px solid rgba(13, 38, 67, 0.10);
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .hub-link {
      font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2;
      border: 1.5px solid rgba(13, 38, 67, 0.16); border-radius: 999px;
      padding: 7px 14px;
      transition: background .15s, color .15s, border-color .15s, transform .15s;
    }
    .hub-link:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-1px); }
    .hub-card__more {
      margin-top: auto; padding-top: 20px;
      font-size: 14px; font-weight: 700; color: var(--blue);
      display: inline-flex; align-items: center; gap: 7px;
    }
    .hub-card:hover .hub-card__more { gap: 11px; }

    /* Hervorgehobene Karte (Navy) – z. B. die kostenlosen Tools */
    .hub-card--feature { background: var(--navy); border-color: var(--navy); --accent: var(--sun); }
    .hub-card--feature .hub-card__title { color: #fff; }
    .hub-card--feature .hub-card__lead { color: rgba(255, 255, 255, 0.74); }
    .hub-card--feature .hub-card__links { border-top-color: rgba(255, 255, 255, 0.16); }
    .hub-card--feature .hub-link { color: #fff; border-color: rgba(255, 255, 255, 0.28); }
    .hub-card--feature .hub-link:hover { background: #fff; color: var(--navy); border-color: #fff; }
    .hub-card--feature .hub-card__more { color: var(--sun); }

    /* Schlanke Proof-Zeile (kompakte Zahlen, nicht die große Homepage-Wand) */
    .hub-proof {
      margin-top: clamp(36px, 5vh, 60px);
      display: flex; flex-wrap: wrap; gap: 18px clamp(28px, 5vw, 64px);
    }
    .hub-proof .pf { display: flex; flex-direction: column; }
    .hub-proof .pf b {
      font-family: var(--display); font-weight: 800; color: var(--ink);
      font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1;
    }
    .hub-proof .pf b sup { font-size: 0.42em; -webkit-text-stroke: 2px var(--blue); color: transparent; }
    .hub-proof .pf span { margin-top: 8px; font-size: 13.5px; color: var(--ink-soft); max-width: 22ch; }

    /* Schlanke Abschluss-Zeile mit CTA */
    .hub-foot {
      margin-top: clamp(44px, 6vh, 76px);
      display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px;
      justify-content: space-between;
      border-top: 2px solid var(--navy); padding-top: clamp(28px, 4vh, 44px);
    }
    .hub-foot p { max-width: 48ch; font-size: 17px; color: var(--ink-soft); }
    .hub-foot p strong { color: var(--ink); font-weight: 700; }

    /* ── L2-Leistungsseite: Signale, Prozess, FAQ ────────────────────── */
    .sec-soft { background: var(--soft); }

    /* Signal-Liste ("Wann lohnt sich das?") */
    .signals { margin-top: clamp(24px, 3.5vh, 40px); display: grid; gap: 12px; max-width: 70ch; }
    .signal {
      display: flex; align-items: flex-start; gap: 14px;
      font-size: 16.5px; color: var(--ink); line-height: 1.5;
      padding-left: 2px;
    }
    .signal::before {
      content: ""; flex: none; width: 11px; height: 11px; margin-top: 7px;
      background: var(--sun); border: 2px solid var(--navy); border-radius: 50%;
      rotate: 8deg;
    }

    /* Prozess-Schritte ("So entsteht Ihre Software") */
    .steps { margin-top: clamp(28px, 4vh, 48px); display: grid; gap: 22px 36px; }
    @media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
    .step { display: flex; gap: 16px; align-items: flex-start; }
    .step b {
      font-family: var(--display); font-weight: 800; line-height: 1; flex: none;
      font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: transparent;
      -webkit-text-stroke: 2px var(--blue); width: 1.7em;
    }
    .step h3 { font-size: 1.15rem; font-weight: 750; }
    .step p { margin-top: 7px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
    /* .step p a → vereinheitlichte Inline-Link-Regel weiter oben (Stil A) */

    /* FAQ – offene Q&A-Blöcke (sichtbar = SEO-freundlich) */
    .faq { margin-top: clamp(26px, 3.5vh, 44px); border-top: 1.5px solid rgba(13, 38, 67, 0.12); max-width: 80ch; }
    .faq-item { border-bottom: 1.5px solid rgba(13, 38, 67, 0.12); padding: clamp(18px, 2.6vh, 26px) 0; }
    .faq-item h3 { font-size: clamp(1.05rem, 1.9vw, 1.3rem); font-weight: 750; }
    .faq-item p { margin-top: 10px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
    /* .faq-item p a → vereinheitlichte Inline-Link-Regel weiter oben (Stil A) */

    /* ── Beispiel-Bericht (Domain-Sicherheitscheck: Liefer-Ergebnis zeigen) ── */
    .report {
      margin-top: clamp(24px, 3.5vh, 40px); max-width: 880px;
      background: #fff; border: 1px solid rgba(13, 38, 67, 0.14);
      border-radius: 16px; overflow: hidden;
    }
    .report-head {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
      gap: 10px 24px; padding: 18px clamp(20px, 3vw, 28px);
      background: var(--soft); border-bottom: 1px solid rgba(13, 38, 67, 0.1);
    }
    .report-domain { font-size: 1.05rem; font-weight: 750; color: var(--navy); }
    .report-domain small { display: block; margin-top: 2px; font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }
    .report-verdict { display: inline-flex; align-items: center; gap: 12px; }
    .rv-pill { background: var(--coral); color: #fff; font-size: 12.5px; font-weight: 700; padding: 4px 13px; border-radius: 999px; }
    .report-summary { font-size: 13px; color: var(--ink-soft); }
    .report-list { list-style: none; }
    .finding {
      display: grid; grid-template-columns: 104px 1fr; gap: 4px 18px;
      padding: 18px clamp(20px, 3vw, 28px); border-top: 1px solid rgba(13, 38, 67, 0.08);
    }
    .report-list .finding:first-child { border-top: none; }
    .finding-sev { align-self: start; font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding-top: 2px; }
    .finding--bad  .finding-sev { color: #d23b3b; }
    .finding--warn .finding-sev { color: #b8730a; }
    .finding--ok   .finding-sev { color: #1f9d57; }
    .finding-body h3 { font-size: 1.02rem; font-weight: 750; color: var(--navy); }
    .finding-body p { margin-top: 5px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
    .finding-rec { color: var(--navy) !important; font-weight: 600; }
    .report-foot {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
      gap: 14px 24px; padding: 20px clamp(20px, 3vw, 28px);
      background: var(--soft); border-top: 1px solid rgba(13, 38, 67, 0.1);
    }
    .report-foot p { font-size: 14px; color: var(--ink-soft); max-width: 46ch; }
    @media (max-width: 560px) { .finding { grid-template-columns: 1fr; gap: 8px; } }

    /* ── L3-Detailseite: Breadcrumb · Split-Hero · Steckbrief · Geschwister ── */
    .crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; font-size: 13px; color: var(--ink-soft); margin-bottom: clamp(20px, 3vh, 30px); }
    .crumbs a { color: var(--ink-soft); }
    .crumbs a:hover { color: var(--blue); }
    .crumbs .sep { color: rgba(13, 38, 67, 0.32); }
    .crumbs [aria-current] { color: var(--ink); font-weight: 600; }

    .byline { font-size: 14px; color: var(--ink-soft); margin-top: 16px; }
    .byline__author { color: var(--ink); font-weight: 600; }
    a.byline__author:hover { color: var(--blue); }

    .l3-hero { display: grid; gap: clamp(28px, 4vw, 52px); align-items: start; }
    @media (min-width: 920px) { .l3-hero { grid-template-columns: 1.35fr 1fr; } }
    .l3-hero .kicker { text-decoration: none; }
    .l3-hero .kicker:hover { color: var(--blue-deep); }
    .l3-hero__claim .sec-sub { max-width: 50ch; }

    /* Steckbrief „Auf einen Blick" – typografisch, nicht grafisch */
    /* Steckbrief als angepinnter, leicht gekippter Notizzettel */
    .factbox {
      background: #fff; border: 2px solid var(--navy); border-radius: 16px;
      padding: clamp(22px, 2.4vw, 30px);
      box-shadow: 8px 8px 0 var(--blue);
      rotate: -1.6deg; transition: rotate 0.25s ease;
    }
    .factbox:hover { rotate: 0deg; }
    .factbox .lbl {
      font-size: 12.5px; font-weight: 700; letter-spacing: 0.07em;
      text-transform: uppercase; color: var(--blue);
    }
    .factbox dl { margin-top: 18px; display: grid; gap: 14px; }
    .factbox dt { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
    .factbox dd { margin-top: 3px; font-size: 15.5px; color: var(--ink); line-height: 1.5; }
    .factbox .btn { margin-top: 22px; width: 100%; justify-content: center; }

    /* Checkliste (Was wir prüfen / Was Sie bekommen) – mint statt Signal-Gelb */
    .signals--cols { gap: 12px 32px; }
    @media (min-width: 680px) { .signals--cols { grid-template-columns: repeat(2, 1fr); } }
    .signals--check .signal::before { background: var(--mint); rotate: 0deg; }

    /* Geschwister-Navigation (weitere L3 im selben Bereich) */
    .siblings { margin-top: clamp(40px, 6vh, 72px); border-top: 2px solid var(--navy); padding-top: clamp(24px, 3.5vh, 36px); }
    .siblings .lbl { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
    .siblings .row { display: flex; flex-wrap: wrap; gap: 8px; }

    /* ── Kostenrechner Individualsoftware (Ressourcen-Tool) ─────────── */
    .kr-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); margin-top: clamp(28px, 4vh, 44px); align-items: start; }
    @media (min-width: 920px) { .kr-grid { grid-template-columns: 1.35fr 1fr; } }
    .kr-group + .kr-group { margin-top: clamp(22px, 3vh, 34px); }
    .kr-group > h2 { font-size: 1.02rem; font-weight: 750; color: var(--ink); }
    .kr-group .kr-hint { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
    .kr-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
    .kr-chip {
      font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; line-height: 1.2;
      background: var(--white); color: var(--ink);
      border: 1.5px solid rgba(13, 38, 67, 0.16); border-radius: 999px;
      padding: 10px 16px; transition: border-color .15s ease, background .15s ease, color .15s ease;
    }
    .kr-chip:hover { border-color: var(--blue); }
    .kr-chip:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
    .kr-chip[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }

    .kr-result { background: var(--navy); color: #fff; border-radius: 18px; padding: clamp(24px, 3vw, 34px); }
    @media (min-width: 920px) { .kr-result { position: sticky; top: 96px; } }
    .kr-result .kr-eyebrow { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
    .kr-amount { font-family: var(--display); font-weight: 800; line-height: 1.02; font-size: clamp(1.9rem, 4.8vw, 2.8rem); margin-top: 8px; font-variant-numeric: tabular-nums; }
    .kr-pt { color: rgba(255, 255, 255, .72); margin-top: 10px; font-size: 14.5px; }
    .kr-break { margin-top: 18px; border-top: 1px solid rgba(255, 255, 255, .18); padding-top: 14px; font-size: 14px; list-style: none; padding-left: 0; }
    .kr-break li { display: flex; justify-content: space-between; gap: 14px; padding: 3px 0; color: rgba(255, 255, 255, .85); }
    .kr-break li span:last-child { color: rgba(255, 255, 255, .6); white-space: nowrap; font-variant-numeric: tabular-nums; }
    .kr-note { margin-top: 16px; background: rgba(255, 255, 255, .08); border-radius: 12px; padding: 14px 16px; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .9); }
    .kr-note--warn { background: rgba(255, 194, 51, 0.16); color: #fff; }
    .kr-result .btn { margin-top: 18px; }
    .kr-disclaimer { font-size: 12.5px; color: rgba(255, 255, 255, .5); margin-top: 14px; }
    .kr-note a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

    /* Nutzer-Slider */
    .kr-slider { display: flex; align-items: center; gap: 16px; margin-top: 14px; }
    .kr-slider input[type="range"] { flex: 1; accent-color: var(--blue); height: 6px; cursor: pointer; }
    .kr-slider output { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--ink); white-space: nowrap; min-width: 9ch; text-align: right; }

    /* Aufsummierung pro Jahr (Lizenzkosten türmen sich) */
    .kr-stack { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
    .kr-stack-row { display: flex; align-items: center; gap: 12px; font-size: 13px; }
    .kr-stack-yr { width: 4.5em; flex: none; color: rgba(255, 255, 255, .6); }
    .kr-stack-bar { flex: 1; height: 8px; background: rgba(255, 255, 255, .12); border-radius: 999px; overflow: hidden; }
    .kr-stack-fill { display: block; height: 100%; width: 0; background: var(--coral); border-radius: 999px; transition: width .4s ease; }
    .kr-stack-val { width: 6.5em; flex: none; text-align: right; color: rgba(255, 255, 255, .85); font-variant-numeric: tabular-nums; }

    /* Zwei-Spalten-Helfer (z. B. Build vs. Buy: Kaufen | Bauen) */
    .two-col { display: grid; gap: clamp(24px, 4vw, 44px); grid-template-columns: 1fr; margin-top: clamp(28px, 4vh, 44px); }
    @media (min-width: 760px) { .two-col { grid-template-columns: 1fr 1fr; } }
