@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-300-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-300-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-300-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-400-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/outfit-400-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/outfit-400-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-400-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/outfit-400-800.woff2') format('woff2');
}
    :root {
      --bg: #0b1218;
      --surface: #0f1a22;
      --border: #1a2e3a;
      --accent: #3ab8d8;
      --accent2: #1e8faa;
      --text: #e8f0f4;
      --muted: #92b3c1;
      --muted-strong: #a9c7d3;
      --card: #111e27;
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      max-width: 100%;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
      max-width: 100%;
    }

    /* ── HERO GLOW ── */
    #hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -100px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(58,184,216,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── GRID OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(58,184,216,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58,184,216,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

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

    section, nav, footer { position: relative; z-index: 1; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 3rem;
      border-bottom: 1px solid var(--border);
      background: rgba(10,12,15,0.85);
      backdrop-filter: blur(12px);
    }

    .nav-logo {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: -0.02em;
      color: var(--text);
      text-decoration: none;
    }

    .nav-logo span { color: var(--accent); }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links-cta { display: none; }

    .nav-links-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      font-size: 0.7rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 0.6rem 0.95rem;
      border: 1px solid var(--accent);
      color: var(--accent);
      text-decoration: none;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--accent); }

    .nav-controls {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .nav-cta {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.55rem 1.4rem;
      border: 1px solid var(--accent);
      color: var(--accent);
      background: transparent;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .nav-cta:hover { background: var(--accent); color: #000; }

    .nav-toggle {
      display: none;
      width: 2.35rem;
      height: 2.35rem;
      border: 1px solid var(--border);
      background: rgba(11,18,24,0.8);
      cursor: pointer;
      padding: 0.35rem;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0.26rem;
    }

    .nav-toggle span {
      width: 16px;
      height: 1.5px;
      background: var(--text);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 3rem 4rem;
      gap: 4rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .hero-left { max-width: 580px; }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(58,184,216,0.3);
      padding: 0.35rem 0.9rem;
      margin-bottom: 2rem;
      animation: fadeUp 0.8s ease both;
    }

    .hero-tag::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    h1 {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: clamp(2.8rem, 3vw, 4.2rem);
      line-height: 1.0;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s 0.1s ease both;
    }

    h1 .accent { color: var(--accent); }
    h1 .accent-muted { color: #2a97b0; }
    h1 .line {
      display: block;
      white-space: nowrap;
    }
    h1 .line-no-break { white-space: nowrap; }

    .hero-sub {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 2.5rem;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--accent);
      color: #000;
      padding: 0.9rem 2rem;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(58,184,216,0.3);
    }

    .btn-ghost {
      font-size: 0.8rem;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.06em;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.2s;
    }

    .btn-ghost:hover { color: var(--text); }

    /* ── DASHBOARD MOCKUP ── */
    .hero-right {
      animation: fadeIn 1s 0.4s ease both;
    }

    .dashboard-mock {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(58,184,216,0.1);
    }

    .mock-header {
      padding: 0.75rem 1rem;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .mock-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
    }

    .mock-dot:nth-child(1) { background: #c0392b; }
    .mock-dot:nth-child(2) { background: #e8a020; }
    .mock-dot:nth-child(3) { background: #27ae60; }

    .mock-title-bar {
      margin-left: auto;
      font-size: 0.62rem;
      color: var(--muted);
      letter-spacing: 0.1em;
    }

    .mock-body { padding: 1.25rem; }

    .mock-kpi-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .kpi-card {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 0.9rem;
    }

    .kpi-label {
      font-size: 0.58rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    .kpi-value {
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text);
    }

    .kpi-delta {
      font-size: 0.6rem;
      color: #27ae60;
      margin-top: 0.2rem;
    }

    .kpi-delta.neg { color: var(--accent2); }

    .mock-chart {
      background: var(--bg);
      border: 1px solid var(--border);
      height: 100px;
      margin-bottom: 1rem;
      padding: 0.75rem;
      position: relative;
      overflow: hidden;
    }

    .chart-label {
      font-size: 0.58rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 60px;
    }

    .chart-bar {
      flex: 1;
      background: rgba(58,184,216,0.15);
      border-top: 2px solid var(--accent);
      border-radius: 1px 1px 0 0;
      animation: growBar 1s ease both;
    }

    .chart-bar-1 { height: 40%; animation-delay: 0.1s; }
    .chart-bar-2 { height: 55%; animation-delay: 0.15s; }
    .chart-bar-3 { height: 48%; animation-delay: 0.2s; }
    .chart-bar-4 { height: 70%; animation-delay: 0.25s; }
    .chart-bar-5 { height: 60%; animation-delay: 0.3s; }
    .chart-bar-6 { height: 85%; animation-delay: 0.35s; }
    .chart-bar-7 { height: 75%; animation-delay: 0.4s; }
    .chart-bar-8 { height: 92%; animation-delay: 0.45s; }

    @keyframes growBar {
      from { transform: scaleY(0); transform-origin: bottom; }
      to { transform: scaleY(1); }
    }

    .mock-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .mock-mini {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 0.75rem;
    }

    .mini-label { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.5rem; }

    .mini-bar-wrap { display: flex; flex-direction: column; gap: 4px; }

    .mini-bar-row { display: flex; align-items: center; gap: 6px; font-size: 0.58rem; color: var(--muted); }

    .mini-bar-track { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }

    .mini-bar-fill {
      height: 100%;
      background: var(--accent);
      border-radius: 2px;
      animation: growWidth 1.5s ease both;
    }

    .mini-bar-fill-88 { width: 88%; }
    .mini-bar-fill-72 { width: 72%; }
    .mini-bar-fill-61 { width: 61%; }
    .mini-bar-fill-60 { width: 60%; }
    .mini-bar-fill-25 { width: 25%; }
    .mini-bar-fill-15 { width: 15%; }

    @keyframes growWidth {
      from { width: 0 !important; }
    }

    /* ── STATS ── */
    #stats {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 3rem;
    }

    .stats-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .stat-item { text-align: center; }

    .stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--accent);
      display: block;
    }

    .stat-desc {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-top: 0.3rem;
    }

    /* ── LEISTUNGEN ── */
    #leistungen {
      padding: 7rem 3rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-tag {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .section-sub {
      font-size: 0.9rem;
      color: var(--muted-strong);
      line-height: 1.8;
      max-width: 560px;
      margin-bottom: 4rem;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--border);
    }

    .card {
      background: var(--card);
      padding: 2.5rem;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(58,184,216,0.05) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .card:hover { background: #161a24; }
    .card:hover::before { opacity: 1; }

    .card-icon {
      width: 44px; height: 44px;
      border: 1px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
    }

    .card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .card p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ── PROJEKTBEISPIEL ── */
    #projekte {
      padding: 7rem 3rem;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .projekte-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .projekt-marquee {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      background: rgba(11,18,24,0.7);
      padding: 1.1rem 0;
      box-shadow: 0 26px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(58,184,216,0.06);
    }

    .projekt-marquee::before,
    .projekt-marquee::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 5.5rem;
      pointer-events: none;
      z-index: 2;
    }

    .projekt-marquee::before {
      left: 0;
      background: linear-gradient(90deg, rgba(15,26,34,0.98) 0%, rgba(15,26,34,0) 100%);
    }

    .projekt-marquee::after {
      right: 0;
      background: linear-gradient(270deg, rgba(15,26,34,0.98) 0%, rgba(15,26,34,0) 100%);
    }

    .projekt-track {
      display: flex;
      width: max-content;
      animation: scrollDashboards 54s linear infinite;
      will-change: transform;
    }

    .projekt-marquee:hover .projekt-track {
      animation-play-state: paused;
    }

    .projekt-tile {
      flex: 0 0 clamp(260px, 34vw, 470px);
      margin-right: 1rem;
      border: 1px solid var(--border);
      border-radius: 4px;
      background: var(--card);
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    }

    .projekt-tile img {
      display: block;
      width: 100%;
      height: auto;
    }

    @media (min-width: 901px) {
      .projekt-tile img {
        cursor: zoom-in;
      }
    }

    .projekt-mobile-controls {
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-top: 0.9rem;
    }

    .projekt-mobile-btn {
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.5rem 0.75rem;
      cursor: pointer;
    }

    .projekt-mobile-btn:disabled {
      opacity: 0.5;
      cursor: default;
    }

    .projekt-mobile-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.34rem;
      flex: 1;
    }

    .projekt-mobile-dot {
      width: 7px;
      height: 7px;
      border: 1px solid var(--accent);
      background: transparent;
      border-radius: 50%;
      cursor: pointer;
      padding: 0;
    }

    .projekt-mobile-dot.is-active {
      background: var(--accent);
    }

    .projekt-lightbox {
      position: fixed;
      inset: 0;
      background: rgba(6,10,14,0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease;
      z-index: 250;
    }

    .projekt-lightbox.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .projekt-lightbox img {
      display: block;
      max-width: min(92vw, 1480px);
      max-height: 84vh;
      width: auto;
      height: auto;
      border: 1px solid var(--border);
      background: var(--card);
      box-shadow: 0 30px 90px rgba(0,0,0,0.7);
    }

    .projekt-lightbox-close {
      position: absolute;
      top: 1.1rem;
      right: 1.1rem;
      border: 1px solid var(--border);
      background: rgba(11,18,24,0.95);
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.42rem 0.7rem;
      cursor: pointer;
    }

    @keyframes scrollDashboards {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .projekt-track { animation: none; }
    }

    /* ── ZUSAMMENARBEIT ── */
    #zusammenarbeit {
      padding: 7rem 3rem;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .workflow-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .workflow-grid {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      margin-top: 1rem;
    }

    .workflow-grid::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 1rem;
      bottom: 1rem;
      width: 1px;
      background: var(--border);
      transform: translateX(-50%);
    }

    .workflow-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
      align-items: center;
      gap: 2rem;
    }

    .workflow-axis {
      display: flex;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .workflow-dot {
      width: 36px;
      height: 36px;
      border: 1px solid var(--accent);
      border-radius: 50%;
      background: var(--bg);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      box-shadow: 0 0 0 6px rgba(11,18,24,0.9);
    }

    .workflow-media {
      border: 1px solid var(--border);
      background: var(--card);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(58,184,216,0.08);
    }

    .workflow-media img {
      display: block;
      width: 100%;
      height: auto;
    }

    .workflow-text {
      background: rgba(11,18,24,0.55);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.5rem;
    }

    .workflow-text h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 0.75rem;
    }

    .workflow-text p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ── ÜBER MICH ── */
    #ueber {
      position: relative;
      overflow: visible;
      padding: 4.5rem 3rem 2.2rem;
      max-width: 1400px;
      margin: 0 auto;
      min-height: 430px;
    }

    .ueber-content {
      max-width: 620px;
      position: relative;
      z-index: 2;
    }

    .ueber-photo-wrap {
      position: absolute;
      right: 3rem;
      bottom: 0;
      width: min(38vw, 520px);
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      pointer-events: none;
      z-index: 2;
    }

    .ueber-photo {
      display: block;
      width: 100%;
      height: auto;
      max-height: none;
      filter: drop-shadow(0 24px 80px rgba(0,0,0,0.45));
    }

    .ueber-text {
      font-size: 0.88rem;
      color: var(--muted-strong);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .tl-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 1.5rem;
      position: relative;
      padding-bottom: 2rem;
    }

    .tl-item:last-child { padding-bottom: 0; }

    .tl-item::before {
      content: '';
      position: absolute;
      left: 39px;
      top: 20px;
      bottom: 0;
      width: 1px;
      background: var(--border);
    }

    .tl-item:last-child::before { display: none; }

    .tl-year {
      font-size: 0.68rem;
      color: var(--accent);
      letter-spacing: 0.06em;
      padding-top: 2px;
      text-align: right;
    }

    .tl-dot {
      position: absolute;
      left: 35px;
      top: 4px;
      width: 9px; height: 9px;
      border: 2px solid var(--accent);
      background: var(--bg);
      border-radius: 50%;
    }

    .tl-text h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    .tl-text p {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 2rem;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.35rem 0.8rem;
      border: 1px solid var(--border);
      color: var(--muted-strong);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .social-link:hover { border-color: var(--accent); color: var(--accent); }

    /* ── FAQ ── */
    #faq {
      padding: 7rem 3rem;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(11,18,24,0.45);
    }

    .faq-inner {
      max-width: 980px;
      margin: 0 auto;
    }

    .faq-list {
      margin-top: 2.2rem;
      display: grid;
      gap: 0.95rem;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 1.4rem 1.5rem;
    }

    .faq-item h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.02rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 0.65rem;
      line-height: 1.35;
    }

    .faq-item p {
      font-size: 0.84rem;
      color: var(--muted-strong);
      line-height: 1.75;
    }

    .faq-cta {
      margin-top: 1.45rem;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 1.45rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.8rem;
    }

    .faq-cta h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.12rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .faq-cta p {
      font-size: 0.84rem;
      color: var(--muted-strong);
      line-height: 1.7;
    }

    /* ── CONTACT ── */
    #kontakt {
      padding: 7rem 3rem;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .contact-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .contact-form { display: flex; flex-direction: column; gap: 1rem; }

    .privacy-consent-box {
      border: 1px solid var(--border);
      background: rgba(11,18,24,0.62);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .privacy-consent-title {
      font-family: 'Outfit', sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      color: var(--text);
    }

    .privacy-consent-scroll {
      max-height: 220px;
      overflow-y: auto;
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 0.8rem;
      font-size: 0.75rem;
      line-height: 1.6;
      color: var(--muted-strong);
    }

    .privacy-consent-scroll p {
      margin-bottom: 0.7rem;
    }

    .privacy-consent-scroll p:last-child {
      margin-bottom: 0;
    }

    .consent-accept-btn {
      align-self: flex-start;
      border: 1px solid var(--accent);
      background: transparent;
      color: var(--accent);
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 0.62rem 1rem;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .consent-accept-btn:hover {
      background: var(--accent);
      color: #000;
    }

    .form-disabled-wrap {
      border: 0;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-width: 0;
      opacity: 0.5;
    }

    .contact-form.form-enabled .form-disabled-wrap {
      opacity: 1;
    }

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

    .form-label {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted-strong);
    }

    .form-input, .form-textarea {
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      padding: 0.85rem 1rem;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
    }

    .form-input:focus, .form-textarea:focus { border-color: var(--accent); }
    .form-textarea { min-height: 130px; }

    .form-submit {
      background: var(--accent);
      color: #000;
      border: none;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      align-self: flex-start;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(58,184,216,0.3);
    }

    .contact-info { padding-top: 1rem; }

    .contact-info p {
      font-size: 0.88rem;
      color: var(--muted-strong);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      color: var(--text);
      transition: color 0.2s;
    }

    .contact-detail:hover { color: var(--accent); }

    .contact-detail-icon {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .contact-detail-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-strong); }
    .contact-detail-value { font-size: 0.85rem; margin-top: 0.1rem; }

    /* ── FOOTER ── */
    footer {
      padding: 2rem 3rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    footer p { font-size: 0.68rem; color: var(--muted-strong); letter-spacing: 0.06em; }

    .footer-nav { display: flex; gap: 2rem; list-style: none; }
    .footer-nav a { font-size: 0.65rem; color: var(--muted-strong); text-decoration: none; letter-spacing: 0.06em; }
    .footer-nav a:hover { color: var(--accent); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav {
        padding: 0.85rem 0.9rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.6rem;
        min-width: 0;
        box-sizing: border-box;
      }
      .nav-logo {
        flex: 1 1 auto;
        font-size: 0.88rem;
        min-width: 0;
        width: auto;
        max-width: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .nav-controls {
        flex: 0 0 auto;
        margin-left: 0;
        gap: 0.5rem;
        flex-shrink: 0;
      }
      .nav-cta { display: none; }
      .nav-toggle {
        display: inline-flex;
        width: 2.2rem;
        height: 2.2rem;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        min-width: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(11,18,24,0.98);
        border-bottom: 1px solid var(--border);
        padding: 0.35rem 1rem 0.85rem;
        overflow-x: clip;
      }
      .nav-links li {
        border-bottom: 1px solid rgba(26,46,58,0.65);
      }
      .nav-links li:last-child { border-bottom: none; }
      .nav-links a {
        display: block;
        font-size: 0.72rem;
        padding: 0.82rem 0;
      }
      .nav-links-cta {
        display: block;
        border-bottom: none;
        padding-top: 0.55rem;
      }
      .nav-links-cta .nav-links-cta-btn {
        display: inline-flex;
        font-size: 0.64rem;
        padding: 0.62rem 0.9rem;
        justify-content: center;
      }
      nav.nav-open .nav-links { display: flex; }
      #hero { grid-template-columns: 1fr; padding: 4.7rem 1.5rem 3rem; }
      h1 {
        font-size: clamp(1.72rem, 8.2vw, 2.5rem);
        line-height: 1.04;
      }
      .hero-actions { gap: 0.7rem; }
      .btn-primary {
        font-size: 0.72rem;
        padding: 0.72rem 1.15rem;
      }
      .hero-right {
        display: block;
        margin-top: 1rem;
      }
      .hero-right .dashboard-mock {
        width: 100%;
        max-width: 100%;
      }
      #stats { padding: 2.5rem 1.5rem; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      #leistungen, #ueber { padding: 4rem 1.5rem; }
      .cards-grid { grid-template-columns: 1fr; }
      #ueber {
        min-height: 0;
        padding-bottom: 0;
      }
      .ueber-content {
        max-width: none;
      }
      .ueber-photo-wrap {
        position: static;
        width: 100%;
        pointer-events: auto;
        justify-content: center;
        margin-top: 1.25rem;
      }
      .ueber-photo {
        width: min(100%, 360px);
        height: auto;
      }
      .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      #zusammenarbeit, #kontakt, #faq, #projekte { padding: 4rem 1.5rem; }
      .projekt-marquee {
        padding: 0;
      }
      .projekt-marquee::before,
      .projekt-marquee::after {
        display: none;
      }
      .projekt-track {
        width: 100%;
        animation: none;
        transition: transform 0.35s ease;
      }
      .projekt-tile {
        flex: 0 0 100%;
        margin-right: 0;
      }
      .projekt-tile[aria-hidden='true'] {
        display: none;
      }
      .projekt-mobile-controls {
        display: flex;
      }
      .workflow-grid { gap: 2rem; }
      .workflow-grid::before { left: 18px; transform: none; top: 0.75rem; bottom: 0.75rem; }
      .workflow-row {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 0.9rem 1rem;
        align-items: start;
      }
      .workflow-axis {
        grid-column: 1;
        grid-row: 1 / span 2;
        justify-content: flex-start;
        padding-top: 0.25rem;
      }
      .workflow-media, .workflow-text { grid-column: 2; }
      .workflow-row-mobile-image-first .workflow-media { grid-row: 1; }
      .workflow-row-mobile-image-first .workflow-text { grid-row: 2; }
      .workflow-dot { box-shadow: 0 0 0 5px rgba(11,18,24,0.9); }
      .faq-item {
        padding: 1.12rem 1.05rem;
      }
      .faq-cta {
        padding: 1.2rem 1.05rem;
      }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
    }

    @media (max-width: 420px) {
      h1 { font-size: clamp(1.28rem, 6.6vw, 1.9rem); }
      .hero-actions { flex-wrap: wrap; }
      .projekt-mobile-btn {
        font-size: 0.63rem;
        padding: 0.45rem 0.58rem;
      }
      .faq-item h3 { font-size: 0.95rem; }
    }
