  :root {
    --ink: #0d0d0d;
    --paper: #f5f0e8;
    --cream: #ede8dc;
    --accent: #e84c1e;
    --accent2: #2d4a3e;
    --muted: #8a8070;
    --white: #fdfaf5;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 5vw;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 200;
    background: rgba(245,240,232,0.95);
    backdrop-filter: blur(12px);
  }
  .logo a { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: inherit; }
  .logo-mark { display: flex; align-items: center; color: var(--ink); flex-shrink: 0; }
  .logo-mark svg { width: 28px; height: 22px; display: block; }
  .logo-name { font-family: 'DM Serif Display', serif; font-size: 1.15rem; letter-spacing: -0.01em; line-height: 1; }
  .logo-name span { color: var(--accent); }

  .logo span { color: var(--accent); }
  nav a {
    text-decoration: none; color: var(--ink);
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
    text-transform: uppercase; opacity: 0.65; transition: opacity 0.2s;
  }
  nav a:hover { opacity: 1; }
  .nav-links { display: none; }
  .nav-right { display: flex; align-items: center; gap: 1.2rem; }
  .nav-cta {
    background: var(--accent); color: #fff !important;
    padding: 0.55rem 1.3rem; border-radius: 2px;
    opacity: 1 !important; transition: background 0.2s !important;
    cursor: pointer;
  }
  .nav-cta:hover { background: #c73a10 !important; }

  /* Hamburger */
  .nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
  .nav-mobile { display: none; flex-direction: column; position: sticky; top: 65px; z-index: 199; background: rgba(245,240,232,0.98); border-bottom: 1px solid rgba(0,0,0,0.1); }
  .nav-mobile.open { display: flex; }
  .nav-mobile { max-height: calc(100vh - 65px); overflow-y: auto; }
  .nav-mobile a { padding: 0.85rem 5vw; font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(0,0,0,0.06); text-decoration: none; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }
  .nav-mobile a.nav-cta-mobile { background: var(--accent); color: #fff; text-align: center; font-weight: 700; }

  /* ── HERO ── */
  .hero {
    min-height: 92vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .hero-text {
    padding: 8vh 6vw 8vh 8vw;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 2;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 1.4rem;
  }
  .hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--accent); }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.8rem;
  }
  .hero h1 em { font-style: italic; color: var(--accent); }
  .hero-sub { font-size: 1.1rem; font-weight: 300; color: #444; max-width: 44ch; margin-bottom: 3rem; line-height: 1.7; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    background: var(--accent); color: #fff;
    padding: 1rem 2.2rem; font-size: 0.92rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px; border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 4px 4px 0 var(--ink); display: inline-block;
  }
  .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
  .btn-secondary {
    border: 1.5px solid var(--ink); color: var(--ink);
    padding: 1rem 2.2rem; font-size: 0.92rem; font-weight: 500;
    text-decoration: none; border-radius: 2px; transition: background 0.2s; display: inline-block;
  }
  .btn-secondary:hover { background: var(--ink); color: var(--paper); }

  .hero-visual {
    background: var(--accent2); position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-visual::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(232,76,30,0.25) 0%, transparent 60%);
  }
  .sprint-diagram { position: relative; z-index: 2; padding: 4rem; width: 100%; }
  .day-label {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem; line-height: 1; color: rgba(255,255,255,0.06);
    position: absolute; top: 2rem; right: 2.5rem; letter-spacing: -0.05em;
  }
  .phase-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px; padding: 1.4rem 1.6rem; margin-bottom: 1rem;
    transition: transform 0.3s;
  }
  .phase-card:hover { transform: translateX(6px); }
  .phase-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
  .phase-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: #fff; margin-bottom: 0.3rem; }
  .phase-desc { font-size: 0.84rem; color: rgba(255,255,255,0.55); font-weight: 300; }
  .connector { width: 2px; height: 20px; background: rgba(232,76,30,0.4); margin: 0 0 0 1.6rem; }

  /* Zweigeteilte Phasen (zwei Wege) */
  .phase-split { padding-bottom: 1.5rem; }
  .phase-paths { margin-top: 0.7rem; }
  .phase-path {
    display: flex; align-items: flex-start; gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 2px solid var(--accent);
    border-radius: 3px;
  }
  .path-tag {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent);
    background: rgba(232,76,30,0.15);
    padding: 0.18rem 0.45rem; border-radius: 3px;
    white-space: nowrap; flex-shrink: 0; margin-top: 0.05rem;
  }
  .path-text { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.45; }
  .phase-or {
    text-align: center; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin: 0.4rem 0;
    position: relative;
  }

  /* ── ÜBER UNS ── */
  .about-section { background: var(--cream); }
  .about-grid {
    display: grid; grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem; align-items: center; margin-top: 3.5rem;
  }
  .about-photo {
    position: relative; border-radius: 6px; overflow: hidden;
    box-shadow: 8px 8px 0 var(--ink);
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-photo::after {
    content: 'Kai & Christoph';
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.85), transparent);
    color: #fff; font-family: 'DM Serif Display', serif;
    font-size: 1.1rem; padding: 2.5rem 1.4rem 1.1rem;
  }
  .about-lead { font-size: 1.15rem; font-weight: 400; color: var(--ink); line-height: 1.6; margin-bottom: 1.3rem; }
  .about-text { color: #555; font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem; }
  .about-text strong { font-weight: 600; color: var(--ink); }
  .about-security {
    background: var(--white); border: 1px solid rgba(0,0,0,0.1);
    border-left: 3px solid var(--accent);
    border-radius: 4px; padding: 1.4rem 1.6rem; margin: 1.8rem 0;
  }
  .about-security-label {
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
  }
  .about-stack { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .about-chip {
    font-size: 0.82rem; font-weight: 500; padding: 0.4rem 0.85rem;
    background: var(--cream); border: 1px solid rgba(0,0,0,0.12);
    border-radius: 100px; color: #444;
  }
  @media (max-width: 820px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-photo { box-shadow: 5px 5px 0 var(--ink); max-width: 420px; }
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--accent);
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .stat-item { padding: 2.5rem 3rem; border-right: 1px solid rgba(255,255,255,0.2); text-align: center; }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'DM Serif Display', serif; font-size: 2.8rem; color: #fff; line-height: 1; margin-bottom: 0.4rem; }
  .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 300; letter-spacing: 0.04em; }

  /* ── SECTIONS ── */
  section { padding: 8rem 8vw; }
  @media (max-width: 900px) {
    section { padding: 4rem 5vw; }
  }
  .use-cases-section { background: var(--paper); overflow: hidden; }
  .section-tag {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.2rem;
  }
  .section-tag::before { content: ''; width: 22px; height: 2px; background: var(--accent); }
  h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.4rem; }
  h2 em { font-style: italic; color: var(--accent); }

  /* ── HOW IT WORKS ── */
  .how-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; margin-top: 5rem; }
  .tl-step {
    display: grid; grid-template-columns: 56px 1fr; gap: 1.8rem; margin-bottom: 3.5rem;
    opacity: 1; transform: translateY(0); transition: opacity 0.5s, transform 0.5s;
  }
  /* Reveal-Animation nur, wenn JavaScript aktiv ist (Fallback: immer sichtbar) */
  html.js .tl-step:not(.visible) { opacity: 0; transform: translateY(24px); }
  .tl-step.visible { opacity: 1; transform: translateY(0); }
  .tl-step:nth-child(2) { transition-delay: 0.1s; }
  .tl-step:nth-child(3) { transition-delay: 0.2s; }
  .step-circle {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--cream); border: 2px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 1.4rem; flex-shrink: 0;
    position: relative; z-index: 1;
  }
  .tl-step:not(:last-child) .step-circle::after {
    content: ''; position: absolute; top: 100%; left: 50%;
    width: 2px; height: calc(3.5rem + 56px - 10px);
    background: linear-gradient(to bottom, var(--ink), transparent);
    transform: translateX(-50%);
  }
  .step-body h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
  .step-body p { color: #555; font-weight: 300; font-size: 0.96rem; }
  .step-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
  .chip { font-size: 0.78rem; font-weight: 500; padding: 0.35rem 0.75rem; background: var(--cream); border: 1px solid rgba(0,0,0,0.12); border-radius: 100px; color: #444; }

  /* Alternative path within a timeline step */
  .step-alt {
    margin-top: 1rem;
    padding: 0.85rem 1rem 0.95rem;
    border-left: 2px solid var(--accent);
    background: rgba(232,76,30,0.04);
    border-radius: 0 3px 3px 0;
  }
  .step-alt-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
  }
  .step-alt p { color: #5a5045; font-size: 0.92rem; font-weight: 300; margin: 0; line-height: 1.6; }

  /* ── OPTIONS ── */
  .options-section { background: var(--accent2); color: #fff; }
  .options-section h2 { color: #fff; }
  .options-section .section-tag { color: #a8c5b5; }
  .options-section .section-tag::before { background: #a8c5b5; }
  .options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 4rem; border: 1px solid rgba(255,255,255,0.1); }
  .option-card { background: rgba(255,255,255,0.04); padding: 3.5rem; border: 1px solid rgba(255,255,255,0.08); transition: background 0.3s; }
  .option-card:hover { background: rgba(255,255,255,0.08); }
  .option-letter { font-family: 'DM Serif Display', serif; font-size: 4rem; line-height: 1; color: var(--accent); margin-bottom: 1.5rem; }
  .option-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; margin-bottom: 1rem; color: #fff; }
  .option-card > p { color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 1.5rem; }
  .option-list { list-style: none; }
  .option-list li { padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.9rem; color: rgba(255,255,255,0.75); display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.5; }
  .option-list li::before { content: '→'; color: var(--accent); flex-shrink: 0; }

  /* ── USE CASES ── */
  .use-cases-section { background: var(--paper); }
  .cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4rem; border: 1px solid rgba(0,0,0,0.1); }
  .case-card { padding: 2.5rem 2rem; border-right: 1px solid rgba(0,0,0,0.1); transition: background 0.3s; }
  .case-card:last-child { border-right: none; }
  .case-card:hover { background: var(--ink); color: #fff; }
  .case-icon { margin-bottom: 1rem; }
  .case-icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
  .case-card:hover .case-icon svg { stroke: #fff; }
  .case-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
  .case-card p { font-size: 0.83rem; opacity: 0.65; font-weight: 300; }

  /* ── TARGET ── */
  .target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-top: 4rem; }
  .target-list { list-style: none; margin-bottom: 0; }
  .target-list li { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: 0.97rem; line-height: 1.6; }
  .target-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 0.45rem; }
  .impact-box { background: var(--accent2); color: #fff; padding: 3.5rem; border-radius: 2px; position: relative; overflow: hidden; }
  .impact-box::before { content: ''; position: absolute; top: -40%; right: -20%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(232,76,30,0.18), transparent 70%); }
  .impact-box h3 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 2rem; position: relative; color: #fff; }
  .impact-item { margin-bottom: 1.5rem; position: relative; }
  .impact-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.3rem; }
  .impact-val { font-family: 'DM Serif Display', serif; font-size: 2rem; color: #fff; }
  .impact-desc { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

  /* ── REFERENCE (dunkles Kapitel, klarer Bruch zum Refhub) ── */
  .reference-section {
    background: var(--paper);
    padding: 8rem 8vw;
    position: relative;
    overflow: hidden;
  }
  .reference-section::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,76,30,0.10), transparent 65%);
    pointer-events: none;
  }
  .reference-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -15%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,76,30,0.07), transparent 65%);
    pointer-events: none;
  }
  .reference-section > * { position: relative; z-index: 1; }
  .reference-section .section-tag { color: var(--accent); }
  .reference-section .section-tag::before { background: var(--accent); }
  .reference-section h2 { color: var(--ink); margin-bottom: 4rem; }

  .ref-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
  .ref-badge {
    display: inline-block;
    background: rgba(232,76,30,0.15);
    color: var(--accent);
    border: 1px solid rgba(232,76,30,0.4);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px; margin-bottom: 1.8rem;
  }
  .ref-client {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem; line-height: 1.15;
    color: var(--ink); margin-bottom: 0.7rem;
  }
  .ref-location {
    font-size: 0.85rem; color: var(--muted);
    margin-bottom: 2.5rem; font-weight: 300;
  }
  .ref-stat-row { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; }
  .ref-stat { border-left: 3px solid var(--accent); padding-left: 1.2rem; }
  .ref-stat .num {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem; color: var(--accent); line-height: 1;
  }
  .ref-stat .label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.2rem; font-weight: 300;
  }
  .ref-duration {
    font-size: 0.88rem;
    color: #5a4f43;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1.2rem 1.4rem; border-radius: 4px; line-height: 1.7;
  }
  .ref-duration strong { color: var(--ink); }

  /* Credibility box */
  .ref-credibility {
    margin-top: 2rem;
    background: rgba(232,76,30,0.07);
    border: 1px solid rgba(232,76,30,0.22);
    border-radius: 4px; padding: 1.6rem 1.8rem;
  }
  .ref-credibility-q {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem; color: var(--ink);
    margin-bottom: 0.7rem; font-style: italic;
  }
  .ref-credibility-a {
    font-size: 0.88rem;
    color: #5a4f43;
    line-height: 1.7; font-weight: 300;
  }
  .ref-credibility-a strong { color: var(--ink); font-weight: 600; }

  .ref-deliverables {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 2.5rem;
  }
  .ref-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 1.3rem;
    background: rgba(255,255,255,0.55);
    transition: background 0.2s;
  }
  .ref-item:hover { background: rgba(255,255,255,0.95); }
  .ref-item-icon { width: 32px; flex-shrink: 0; margin-top: 0.1rem; }
  .ref-item-icon svg {
    width: 22px; height: 22px;
    stroke: var(--accent); fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  }
  .ref-item-text {
    font-size: 0.84rem;
    color: #5a4f43;
    line-height: 1.5;
  }
  .ref-item-text strong {
    display: block; color: var(--ink);
    font-size: 0.88rem; margin-bottom: 0.15rem;
  }
  .ref-cta {
    background: rgba(232,76,30,0.08);
    border: 1px solid rgba(232,76,30,0.22);
    padding: 2rem 2.2rem; border-radius: 4px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
  }
  .ref-cta p {
    font-size: 0.92rem;
    color: #5a4f43;
    max-width: 45ch; margin: 0;
  }
  .ref-cta p strong { color: var(--ink); }
  .btn-outline-accent {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 0.75rem 1.6rem;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px; white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    background: transparent;
  }
  .btn-outline-accent:hover { background: var(--accent); color: #fff; }


  /* ── CTA SECTION ── */
  .cta-section { background: var(--accent); text-align: center; padding: 10rem 8vw; position: relative; overflow: hidden; }
  .cta-section::before { content: 'SPRINT'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'DM Serif Display', serif; font-size: 28vw; color: rgba(0,0,0,0.07); white-space: nowrap; pointer-events: none; line-height: 1; }
  .cta-section h2 { color: #fff; position: relative; margin-bottom: 1.2rem; }
  .cta-section > p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 50ch; margin: 0 auto 3rem; position: relative; }
  .btn-white { background: #fff; color: var(--accent); padding: 1.1rem 2.8rem; font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border-radius: 2px; display: inline-block; box-shadow: 4px 4px 0 rgba(0,0,0,0.25); transition: transform 0.2s, box-shadow 0.2s; position: relative; border: none; cursor: pointer; }
  .btn-white:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.3); }

  /* ── EXAMPLES ── */
  .examples-section { background: var(--paper); }
  .examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border: 1px solid rgba(0,0,0,0.1); }
  .example-card { background: var(--white); padding: 3rem 2.5rem; border-right: 1px solid rgba(0,0,0,0.08); transition: background 0.3s; }
  .example-card:last-child { border-right: none; }
  .example-icon { margin-bottom: 1.2rem; }
  .example-icon svg { width: 32px; height: 32px; stroke: var(--accent); }
  .example-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
  .example-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.35rem; line-height: 1.2; margin-bottom: 1rem; color: var(--ink); }
  .example-intro { font-size: 0.88rem; color: #666; font-weight: 300; line-height: 1.75; margin-bottom: 1.8rem; }
  .example-list { list-style: none; margin-bottom: 2rem; }
  .example-list li { padding: 0.9rem 0; border-bottom: 1px solid rgba(0,0,0,0.07); display: flex; flex-direction: column; gap: 0.2rem; }
  .example-list li:last-child { border-bottom: none; }
  .example-item-title { font-size: 0.9rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 0.6rem; }
  .example-item-title::before { content: '→'; color: var(--accent); font-weight: 400; flex-shrink: 0; }
  .example-item-desc { font-size: 0.82rem; color: #666; font-weight: 300; line-height: 1.65; padding-left: 1.3rem; }
  .example-highlight { background: var(--cream); border-left: 3px solid var(--accent); padding: 1rem 1.2rem; font-size: 0.85rem; font-weight: 500; color: var(--ink); line-height: 1.65; border-radius: 0 2px 2px 0; }

  @media (max-width: 1100px) {
    .examples-grid { grid-template-columns: 1fr; }
    .example-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .example-card:last-child { border-bottom: none; }
  }
  .pricing-section { background: var(--cream); }
  .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 4rem; border: 1px solid rgba(0,0,0,0.1); }
  .pricing-card { background: var(--white); padding: 3rem; position: relative; transition: box-shadow 0.3s; }
  .pricing-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); z-index: 1; }
  .pricing-card.featured { background: var(--accent2); color: #fff; }
  .pricing-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1.5rem; background: rgba(232,76,30,0.12); color: var(--accent); border: 1px solid rgba(232,76,30,0.25); }
  .pricing-card.featured .pricing-badge { background: rgba(232,76,30,0.2); color: #fff; border-color: rgba(232,76,30,0.4); }
  .pricing-name { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 0.5rem; }
  .pricing-card.featured .pricing-name { color: #fff; }
  .pricing-desc { font-size: 0.9rem; color: #666; font-weight: 300; margin-bottom: 2rem; line-height: 1.6; }
  .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }
  .pricing-price { margin-bottom: 2rem; }
  .pricing-amount { font-family: 'DM Serif Display', serif; font-size: 3.5rem; line-height: 1; color: var(--accent); }
  .pricing-amount.pricing-amount--small { font-size: 1.6rem; line-height: 1.15; letter-spacing: -0.01em; }
  .pricing-card.featured .pricing-amount { color: #fff; }
  .pricing-unit { font-size: 0.85rem; color: #888; font-weight: 300; margin-top: 0.3rem; }
  .pricing-card.featured .pricing-unit { color: rgba(255,255,255,0.5); }
  .pricing-list { list-style: none; margin-bottom: 2.5rem; }
  .pricing-list li { padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.8rem; line-height: 1.5; color: #444; }
  .pricing-card.featured .pricing-list li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
  .pricing-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
  .pricing-card.featured .pricing-list li::before { color: #a8c5b5; }
  .pricing-cta { width: 100%; background: var(--accent); color: #fff; padding: 0.95rem; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; box-shadow: 3px 3px 0 var(--ink); transition: transform 0.2s, box-shadow 0.2s; font-family: 'DM Sans', sans-serif; }
  .pricing-cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
  .pricing-card.featured .pricing-cta { background: #fff; color: var(--accent2); box-shadow: 3px 3px 0 rgba(0,0,0,0.3); }
  .pricing-note { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: var(--muted); font-weight: 300; }

  /* ── FAQ ── */
  .faq-section { background: var(--paper); }
  .faq-grid { max-width: 780px; margin: 3rem auto 0; }
  .faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
  .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--ink); }
  .faq-question:hover { color: var(--accent); }
  .faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; color: var(--accent); transition: transform 0.3s, background 0.3s; }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
  .faq-answer { display: none; padding: 0 0 1.4rem; font-size: 0.95rem; font-weight: 300; color: #555; line-height: 1.8; }
  .faq-item.open .faq-answer { display: block; }

  /* ── LEGAL MODALS ── */
  .legal-modal-overlay { display: none; position: fixed; inset: 0; z-index: 600; background: rgba(13,13,13,0.7); backdrop-filter: blur(4px); align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
  .legal-modal-overlay.open { display: flex; }
  .legal-modal { background: var(--paper); border-radius: 4px; width: 100%; max-width: 680px; margin: auto; box-shadow: 0 32px 80px rgba(0,0,0,0.3); position: relative; }
  .legal-modal-header { background: var(--accent2); padding: 2rem 2.5rem; border-radius: 4px 4px 0 0; display: flex; align-items: center; justify-content: space-between; }
  .legal-modal-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: #fff; }
  .legal-modal-close { background: rgba(255,255,255,0.15); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; color: #fff; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; flex-shrink: 0; }
  .legal-modal-close:hover { background: rgba(255,255,255,0.3); }
  .legal-modal-body { padding: 2.5rem; font-size: 0.92rem; line-height: 1.9; color: #444; }
  .legal-modal-body h4 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--ink); margin: 2rem 0 0.6rem; }
  .legal-modal-body h4:first-child { margin-top: 0; }
  .legal-modal-body p { margin-bottom: 0.8rem; }
  .legal-modal-body a { color: var(--accent); }

  /* ── FOOTER ENHANCED ── */
  footer { background: var(--paper); color: #6b5e4e; padding: 3rem 8vw; font-size: 0.85rem; border-top: 1px solid rgba(0,0,0,0.1); }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; flex-wrap: wrap; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--ink); margin-bottom: 0.5rem; }
  .footer-logo span { color: var(--accent); }
  /* Fussbereich in Papier, damit der orange Abschluss frei steht */
  .footer-tagline { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
  .footer-address { font-size: 0.82rem; color: #6b5e4e; line-height: 1.8; font-weight: 300; }
  .footer-address strong { color: var(--ink); font-weight: 600; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .footer-legal button { background: none; border: none; color: #6b5e4e; font-size: 0.82rem; cursor: pointer; font-family: 'DM Sans', sans-serif; padding: 0; transition: color 0.2s; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(0,0,0,0.2); }
  .footer-legal button:hover { color: var(--accent); text-decoration-color: var(--accent); }

  @media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  .hero-text > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
  .hero-text .hero-tag { animation-delay: 0.1s; }
  .hero-text h1 { animation-delay: 0.25s; }
  .hero-text .hero-sub { animation-delay: 0.4s; }
  .hero-text .hero-actions { animation-delay: 0.55s; }

  /* ── MODAL ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 500;
    background: rgba(13,13,13,0.65); backdrop-filter: blur(6px);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .modal-overlay.open { display: block; }
  .modal {
    background: var(--paper);
    width: 100%; max-width: 560px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    position: relative;
    margin: 0 auto;
    min-height: 100vh;
  }
  @media (min-width: 600px) {
    .modal-overlay { display: none; align-items: center; justify-content: center; padding: 2rem 1rem; }
    .modal-overlay.open { display: flex; }
    .modal { border-radius: 4px; min-height: auto; margin: auto; }
  }
  .modal-header { background: var(--accent2); padding: 1.5rem; }
  .modal-body { padding: 1.5rem; padding-bottom: 3rem; }
  @media (min-width: 600px) {
    .modal-header { padding: 2.5rem 2.5rem 2rem; }
    .modal-body { padding: 2.5rem; }
  }
  .modal-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: #fff; margin-bottom: 0.3rem; }
  .modal-header p { color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 300; }
  .modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
    width: 36px; height: 36px; cursor: pointer; color: #fff;
    font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.25); }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.8rem 0.9rem;
    border: 1.5px solid rgba(0,0,0,0.14); border-radius: 2px;
    background: #fff; font-family: 'DM Sans', sans-serif;
    font-size: 1rem; color: var(--ink); transition: border-color 0.2s;
    appearance: none; -webkit-appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent);
  }
  .form-group textarea { min-height: 90px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-submit {
    width: 100%; background: var(--accent); color: #fff;
    padding: 1.1rem; font-size: 1rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    border: none; border-radius: 2px; cursor: pointer;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.2s, box-shadow 0.2s; margin-top: 0.5rem;
  }
  .form-submit:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
  .form-success { display: none; text-align: center; padding: 2rem 0; }
  .form-success .check { font-size: 3rem; margin-bottom: 1rem; }
  .form-success h4 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 0.5rem; }
  .form-success p { color: #555; font-weight: 300; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: 50vw; }
    .how-grid { grid-template-columns: 1fr; gap: 3rem; }
    .options-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .case-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 1.5rem; }
    .case-card:last-child { border-bottom: none; }
    .target-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ref-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ref-deliverables { grid-template-columns: 1fr; }
    .ref-cta { flex-direction: column; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:last-child { border-bottom: none; }
    .form-row { grid-template-columns: 1fr; }
    .sprint-diagram { padding: 2rem; }
  }
  @media (min-width: 500px) and (max-width: 900px) {
    .cases-grid { grid-template-columns: 1fr 1fr; }
    .case-card:nth-child(2n) { border-right: none; }
    .case-card { border-right: 1px solid rgba(0,0,0,0.1); }
  }


  /* ── BAUSTEINE-TEASER (Brücke zur Bausteine-Unterseite) ── */
  .baust-teaser-section {
    padding: 7rem 8vw;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .baust-teaser-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .baust-teaser-left h2 { margin-bottom: 1.4rem; }
  .baust-teaser-left .lead {
    color: #555; font-weight: 300; line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 52ch;
  }
  .baust-teaser-pills {
    display: flex; flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  .baust-teaser-pill {
    font-size: 0.82rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    color: #5a4f43;
    font-weight: 500;
  }
  .baust-teaser-pill.highlight {
    background: var(--accent2);
    color: #fff;
    border-color: var(--accent2);
    display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .baust-teaser-pill.highlight::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    animation: baust-pulse 2s infinite;
  }
  @keyframes baust-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.4); }
  }
  .baust-teaser-cta {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: var(--ink);
    color: #fff;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.95rem; font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 var(--accent);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .baust-teaser-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--accent);
  }
  .baust-teaser-cta svg {
    width: 16px; height: 16px;
    transition: transform 0.2s;
  }
  .baust-teaser-cta:hover svg { transform: translateX(3px); }

  /* Right visual: featured tile mit Demo-Hint */
  .baust-teaser-visual {
    background: var(--accent2);
    color: #fff;
    border-radius: 6px;
    padding: 2.5rem 2.2rem;
    position: relative;
    overflow: hidden;
  }
  .baust-teaser-visual::before {
    content: '';
    position: absolute;
    top: -30%; right: -30%;
    width: 70%; height: 70%;
    background: radial-gradient(circle, rgba(232,76,30,0.25), transparent 70%);
    pointer-events: none;
  }
  .baust-teaser-vlabel {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    position: relative; z-index: 1;
  }
  .baust-teaser-vlabel::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    animation: baust-pulse 2s infinite;
  }
  .baust-teaser-vtitle {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
    position: relative; z-index: 1;
  }
  .baust-teaser-vdesc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 1.8rem;
    font-weight: 300;
    position: relative; z-index: 1;
  }
  .baust-teaser-vfeatures {
    display: flex; flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
    position: relative; z-index: 1;
  }
  .baust-teaser-vfeat {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
  }
  .baust-teaser-vfeat::before {
    content: '';
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
    background-size: contain;
  }
  .baust-teaser-vlink {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    width: 100%;
    transition: gap 0.2s;
    position: relative; z-index: 1;
  }
  .baust-teaser-vlink:hover { gap: 0.8rem; }
  .baust-teaser-vlink svg { width: 14px; height: 14px; }

  @media (max-width: 900px) {
    .baust-teaser-grid { grid-template-columns: 1fr; gap: 3rem; }
    .baust-teaser-section { padding: 5rem 8vw; }
  }


  /* ── LIVE-DEMO-GALERIE (Startseite → Bausteine-Demos) ── */
  .demo-teaser-head {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: end;
    margin-bottom: 3rem;
  }
  .demo-teaser-head h2 { margin-bottom: 0; }
  .demo-teaser-head-right .lead {
    color: #555; font-weight: 300; line-height: 1.8;
    font-size: 1.05rem; margin-bottom: 1.6rem; max-width: 56ch;
  }
  .demo-gallery {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .demo-card {
    display: flex; flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }
  .demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(45,74,62,0.18);
    border-color: var(--accent2);
  }
  .demo-card-frame {
    background: var(--accent2);
    padding: 0.9rem 0.9rem 0;
    position: relative; overflow: hidden;
  }
  .demo-card-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.7rem;
  }
  .demo-card-dots { display: flex; gap: 0.32rem; }
  .demo-card-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
  .demo-card-live {
    font-family: monospace; font-size: 0.62rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
    display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .demo-card-live::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e; animation: baust-pulse 2s infinite;
  }
  .demo-card-screen {
    height: 196px; overflow: hidden;
    background: #f1f5f9;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    padding: 10px; position: relative;
  }
  .demo-card-screen::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40px;
    background: linear-gradient(transparent, rgba(241,245,249,0.92));
    pointer-events: none;
  }
  .demo-card-screen.demo-quote::after { display: none; }
  .demo-card-hover {
    position: absolute; inset: 0; z-index: 5;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: rgba(45,74,62,0);
    opacity: 0; transition: opacity 0.22s, background 0.22s;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: #fff; pointer-events: none;
  }
  .demo-card:hover .demo-card-hover { opacity: 1; background: rgba(45,74,62,0.55); }
  .demo-card-hover svg { width: 16px; height: 16px; }
  .demo-card-meta { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
  .demo-card-num {
    font-family: monospace; font-size: 0.68rem; letter-spacing: 0.1em;
    color: var(--muted); margin-bottom: 0.5rem; text-transform: uppercase;
  }
  .demo-card-meta h3 {
    font-family: 'DM Serif Display', serif; font-size: 1.3rem; line-height: 1.2;
    color: var(--ink); margin-bottom: 0.6rem; letter-spacing: -0.01em;
  }
  .demo-card-meta p {
    font-size: 0.92rem; color: #5a4f43; line-height: 1.55; font-weight: 300;
    margin-bottom: 1.2rem;
  }
  .demo-card-link {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--accent); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; transition: gap 0.2s;
  }
  .demo-card:hover .demo-card-link { gap: 0.85rem; }
  .demo-card-link svg { width: 14px; height: 14px; }

  /* Mini-Mockups in den Demo-Karten (heller App-Look) */
  .dm-mail, .dm-quote-list { display: flex; flex-direction: column; gap: 7px; }
  .dm-mail-row, .dm-q-row {
    display: flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #e8edf2; border-radius: 6px; padding: 7px 9px;
  }
  .dm-mail-row.active, .dm-q-row.active { border-color: #bfdbfe; background: #eff6ff; }
  .dm-av {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center; font-size: 9px; font-weight: 700;
    background: #e2e8f0; color: #475569;
  }
  .dm-txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
  .dm-txt b { font-size: 10.5px; font-weight: 600; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dm-txt i { font-size: 9.5px; font-style: normal; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dm-badge { font-size: 8px; font-weight: 700; letter-spacing: 0.03em; padding: 2px 6px; border-radius: 4px; flex-shrink: 0; white-space: nowrap; }
  .dm-badge.ok { background: #dcfce7; color: #15803d; }
  .dm-badge.ai { background: #e0e7ff; color: #4338ca; }
  .dm-badge.warn { background: #fef3c7; color: #b45309; }

  .dm-pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; height: 100%; }
  .dm-col { background: #fff; border: 1px solid #e8edf2; border-radius: 6px; padding: 6px; display: flex; flex-direction: column; gap: 5px; }
  .dm-col-h { display: flex; align-items: center; gap: 4px; font-size: 8.5px; font-weight: 700; color: #334155; }
  .dm-col-h .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
  .dm-pcard { background: #f8fafc; border: 1px solid #eef2f6; border-radius: 4px; padding: 5px 6px; font-size: 8.5px; font-weight: 600; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dm-pcard.scan { background: linear-gradient(90deg,#fff,#fffbeb); border-color: #fed7aa; position: relative; overflow: hidden; }
  .dm-pcard.scan::before { content:''; position:absolute; top:0; left:0; height:2px; width:50%; background:linear-gradient(90deg,transparent,#f59e0b,transparent); animation: dm-scan 1.6s linear infinite; }
  @keyframes dm-scan { 0% { transform: translateX(-100%);} 100% { transform: translateX(220%);} }

  .dm-quote { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; height: 100%; }
  .dm-quote-detail { display: flex; flex-direction: column; gap: 5px; background:#fff; border:1px solid #e8edf2; border-radius:6px; padding:8px; }
  .dm-q-line { display:flex; justify-content:space-between; align-items:center; gap:6px; font-size:9.5px; color:#475569; }
  .dm-q-line b { color:#0f172a; font-weight:600; font-variant-numeric: tabular-nums; }
  .dm-q-line.muted { color:#94a3b8; }
  .dm-q-total { margin-top:auto; display:flex; justify-content:space-between; align-items:center; gap:6px; background:#0f172a; color:#fff; border-radius:5px; padding:7px 8px; font-size:10px; font-weight:700; }
  .dm-q-total b { font-variant-numeric: tabular-nums; }
  .dm-q-row { padding:5px 7px; }
  .dm-q-row .dm-av { width:20px; height:20px; font-size:8px; }

  /* Mini-Kalender (Baustein 04) */
  .dm-cal { display: flex; flex-direction: column; gap: 7px; height: 100%; }
  .dm-cal-head { display: flex; align-items: center; justify-content: space-between; padding: 0 2px; }
  .dm-cal-title { font-size: 10px; font-weight: 700; color: #0f172a; }
  .dm-cal-nav { display: flex; gap: 4px; }
  .dm-cal-nav i { width: 12px; height: 12px; border-radius: 3px; background: #e2e8f0; }
  .dm-cal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; flex: 1; }
  .dm-cal-day {
    background: #fff; border: 1px solid #e8edf2; border-radius: 6px;
    padding: 5px 5px 6px; display: flex; flex-direction: column; gap: 4px;
  }
  .dm-cal-day.today { border-color: #bfdbfe; background: #eff6ff; box-shadow: 0 0 0 1px #bfdbfe inset; }
  .dm-cal-dow { font-size: 8.5px; font-weight: 700; color: #64748b; letter-spacing: 0.04em; }
  .dm-cal-day.today .dm-cal-dow { color: #1d4ed8; }
  .dm-cal-ev {
    font-size: 8px; font-weight: 600; line-height: 1.2;
    padding: 4px 5px; border-radius: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    border-left: 2px solid;
  }
  .dm-cal-ev.insp   { background: #dcfce7; color: #15803d; border-color: #22c55e; }
  .dm-cal-ev.reifen { background: #dbeafe; color: #1d4ed8; border-color: #3b82f6; }
  .dm-cal-ev.hu     { background: #fef3c7; color: #b45309; border-color: #f59e0b; }
  .dm-cal-ev.rep    { background: #ede9fe; color: #6d28d9; border-color: #8b5cf6; }
  .dm-cal-ev.tent   { background: repeating-linear-gradient(45deg,#f8fafc,#f8fafc 4px,#eef2f6 4px,#eef2f6 8px); color: #94a3b8; border: 1px dashed #cbd5e1; font-style: italic; }
  .dm-cal-ev.new    { position: relative; overflow: hidden; }
  .dm-cal-ev.new::before {
    content:''; position:absolute; top:0; left:0; height:100%; width:40%;
    background: linear-gradient(90deg,transparent,rgba(139,92,246,0.25),transparent);
    animation: dm-scan 1.8s linear infinite;
  }

  @media (max-width: 1000px) {
    .demo-gallery { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .demo-teaser-head { grid-template-columns: 1fr; gap: 1.4rem; align-items: start; margin-bottom: 2.4rem; }
  }


  /* ── REFERENZEN HUB ────────────────────────────────────── */
  .refhub-section {
    padding: 7rem 8vw 5rem;
    background: var(--paper);
    position: relative;
  }
  .refhub-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }
  .refhub-intro h2 { margin-bottom: 0; }
  .refhub-lead {
    color: #555;
    font-weight: 300;
    line-height: 1.85;
    font-size: 1.02rem;
    margin: 0;
    padding-bottom: 0.4rem;
  }
  .refhub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .refhub-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    padding: 2rem 1.8rem 1.8rem;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .refhub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: rgba(232,76,30,0.4);
  }
  .refhub-card--featured {
    background: var(--accent2);
    color: #fff;
    border-color: var(--accent2);
  }
  .refhub-card--featured::before {
    content: '';
    position: absolute;
    top: -40%; right: -40%;
    width: 70%; height: 70%;
    background: radial-gradient(circle, rgba(232,76,30,0.22), transparent 70%);
    pointer-events: none;
  }
  .refhub-card--featured:hover {
    box-shadow: 0 14px 30px rgba(45,74,62,0.3);
    border-color: var(--accent2);
  }
  .refhub-num {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 1.3rem;
    position: relative; z-index: 1;
  }
  .refhub-card--featured .refhub-num { color: var(--accent); }

  .refhub-icon {
    width: 28px; height: 28px;
    color: var(--accent);
    margin-bottom: 1.2rem;
    position: relative; z-index: 1;
  }
  .refhub-card--featured .refhub-icon { color: var(--accent); }
  .refhub-icon svg { width: 100%; height: 100%; }

  .refhub-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 0.6rem;
    position: relative; z-index: 1;
  }
  .refhub-card--featured h3 { color: #fff; }
  .refhub-card p {
    font-size: 0.88rem;
    color: #5a5045;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 1.4rem;
    flex-grow: 1;
    position: relative; z-index: 1;
  }
  .refhub-card--featured p { color: rgba(255,255,255,0.7); }

  .refhub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    transition: gap 0.2s;
    position: relative; z-index: 1;
  }
  .refhub-card--featured .refhub-link {
    border-top-color: rgba(255,255,255,0.12);
  }
  .refhub-card:hover .refhub-link { gap: 0.8rem; }
  .refhub-link svg { width: 14px; height: 14px; }

  @media (max-width: 1100px) {
    .refhub-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .refhub-section { padding: 5rem 8vw 3rem; }
    .refhub-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  }
  @media (max-width: 600px) {
    .refhub-grid { grid-template-columns: 1fr; }
  }


  /* ── NAV DROPDOWN ─────────────────────────────────────── */
  .nav-dropdown { position: relative; display: inline-block; }
  .nav-dropdown-trigger {
    display: inline-flex !important; align-items: center;
    cursor: pointer;
  }
  .nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 340px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.4rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 200;
  }
  .nav-dropdown-panel::before {
    content: '';
    position: absolute; top: -16px; left: 0; right: 0;
    height: 16px;
  }
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-item {
    display: grid !important;
    grid-template-columns: 28px 1fr auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.7rem 0.85rem !important;
    border-radius: 4px;
    text-decoration: none !important;
    opacity: 1 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background 0.12s;
    color: var(--ink) !important;
  }
  .nav-dropdown-item:hover { background: var(--cream); }
  .nav-dropdown-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .nav-dropdown-text {
    display: flex; flex-direction: column;
    line-height: 1.25;
    gap: 1px;
  }
  .nav-dropdown-text strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
  }
  .nav-dropdown-text > span {
    font-size: 0.74rem;
    color: var(--muted);
    font-weight: 400;
  }
  .nav-dropdown-badge {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232,76,30,0.1);
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    display: inline-flex; align-items: center; gap: 0.25rem;
    white-space: nowrap;
  }
  .nav-dropdown-badge::before {
    content: '';
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent);
    animation: nav-dot-pulse 2s infinite;
  }
  @keyframes nav-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.5); }
  }

  /* Mobile-Dropdown */
  .nav-mobile-group {
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0.3rem 0;
  }
  .nav-mobile-grouplabel {
    padding: 0.8rem 1.5rem 0.4rem;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .nav-mobile-sub {
    padding-left: 2.5rem !important;
    font-size: 0.95rem !important;
    color: #5a4f43 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.7rem;
  }
  .nav-mobile-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
  }


  /* Schlanker Dropdown-Item-Style (überschreibt vorherigen) */
  .nav-dropdown-panel { width: 220px !important; }
  .nav-dropdown-item {
    grid-template-columns: 24px 1fr auto !important;
    padding: 0.6rem 0.85rem !important;
    align-items: center !important;
  }
  .nav-dropdown-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
  }

  /* ============================================================
     INTERAKTIVE AUTOMATISIERUNGS-BAUSTEINE (Front-Page-Embeds)
     Wiederverwendbarer Abschnitt fuer eingebettete Live-Demos.
     ============================================================ */
  .auto-embed-section { padding: 8rem 8vw; position: relative; }
  .auto-embed-section.alt { background: var(--cream); }
  .auto-embed-head { max-width: 760px; margin-bottom: 2.5rem; }
  .auto-embed-head .lead { color: #555; font-weight: 300; line-height: 1.8; margin-top: 0.6rem; }
  .auto-embed-frame {
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px; overflow: hidden;
    background: #0e211a;
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  }
  .auto-embed-bar {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.7rem 1.1rem; background: #14271f;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .auto-embed-bar .dots { display: inline-flex; gap: 6px; }
  .auto-embed-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); display: inline-block; }
  .auto-embed-bar .label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
  }
  .auto-embed-bar .live {
    margin-left: auto; display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  }
  .auto-embed-bar .live::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 8px rgba(232,76,30,0.8);
    animation: autoEmbedBlink 1.2s infinite;
  }
  @keyframes autoEmbedBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
  .auto-embed-iframe { display: block; width: 100%; border: 0; background: #0e211a; }
  .auto-embed-iframe.tall  { height: 760px; }
  .auto-embed-iframe.calc  { height: 720px; background: var(--paper); }
  .auto-embed-note { margin-top: 1rem; font-size: 0.82rem; color: var(--muted); font-style: italic; }
  @media (max-width: 900px) {
    .auto-embed-section { padding: 5rem 5vw; }
    .auto-embed-iframe.tall { height: 680px; }
    .auto-embed-iframe.calc { height: 1020px; }
  }

  /* ============================================================
     USP · DER UNTERSCHIED
     ============================================================ */
  .usp-section { background: var(--paper); color: var(--ink); padding: 8rem 8vw; }
  .usp-inner { max-width: 1200px; margin: 0 auto; }
  .usp-section .section-tag { color: var(--accent); }
  .usp-section .section-tag::before { background: var(--accent); }
  .usp-section h2 { color: var(--ink); }
  .usp-section h2 em { color: var(--accent); }
  .usp-lead { color: #4a4a4a; font-weight: 300; line-height: 1.85; max-width: 72ch; margin-top: 1rem; }
  .usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3.5rem; }
  .usp-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .usp-card { background: var(--white); border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; padding: 2rem 1.6rem; }
  .usp-card.featured { background: rgba(232,76,30,0.06); border-color: rgba(232,76,30,0.3); }
  .usp-step { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--accent); line-height: 1; margin-bottom: 1rem; }
  .usp-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.2; }
  .usp-card p { font-size: 0.9rem; color: #5a4f43; font-weight: 300; line-height: 1.65; }
  .usp-highlight { margin-top: 2.5rem; background: var(--white); border: 1px solid rgba(0,0,0,0.1); border-left: 3px solid var(--accent); border-radius: 0 6px 6px 0; padding: 2.4rem 2.8rem; display: grid; grid-template-columns: auto 1fr; gap: 1.8rem; align-items: center; }
  .usp-highlight-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(232,76,30,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .usp-highlight-icon svg { width: 26px; height: 26px; stroke: var(--accent); }
  .usp-highlight-kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
  .usp-highlight p { font-size: 1rem; color: #4a4a4a; font-weight: 300; line-height: 1.8; margin: 0; }
  .usp-highlight p strong { color: var(--ink); font-weight: 600; }
  @media (max-width: 900px) {
    .usp-section { padding: 5rem 5vw; }
    .usp-grid, .usp-grid--3 { grid-template-columns: 1fr 1fr; }
    .usp-highlight { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.8rem; border-left: 0; border-top: 3px solid var(--accent); border-radius: 0 0 6px 6px; }
  }
  @media (max-width: 560px) { .usp-grid, .usp-grid--3 { grid-template-columns: 1fr; } }

  /* ============================================================
     ZWEI ECHTE VORGÄNGE · Beispiel-Embeds
     ============================================================ */
  #vorgaenge { padding-left: 4vw; padding-right: 4vw; }
  .auto-embed-duo { display: flex; flex-direction: column; gap: 3.5rem; }
  .auto-embed-itemhead { margin-bottom: 1.2rem; max-width: 760px; }
  .auto-embed-itemnum { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
  .auto-embed-itemhead h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin: 0.4rem 0 0.5rem; color: var(--ink); }
  .auto-embed-itemhead p { color: #555; font-weight: 300; line-height: 1.7; font-size: 0.95rem; }
  .auto-embed-itemhead .popout { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.7rem; font-size: 0.82rem; font-weight: 600; color: var(--accent); text-decoration: none; }
  .auto-embed-itemhead .popout:hover { text-decoration: underline; }
  .auto-embed-iframe.demo { height: 1120px; }
  @media (max-width: 1100px) { .auto-embed-iframe.demo { height: 1480px; } }

  /* ============================================================
     HERO · einspaltig (ohne Phasen-Diagramm)
     ============================================================ */
  .hero.hero--solo { grid-template-columns: 1fr; min-height: auto; }
  .hero.hero--solo .hero-text { max-width: 920px; padding-top: 4.5vh; padding-bottom: 5vh; }
  @media (max-width: 900px) {
    .hero.hero--solo .hero-text { padding-top: 3vh; padding-bottom: 3.5vh; }
  }

  /* ============================================================
     KUNDENSTIMMEN · Editorial-Zeilen
     ============================================================ */
  .voices-section { background: var(--cream); padding: 7rem 8vw; }
  .voices-intro {
    color: #555; font-weight: 300; font-size: 0.95rem;
    line-height: 1.75; max-width: 58ch; margin-top: 0.4rem;
  }
  .voices-slider { margin-top: 3rem; }
  .voices-viewport { overflow: hidden; }
  .voices-track { display: block; }
  .voice-row {
    display: grid; grid-template-columns: 1fr 280px;
    gap: 4.5rem; padding: 2.6rem 0;
    border-top: 1px solid rgba(0,0,0,0.14);
  }
  .voice-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.14); }

  /* Ohne JS bleiben alle Stimmen sichtbar. Erst .is-slider schaltet um. */
  .voices-slider.is-slider .voices-track {
    display: flex; flex-wrap: nowrap;
    align-items: stretch;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .voices-slider.is-slider .voice-row {
    flex: 0 0 100%; max-width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.14);
    padding: 2.6rem 0;
  }
  .voices-slider.is-slider .voice-row[aria-hidden="true"] { visibility: hidden; }
  @media (prefers-reduced-motion: reduce) {
    .voices-slider.is-slider .voices-track { transition: none; }
  }

  .voices-controls {
    display: none; align-items: center; gap: 1.2rem;
    margin-top: 1.6rem;
  }
  .voices-slider.is-slider .voices-controls { display: flex; }
  .voices-arrow {
    width: 42px; height: 42px; flex-shrink: 0;
    border: 1.5px solid var(--ink); border-radius: 50%;
    background: transparent; color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 0;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
  }
  .voices-arrow svg { width: 18px; height: 18px; }
  .voices-arrow:hover { background: var(--ink); color: var(--paper); }
  .voices-arrow:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
  .voices-arrow[disabled] { opacity: 0.25; cursor: default; }
  .voices-arrow[disabled]:hover { background: transparent; color: var(--ink); }
  .voices-dots { display: flex; align-items: center; gap: 0.55rem; margin-right: auto; }
  .voices-dot {
    width: 9px; height: 9px; padding: 0; border-radius: 50%;
    border: 1px solid var(--ink); background: transparent;
    cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .voices-dot:hover { transform: scale(1.25); }
  .voices-dot.is-active { background: var(--accent); border-color: var(--accent); }
  .voices-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
  .voice-company {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.9rem;
  }
  .voice-company.has-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
  .voice-company a {
    color: inherit; text-decoration: none;
    border-bottom: 1px solid rgba(232,76,30,0.35);
    padding-bottom: 1px; transition: border-color 0.2s;
  }
  .voice-company a:hover { border-bottom-color: var(--accent); }
  .voice-company.has-logo a { border-bottom: 0; display: inline-flex; align-items: center; gap: 0.6rem; opacity: 1; transition: opacity 0.2s; }
  .voice-company.has-logo a:hover { opacity: 0.7; }
  .voice-company img { width: 28px; height: 28px; border-radius: 4px; object-fit: cover; display: block; flex-shrink: 0; }
  .voice-company.has-logo-wide img { width: auto; height: 24px; border-radius: 0; object-fit: contain; }
  .voice-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem; line-height: 1.65; color: var(--ink);
    margin: 0; border: 0; padding: 0; max-width: 62ch; font-style: normal;
  }
  .voice-quote::before { content: '\201C'; }
  .voice-quote::after  { content: '\201D'; }
  .voice-side { padding-top: 1.9rem; }
  .voice-reslabel {
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.35rem;
  }
  .voice-result {
    font-family: 'DM Serif Display', serif;
    font-size: 0.98rem; line-height: 1.45; color: var(--accent);
    padding-bottom: 1.3rem; margin-bottom: 1.3rem;
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }
  .voice-person { display: flex; align-items: center; gap: 0.8rem; }
  .voice-photo {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: var(--cream); border: 1.5px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 0.92rem;
    color: var(--ink); overflow: hidden;
  }
  .voice-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .voice-name { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
  .voice-role { font-size: 0.77rem; color: var(--muted); font-weight: 300; line-height: 1.4; }
  .voices-note {
    margin-top: 2.5rem; font-size: 0.8rem; font-weight: 300;
    color: var(--muted); max-width: 70ch; line-height: 1.7;
  }

  @media (max-width: 900px) {
    .voices-section { padding: 5rem 8vw; }
    .voice-row,
    .voices-slider.is-slider .voice-row { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.2rem 0; }
    .voices-controls { gap: 0.9rem; }
    .voice-side { padding-top: 0; }
    .voice-quote { font-size: 1rem; }
  }

  /* ============================================================
     TEAM · Wer dahintersteht
     ============================================================ */
  .team-section { background: var(--cream); padding: 7rem 8vw; }
  .team-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4.5rem; align-items: center; }
  .team-photo img {
    width: 100%; height: auto; display: block;
    border-radius: 4px; border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 8px 8px 0 rgba(0,0,0,0.07);
  }
  .team-text h2 { margin-bottom: 1.2rem; }
  .team-text p { color: #555; font-weight: 300; line-height: 1.8; font-size: 0.98rem; margin-bottom: 1.1rem; max-width: 56ch; }
  @media (max-width: 900px) {
    .team-section { padding: 5rem 8vw; }
    .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-people { gap: 1.5rem; }
  }

  .ref-lead { color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; max-width: 58ch; margin-top: -2.5rem; margin-bottom: 3rem; font-size: 0.95rem; }
  .step-link { color: var(--accent); text-decoration: none; font-weight: 500; white-space: nowrap; border-bottom: 1px solid rgba(232,76,30,0.35); }
  .step-link:hover { border-bottom-color: var(--accent); }

  /* Paket-Zuordnung an den Ablaufschritten */
  .chip--pkg { background: rgba(232,76,30,0.1); border-color: rgba(232,76,30,0.3); color: var(--accent); font-weight: 600; }
  .chip--pkg.chip--b { background: var(--accent); border-color: var(--accent); color: #fff; }
  .pricing-steps {
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
  }

  .team-ai {
    display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
    align-items: flex-start; margin: 0 0 2rem;
    background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.1);
    border-left: 3px solid var(--accent); border-radius: 0 4px 4px 0;
    padding: 1.4rem 1.6rem;
  }
  .team-ai-icon {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: rgba(232,76,30,0.12); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
  }
  .team-ai-icon svg { width: 21px; height: 21px; }
  .team-ai-title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; margin-bottom: 0.35rem; }
  .team-ai p { font-size: 0.88rem; color: #5a4f43; font-weight: 300; line-height: 1.7; margin: 0; max-width: none; }
  @media (max-width: 560px) { .team-ai { grid-template-columns: 1fr; } }

  /* ============================================================
     BEWEISSTREIFEN · Cockpit direkt hinter dem Hero
     ============================================================ */

  .cta-reassure {
    position: relative; margin-top: 2rem;
    display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  }
  .cta-reassure span {
    font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.85);
    display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .cta-reassure span::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.6); flex-shrink: 0;
  }

  /* ============================================================
     TEAM · Portraitkreise
     ============================================================ */
  .team-orbit {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.2rem 1.8rem; justify-items: center; padding: 1rem 0;
  }
  .orbit-item {
    margin: 0; text-align: center; position: relative;
    transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1);
  }
  /* versetzte Anordnung, damit kein starres Raster entsteht */
  .orbit-item:nth-child(even) { transform: translateY(26px); }

  .orbit-disc {
    width: 132px; height: 132px; border-radius: 50%;
    overflow: hidden; position: relative;
    border: 2px solid var(--ink);
    background: var(--paper);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.08);
    animation: orbitFloat 6s ease-in-out infinite;
    animation-delay: var(--d, 0s);
    transition: box-shadow 0.35s, border-color 0.35s;
  }
  .orbit-disc { translate: var(--mx, 0) var(--my, 0); }
  .orbit-disc img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
  .orbit-item.is-empty .orbit-disc {
    border-color: rgba(0,0,0,0.35);
    background: linear-gradient(150deg, var(--paper), var(--cream));
    box-shadow: 6px 6px 0 rgba(0,0,0,0.05);
  }
  .orbit-item.is-empty .orbit-initials { color: var(--ink); opacity: 0.45; }
  .orbit-initials {
    font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--muted);
  }
  .orbit-item:hover .orbit-disc { box-shadow: 8px 8px 0 var(--accent); border-color: var(--accent); }
  .orbit-item:hover { transform: translateY(-8px) scale(1.05); }
  .orbit-item:nth-child(even):hover { transform: translateY(18px) scale(1.05); }

  .orbit-item figcaption { margin-top: 0.9rem; display: block; }
  .orbit-name { display: block; font-weight: 600; font-size: 0.94rem; line-height: 1.25; }
  .orbit-role { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 0.1rem; }
  .orbit-focus { display: block; font-size: 0.78rem; color: var(--muted); font-weight: 300; line-height: 1.35; margin-top: 0.2rem; max-width: 20ch; margin-left: auto; margin-right: auto; }

  @keyframes orbitFloat {
    0%, 100% { translate: var(--mx, 0) var(--my, 0); }
    50%      { translate: var(--mx, 0) calc(var(--my, 0px) - 9px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .orbit-disc { animation: none; }
    .orbit-item, .orbit-disc { transition: none; }
  }
  @media (max-width: 1100px) {
    .orbit-disc { width: 124px; height: 124px; }
  }
  @media (max-width: 900px) {
    .team-orbit { gap: 1.6rem 1rem; }
    .orbit-item:nth-child(even) { transform: translateY(16px); }
  }
  @media (max-width: 520px) {
    .team-orbit { grid-template-columns: repeat(2, 1fr); }
    .orbit-disc { width: 112px; height: 112px; }
  }

  .team-facts {
    list-style: none; margin: 2rem 0; padding: 0;
    display: grid; gap: 0; border-top: 1px solid rgba(0,0,0,0.12);
  }
  .team-facts li {
    display: grid; grid-template-columns: 190px 1fr; gap: 1.5rem;
    padding: 0.95rem 0; border-bottom: 1px solid rgba(0,0,0,0.12);
    align-items: baseline;
  }
  .fact-title { font-weight: 600; font-size: 0.88rem; line-height: 1.35; }
  .fact-text { font-size: 0.86rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
  @media (max-width: 700px) {
    .team-facts li { grid-template-columns: 1fr; gap: 0.2rem; }
  }

  /* KI-Mitarbeiter */
  .orbit-item.is-ai .orbit-disc {
    border-color: var(--accent); color: var(--accent);
    background: linear-gradient(150deg, rgba(232,76,30,0.12), rgba(232,76,30,0.03));
    box-shadow: 6px 6px 0 rgba(232,76,30,0.18);
  }
  .orbit-item.is-ai:hover .orbit-disc { box-shadow: 8px 8px 0 var(--accent); }
  .orbit-bot { width: 52%; height: 52%; }
  .orbit-ai-badge {
    position: absolute; bottom: 12px; left: 50%; translate: -50% 0;
    background: var(--accent); color: #fff;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
    padding: 0.12rem 0.45rem; border-radius: 100px; line-height: 1.5;
  }
  .orbit-item.is-ai .orbit-role { color: var(--accent); }

  /* Offene Stelle */
  .orbit-item.is-job .orbit-disc {
    border-style: dashed; border-color: var(--accent); color: var(--accent);
    background: rgba(232,76,30,0.05); box-shadow: none;
    transition: background 0.25s, box-shadow 0.25s;
  }
  .orbit-item.is-job:hover .orbit-disc {
    background: rgba(232,76,30,0.12); box-shadow: 6px 6px 0 rgba(232,76,30,0.2);
  }
  .orbit-joblink { display: block; text-decoration: none; color: inherit; border-radius: 50%; }
  .orbit-joblink:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
  .orbit-item.is-job .orbit-name { color: var(--accent); }
  .orbit-item.is-job .orbit-role { color: var(--ink); }
  .orbit-item.is-job .orbit-focus { color: var(--accent); font-weight: 400; }
  /* einzelnes Element in der letzten Reihe mittig setzen */
  .orbit-item:last-child:nth-child(3n+1) { grid-column: 2; }

  .target-lead { color:#555; font-weight:300; line-height:1.8; max-width:60ch; margin-top:0.4rem; }
  .target-list--wide {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0 3rem; margin-top: 2.5rem; max-width: 1000px;
  }
  @media (max-width: 800px) { .target-list--wide { grid-template-columns: 1fr; } }

  /* ============================================================
     ZEITPUNKT · Auszug aus "Warum jetzt"
     ============================================================ */
  .urgency-section { background: var(--accent2); padding: 6rem 8vw; }
  .urgency-head { max-width: 62ch; }
  .urgency-section .section-tag { color: #a8c5b5; }
  .urgency-section .section-tag::before { background: #a8c5b5; }
  .urgency-head h2 { color: #fff; margin-bottom: 1rem; }
  .urgency-head p { color: rgba(255,255,255,0.62); font-weight: 300; font-size: 1rem; line-height: 1.8; }
  .urgency-points {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12); margin-top: 3rem;
  }
  .urgency-point { background: rgba(255,255,255,0.04); padding: 2rem 1.8rem; transition: background 0.25s; }
  .urgency-point:hover { background: rgba(232,76,30,0.1); }
  .urgency-icon {
    width: 36px; height: 36px; border-radius: 2px; margin-bottom: 1rem;
    background: rgba(232,76,30,0.15); border: 1px solid rgba(232,76,30,0.3);
    color: var(--accent); display: flex; align-items: center; justify-content: center;
  }
  .urgency-icon svg { width: 19px; height: 19px; }
  .urgency-point h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: #fff; margin-bottom: 0.5rem; }
  .urgency-point p { font-size: 0.88rem; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.6); margin: 0; }
  .urgency-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap; margin-top: 2.2rem;
  }
  .urgency-link {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: #fff; text-decoration: none; font-size: 0.94rem; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 2px;
    transition: border-color 0.2s, gap 0.2s;
  }
  .urgency-link svg { width: 17px; height: 17px; color: var(--accent); }
  .urgency-link:hover { border-bottom-color: #fff; gap: 0.9rem; }
  .urgency-cta {
    background: var(--accent); color: #fff; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 0.9rem 2rem; border-radius: 2px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .urgency-cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.3); }
  @media (max-width: 900px) {
    .urgency-section { padding: 4rem 8vw; }
    .urgency-points { grid-template-columns: 1fr; margin-top: 2rem; }
    .urgency-foot { flex-direction: column; align-items: flex-start; }
  }

  /* ── Zitat-Streifen direkt unter den Hero-Buttons ── */
  .hero-proof {
    display: flex; align-items: center; gap: 1.6rem;
    flex-wrap: wrap; margin-top: 2.6rem;
    padding-top: 1.6rem; border-top: 1px solid rgba(0,0,0,0.12);
  }
  .hero-proof-quote {
    display: flex; align-items: flex-start; gap: 0.7rem;
    max-width: 34ch;
  }
  .hero-proof-mark {
    font-family: 'DM Serif Display', serif; font-size: 1.8rem;
    line-height: 0.9; color: var(--accent); flex-shrink: 0;
  }
  .hero-proof-text { font-size: 0.86rem; line-height: 1.5; color: #4a4a4a; font-weight: 300; }
  .hero-proof-who { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 0.25rem; }
  .hero-proof-who strong { font-weight: 600; color: var(--ink); }
  .hero-proof-link {
    margin-left: auto; align-self: center;
    font-size: 0.82rem; color: var(--ink); text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap;
    border-bottom: 1px solid rgba(0,0,0,0.25); padding-bottom: 2px;
    transition: border-color 0.2s, gap 0.2s;
  }
  .hero-proof-link svg { width: 15px; height: 15px; color: var(--accent); }
  .hero-proof-link:hover { border-bottom-color: var(--ink); gap: 0.7rem; }
  @media (max-width: 1000px) {
    .hero-proof { gap: 1.2rem; }
    .hero-proof-quote:nth-of-type(2) { display: none; }
    .hero-proof-link { margin-left: 0; }
  }

  .pricing-aftercare {
    display: grid; grid-template-columns: auto 1fr; gap: 1.2rem;
    align-items: start; max-width: 900px; margin: 2.5rem auto 0;
    background: var(--white); border: 1px solid rgba(0,0,0,0.1);
    border-left: 3px solid var(--accent); border-radius: 0 4px 4px 0;
    padding: 1.6rem 1.8rem; text-align: left;
  }
  .pricing-aftercare-icon {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: rgba(232,76,30,0.12); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
  }
  .pricing-aftercare-icon svg { width: 21px; height: 21px; }
  .pricing-aftercare strong { display: block; font-size: 1rem; margin-bottom: 0.35rem; }
  .pricing-aftercare p { font-size: 0.89rem; color: #555; font-weight: 300; line-height: 1.7; margin: 0; }
  @media (max-width: 560px) { .pricing-aftercare { grid-template-columns: 1fr; } }

  /* ── Schulungen (Zusatzangebot unter den Paketen) ── */
  .pricing-training {
    max-width: 900px; margin: 2rem auto 0; text-align: left;
    background: var(--white); border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px; padding: 2.2rem 2.4rem;
  }
  .pricing-training-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.2rem; }
  .pricing-training-icon {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: rgba(232,76,30,0.12); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
  }
  .pricing-training-icon svg { width: 23px; height: 23px; }
  .pricing-training-tag {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.15rem;
  }
  .pricing-training h3 { font-family: 'DM Serif Display', serif; font-size: 1.45rem; margin: 0; }
  .pricing-training-lead { font-size: 0.95rem; color: #4a4a4a; font-weight: 300; line-height: 1.8; margin-bottom: 1.6rem; }
  .pricing-training-list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .pricing-training-list li {
    font-size: 0.87rem; color: #5a4f43; font-weight: 300; line-height: 1.6;
    padding: 0.9rem 1.2rem 0.9rem 0; border-top: 1px solid rgba(0,0,0,0.08);
  }
  .pricing-training-list li strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.2rem; }
  .pricing-training-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.1); padding-top: 1.4rem;
  }
  .pricing-training-foot p { font-size: 0.86rem; color: var(--muted); font-weight: 300; line-height: 1.7; margin: 0; max-width: 52ch; }
  .pricing-training-foot button { background: transparent; cursor: pointer; font-family: 'DM Sans', sans-serif; }
  @media (max-width: 760px) {
    .pricing-training { padding: 1.8rem 1.6rem; }
    .pricing-training-list { grid-template-columns: 1fr; }
  }

  .auto-embed-bar .demo-flag {
    margin-left: auto; font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.18rem 0.55rem; border-radius: 100px; white-space: nowrap;
  }

  /* ── Ruhige Gliederung: Haarlinien statt staendigem Farbwechsel ── */
  .usp-section, .baust-teaser-section, .team-section,
  .reference-section, .voices-section, .examples-section,
  .pricing-section, .faq-section {
    border-top: 1px solid rgba(0,0,0,0.09);
  }
  .urgency-section, .cta-section, .stats-bar { border-top: 0; }

  .example-note {
    background: rgba(232,76,30,0.05); border: 1px solid rgba(232,76,30,0.2);
    border-radius: 4px; padding: 1.1rem 1.3rem; margin-top: 1.6rem;
    font-size: 0.85rem; color: #5a4f43; font-weight: 300; line-height: 1.7;
  }
  .example-note strong { color: var(--ink); font-weight: 600; }

  /* ── KLARTEXT ── */
  .plain-section { background: var(--paper); border-top: 1px solid rgba(0,0,0,0.09); padding: 6rem 8vw; }
  .plain-inner { max-width: 900px; }
  .plain-lead { font-size: 1rem; color: #4a4a4a; font-weight: 300; line-height: 1.85; max-width: 72ch; margin-top: 0.4rem; }
  .plain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }
  .plain-col { background: var(--white); border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; padding: 1.6rem 1.8rem; }
  .plain-col:last-child { border-left: 3px solid var(--accent); border-radius: 0 4px 4px 0; }
  .plain-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
  .plain-col:last-child .plain-label { color: var(--accent); }
  .plain-col ul { list-style: none; margin: 0; padding: 0; }
  .plain-col li { font-size: 0.89rem; color: #4a4a4a; font-weight: 300; line-height: 1.55; padding: 0.6rem 0 0.6rem 1.5rem; position: relative; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .plain-col li:last-child { border-bottom: 0; }
  .plain-col li::before { content: '–'; position: absolute; left: 0; color: var(--muted); }
  .plain-col:last-child li::before { content: '✓'; color: var(--accent); font-size: 0.85rem; }
  .plain-close { font-size: 0.95rem; color: #4a4a4a; line-height: 1.8; max-width: 72ch; border-left: 3px solid var(--accent); padding-left: 1.2rem; }
  @media (max-width: 800px) { .plain-section { padding: 4rem 8vw; } .plain-grid { grid-template-columns: 1fr; } }

  /* ── DREI WEGE ── */
  .ways-section { background: var(--paper); border-top: 1px solid rgba(0,0,0,0.09); padding: 6rem 8vw; }
  .ways-lead { color: #4a4a4a; font-weight: 300; line-height: 1.85; max-width: 70ch; margin-top: 0.4rem; font-size: 1rem; }
  .ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
  .way-card {
    background: var(--white); border: 1px solid rgba(0,0,0,0.1); border-radius: 6px;
    padding: 2rem 1.8rem 1.6rem; text-decoration: none; color: var(--ink);
    display: flex; flex-direction: column; position: relative;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .way-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
  .way-card--main { border-color: rgba(232,76,30,0.35); background: rgba(232,76,30,0.04); }
  .way-card--main:hover { box-shadow: 6px 6px 0 var(--accent); border-color: var(--accent); }
  .way-badge {
    position: absolute; top: -10px; left: 1.8rem;
    background: var(--accent); color: #fff; font-size: 0.63rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; padding: 0.22rem 0.65rem; border-radius: 100px;
  }
  .way-num { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--accent); opacity: 0.35; line-height: 1; margin-bottom: 0.6rem; }
  .way-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.35rem; margin-bottom: 0.8rem; line-height: 1.2; }
  .way-when { font-size: 0.88rem; color: var(--ink); font-weight: 500; line-height: 1.55; margin-bottom: 0.7rem; }
  .way-what { font-size: 0.87rem; color: #5a4f43; font-weight: 300; line-height: 1.65; margin-bottom: 1.4rem; flex: 1; }
  .way-link {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.8rem; font-weight: 600; color: var(--accent);
    border-top: 1px solid rgba(0,0,0,0.08); padding-top: 1rem; margin-top: auto;
    transition: gap 0.2s;
  }
  .way-link svg { width: 15px; height: 15px; }
  .way-card:hover .way-link { gap: 0.75rem; }
  .ways-note { margin-top: 2rem; font-size: 0.88rem; color: var(--muted); font-weight: 300; }
  @media (max-width: 900px) { .ways-section { padding: 4rem 8vw; } .ways-grid { grid-template-columns: 1fr; } }

  .pricing-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .pricing-variants { list-style: none; margin: 0 0 1.4rem; padding: 0; }
  .pricing-variants li {
    display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
    font-size: 0.85rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .pricing-variants li span { color: #5a4f43; font-weight: 300; }
  .pricing-variants li strong { font-weight: 600; white-space: nowrap; }
  .pricing-card.featured .pricing-variants li { border-bottom-color: rgba(255,255,255,0.15); }
  .pricing-card.featured .pricing-variants li span { color: rgba(255,255,255,0.7); }
  .pricing-card.featured .pricing-variants li strong { color: #fff; }
  @media (max-width: 1000px) { .pricing-grid--3 { grid-template-columns: 1fr; } }

  .ablauf-section { background: var(--cream); border-top: 1px solid rgba(0,0,0,0.09); }

  .training-build {
    max-width: 900px; margin: 1.4rem auto 0; text-align: left;
    background: rgba(232,76,30,0.05); border: 1px solid rgba(232,76,30,0.22);
    border-radius: 4px; padding: 1.8rem 2rem;
  }
  .training-build-head { margin-bottom: 1rem; }
  .training-build-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.3rem; }
  .training-build h4 { font-family: 'DM Serif Display', serif; font-size: 1.25rem; margin: 0; line-height: 1.25; }
  .training-build > p { font-size: 0.92rem; color: #4a4a4a; font-weight: 300; line-height: 1.75; margin: 0 0 1.2rem; }
  .training-build-steps { list-style: none; counter-reset: tb; margin: 0 0 1.2rem; padding: 0; }
  .training-build-steps li {
    counter-increment: tb; position: relative; padding: 0.75rem 0 0.75rem 2.4rem;
    font-size: 0.88rem; color: #5a4f43; font-weight: 300; line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .training-build-steps li:last-child { border-bottom: 0; }
  .training-build-steps li::before {
    content: counter(tb); position: absolute; left: 0; top: 0.7rem;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
  }
  .training-build-steps li strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.15rem; }
  .training-build-close { font-size: 0.9rem; color: #4a4a4a; line-height: 1.75; margin: 0; border-left: 3px solid var(--accent); padding-left: 1rem; }
  @media (max-width: 560px) { .training-build { padding: 1.4rem 1.3rem; } }

  .pricing-training-sub { font-size: 0.86rem; color: var(--muted); font-weight: 300; margin: 0.3rem 0 0; }

  .pricing-credit {
    font-size: 0.8rem; line-height: 1.55; margin-bottom: 1rem;
    padding: 0.6rem 0.8rem; border-radius: 3px;
    background: rgba(232,76,30,0.15); color: #fff; border: 1px solid rgba(232,76,30,0.35);
  }

  /* ── Angebot fuer Schulen ── */
  .school-box {
    max-width: 900px; margin: 2rem auto 0; text-align: left;
    display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
    background: var(--white); border: 1px solid rgba(0,0,0,0.1);
    border-top: 3px solid var(--accent2); border-radius: 0 0 4px 4px;
    padding: 2rem 2.2rem;
  }
  .school-icon {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    background: rgba(45,74,62,0.1); color: var(--accent2);
    display: flex; align-items: center; justify-content: center;
  }
  .school-icon svg { width: 24px; height: 24px; }
  .school-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent2); margin-bottom: 0.3rem; }
  .school-body h3 { font-family: 'DM Serif Display', serif; font-size: 1.35rem; margin: 0 0 0.9rem; line-height: 1.25; }
  .school-body > p { font-size: 0.93rem; color: #4a4a4a; font-weight: 300; line-height: 1.75; margin: 0 0 1.3rem; }
  .school-list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 1.4rem; }
  .school-list li { font-size: 0.85rem; color: #5a4f43; font-weight: 300; line-height: 1.6; padding: 0.9rem 0 0; border-top: 1px solid rgba(0,0,0,0.1); }
  .school-list li strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
  .school-foot { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 1.3rem; }
  .school-foot p { font-size: 0.86rem; color: var(--muted); font-weight: 300; margin: 0; max-width: 50ch; line-height: 1.7; }
  .school-foot strong { color: var(--ink); }
  .school-foot button { background: transparent; cursor: pointer; font-family: 'DM Sans', sans-serif; }
  @media (max-width: 760px) {
    .school-box { grid-template-columns: 1fr; padding: 1.7rem 1.5rem; }
    .school-list { grid-template-columns: 1fr; }
  }

  .nav-mobile .nav-mobile-grouplabel:first-child { border-top: 0; }
  .nav-mobile > .nav-mobile-grouplabel {
    padding: 1rem 5vw 0.4rem; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
    border-top: 1px solid rgba(0,0,0,0.1);
  }
  @media (max-width: 560px) { .nav-right .nav-cta { display: none; } }

  /* Bildmarke im Fussbereich */
  .footer-logo { display: flex; align-items: center; gap: 0.55rem; }
  .footer-logo svg { width: 24px; height: 19px; color: var(--ink); flex-shrink: 0; }

  /* ============================================================
     TAKTLAUF · animierte Bildmarke
     Ruhezustand ist statisch. Bewegung nur bei Hover/Fokus und
     einmal kurz beim Seitenaufbau, damit sie nicht dauerhaft ablenkt.
     ============================================================ */
  .logo-mark svg .tb,
  .footer-logo svg .tb {
    transform-box: fill-box;
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.4, 0, 0.3, 1);
    animation-fill-mode: both;
  }
  @keyframes taktSchlag {
    0%, 100% { transform: scaleY(1); }
    28%      { transform: scaleY(0.42); }
    64%      { transform: scaleY(1.32); }
  }
  /* Dauerlauf bei Hover und Tastaturfokus */
  .logo a:hover .tb,
  .logo a:focus-visible .tb,
  .footer-logo:hover .tb {
    animation-name: taktSchlag;
    animation-duration: 1.1s;
    animation-iteration-count: infinite;
  }
  .tb1 { animation-delay: 0s; }
  .tb2 { animation-delay: 0.14s; }
  .tb3 { animation-delay: 0.28s; }
  .tb4 { animation-delay: 0.42s; }

  /* Einmaliger Takt beim Laden der Seite */
  .logo-mark svg .tb {
    animation-name: taktSchlag;
    animation-duration: 1.1s;
    animation-iteration-count: 2;
  }
  .logo a:hover .tb { animation-iteration-count: infinite; }

  @media (prefers-reduced-motion: reduce) {
    .logo-mark svg .tb,
    .footer-logo svg .tb,
    .logo a:hover .tb,
    .footer-logo:hover .tb { animation: none !important; }
  }

  .pricing-guarantee {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.8rem; line-height: 1.55; text-align: left;
    margin-bottom: 1rem; padding: 0.7rem 0.85rem; border-radius: 3px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
  }
  .pricing-guarantee svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 0.15rem; color: #fff; }
  .pricing-guarantee strong { color: #fff; }

  /* ── ERSTGESPRÄCH-SCHALTFLÄCHEN ──
     Diese Elemente waren <button> und sind jetzt <a>, weil sie zur
     Terminseite führen. Ein Link bringt nicht mit, was ein Knopf von Haus aus
     hat: Er unterstreicht sich, bleibt inline und richtet Text linksbündig
     aus. Das wird hier nachgezogen. Klassen, die das schon selbst setzen
     (.btn-primary, .btn-white, .btn-outline-accent), stehen bewusst nicht
     in der Liste. */
  a.urgency-cta,
  a.pricing-cta,
  a.nav-cta {
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  /* ═══ ABSCHNITTE MITTIG ═══
     Zwei Dinge auf einmal:

     1. Die Inhaltsspalte bekommt eine Obergrenze und steht mittig. Der
        Hintergrund bleibt randlos, weil nur der Innenabstand wächst, nicht
        die Sektion schrumpft. Ohne das lief der Text auf breiten Bildschirmen
        128px vom linken Rand los und liess rechts bis zu 1056px leer.

     2. Auszeichnung, Ueberschrift und Einleitung stehen mittig. Karten,
        Raster und Tabellen darunter bleiben unangetastet, deshalb der
        Kindselektor: Er trifft nur den Kopf eines Abschnitts. */

  section { padding: 8rem max(8vw, calc((100% - 1280px) / 2)); }

  section > .section-tag { justify-content: center; }
  section > h2,
  section > p { text-align: center; margin-left: auto; margin-right: auto; }

  /* Der Hero folgt derselben Achse. */
  .hero-text { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-tag { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  /* Unterhalb von 900px bleibt es beim schmalen Aussenrand von vorher. */
  @media (max-width: 900px) {
    section { padding: 4rem 5vw; }
  }

  /* ═══ TAKTBAND IM KOPF ═══
     Der Platz zwischen Logo und Schaltflaeche stand leer. Jetzt steht dort
     der Lesefortschritt, gesetzt als Taktfolge: eine hohe Marke, dann drei
     kuerzere, wie beim Zeichen der Marke. Gefuellte Marken zeigen, wie weit
     die Seite gelesen ist.

     Die Bewegung kommt ausschliesslich vom Scrollen des Besuchers. Beim
     Laden laeuft die Folge ein einziges Mal von links durch, danach ruht
     sie. Das ist der Unterschied zum frueheren Live-Ticker, der sich von
     allein bewegt hat und deshalb beim Lesen gestoert hat. */

  .takt {
    display: none;
    flex: 1;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 22px;
    min-width: 0;
    padding: 0 2.5rem;
  }
  @media (min-width: 1100px) { .takt { display: flex; } }

  .takt span {
    width: 2px;
    flex: 0 0 2px;
    height: 7px;
    border-radius: 1px;
    background: var(--ink);
    opacity: 0.16;
    transform-origin: bottom;
    transition: opacity 0.35s ease, background-color 0.35s ease, height 0.35s ease;
  }
  .takt span:nth-child(4n + 1) { height: 17px; }
  .takt span:nth-child(4n + 3) { height: 11px; }

  .takt span.on { background: var(--accent); opacity: 1; }
  .takt span.tip { height: 22px; background: var(--accent2); }

  .js .takt.takt--intro span {
    animation: taktEinlauf 0.5s ease both;
    animation-delay: calc(var(--i) * 16ms);
  }
  @keyframes taktEinlauf {
    from { transform: scaleY(0.1); opacity: 0; }
    to   { transform: scaleY(1);   opacity: 0.16; }
  }

  @media (prefers-reduced-motion: reduce) {
    .takt span { transition: none; }
    .js .takt.takt--intro span { animation: none; }
  }
