  @font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-variable.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-italic-variable.woff2') format('woff2');
    font-weight: 300 700;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Instrument Serif';
    src: url('../fonts/instrument-serif-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Instrument Serif';
    src: url('../fonts/instrument-serif-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  :root {
    --bg: #f3f1ed;
    --bg-white: #faf9f7;
    --anthracite: #1e2328;
    --anthracite-deep: #13171a;
    --footer-bg: #111315;
    --text: #1a1d1f;
    --text-mid: #3a3f42;
    --text-muted: #6a7178;
    --text-light: #949a9f;
    --accent: #3a6b8c;
    --accent-deep: #2d5570;
    --accent-pale: rgba(58, 107, 140, 0.06);
    --accent-pale-strong: rgba(58, 107, 140, 0.1);
    --accent-glow: rgba(58, 107, 140, 0.12);
    --border: rgba(0, 0, 0, 0.07);
    --border-light: rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 12px;
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Instrument Serif', Georgia, serif;
  }

  /* ═══════════════════════════════════════════
     DARK MODE
     ═══════════════════════════════════════════ */
  [data-theme="dark"] {
    color-scheme: dark;
    --bg: #141719;
    --bg-white: #1a1e21;
    --anthracite: #0d1013;
    --anthracite-deep: #080a0c;
    --footer-bg: #0a0c0d;
    --text: #e4e2de;
    --text-mid: #b8b4ae;
    --text-muted: #8a8680;
    --text-light: #5f5b56;
    --accent: #487DA1;
    --accent-deep: #3a6b8c;
    --accent-pale: rgba(72, 125, 161, 0.08);
    --accent-pale-strong: rgba(72, 125, 161, 0.14);
    --accent-glow: rgba(72, 125, 161, 0.18);
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.45);
  }

  /* ─── Transition for theme switch ─── */
  body,
  nav,
  .nav-mobile,
  .service-card,
  .process-card,
  .contact-form,
  footer,
  .back-to-top,
  .form-group input,
  .form-group textarea,
  .process-direct-box {
    transition: background-color 0.45s ease, color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  }

  /* ─── Nav dark overrides ─── */
  [data-theme="dark"] nav {
    background: rgba(20, 23, 25, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.04);
  }
  [data-theme="dark"] nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  [data-theme="dark"] .nav-toggle span { background: var(--text); }
  [data-theme="dark"] .nav-mobile {
    background: rgba(20, 23, 25, 0.97);
  }

  /* ─── Hero dark overrides ─── */
  [data-theme="dark"] .hero-canvas {
    background: linear-gradient(165deg, #0a0d0f 0%, #060809 100%);
  }
  [data-theme="dark"] .hero-glow {
    background: radial-gradient(ellipse, rgba(72, 125, 161, 0.15) 0%, transparent 70%);
  }
  [data-theme="dark"] .hero-glow-2 {
    background: radial-gradient(ellipse, rgba(72, 125, 161, 0.1) 0%, transparent 70%);
  }
  [data-theme="dark"] .hero-claim { color: #f0efe8; }
  [data-theme="dark"] .hero-claim em { color: rgba(240, 239, 232, 0.3); }
  [data-theme="dark"] .hero-claim-sub { color: rgba(240, 239, 232, 0.4); }
  [data-theme="dark"] .btn-hero {
    background: var(--accent); color: #fff;
  }
  [data-theme="dark"] .btn-hero:hover {
    background: var(--accent-deep);
    box-shadow: 0 12px 32px rgba(72, 125, 161, 0.3);
  }

/* ─── Logo colors ─── */
  .footer-logo .logo-symbol { transition: stroke 0.3s; }
  .footer-logo .logo-text { transition: fill 0.3s; }
  .footer-logo .logo-accent { transition: fill 0.3s; }
  .footer-logo:hover .logo-symbol { stroke: rgba(58, 107, 140, 0.5); }
  .footer-logo:hover .logo-text { fill: rgba(255, 255, 255, 0.55); }
  .footer-logo:hover .logo-accent { fill: rgba(58, 107, 140, 0.5); }
  [data-theme="dark"] .nav-brand .logo-symbol { stroke: #487DA1; }
  [data-theme="dark"] .nav-brand .logo-text { fill: #F0F0F0; }
  [data-theme="dark"] .nav-brand .logo-accent { fill: #487DA1; }
  [data-theme="dark"] .footer-logo .logo-symbol { stroke: rgba(72, 125, 161, 0.3); }
  [data-theme="dark"] .footer-logo .logo-text { fill: rgba(255, 255, 255, 0.3); }
  [data-theme="dark"] .footer-logo .logo-accent { fill: rgba(72, 125, 161, 0.3); }
  [data-theme="dark"] .footer-logo:hover .logo-symbol { stroke: rgba(72, 125, 161, 0.5); }
  [data-theme="dark"] .footer-logo:hover .logo-text { fill: rgba(255, 255, 255, 0.55); }
  [data-theme="dark"] .footer-logo:hover .logo-accent { fill: rgba(72, 125, 161, 0.5); }

  /* ─── Service cards dark ─── */
  [data-theme="dark"] .service-card:hover {
    border-color: rgba(72, 125, 161, 0.15);
    box-shadow: var(--shadow-lg);
  }

  /* ─── Process cards dark ─── */
  [data-theme="dark"] .process-card:hover {
    border-color: rgba(72, 125, 161, 0.15);
  }
  [data-theme="dark"] .step-num {
    color: rgba(72, 125, 161, 0.5);
  }

  /* ─── About portrait dark ─── */
  [data-theme="dark"] .about-portrait {
    border-color: rgba(72, 125, 161, 0.7);
    box-shadow: 0 8px 28px rgba(72, 125, 161, 0.2),
                0 2px 6px rgba(0, 0, 0, 0.4);
  }
  [data-theme="dark"] .about-portrait:hover {
    box-shadow: 0 12px 36px rgba(72, 125, 161, 0.32),
                0 2px 6px rgba(0, 0, 0, 0.4);
  }

  /* ─── Contact form dark ─── */
  [data-theme="dark"] .form-group input,
  [data-theme="dark"] .form-group textarea {
    background: var(--bg);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text);
  }
  [data-theme="dark"] .form-group input::placeholder,
  [data-theme="dark"] .form-group textarea::placeholder {
    color: var(--text-light);
  }
  [data-theme="dark"] .form-group input:focus,
  [data-theme="dark"] .form-group textarea:focus {
    border-color: var(--accent);
  }

  /* ─── Footer dark ─── */
  [data-theme="dark"] footer {
    background: #060708;
  }

  /* ─── Theme toggle button ─── */
  .theme-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: transparent; border: 1px solid var(--border);
    cursor: pointer; transition: all 0.35s ease;
    color: var(--text-muted); margin-left: 0.3rem; flex-shrink: 0;
    position: relative; overflow: hidden;
  }
  .theme-toggle:hover {
    border-color: var(--accent); color: var(--accent);
    background: var(--accent-pale);
  }
  .theme-toggle svg {
    width: 18px; height: 18px; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    position: absolute;
  }
  .theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
  .theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
  [data-theme="dark"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
  [data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

  .nav-buttons {
    display: flex; align-items: center; margin-left: 1.5rem;
  }

  /* Mobile theme toggle */
  .nav-mobile .theme-toggle-mobile {
    display: flex; align-items: center; gap: 0.6rem;
    cursor: pointer; font-size: 0.95rem; font-weight: 500;
    color: var(--text-muted); transition: color 0.25s;
    background: none; border: none; font-family: var(--font);
  }
  .nav-mobile .theme-toggle-mobile:hover { color: var(--accent); }
  .nav-mobile .theme-toggle-mobile svg { width: 20px; height: 20px; }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; background: var(--footer-bg); }
  [data-theme="dark"] html { background: #060708; }

  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ═══════════════════════════════════════════
     SCROLL REVEAL (guarded by js-loaded)
     ═══════════════════════════════════════════ */
  .js-loaded .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }

  .js-loaded .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js-loaded .reveal-left.visible { opacity: 1; transform: translateX(0); }

  .js-loaded .reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js-loaded .reveal-right.visible { opacity: 1; transform: translateX(0); }

  .stagger > * {
    transition-delay: calc(var(--i, 0) * 0.12s);
  }

  /* ═══════════════════════════════════════════
     NAVIGATION
     ═══════════════════════════════════════════ */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 0 3rem; height: 110px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(243, 241, 237, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
  }
  nav.scrolled { height: 76px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
  nav.scrolled .nav-brand svg { height: 64px; }
  .nav-brand { display: flex; align-items: center; text-decoration: none; }
  .nav-brand svg { height: 96px; width: auto; display: block; transition: height 0.4s ease; }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; }
  .nav-links a {
    color: var(--text-muted); text-decoration: none; font-size: 0.82rem;
    font-weight: 500; letter-spacing: 0.02em; transition: color 0.25s; position: relative;
    white-space: nowrap;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--accent); border-radius: 1px; transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    display: inline-flex; align-items: center; background: var(--accent); color: #fff;
    padding: 0.55rem 1.1rem; border-radius: 8px; text-decoration: none;
    font-size: 0.82rem; font-weight: 600; transition: all 0.3s; white-space: nowrap;
  }
  .nav-cta:hover {
    background: var(--accent-deep); transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(58, 107, 140, 0.25);
  }
  [data-theme="dark"] .nav-cta:hover {
    box-shadow: 0 4px 16px rgba(72, 125, 161, 0.35);
  }
  .nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; z-index: 110;
  }
  .nav-toggle span {
    width: 22px; height: 2px; background: var(--text);
    border-radius: 1px; transition: all 0.3s;
  }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-mobile {
    display: none; position: fixed; top: 110px; left: 0; right: 0; bottom: 0;
    background: rgba(243, 241, 237, 0.97); backdrop-filter: blur(20px);
    z-index: 99; flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; list-style: none;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { color: var(--text); text-decoration: none; font-size: 1.2rem; font-weight: 600; }
  .nav-mobile a:hover { color: var(--accent); }
  .nav-mobile .nav-mobile-cta {
    margin-top: 1rem; background: var(--accent); color: #fff;
    padding: 0.75rem 1.8rem; border-radius: 8px; font-size: 0.95rem;
    font-weight: 600; text-decoration: none;
  }
  .nav-mobile .nav-mobile-cta:hover { color: #fff; background: var(--accent-deep); }

  /* ═══════════════════════════════════════════
     HERO
     ═══════════════════════════════════════════ */
  .hero { display: flex; flex-direction: column; padding-top: 110px; }
  .hero-canvas {
    background: linear-gradient(165deg, var(--anthracite) 0%, var(--anthracite-deep) 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 6rem 3rem; min-height: 60vh;
  }
  .hero-canvas::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-glow {
    position: absolute; top: -20%; right: -10%; width: 50%; height: 70%;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none; animation: glowDrift 22s ease-in-out infinite alternate;
  }
  .hero-glow-2 {
    position: absolute; bottom: -15%; left: -10%; width: 40%; height: 55%;
    background: radial-gradient(ellipse, rgba(58, 107, 140, 0.07) 0%, transparent 70%);
    pointer-events: none; animation: glowDrift 28s ease-in-out infinite alternate-reverse;
  }
  @keyframes glowDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 15px) scale(1.05); }
  }
  .hero-lines {
    position: absolute; inset: 0; opacity: 0.22;
    transition: transform 0.1s linear;
  }
  .hero-lines svg { width: 100%; height: 100%; }
  .hero-lines .line {
    stroke: var(--accent); stroke-width: 1; fill: none;
    stroke-dasharray: 300; stroke-dashoffset: 300;
    animation: draw 3.5s ease-out forwards;
  }
  .hero-lines .line:nth-child(2) { animation-delay: 0.4s; }
  .hero-lines .line:nth-child(3) { animation-delay: 0.8s; }
  .hero-lines .line:nth-child(4) { animation-delay: 1.2s; }
  .hero-lines .line:nth-child(5) { animation-delay: 0.2s; }
  .hero-lines .line:nth-child(6) { animation-delay: 0.6s; }
  .hero-lines .line:nth-child(7) { animation-delay: 1.0s; }
  .hero-lines .line:nth-child(8) { animation-delay: 1.4s; }
  @keyframes draw { to { stroke-dashoffset: 0; } }

  .hero-canvas-claim {
    position: relative; z-index: 1; text-align: center; max-width: 750px;
    opacity: 0; animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  }
  .hero-canvas-label {
    font-size: 0.8rem; font-weight: 600; color: var(--accent);
    letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem;
  }
  .hero-claim {
    font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400; color: #f0f0f0; line-height: 1.15; margin-bottom: 1.5rem;
  }
  .hero-claim em { font-style: italic; color: rgba(240, 240, 240, 0.35); }
  .hero-claim-sub {
    color: rgba(240, 240, 240, 0.45); font-size: 1.05rem;
    max-width: 520px; margin: 0 auto 2.8rem; line-height: 1.7;
  }
  .hero-actions-canvas {
    display: flex; gap: 1rem; align-items: center; justify-content: center;
  }
  .btn-hero {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: #fff; padding: 0.9rem 2rem;
    border-radius: 10px; text-decoration: none; font-size: 0.88rem;
    font-weight: 600; transition: all 0.3s;
  }
  .btn-hero:hover {
    background: var(--accent-deep);
    transform: translateY(-3px); box-shadow: 0 12px 32px rgba(58, 107, 140, 0.3);
  }
  .scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; opacity: 0; animation: fadeIn 1s ease-out 2s forwards;
  }
  .scroll-hint span {
    font-size: 0.65rem; color: rgba(240, 240, 240, 0.2);
    letter-spacing: 0.15em; text-transform: uppercase;
  }
  .scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid rgba(240, 240, 240, 0.2);
    border-bottom: 2px solid rgba(240, 240, 240, 0.2);
    transform: rotate(45deg); animation: bounce 2s ease-in-out infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(4px, 4px); }
  }

  /* ═══════════════════════════════════════════
     SECTIONS
     ═══════════════════════════════════════════ */
  .section { padding: 7rem 3rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 0.72rem; font-weight: 600; color: var(--accent);
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400; margin-bottom: 1rem; line-height: 1.2;
  }
  .section-subtitle {
    font-size: 1rem; color: var(--text-muted);
    max-width: 560px; margin-bottom: 3.5rem;
  }

  /* ═══════════════════════════════════════════
     LEISTUNGEN
     ═══════════════════════════════════════════ */
  .services { background: var(--bg-white); }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .service-card {
    background: var(--bg); border: 1px solid var(--border-light); border-radius: var(--radius);
    padding: 2.5rem 2rem; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-deep));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--accent-pale), var(--accent-pale-strong));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; transition: transform 0.4s;
  }
  .service-card:hover .service-icon { transform: scale(1.05); }
  .service-icon svg { width: 24px; height: 24px; color: var(--accent); }
  .service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
  .service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

  /* ═══════════════════════════════════════════
     ÜBER MICH
     ═══════════════════════════════════════════ */
  .about { background: var(--bg); }
  .about-inner { max-width: 720px; }
  .about-text h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400; margin-bottom: 1.5rem; line-height: 1.2;
  }
  .about-text h2 span { color: var(--accent); }
  .about-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.2rem; }

  /* Foto + Zitat als Einheit, von horizontalen Strichen eingerahmt */
  .about-statement {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin: 1.8rem 0;
    padding: 1.8rem 0;
    position: relative;
  }
  .about-statement::before,
  .about-statement::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light) 20%, var(--border-light) 80%, transparent);
  }
  .about-statement::before { top: 0; }
  .about-statement::after { bottom: 0; }
  .about-portrait {
    width: 160px; height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(58, 107, 140, 0.7);
    box-shadow: 0 8px 24px rgba(58, 107, 140, 0.18),
                0 2px 6px rgba(0, 0, 0, 0.06);
    position: relative;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .about-portrait:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(58, 107, 140, 0.28),
                0 2px 6px rgba(0, 0, 0, 0.06);
  }
  .about-portrait img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    pointer-events: none; user-select: none; -webkit-user-drag: none;
  }
  .about-quote {
    font-family: var(--font); font-size: 1.05rem; font-weight: 500;
    color: var(--text); line-height: 1.7;
    margin: 0;
    padding: 0.3rem 0 0.3rem 1.2rem;
    border: none; border-left: 2px solid var(--accent);
    flex: 1;
  }

  .about-badges {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2.5rem; margin-top: 1.2rem;
    padding-top: 1.5rem; border-top: 1px solid var(--border-light);
    position: relative;
  }
  .about-badges::after {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px; background: var(--border-light);
  }
  .about-badge {
    padding: 0;
  }
  .about-badge:nth-child(1),
  .about-badge:nth-child(2) {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
  }
  .about-badge strong {
    display: block; font-family: var(--font-display); font-size: 1.5rem;
    font-weight: 400; color: var(--accent); line-height: 1.2;
    margin-bottom: 0.25rem;
  }
  .about-badge span {
    font-size: 0.78rem; color: var(--text-muted);
  }

  /* ═══════════════════════════════════════════
     ARBEITSWEISE
     ═══════════════════════════════════════════ */
  .process { background: var(--bg-white); }
  .process-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  }
  .process-card {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .process-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-deep));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
  .process-card:hover::before { transform: scaleX(1); }
  .process-card-label {
    font-size: 0.72rem; font-weight: 600; color: var(--accent);
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem;
  }
  .process-card-title {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 400; margin-bottom: 1.5rem;
  }
  .process-step-item { margin-bottom: 1.2rem; }
  .process-step-item:last-child { margin-bottom: 0; }
  .step-num {
    font-size: 1.6rem; font-family: var(--font-display); font-weight: 400;
    color: rgba(58, 107, 140, 0.4); display: inline; margin-right: 0.5rem; line-height: 1;
  }
  .process-step-item h4 {
    font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem;
    display: inline; color: var(--text);
  }
  .process-step-item p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.3rem; }
  .process-direct-box {
    background: var(--accent-pale-strong); border-radius: 10px; padding: 1.2rem 1.4rem;
    border-left: 3px solid var(--accent);
  }
  .process-direct-box p {
    font-size: 0.84rem; color: var(--text-muted); line-height: 1.7;
  }
  .process-direct-box p strong {
    display: block; font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1rem;
  }

  /* ═══════════════════════════════════════════
     STATEMENT
     ═══════════════════════════════════════════ */
  .statement {
    background: linear-gradient(165deg, var(--anthracite) 0%, var(--anthracite-deep) 100%);
    position: relative; overflow: hidden;
    padding: 7rem 3rem 4.5rem;
    display: flex; align-items: center; justify-content: center;
  }
  .statement::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' 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;
  }
  .statement-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    max-width: 700px;
  }
  .anchor-statement {
    font-family: var(--font-display); font-size: clamp(1.3rem, 2.8vw, 1.7rem);
    font-weight: 400; color: rgba(240, 240, 240, 0.75);
    text-align: center; line-height: 1.6;
    margin: 0 0 2.5rem; padding: 0; border: none;
  }
  .anchor-statement em {
    font-style: italic; color: #f0f0f0;
  }
  .anchor-claim {
    font-size: 0.8rem; font-weight: 600; color: var(--accent);
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 2.5rem;
  }
  .anchor-claim em {
    font-style: normal;
  }
  .anchor-scroll-hint {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  }
  .anchor-scroll-hint span {
    font-size: 0.65rem; color: rgba(240, 240, 240, 0.2);
    letter-spacing: 0.15em; text-transform: uppercase;
  }

  [data-theme="dark"] .statement {
    background: linear-gradient(165deg, #0a0d0f 0%, #060809 100%);
  }
  [data-theme="dark"] .anchor-statement { color: rgba(240, 239, 232, 0.65); }
  [data-theme="dark"] .anchor-statement em { color: #f0efe8; }

  /* ═══════════════════════════════════════════
     KONTAKT
     ═══════════════════════════════════════════ */
  .contact-section { background: var(--bg-white); }
  .contact-inner { max-width: 720px; }
  .contact-inner .section-title { margin-bottom: 1rem; }
  .contact-inner > p { color: var(--text-muted); font-size: 0.95rem; max-width: 500px; margin-bottom: 2rem; }
  .contact-email-cta {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--accent); color: #fff; padding: 0.9rem 1.8rem;
    border-radius: 10px; text-decoration: none; font-size: 0.88rem;
    font-weight: 600; transition: all 0.3s; margin-bottom: 1.5rem;
  }
  .contact-email-cta svg { width: 20px; height: 20px; }
  .contact-email-cta:hover {
    background: var(--accent-deep); transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(58, 107, 140, 0.25);
  }
  [data-theme="dark"] .contact-email-cta:hover {
    box-shadow: 0 6px 24px rgba(72, 125, 161, 0.4);
  }
  .contact-divider {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  }
  .contact-divider::before,
  .contact-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
  }
  .contact-divider span {
    font-size: 0.75rem; color: var(--text-light); text-transform: uppercase;
    letter-spacing: 0.1em; font-weight: 500;
  }
  .contact-form {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 2rem;
  }
  .form-group { margin-bottom: 1rem; }
  .form-group label {
    display: block; font-size: 0.78rem; color: var(--text-muted);
    margin-bottom: 0.35rem; font-weight: 500;
  }
  .form-group input,
  .form-group textarea {
    width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
    border-radius: 8px; font-family: var(--font); font-size: 0.88rem;
    background: var(--bg-white); color: var(--text); transition: border-color 0.25s;
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--accent); }
  .form-group textarea { resize: vertical; min-height: 160px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-callback {
    display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
    cursor: pointer; font-size: 0.84rem; color: var(--text-muted);
  }
  .form-callback input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer;
    flex-shrink: 0;
  }
  .form-callback-phone {
    overflow: hidden; max-height: 0; opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-bottom: 0;
  }
  .form-callback-phone.visible {
    max-height: 80px; opacity: 1; margin-bottom: 1rem;
  }
  .form-submit {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: #fff; border: none; padding: 0.8rem 1.8rem;
    border-radius: 8px; font-family: var(--font); font-size: 0.88rem;
    font-weight: 600; cursor: pointer; transition: all 0.3s;
  }
  .form-submit:hover {
    background: var(--accent-deep); transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(58, 107, 140, 0.25);
  }
  [data-theme="dark"] .form-submit:hover {
    box-shadow: 0 6px 24px rgba(72, 125, 161, 0.4);
  }
  .form-privacy {
    font-size: 0.72rem; color: var(--text-light); margin-top: 1rem; line-height: 1.6;
  }
  .form-privacy a { color: var(--text-light); text-decoration: underline; transition: color 0.25s; }
  .form-privacy a:hover { color: var(--accent); }

  .form-status {
    padding: 1rem 1.4rem; border-radius: var(--radius); font-size: 0.88rem;
    line-height: 1.6; margin-bottom: 1.5rem;
  }
  .form-status-success {
    background: rgba(58, 140, 90, 0.08); border: 1px solid rgba(58, 140, 90, 0.2);
    color: #2d6e46;
  }
  .form-status-error {
    background: rgba(180, 60, 60, 0.08); border: 1px solid rgba(180, 60, 60, 0.2);
    color: #8c2e2e;
  }
  [data-theme="dark"] .form-status-success {
    background: rgba(58, 140, 90, 0.12); border-color: rgba(58, 140, 90, 0.25);
    color: #6dbe8a;
  }
  [data-theme="dark"] .form-status-error {
    background: rgba(180, 60, 60, 0.12); border-color: rgba(180, 60, 60, 0.25);
    color: #d48a8a;
  }

  /* ═══════════════════════════════════════════
     FOOTER
     ═══════════════════════════════════════════ */
  footer { background: var(--footer-bg); color: rgba(255, 255, 255, 0.35); padding: 3.5rem; }
  .footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 4rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-logo { display: inline-block; }
  .footer-logo svg { height: 48px; width: auto; transition: fill 0.3s, stroke 0.3s; }
  .footer-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .footer-links a { color: rgba(255, 255, 255, 0.25); text-decoration: none; font-size: 0.78rem; transition: color 0.25s; }
  .footer-links a:hover { color: rgba(255, 255, 255, 0.65); }
  .footer-copy { font-size: 0.75rem; }

  /* ═══════════════════════════════════════════
     BACK TO TOP
     ═══════════════════════════════════════════ */
  .back-to-top {
    position: fixed; bottom: 2.5rem; right: 2.5rem; z-index: 90;
    width: 44px; height: 44px; border-radius: 50%;
    background-color: var(--anthracite); color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.35s ease, box-shadow 0.35s ease;
    pointer-events: none;
  }
  .back-to-top.visible {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .back-to-top:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(58, 107, 140, 0.3);
  }
  [data-theme="dark"] .back-to-top:hover {
    background-color: var(--accent-deep);
    box-shadow: 0 6px 24px rgba(72, 125, 161, 0.25);
  }
  .back-to-top svg { width: 20px; height: 20px; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* ═══════════════════════════════════════════
     RESPONSIVE
     ═══════════════════════════════════════════ */
  @media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-layout { grid-template-columns: 1fr; }
    /* Nav collapses to hamburger on tablets */
    nav { padding: 0 1.5rem; height: 76px; }
    nav .nav-brand svg { height: 64px; }
    .nav-links, .nav-buttons { display: none; }
    .nav-toggle { display: flex; }
    .theme-toggle { margin-left: auto; margin-right: 0.8rem; }
    .hero { padding-top: 76px; }
    .nav-mobile { top: 76px; }
  }

  @media (max-width: 560px) {
    .about-statement { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .about-portrait { width: 120px; height: 120px; align-self: flex-start; }
  }

  @media (max-width: 768px) {
    .statement { padding: 3.5rem 1.5rem; }
    .hero-canvas { min-height: 70vh; padding: 3rem 1.5rem; }
    .hero-claim { font-size: 2rem; }
    .hero-claim-sub { font-size: 0.95rem; }
    .section { padding: 4.5rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; padding: 0; }
    footer { padding: 3.5rem 1.5rem; }
    .back-to-top { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; }
  }

  /* ═══════════════════════════════════════════
     SUBSEITEN (Impressum, Datenschutz, Support)
     ═══════════════════════════════════════════ */
  main { flex: 1; min-height: calc(100vh - 110px); }

  .page-section {
    padding: 140px 2rem 5rem;
    background: var(--bg-white);
    min-height: calc(100vh - 110px);
  }
  .page-inner { max-width: 800px; margin: 0 auto; }
  .page-mark {
    width: 40px; height: 2px;
    background: var(--accent);
    margin-bottom: 1.4rem;
  }
  .page-subtitle {
    color: var(--text-muted); font-size: 0.95rem; line-height: 1.7;
    margin-bottom: 1rem; max-width: 560px;
  }
  .page-content h2 {
    font-size: 1rem; font-weight: 600; color: var(--text);
    margin: 2.5rem 0 0.8rem;
  }
  .page-content p, .page-content address {
    color: var(--text-muted); font-size: 0.88rem; line-height: 1.7;
    margin-bottom: 0.8rem; font-style: normal;
  }
  .page-content a { color: var(--accent); text-decoration: underline; }
  .page-content a:hover { color: var(--accent-deep); }

  /* Support-spezifisch */
  .support-card {
    margin-top: 2.5rem; padding: 2rem 2.2rem;
    background: var(--bg); border: 1px solid var(--border-light); border-radius: var(--radius);
  }
  .support-card-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  }
  .support-steps {
    padding-left: 1.2rem; margin: 0 0 2rem; color: var(--text-muted); font-size: 0.92rem; line-height: 2;
  }
  .support-steps li { padding-left: 0.3rem; }
  .support-downloads {
    display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0;
  }
  .support-download-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: #fff !important;
    padding: 0.75rem 1.4rem; border-radius: 8px; text-decoration: none !important;
    font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
  }
  .support-download-btn:hover {
    background: var(--accent-deep); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 107, 140, 0.25);
  }
  .support-hint {
    margin-top: 1.5rem; font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; opacity: 0.7;
  }
  .support-contact {
    margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-light);
  }
  .support-contact p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.5rem; }
  .support-contact a { color: var(--accent); text-decoration: none; font-weight: 500; transition: color 0.25s; }
  .support-contact a:hover { color: var(--accent-deep); text-decoration: underline; }

  /* Subseiten Mobile */
  @media (max-width: 768px) {
    .page-section { padding: 100px 1.5rem 4rem; }
    .support-card { padding: 1.5rem; }
  }

  /* ═══════════════════════════════════════════
     SKIP-LINK (Tastatur-Navigation)
     ═══════════════════════════════════════════ */
  .skip-link {
    position: fixed; left: 1rem; top: -4rem; z-index: 200;
    background: var(--accent); color: #fff;
    padding: 0.7rem 1.2rem; border-radius: 8px;
    font-size: 0.85rem; font-weight: 600; text-decoration: none;
    transition: top 0.25s ease;
  }
  .skip-link:focus { top: 1rem; outline: 2px solid #fff; outline-offset: 2px; }
  /* Sprungziele sollen beim Fokussieren keinen sichtbaren Rahmen zeigen */
  #hauptinhalt { outline: none; }

  /* ═══════════════════════════════════════════
     REDUCED MOTION (Barrierefreiheit)
     ═══════════════════════════════════════════ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    /* Reveal-Elemente sofort sichtbar statt eingeblendet */
    .js-loaded .reveal,
    .js-loaded .reveal-left,
    .js-loaded .reveal-right {
      opacity: 1 !important;
      transform: none !important;
    }
  }
