    :root {
      --paper:      #F5F3EC;
      --paper-2:    #ECE9DE;
      --ink:        #14181F;
      --ink-2:      #4A4F58;
      --line:       #DAD5C7;
      --accent:     #1C6B4A;
      --accent-ink: #0E3A28;
      --accent-soft: rgba(28, 107, 74, 0.08);
      --accent-tint: rgba(28, 107, 74, 0.14);
      --radius:     10px;
      --radius-sm:  7px;
      --radius-lg:  18px;
      --shadow-sm:  0 1px 2px rgba(20, 24, 31, 0.04), 0 4px 12px -6px rgba(20, 24, 31, 0.12);
      --shadow-md:  0 1px 2px rgba(20, 24, 31, 0.05), 0 20px 46px -26px rgba(20, 24, 31, 0.26);
      --shadow-lg:  0 2px 4px rgba(20, 24, 31, 0.06), 0 34px 64px -28px rgba(20, 24, 31, 0.34);
      --font-display: "Fraunces", Georgia, serif;
      --font-body:  "DM Sans", -apple-system, "Segoe UI", sans-serif;
      --pad-section: clamp(6rem, 12vw, 9.5rem);
      --pad-x: clamp(1.25rem, 4vw, 3rem);
      --max-w: 74rem;
    }

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

    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    body {
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--ink);
      font-size: 1.0625rem;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    ::selection { background: var(--accent); color: var(--paper); }

    h1, h2, h3 {
      font-family: var(--font-display);
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.12;
    }

    a { color: inherit; }

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

    .eyebrow {
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
    }

    /* ─── Header ─── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(245, 243, 236, 0.72);
      backdrop-filter: saturate(1.4) blur(14px);
      -webkit-backdrop-filter: saturate(1.4) blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    }
    .site-header.is-scrolled {
      border-bottom-color: var(--line);
      box-shadow: 0 8px 30px -22px rgba(20, 24, 31, 0.4);
    }
    .site-header .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      min-height: 4.5rem;
    }
    .brand {
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.01em;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      margin-left: auto;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ink-2);
      position: relative;
      transition: color 0.18s ease;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0; right: 100%;
      bottom: -0.35rem;
      height: 1.5px;
      background: var(--accent);
      transition: right 0.22s ease;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:hover::after { right: 0; }
    @media (max-width: 780px) { .nav-links { display: none; } }
    .brand small {
      display: block;
      font-weight: 400;
      font-size: 0.75rem;
      color: var(--ink-2);
      letter-spacing: 0.02em;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 2.875rem;
      padding: 0.625rem 1.375rem;
      border-radius: var(--radius);
      border: 1px solid transparent;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }
    .btn-primary { background: var(--accent); color: #fff; }
    .btn-primary:hover { background: var(--accent-ink); transform: translateY(-1px); }
    .btn-primary:active { transform: translateY(0); }
    .btn-ghost {
      border-color: var(--line);
      color: var(--ink);
      background: transparent;
    }
    .btn-ghost:hover { border-color: var(--ink); }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      min-height: 2.875rem;
      font-weight: 600;
      font-size: 0.9375rem;
      text-decoration: none;
      border-bottom: 1px solid var(--line);
      transition: border-color 0.18s ease, color 0.18s ease;
    }
    .link-arrow:hover { border-color: var(--accent); color: var(--accent); }
    .link-arrow .arr { transition: transform 0.18s ease; }
    .link-arrow:hover .arr { transform: translateX(3px); }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      padding: clamp(4.5rem, 9vw, 7.5rem) 0 var(--pad-section);
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: -22%;
      left: 50%;
      width: min(60rem, 120%);
      height: 42rem;
      transform: translateX(-50%);
      background: radial-gradient(ellipse at center, rgba(28, 107, 74, 0.10), rgba(28, 107, 74, 0) 62%);
      pointer-events: none;
      z-index: 0;
    }
    .hero .wrap { position: relative; z-index: 1; }
    .hero-grid {
      display: grid;
      justify-items: center;
      text-align: center;
    }
    .hero h1 {
      font-size: clamp(2.7rem, 6vw, 4.75rem);
      max-width: 15ch;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-stats {
      margin-top: clamp(3.5rem, 7vw, 5.5rem);
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1rem, 3vw, 2rem);
      border-top: 1px solid var(--line);
      padding-top: clamp(2rem, 4vw, 2.75rem);
    }
    .hero-stat { text-align: center; }
    .hero-stat b {
      display: block;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(2rem, 4.4vw, 3rem);
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--accent-ink);
    }
    .hero-stat span {
      display: block;
      margin-top: 0.6rem;
      font-size: 0.875rem;
      color: var(--ink-2);
      line-height: 1.4;
    }
    @media (max-width: 560px) {
      .hero-stats { grid-template-columns: 1fr; gap: 1.75rem; }
    }
    .hero h1 .underline-soft {
      position: relative;
      white-space: nowrap;
      display: inline-block;
      color: var(--accent);
    }
    .hero h1 .underline-soft::after {
      content: "";
      position: absolute;
      left: -2%;
      right: -2%;
      bottom: -0.12em;
      height: 0.09em;
      background: var(--accent);
      border-radius: 999px;
    }
    .hero h1 .underline-soft span {
      display: inline-block;
      transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
    }
    .hero h1 .underline-soft span.is-swapping {
      opacity: 0;
      filter: blur(6px);
      transform: translateY(0.15em);
    }
    @media (prefers-reduced-motion: reduce) {
      .hero h1 .underline-soft span { transition: none; }
    }
    .hero .sub {
      margin-top: 1.75rem;
      max-width: 34rem;
      margin-left: auto;
      margin-right: auto;
      font-size: 1.125rem;
      color: var(--ink-2);
    }
    .hero .cta-row {
      margin-top: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1.25rem 1.75rem;
    }
    .hero-note {
      margin-top: 1.25rem;
      font-size: 0.875rem;
      color: var(--ink-2);
    }

    /* ─── Quiz / Assessment ─── */
    .assess-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      align-items: start;
    }
    .quiz {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--paper);
      padding: clamp(1.6rem, 3.2vw, 2.5rem);
      box-shadow: var(--shadow-md);
    }

    /* Teaser-Karten (Trigger) */
    .assess-card {
      text-align: left;
      font: inherit;
      color: var(--ink);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--paper);
      padding: clamp(1.6rem, 3.2vw, 2.5rem);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-md);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .assess-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .assess-card:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(28, 107, 74, 0.18); }
    .assess-cta {
      margin-top: 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-weight: 600;
      font-size: 0.9375rem;
      color: var(--accent);
    }
    .assess-card:hover .assess-cta span { transform: translateX(3px); }
    .assess-cta span { transition: transform 0.18s ease; }

    /* Dunkler Kontext: Analyse-Teaser + Analyse-Modal */
    .assess-card-accent, .box-dark { background: var(--ink); color: var(--paper); border-color: #2A2F38; }
    .assess-card-accent .quiz-note, .box-dark .quiz-note, .box-dark .quiz-hint { color: #B9BDC4; }
    .box-dark .quiz-kicker, .box-dark .quiz-lever-label { color: #7FBFA0; }
    .assess-card-accent .assess-cta { color: #7FBFA0; }
    .box-dark .quiz-bar { background: #2A2F38; }
    .box-dark .quiz-back { color: #8A8F98; }
    .box-dark .quiz-back:hover { color: var(--paper); }
    .box-dark .quiz-progress-head span:last-child { color: #B9BDC4; }

    /* Modal */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem;
    }
    .modal[hidden] { display: none; }
    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(20, 24, 31, 0.55);
      animation: modalFade 0.25s ease both;
    }
    .modal-box {
      position: relative;
      width: min(38rem, 100%);
      max-height: 88vh;
      overflow-y: auto;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: clamp(1.75rem, 4vw, 2.75rem);
      box-shadow: 0 30px 70px -20px rgba(20, 24, 31, 0.5);
      animation: modalPop 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .modal-x {
      position: absolute;
      top: 0.75rem;
      right: 0.9rem;
      width: 2.2rem;
      height: 2.2rem;
      border: none;
      background: none;
      font-size: 1.6rem;
      line-height: 1;
      color: var(--ink-2);
      cursor: pointer;
      border-radius: var(--radius);
      transition: color 0.15s ease, background-color 0.15s ease;
    }
    .modal-box.box-dark { background: var(--ink); color: var(--paper); border-color: #2A2F38; }
    .modal-box.box-dark .modal-x { color: #8A8F98; }
    .modal-x:hover { color: var(--ink); background: var(--paper-2); }
    .modal-box.box-dark .modal-x:hover { color: var(--paper); background: #2A2F38; }
    @keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
    @keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
    @media (prefers-reduced-motion: reduce) {
      .modal-backdrop, .modal-box { animation: none; }
    }

    .quiz-badge {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.8125rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    .quiz-pill {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 0.15rem 0.55rem;
      border-radius: 999px;
      background: var(--paper-2);
      color: var(--ink-2);
    }
    .assess-card-accent .quiz-pill, .box-dark .quiz-pill { background: #2A2F38; color: #B9BDC4; }
    .quiz-rec {
      margin-left: auto;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.18rem 0.6rem;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
    }
    .quiz-panel[hidden] { display: none; }
    .quiz-panel { animation: quizIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both; }
    @keyframes quizIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
    @media (prefers-reduced-motion: reduce) { .quiz-panel { animation: none; } }

    .quiz-kicker {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.85rem;
    }
    .quiz-lead { font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin-bottom: 0.85rem; }
    .quiz-note { font-size: 0.9375rem; color: var(--ink-2); margin-bottom: 1.6rem; max-width: 32rem; }
    .quiz-panel[data-step="result"] .quiz-note { margin-bottom: 0; margin-top: 1.6rem; }

    .quiz-progress { margin-bottom: 1.75rem; }
    .quiz-progress-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 0.8125rem;
      margin-bottom: 0.6rem;
    }
    .quiz-progress-head span:first-child {
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      font-size: 0.72rem;
    }
    .quiz-progress-head span:last-child { color: var(--ink-2); }
    .quiz-bar { height: 5px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
    .quiz-bar span {
      display: block;
      height: 100%;
      width: 0;
      background: var(--accent);
      border-radius: 999px;
      transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .quiz-q { font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.25; margin-bottom: 1.5rem; }
    .quiz-options { display: flex; flex-direction: column; gap: 0.65rem; }
    .quiz-opt {
      text-align: left;
      width: 100%;
      padding: 0.95rem 1.15rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
      font: inherit;
      font-size: 0.9375rem;
      line-height: 1.45;
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
      transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
    }
    .quiz-opt:hover { border-color: var(--accent); background: rgba(28, 107, 74, 0.04); transform: translateX(2px); }
    .quiz-opt:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(28, 107, 74, 0.14); }
    .quiz-opt .dot {
      flex-shrink: 0;
      width: 1.1rem; height: 1.1rem;
      margin-top: 0.12rem;
      border: 1.5px solid var(--line);
      border-radius: 50%;
      transition: border-color 0.15s ease;
    }
    .quiz-opt:hover .dot { border-color: var(--accent); }
    .quiz-opt.on { border-color: var(--accent); background: rgba(28, 107, 74, 0.12); }
    .quiz-opt.on .dot { border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px var(--paper); }
    /* Optionen im dunklen Modal: dunkel statt weiß, Text bleibt sichtbar */
    .box-dark .quiz-opt { background: #14181F; color: var(--paper); border-color: #2A2F38; }
    .box-dark .quiz-opt:hover { border-color: #7FBFA0; background: rgba(127, 191, 160, 0.08); }
    .box-dark .quiz-opt.on { border-color: #7FBFA0; background: rgba(127, 191, 160, 0.14); }
    .box-dark .quiz-opt .dot { border-color: #4A4F58; }
    .box-dark .quiz-opt.on .dot { border-color: #7FBFA0; background: #7FBFA0; box-shadow: inset 0 0 0 3px var(--ink); }
    .quiz-back {
      margin-top: 1.5rem;
      background: none;
      border: none;
      color: var(--ink-2);
      font: inherit;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      padding: 0.4rem 0;
    }
    .quiz-back:hover { color: var(--ink); }

    .quiz-score { display: flex; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: center; flex-wrap: wrap; }
    .quiz-score-ring { position: relative; width: 120px; height: 120px; flex-shrink: 0; }
    .quiz-score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
    .ring-track { fill: none; stroke: var(--paper-2); stroke-width: 9; }
    .ring-fill {
      fill: none;
      stroke: var(--accent);
      stroke-width: 9;
      stroke-linecap: round;
      stroke-dasharray: 327;
      stroke-dashoffset: 327;
      transition: stroke-dashoffset 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .quiz-score-num {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.7rem;
      font-weight: 500;
    }
    .quiz-score-text { flex: 1; min-width: 14rem; }
    .quiz-score-text h3 { font-size: clamp(1.3rem, 2.6vw, 1.65rem); margin-bottom: 0.55rem; }
    .quiz-score-text p { color: var(--ink-2); font-size: 0.9375rem; }
    .quiz-cta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem 1.5rem; }

    /* Analyse: Checkboxen */
    .quiz-hint { font-size: 0.875rem; color: var(--ink-2); margin: -0.75rem 0 1.25rem; }
    .quiz-checks { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
    .quiz-check {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.8rem 1rem;
      border: 1px solid #2A2F38;
      border-radius: var(--radius);
      cursor: pointer;
      font-size: 0.9375rem;
      transition: border-color 0.15s ease, background-color 0.15s ease;
    }
    .quiz-check:hover { border-color: #7FBFA0; }
    .quiz-check input { position: absolute; opacity: 0; width: 0; height: 0; }
    .quiz-check .box {
      flex-shrink: 0;
      width: 1.2rem; height: 1.2rem;
      border: 1.5px solid #4A4F58;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.15s ease, background-color 0.15s ease;
    }
    .quiz-check .box svg { width: 0.8rem; height: 0.8rem; opacity: 0; transition: opacity 0.15s ease; }
    .quiz-check input:checked + .box { background: var(--accent); border-color: var(--accent); }
    .quiz-check input:checked + .box svg { opacity: 1; }
    .quiz-check input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(28, 107, 74, 0.3); }
    .quiz-check:has(input:checked) { border-color: var(--accent); background: rgba(28, 107, 74, 0.12); }
    .quiz-next[disabled] { opacity: 0.4; cursor: not-allowed; }

    /* Analyse: Slider */
    .quiz-slider { margin: 0.5rem 0 1.75rem; }
    .quiz-slider input[type=range] {
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
      height: 6px;
      border-radius: 999px;
      background: #2A2F38;
      outline: none;
    }
    .quiz-slider input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 1.4rem; height: 1.4rem;
      border-radius: 50%;
      background: var(--accent);
      border: 3px solid var(--ink);
      box-shadow: 0 0 0 1px var(--accent);
      cursor: pointer;
    }
    .quiz-slider input[type=range]::-moz-range-thumb {
      width: 1.4rem; height: 1.4rem;
      border-radius: 50%;
      background: var(--accent);
      border: 3px solid var(--ink);
      cursor: pointer;
    }
    .quiz-slider-val {
      display: block;
      margin-top: 0.9rem;
      font-size: 0.9375rem;
      color: #B9BDC4;
    }
    .quiz-slider-val b {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--paper);
    }

    /* Analyse: Freitext */
    .quiz-textarea {
      width: 100%;
      margin-bottom: 1.5rem;
      padding: 0.85rem 1rem;
      font: inherit;
      font-size: 0.9375rem;
      color: var(--paper);
      background: #14181F;
      border: 1px solid #2A2F38;
      border-radius: var(--radius);
      resize: vertical;
      min-height: 6rem;
      transition: border-color 0.15s ease;
    }
    .quiz-textarea::placeholder { color: #6B7078; }
    .quiz-textarea:focus { outline: none; border-color: #7FBFA0; box-shadow: 0 0 0 3px rgba(127, 191, 160, 0.15); }

    /* Analyse: Detail-Schritt (alle Aufgaben in einem Schritt) */
    .quiz-detail-list { display: flex; flex-direction: column; gap: 1.6rem; margin-bottom: 1.5rem; }
    .quiz-detail-group { }
    .quiz-detail-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #7FBFA0;
      margin-bottom: 0.3rem;
    }
    .quiz-detail-q { font-size: 0.95rem; color: var(--paper); margin-bottom: 0.7rem; }
    .quiz-options-sm { gap: 0.45rem; }
    .quiz-options-sm .quiz-opt { padding: 0.7rem 1rem; font-size: 0.9rem; }

    /* Analyse: Ergebnis */
    .quiz-figure { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
    .quiz-figure-num {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3rem);
      font-weight: 500;
      color: #7FBFA0;
      line-height: 1;
    }
    .quiz-figure-unit { font-size: 0.9375rem; color: #B9BDC4; }
    .quiz-year { font-size: 0.9375rem; color: #B9BDC4; margin-bottom: 1.5rem; }
    .quiz-lever {
      border-top: 1px solid #2A2F38;
      border-bottom: 1px solid #2A2F38;
      padding: 1.1rem 0;
      margin-bottom: 1.5rem;
    }
    .quiz-lever-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #7FBFA0;
      margin-bottom: 0.4rem;
    }
    .quiz-lever p { font-size: 1rem; color: var(--paper); }

    /* Aufschlüsselung pro Aufgabe */
    .quiz-break { margin-bottom: 1.5rem; }
    .quiz-break > .quiz-lever-label { margin-bottom: 0.9rem; }
    .quiz-break-row { margin-bottom: 0.85rem; }
    .quiz-break-row:last-child { margin-bottom: 0; }
    .quiz-break-top {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 1rem;
      font-size: 0.875rem;
      margin-bottom: 0.35rem;
    }
    .quiz-break-top span:first-child { color: var(--paper); }
    .quiz-break-top b {
      font-family: var(--font-display);
      font-weight: 500;
      color: #7FBFA0;
      white-space: nowrap;
    }
    .quiz-break-bar { height: 6px; background: #2A2F38; border-radius: 999px; overflow: hidden; }
    .quiz-break-bar span {
      display: block;
      height: 100%;
      width: 0;
      background: var(--accent);
      border-radius: 999px;
      transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @media (max-width: 820px) {
      .assess-grid { grid-template-columns: minmax(0, 1fr); }
    }
    .check-trust {
      margin-top: 1.75rem;
      text-align: center;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--ink-2);
    }

    /* ─── FAQ ─── */
    .faq { max-width: 44rem; }
    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 1.4rem 1.15rem;
      border-radius: var(--radius);
      transition: background-color 0.2s ease;
    }
    .faq-item:hover { background: var(--accent-soft); }
    .faq-item[open] { background: var(--accent-soft); }
    .faq-item summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1.5rem;
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 500;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary .faq-plus {
      flex-shrink: 0;
      font-family: var(--font-body);
      font-size: 1.3rem;
      color: var(--accent);
      transition: transform 0.2s ease;
    }
    .faq-item[open] summary .faq-plus { transform: rotate(45deg); }
    .faq-item p {
      margin-top: 0.9rem;
      color: var(--ink-2);
      max-width: 38rem;
    }

    /* ─── Sektionen allgemein ─── */
    section { padding: var(--pad-section) 0; }
    .section-head { max-width: 38rem; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
    .section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
    .section-head p { margin-top: 1.1rem; color: var(--ink-2); }

    .alt { background: var(--paper-2); }
    .bordered { border-top: 1px solid var(--line); }

    /* ─── Ansatz: 3 Schritte ─── */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(2rem, 4vw, 3.5rem);
      counter-reset: step;
    }
    .steps article {
      position: relative;
      counter-increment: step;
      padding-top: 1.75rem;
    }
    .steps article::before {
      content: counter(step, decimal-leading-zero);
      display: block;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(2.75rem, 5vw, 3.75rem);
      line-height: 0.9;
      letter-spacing: -0.02em;
      color: var(--accent);
      margin-bottom: 0.9rem;
    }
    .steps article::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 2.75rem;
      height: 2px;
      background: var(--ink);
    }
    .steps .step-no {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-2);
    }
    .steps h3 { font-size: 1.5rem; margin: 0.35rem 0 0.8rem; }
    .steps p { color: var(--ink-2); font-size: 1rem; }

    /* ─── Projekte & Stimmen (dunkler Akzentblock) ─── */
    .dark { background: var(--ink); color: var(--paper); }
    .dark .eyebrow { color: #7FBFA0; }
    .dark .section-head p { color: #B9BDC4; }
    .refs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .refs article {
      border: 1px solid #2A2F38;
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      min-height: 11rem;
      background: linear-gradient(180deg, rgba(127, 191, 160, 0.05), rgba(127, 191, 160, 0));
      transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    }
    .refs article:not(.muted):hover {
      transform: translateY(-4px);
      border-color: #7FBFA0;
    }
    .refs .ref-kind {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #7FBFA0;
    }
    .refs h3 { font-size: 1.3rem; }
    .refs p { color: #B9BDC4; font-size: 0.9375rem; flex: 1; }
    .refs .muted { border-style: dashed; }
    .refs .muted .ref-kind, .refs .muted h3 { color: #8A8F98; }
    .dark .link-arrow { border-bottom-color: #2A2F38; }
    .dark .link-arrow:hover { border-bottom-color: #7FBFA0; color: #7FBFA0; }
    .dark .btn-ghost { border-color: #2A2F38; color: var(--paper); }
    .dark .btn-ghost:hover { border-color: var(--paper); }
    blockquote.voice {
      margin-top: clamp(3rem, 6vw, 4.5rem);
      border-left: 2px solid var(--accent);
      padding-left: 1.75rem;
      max-width: 42rem;
    }
    blockquote.voice p {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.4vw, 1.7rem);
      line-height: 1.4;
    }
    blockquote.voice cite {
      display: block;
      margin-top: 1rem;
      font-style: normal;
      font-size: 0.9375rem;
      color: #8A8F98;
    }

    /* ─── Über mich ─── */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: start;
    }
    .about-grid img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      display: block;
      box-shadow: var(--shadow-md);
    }
    .about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1.5rem; }
    .about-text p { margin-bottom: 1.15rem; color: var(--ink-2); }
    .about-text p strong { color: var(--ink); font-weight: 600; }
    .about-sign {
      margin-top: 1.9rem;
      font-family: var(--font-display);
      font-size: 1.35rem;
    }
    .about-sign small {
      display: block;
      font-family: var(--font-body);
      font-size: 0.875rem;
      color: var(--ink-2);
      margin-top: 0.2rem;
    }

    /* ─── Kontakt ─── */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: start;
    }
    .contact-side h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
    .contact-side > p { margin-top: 1.25rem; color: var(--ink-2); max-width: 30rem; }
    .contact-side .btn { margin-top: 2rem; }
    .contact-alt {
      margin-top: 1.5rem;
      font-size: 0.9375rem;
      color: var(--ink-2);
    }
    .contact-alt a { color: var(--ink); font-weight: 500; }

    form.fallback {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: clamp(1.5rem, 3vw, 2.25rem);
      background: var(--paper);
      box-shadow: var(--shadow-md);
    }
    form.fallback .form-title {
      font-weight: 600;
      margin-bottom: 1.4rem;
    }
    .field { margin-bottom: 1.15rem; }
    .field label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .field input, .field textarea {
      width: 100%;
      min-height: 2.875rem;
      padding: 0.65rem 0.85rem;
      font: inherit;
      font-size: 0.9375rem;
      color: var(--ink);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      transition: border-color 0.18s ease;
    }
    .field textarea { min-height: 7.5rem; resize: vertical; }
    .field input:focus, .field textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(28, 107, 74, 0.12);
    }
    .gotcha { position: absolute; left: -9999px; }
    .form-status { min-height: 1.2em; margin-top: 0.9rem; font-size: 0.875rem; }
    .form-status.is-ok { color: var(--accent); }
    .form-status.is-error { color: #B3261E; }
    .contact-wizard .quiz-progress { margin-bottom: 1.15rem; }
    .cf-actions { display: flex; align-items: center; gap: 1rem; }
    .cf-actions [hidden] { display: none; }

    /* ─── Footer ─── */
    footer {
      border-top: 1px solid var(--line);
      padding: 3.5rem 0 3rem;
      font-size: 0.9375rem;
      color: var(--ink-2);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 2.5rem;
    }
    footer h3 {
      font-family: var(--font-body);
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 0.9rem;
    }
    footer ul { list-style: none; }
    footer li { padding: 0.22rem 0; }
    footer a { text-decoration: none; }
    footer a:hover { color: var(--accent); text-decoration: underline; }
    .footer-bottom {
      margin-top: 2.75rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--line);
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 2rem;
      justify-content: space-between;
      font-size: 0.8125rem;
    }

    /* ─── Reveal-Motion (variiert, nie uniform) ─── */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--d, 0s);
    }
    .reveal.r-left { transform: translateX(-26px); }
    .reveal.r-scale { transform: translateY(14px) scale(0.985); transition-duration: 0.85s; }
    .reveal.in { opacity: 1; transform: none; }

    /* ─── Unterseiten ─── */
    .nav-links a.is-active { color: var(--ink); }
    .nav-links a.is-active::after { right: 0; }
    .page-hero {
      position: relative;
      padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }
    .page-hero::before {
      content: "";
      position: absolute;
      top: -40%;
      left: 8%;
      width: 40rem;
      height: 34rem;
      background: radial-gradient(ellipse at center, rgba(28, 107, 74, 0.09), rgba(28, 107, 74, 0) 62%);
      pointer-events: none;
      z-index: 0;
    }
    .page-hero .wrap { position: relative; z-index: 1; }
    .page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); max-width: 18ch; }
    .page-hero .lead { margin-top: 1.5rem; max-width: 42rem; font-size: 1.15rem; color: var(--ink-2); }
    .breadcrumb {
      font-size: 0.8rem;
      letter-spacing: 0.03em;
      color: var(--ink-2);
      margin-bottom: 1.4rem;
    }
    .breadcrumb a { color: var(--ink-2); text-decoration: none; }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb span { color: var(--line); margin: 0 0.5rem; }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .feature {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--paper);
      padding: clamp(1.5rem, 3vw, 2rem);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
    .feature .feature-ic {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--accent);
      margin-bottom: 0.9rem;
    }
    .feature h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
    .feature p { color: var(--ink-2); font-size: 0.95rem; }

    .cta-band { text-align: center; }
    .cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); max-width: 20ch; margin: 0 auto; }
    .cta-band p { margin: 1.1rem auto 0; max-width: 34rem; color: var(--ink-2); }
    .cta-band .btn { margin-top: 2rem; }

    @media (max-width: 900px) {
      .feature-grid { grid-template-columns: minmax(0, 1fr); }
    }

    /* ─── Responsive ─── */
    @media (max-width: 900px) {
      .hero-grid, .about-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
      .steps { grid-template-columns: minmax(0, 1fr); gap: 2.25rem; }
      .refs { grid-template-columns: minmax(0, 1fr); }
      .about-grid img { max-width: 22rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 480px) {
      body { font-size: 1rem; }
      .mock-nav { display: none; }
      .mock th, .mock td { white-space: normal; }
      .brand small { display: none; }
    }
