/* Schriftart: Inter, Copyright (c) 2016 The Inter Project Authors
   (https://github.com/rsms/inter), lizenziert unter der SIL Open Font
   License 1.1. Lizenztext: /assets/fonts/LICENSE.txt
   Lokal gehostet, keine Verbindung zu Google Fonts. */
/* ===== Inter (lokal selbst gehostet, DSGVO – keine externen Requests) ===== */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/inter-latin-400-normal.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/inter-latin-500-normal.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/inter-latin-600-normal.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/inter-latin-700-normal.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:swap;src:url('/assets/fonts/inter-latin-800-normal.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:900;font-display:swap;src:url('/assets/fonts/inter-latin-900-normal.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #0b1120;
      color: #e2e8f0;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ===== SCROLL ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(48px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ===== CONTAINER ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== NAVIGATION ===== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 16px 0;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    nav.scrolled {
      background: rgba(11, 17, 32, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(59, 130, 246, 0.08);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: -0.03em;
    }
    .logo svg { width: 32px; height: 32px; flex-shrink: 0; }
    .logo-text {
      background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-links {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 24px;
    }
    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: #94a3b8;
      transition: color 0.2s;
      position: relative;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(90deg, #3b82f6, #8b5cf6);
      transition: width 0.3s ease;
      border-radius: 1px;
    }
    .nav-links a:hover { color: #f1f5f9; }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #3b82f6, #7c3aed);
      color: #fff !important;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 10px;
      font-size: 0.875rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(27, 35, 64, 0.35);
    }
    .nav-cta:hover {
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
      transform: translateY(-1px);
    }
    .nav-cta::after { display: none; }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #e2e8f0;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(11, 17, 32, 0.98);
      backdrop-filter: blur(24px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }
    .mobile-menu a {
      font-size: 1.5rem;
      font-weight: 600;
      color: #94a3b8;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: #f1f5f9; }
    .mobile-menu .nav-cta { font-size: 1.125rem; padding: 14px 32px; }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -40%; right: -20%;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%; left: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 820px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #93c5fd;
      margin-bottom: 28px;
    }
    .hero-badge svg { width: 14px; height: 14px; }
    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.2rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1.08;
      margin-bottom: 24px;
    }
    .hero h1 .highlight {
      background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #c084fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: #94a3b8;
      max-width: 640px;
      line-height: 1.7;
      margin-bottom: 40px;
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      font-family: inherit;
    }
    .btn-primary {
      background: linear-gradient(135deg, #3b82f6, #7c3aed);
      color: #fff;
      box-shadow: 0 6px 18px rgba(27, 35, 64, 0.35);
    }
    .btn-primary:hover {
      box-shadow: 0 8px 24px rgba(59, 130, 246, 0.28);
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: transparent;
      color: #e2e8f0;
      border: 1px solid rgba(255,255,255,0.12);
    }
    .btn-secondary:hover {
      border-color: rgba(59, 130, 246, 0.4);
      background: rgba(59, 130, 246, 0.05);
      transform: translateY(-2px);
    }

    /* ===== SERVICES ===== */
    .services {
      padding: 120px 0;
      position: relative;
    }
    .services::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 1px; height: 80px;
      background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.3));
    }
    .section-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #818cf8;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }
    .section-subtitle {
      color: #8a97ac;
      font-size: 1.05rem;
      max-width: 540px;
      line-height: 1.7;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 64px;
    }
    .service-card {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 40px 32px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .service-card:hover {
      border-color: rgba(59, 130, 246, 0.15);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.12));
    }
    .service-icon svg { width: 26px; height: 26px; }
    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .service-card p {
      color: #94a3b8;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* ===== EXAMPLE SCENARIOS (Anwendungsfälle) ===== */
    .examples {
      padding: 120px 0;
      background: rgba(15, 23, 42, 0.2);
      border-top: 1px solid rgba(255,255,255,0.03);
    }
    .example-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(139, 92, 246, 0.08);
      border: 1px solid rgba(139, 92, 246, 0.15);
      padding: 8px 16px;
      border-radius: 10px;
      font-size: 0.85rem;
      color: #c4b5fd;
      margin-top: 24px;
      margin-bottom: 0;
    }
    .example-note svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ===== REFERENZEN ===== */
    .references {
      padding: 120px 0;
      position: relative;
    }
    .references-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      margin-top: 64px;
    }
    .reference-card {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 36px 32px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .reference-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.35), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .reference-card:hover {
      border-color: rgba(59, 130, 246, 0.15);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .reference-card:hover::before { opacity: 1; }
    /* Logo-Lockup oben auf der Karte */
    .reference-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      margin-bottom: 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
    }
    .reference-logo-mark {
      width: 48px; height: 48px;
      flex-shrink: 0;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #3b82f6, #7c3aed);
      box-shadow: 0 6px 18px rgba(59, 130, 246, 0.25);
    }
    .reference-logo-mark svg { width: 26px; height: 26px; }
    .reference-logo-word { display: flex; flex-direction: column; line-height: 1.1; }
    .reference-logo-name {
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #f8fafc;
    }
    .reference-logo-sub {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #7c8aa5;
      margin-top: 3px;
    }
    .reference-logo-note {
      margin-left: auto;
      align-self: flex-start;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #8a97ac;
      background: rgba(148,163,184,0.08);
      border: 1px solid rgba(148,163,184,0.15);
      padding: 3px 8px;
      border-radius: 6px;
    }
    .reference-logo.is-center { justify-content: center; }
    .reference-logo-img {
      height: 84px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }
    .reference-logo-svg {
      height: 66px;
      width: auto;
      max-width: 100%;
      display: block;
    }
    .reference-visit {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 0.85rem;
      font-weight: 600;
      color: #93c5fd;
      transition: color 0.2s;
    }
    .reference-visit:hover { color: #bfdbfe; }
    .reference-visit:hover .reference-visit-domain { text-decoration: underline; }
    .reference-visit svg { width: 15px; height: 15px; flex-shrink: 0; color: #3b82f6; }
    .reference-visit .ext { margin-left: -2px; opacity: 0.75; }
    .reference-tag {
      display: inline-flex;
      align-self: flex-start;
      align-items: center;
      gap: 6px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.18);
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #93c5fd;
      letter-spacing: 0.02em;
      margin-bottom: 24px;
    }
    .reference-tag svg { width: 14px; height: 14px; }
    .reference-result {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-bottom: 22px;
      margin-bottom: 22px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .reference-result-number {
      font-size: 2.1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      background: #818cf8;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .reference-result-label {
      font-size: 0.9rem;
      color: #94a3b8;
      line-height: 1.5;
    }
    .reference-text {
      color: #94a3b8;
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .reference-text.grow { flex-grow: 1; }
    .reference-text strong { color: #e2e8f0; font-weight: 600; }
    .reference-quote {
      position: relative;
      margin: 0 0 26px;
      padding: 22px 22px 20px 26px;
      background: rgba(59,130,246,0.05);
      border: 1px solid rgba(59,130,246,0.12);
      border-left: 3px solid #3b82f6;
      border-radius: 12px;
      font-style: italic;
      color: #dbe4f0;
      font-size: 0.98rem;
      line-height: 1.7;
      flex-grow: 1;
    }
    .reference-quote::before {
      content: '\201C';
      position: absolute;
      top: 4px; left: 12px;
      font-size: 3rem;
      line-height: 1;
      font-style: normal;
      font-family: Georgia, 'Times New Roman', serif;
      color: rgba(96,165,250,0.25);
      pointer-events: none;
    }
    .reference-quote p { margin: 0; position: relative; z-index: 1; }
    .reference-quote cite {
      display: block;
      margin-top: 14px;
      font-style: normal;
      font-weight: 600;
      font-size: 0.85rem;
      color: #93c5fd;
    }
    .reference-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 0.84rem;
      color: #7c8aa5;
    }
    .reference-meta svg { width: 15px; height: 15px; flex-shrink: 0; color: #3b82f6; }

    /* ===== PROCESS (Ablauf) ===== */
    .process {
      padding: 120px 0;
      position: relative;
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 64px;
      position: relative;
    }
    .process-step {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 40px 28px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
    }
    .process-step:hover {
      border-color: rgba(59, 130, 246, 0.15);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .process-step-number {
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
      font-size: 1.2rem;
      font-weight: 800;
      color: #60a5fa;
    }
    .process-step h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .process-step p {
      color: #94a3b8;
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* ===== ABOUT / TRUST ===== */
    .about {
      padding: 120px 0;
      background: rgba(15, 23, 42, 0.3);
      border-top: 1px solid rgba(255,255,255,0.03);
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .stat-card {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(255,255,255,0.04);
      border-radius: 16px;
      padding: 28px 24px;
      text-align: center;
    }
    .stat-number {
      font-size: 1.9rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
      background: #818cf8;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-label {
      font-size: 0.85rem;
      color: #8a97ac;
      margin-top: 6px;
      line-height: 1.4;
    }
    .about-text h2 { margin-bottom: 20px; }
    .about-text p {
      color: #94a3b8;
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 1rem;
    }
    .about-text .tech-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }
    .tech-stack span {
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.12);
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #93c5fd;
    }

    /* ===== FOUNDER ===== */
    .founder {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .founder-avatar {
      width: 60px; height: 60px;
      flex-shrink: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.25rem;
      color: #fff;
      background: linear-gradient(135deg, #3b82f6, #7c3aed);
    }
    .founder-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center 20%; display: block; }
    .founder-name { font-weight: 700; color: #f1f5f9; }
    .founder-role { font-size: 0.85rem; color: #8a97ac; margin-top: 2px; }

    /* ===== DSGVO CONSENT ===== */
    .form-consent {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 0.82rem;
      color: #94a3b8;
      line-height: 1.5;
    }
    .form-consent input { width: auto; margin-top: 3px; flex-shrink: 0; }
    .form-consent a { color: #60a5fa; text-decoration: underline; }

    /* ===== CONTACT ===== */
    .contact {
      padding: 120px 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      margin-top: 56px;
    }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      color: #cbd5e1;
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      color: #e2e8f0;
      font-family: inherit;
      font-size: 0.95rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 44px;
    }
    .form-group select option { background: #0f172a; color: #e2e8f0; }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .btn-submit {
      width: 100%;
      padding: 16px 32px;
      background: linear-gradient(135deg, #3b82f6, #7c3aed);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(27, 35, 64, 0.35);
      font-family: inherit;
    }
    .btn-submit:hover {
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
      transform: translateY(-2px);
    }
    .contact-info h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .contact-info p {
      color: #94a3b8;
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .contact-detail svg { width: 20px; height: 20px; flex-shrink: 0; color: #3b82f6; }
    .contact-detail a {
      color: #e2e8f0;
      transition: color 0.2s;
    }
    .contact-detail a:hover { color: #60a5fa; }

    /* ===== FOOTER ===== */
    footer {
      padding: 48px 0 32px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p {
      color: #8a97ac;
      font-size: 0.9rem;
      margin-top: 12px;
      max-width: 320px;
      line-height: 1.7;
    }
    .footer-col h4 {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #8a97ac;
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 0.9rem;
      color: #94a3b8;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #f1f5f9; }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.04);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p {
      font-size: 0.8rem;
      color: #8a97ac;
    }
    .footer-legal {
      display: flex;
      gap: 16px;
      font-size: 0.8rem;
    }
    .footer-legal a { color: #94a3b8; transition: color 0.2s; }
    .footer-legal a:hover { color: #e2e8f0; }
    .footer-imprint {
      font-size: 0.75rem;
      color: #8a97ac;
      margin-top: 8px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 600px) {
      .hero { padding-top: 64px; }
      .hero-buttons { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
      .about-stats { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

/* ===== CASE STUDY (Referenz-Detailseite) ===== */
.case-hero { padding: 140px 0 20px; }
/* Hero-Inhalt auf dieselbe Spaltenbreite wie der Body – kein Versatz von links nach Mitte */
.case-hero > .container { max-width: 820px; }

/* Feature-Reihen (Anwendungsfälle) – ruhig, in einer Spalte, statt breiter Kartenblock */
.case-features { display: grid; gap: 16px; margin: 26px 0 8px; }
.case-feature { display: flex; gap: 16px; align-items: flex-start; background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 22px 24px; transition: border-color 0.3s ease, transform 0.3s ease; }
.case-feature:hover { border-color: rgba(59,130,246,0.15); transform: translateY(-2px); }
.case-feature-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.12)); }
.case-feature-icon svg { width: 22px; height: 22px; }
.case-feature h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.case-feature p { color: #94a3b8; font-size: 0.95rem; line-height: 1.65; margin: 0; }
.breadcrumb { position: static; padding: 0; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #8a97ac; margin-bottom: 22px; }
.breadcrumb a { color: #94a3b8; transition: color 0.2s; }
.breadcrumb a:hover { color: #e2e8f0; }
.case-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.18);
  padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  color: #93c5fd; margin-bottom: 20px;
}
.case-title { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; max-width: 820px; }
.case-title .highlight { background: linear-gradient(135deg,#60a5fa,#a78bfa 50%,#c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.case-lead { font-size: 1.15rem; color: #94a3b8; line-height: 1.7; max-width: 700px; }
.case-hero-img { margin-top: 48px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.case-hero-img img { width: 100%; height: auto; display: block; }
.case-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; margin: 48px 0 8px; }
.case-body { padding: 40px 0 0; }
.case-wrap { max-width: 820px; }
.case-section { padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.case-section:first-child { border-top: none; }
.case-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
.case-section p { color: #94a3b8; line-height: 1.85; margin-bottom: 16px; font-size: 1.02rem; }
.case-section p strong { color: #e2e8f0; font-weight: 600; }
.case-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.case-list li { display: flex; gap: 12px; align-items: flex-start; color: #cbd5e1; line-height: 1.6; }
.case-list svg { width: 20px; height: 20px; flex-shrink: 0; color: #60a5fa; margin-top: 3px; }
.case-figure { margin: 32px 0; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); background: rgba(15,23,42,0.6); }
.case-figure img { width: 100%; height: auto; display: block; }
/* Personen-/Portraitbild in einer Figure: begrenzt und mittig statt riesig */
.case-figure-person img { max-height: 460px; object-fit: cover; object-position: center 28%; }

/* Website-Screenshot im Browser-Fenster-Look */
.site-shot { margin: 32px 0; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.10); background: #0f1729; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.site-shot-bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06); }
.site-shot-dots { display: flex; gap: 6px; flex-shrink: 0; }
.site-shot-dots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.site-shot-url { font-size: 0.8rem; color: #93a2b8; background: rgba(11,17,32,0.6); padding: 5px 14px; border-radius: 8px; flex: 1; }
.site-shot img { width: 100%; display: block; }
.site-shot figcaption { font-size: 0.85rem; color: #8a97ac; padding: 12px 16px; background: rgba(15,23,42,0.6); }
.case-figure figcaption { font-size: 0.85rem; color: #8a97ac; padding: 12px 16px; background: rgba(15,23,42,0.6); }
.case-quote { position: relative; margin: 32px 0; padding: 32px 32px 30px 36px; background: rgba(59,130,246,0.05); border: 1px solid rgba(59,130,246,0.12); border-left: 3px solid #3b82f6; border-radius: 16px; }
.case-quote > p { font-size: 1.2rem; font-style: italic; color: #e8eef7; line-height: 1.6; margin: 0 0 22px; }
.case-quote-author { display: flex; align-items: center; gap: 14px; }
.case-quote-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.case-quote-author .qn { font-weight: 700; color: #f1f5f9; }
.case-quote-author .qr { font-size: 0.85rem; color: #8a97ac; margin-top: 2px; }
.case-cta { margin: 48px 0 24px; padding: 52px 40px; text-align: center; background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.08)); border: 1px solid rgba(59,130,246,0.15); border-radius: 24px; }
.case-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.case-cta p { color: #94a3b8; margin: 0 auto 28px; max-width: 540px; line-height: 1.7; }
.case-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== VORHER/NACHHER-REGLER ===== */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 820;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  user-select: none;
  touch-action: pan-y;
  margin: 8px 0 6px;
  --pos: 50%;
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block; pointer-events: none;
}
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 2px; margin-left: -1px;
  background: #fff; z-index: 3; pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: #0b1120;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.ba-handle svg { width: 20px; height: 20px; }
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; z-index: 4;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; }
.ba-range::-moz-range-thumb { width: 44px; height: 400px; border: none; background: transparent; }
.ba-label {
  position: absolute; top: 12px; z-index: 3;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 7px;
  background: rgba(11,17,32,0.72); color: #e2e8f0; pointer-events: none;
  backdrop-filter: blur(4px);
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* ===== FOKUS (A11y) ===== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .ba-range:focus-visible { outline: 2px solid #818cf8; outline-offset: 2px; border-radius: 4px; }

/* ===== HELLE SEKTION (Wärme & Vertrauen, Marke bleibt) ===== */
.section-light {
  background: #f5f2ec !important;
  border-top: 1px solid #e7e2d8 !important;
  border-bottom: 1px solid #e7e2d8 !important;
}
.section-light .section-label { color: #5b6cf5; }
.section-light .section-title { color: #1b2340; }
.section-light .section-subtitle { color: #6b6559; }
.section-light .about-text h2 { color: #1b2340; }
.section-light .about-text p { color: #4a463f; }
.section-light .stat-card {
  background: #ffffff;
  border: 1px solid #e7e2d8;
  box-shadow: 0 4px 14px rgba(27,35,64,0.05);
}
.section-light .stat-number { background: none; -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: #5b6cf5; color: #5b6cf5; }
.section-light .stat-label { color: #6b6559; }
.section-light .founder { border-top-color: #e7e2d8; }
.section-light .founder-name { color: #1b2340; }
.section-light .founder-role { color: #6b6559; }
.section-light .process-step {
  background: #ffffff;
  border: 1px solid #e7e2d8;
  box-shadow: 0 4px 14px rgba(27,35,64,0.05);
}
.section-light .process-step:hover {
  border-color: rgba(91,108,245,0.35);
  box-shadow: 0 12px 30px rgba(27,35,64,0.10);
}
.section-light .process-step h3 { color: #1b2340; }
.section-light .process-step p { color: #4a463f; }
.section-light .process-step-number {
  background: rgba(91,108,245,0.12);
  color: #5b6cf5;
}
.section-light .tech-stack span {
  background: rgba(91,108,245,0.08);
  border-color: rgba(91,108,245,0.18);
  color: #4348a8;
}

/* ===== HERO-VERTRAUEN (Gesicht + Beweis, oben) ===== */
.hero-trust {
  display: flex; align-items: center; gap: 22px;
  margin-top: 40px; flex-wrap: wrap;
}
.hero-trust-person { display: flex; align-items: center; gap: 12px; }
.hero-trust-person img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; object-position: center 20%;
  border: 2px solid rgba(129,140,248,0.45); flex-shrink: 0;
}
.hero-trust-person span { font-size: 0.85rem; color: #8a97ac; line-height: 1.35; }
.hero-trust-person strong { color: #f1f5f9; font-weight: 600; }
.hero-trust-proof {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 12px;
  background: rgba(129,140,248,0.08); border: 1px solid rgba(129,140,248,0.18);
  font-size: 0.85rem; color: #cbd5e1; transition: border-color 0.2s, background 0.2s;
}
.hero-trust-proof:hover { border-color: rgba(129,140,248,0.45); background: rgba(129,140,248,0.14); }
.hero-trust-proof strong { color: #f1f5f9; font-weight: 600; }
.hero-trust-stars { color: #fbbf24; letter-spacing: 1px; font-size: 0.8rem; flex-shrink: 0; }
@media (max-width: 600px) { .hero-trust { gap: 16px; } .hero-trust-proof { width: 100%; } }

/* ===== HERO-BEWEIS ===== */
.hero-proof {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 32px; padding: 14px 20px 14px 16px;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.09); border-radius: 14px;
  background: rgba(15, 23, 42, 0.6);
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.hero-proof:hover {
  border-color: rgba(129,140,248,0.42);
  background: rgba(129,140,248,0.08);
  transform: translateY(-2px);
}
.hero-proof-check {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74, 222, 128, 0.12); color: #4ade80;
}
.hero-proof-check svg { width: 17px; height: 17px; }
.hero-proof-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero-proof-text strong {
  font-size: 1rem; font-weight: 700; color: #f1f5f9; line-height: 1.25;
}
.hero-proof-text span {
  font-size: 0.82rem; color: #8a97ac; line-height: 1.35;
}
.hero-proof-arrow {
  width: 17px; height: 17px; flex-shrink: 0; color: #818cf8;
  transition: transform 0.2s;
}
.hero-proof:hover .hero-proof-arrow { transform: translateX(4px); }
@media (max-width: 560px) {
  .hero-proof { width: 100%; padding: 14px 16px; }
  .hero-proof-arrow { display: none; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 56px 0 0; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
  background: rgba(255,255,255,0.03); margin-bottom: 14px; overflow: hidden;
}
.faq-item[open] { border-color: rgba(129,140,248,0.28); background: rgba(129,140,248,0.05); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; position: relative;
  font-size: 1.02rem; font-weight: 600; color: #f1f5f9;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%;
  width: 10px; height: 10px; margin-top: -6px;
  border-right: 2px solid #818cf8; border-bottom: 2px solid #818cf8;
  transform: rotate(45deg); transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item summary:hover { color: #ffffff; }
.faq-answer { padding: 0 22px 22px; color: #94a3b8; line-height: 1.7; font-size: 0.95rem; }
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: #818cf8; text-decoration: underline; text-underline-offset: 3px; }

/* ===== SERVICE-CARD LINK ===== */
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.85rem; font-weight: 600;
  color: #818cf8; transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 10px; color: #a5b0fb; }

/* ===== TELEFON IN NAVIGATION ===== */
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; font-weight: 600; color: #e2e8f0;
  transition: color 0.2s; white-space: nowrap;
}
/* Menü früher aufs Hamburger-Menü klappen, damit die Leiste nicht überläuft */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}
.nav-phone svg { width: 16px; height: 16px; color: #60a5fa; }
.nav-phone:hover { color: #fff; }

/* ===== HERVORGEHOBENE LEISTUNGS-KARTE ===== */
.service-card.is-primary {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(180deg, rgba(59,130,246,0.10), rgba(15,23,42,0.6));
}
/* Badge absolut positioniert, damit alle drei Kachel-Überschriften auf gleicher Höhe stehen */
.service-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  color: #fff; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px; margin: 0;
}

/* ===== STICKY MOBILE CTA-LEISTE ===== */
.mobile-cta-bar { display: none; }
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1200;
    gap: 1px;
    background: rgba(11, 17, 32, 0.6);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mcta {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 8px; border-radius: 12px;
    font-weight: 700; font-size: 0.95rem; color: #fff;
  }
  .mcta svg { width: 19px; height: 19px; }
  .mcta-call { background: linear-gradient(135deg, #3b82f6, #7c3aed); margin-right: 8px; }
  .mcta-wa { background: #22c55e; }
  /* Platz schaffen, damit die Leiste nichts verdeckt */
  body { padding-bottom: 68px; }
  footer { padding-bottom: 80px; }
}

/* ===== Barrierefreiheit: Bewegung reduzieren ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
