    /* Inter — self-hosted, no Google data transfer */
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 300 900;
      font-display: swap;
      src: url('fonts/inter-latin-ext.woff2') format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                     U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                     U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 300 900;
      font-display: swap;
      src: url('fonts/inter-latin.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;
    }

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

    :root {
      --bg:       #111111;
      --bg2:      #181818;
      --card:     #1e1e1e;
      --card2:    #242424;
      --border:   #2a2a2a;
      --border2:  #363636;
      --gray:     #636363;
      --muted:    #4b4b4b;
      --light:    #9a9a9a;
      --text:     #c8c8c8;
      --white:    #f0f0f0;
      --fiber:    #c8c8c8;
      --fiber2:   #e0e0e0;
      --fiber3:   #f0f0f0;
      --green:    #10b981;
      --red:      #ef4444;
      --amber:    #f59e0b;
    }

    html { scroll-behavior: smooth; overscroll-behavior: none; touch-action: manipulation; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size:1rem;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overscroll-behavior: none;
    }

    /* ══════════════════════════════════════════════════════
       SCROLLBAR
    ══════════════════════════════════════════════════════ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 99px; }

    /* ══════════════════════════════════════════════════════
       NAV
    ══════════════════════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 300;
      background: rgba(17, 17, 17, 0.88);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .nav-inner {
      max-width:80rem;
      margin:0 auto;
      padding:0 2.5rem;
      height: 4.125rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap:2rem;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap:0.625rem;
      text-decoration: none;
      flex-shrink: 0;
    }

    .nav-brand-name {
      font-size:0.9375rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .nav-brand-dot {
      width: 0.4375rem; height: 0.4375rem;
      border-radius: 50%;
      background: var(--white);
      box-shadow: 0 0 8px rgba(255,255,255,0.5);
      animation: live-dot 2.4s ease-in-out infinite;
    }

    @keyframes live-dot {
      0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(255,255,255,0.5); }
      50%       { opacity: 0.35; box-shadow: 0 0 3px rgba(255,255,255,0.2); }
    }

    .nav-links {
      display: flex;
      gap:2.125rem;
      list-style: none;
      align-items: center;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      color: var(--light);
      text-decoration: none;
      font-size:0.875rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      transition: color 0.18s;
    }

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

    /* Legal links hidden on desktop, visible in mobile menu */
    .nav-legal-links { display: none; }
    @media (max-width:48rem) {
      .nav-legal-links { display: block; }
    }

    .nav-cta {
      background: var(--white) !important;
      color: #111111 !important;
      padding:0.4375rem 1.125rem !important;
      border-radius: 7px;
      font-weight: 700 !important;
      font-size:0.8125rem !important;
      letter-spacing: -0.01em !important;
      transition: background 0.18s, transform 0.18s !important;
    }
    .nav-cta:hover { background: #ffffff !important; transform: translateY(-1px); }

    .nav-right {
      display: flex;
      align-items: center;
      gap:0.875rem;
      flex-shrink: 0;
    }

    .nav-login {
      display: flex;
      align-items: center;
      gap:0.5rem;
      padding:0.5rem 1rem;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.05);
      color: var(--fiber2);
      font-size:0.8125rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .nav-login svg {
      width: 0.875rem; height: 0.875rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .nav-login:hover {
      border-color: rgba(255,255,255,0.30);
      background: rgba(255,255,255,0.10);
      color: var(--white);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap:0.3125rem;
      cursor: pointer;
      background: none;
      border: none;
      padding:0.25rem;
    }
    .hamburger span {
      display: block;
      width: 1.375rem; height: 0.125rem;
      background: var(--light);
      border-radius: 2px;
      transition: 0.25s;
    }

    /* ══════════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height:100vh;
      min-height:100dvh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding:8.75rem 1.5rem 6.25rem;
      overflow: hidden;
      background: var(--bg);
    }

    /* Canvas fiber animation fills the hero */
    #fiber-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 0.85;
    }

    /* Very subtle vignette over canvas */
    .hero-vignette {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(17,17,17,0.7) 100%),
        linear-gradient(to bottom, rgba(17,17,17,0.5) 0%, transparent 20%, transparent 80%, rgba(17,17,17,0.8) 100%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap:0;
    }

    /* Status badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap:0.625rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding:0.4375rem 1.125rem;
      font-size:0.7188rem;
      font-weight: 600;
      color: var(--light);
      letter-spacing: 0.09em;
      text-transform: uppercase;
      margin-bottom: 2.25rem;
    }

    .badge-live {
      width: 0.4375rem; height: 0.4375rem;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 8px var(--green);
      animation: live-dot 2.4s ease-in-out infinite;
      flex-shrink: 0;
    }

    /* Logo */
    .hero-logo-wrap {
      margin-bottom: 2.5rem;
    }

    .hero-logo-wrap img {
      width: min(38.75rem, 88vw);
      height: auto;
      display: block;
      border-radius: 16px;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 32px 80px rgba(0,0,0,0.7), 0 0 60px rgba(255,255,255,0.03);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .hero-logo-wrap img:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 40px 100px rgba(0,0,0,0.7), 0 0 80px rgba(255,255,255,0.05);
    }

    /* Tagline */
    .hero-tagline {
      font-size:clamp(0.75rem, 1.4vw, 0.95rem);
      font-weight: 500;
      color: var(--gray);
      letter-spacing: 0.24em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .hero-divider {
      width: 2.5rem; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      margin:0 auto 1.375rem;
      opacity: 0.8;
    }

    .hero-desc {
      max-width:31.25rem;
      color: var(--light);
      font-size:1.05rem;
      line-height: 1.8;
      margin-bottom: 2.25rem;
      font-weight: 400;
    }

    /* Service pills */
    .hero-services {
      display: flex;
      flex-wrap: wrap;
      gap:0.5rem;
      justify-content: center;
      margin-bottom: 2.25rem;
    }

    .hero-service-pill {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      padding:0.4375rem 1rem;
      font-size:0.75rem;
      font-weight: 600;
      color: var(--light);
      letter-spacing: 0.04em;
      transition: all 0.2s;
      cursor: default;
      opacity: 0;
      animation: pill-fade-in 0.4s ease forwards;
    }

    .hero-service-pill:nth-child(1) { animation-delay: 0.1s; }
    .hero-service-pill:nth-child(2) { animation-delay: 0.2s; }
    .hero-service-pill:nth-child(3) { animation-delay: 0.3s; }
    .hero-service-pill:nth-child(4) { animation-delay: 0.4s; }
    .hero-service-pill:nth-child(5) { animation-delay: 0.5s; }
    .hero-service-pill:nth-child(6) { animation-delay: 0.6s; }

    @keyframes pill-fade-in {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-service-pill:hover {
      border-color: rgba(255,255,255,0.18);
      color: var(--white);
      background: rgba(255,255,255,0.07);
    }

    /* CTA buttons */
    .hero-actions {
      display: flex;
      gap:0.75rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2.75rem;
    }

    /* DACH flags */
    .hero-dach {
      display: flex;
      align-items: center;
      gap:1.75rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .dach-flag {
      display: flex;
      align-items: center;
      gap:0.6875rem;
      font-size:1.125rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
    }

    .dach-flag span { font-size:2rem; line-height: 1; }

    .dach-sep {
      width: 1px; height: 1.75rem;
      background: rgba(255,255,255,0.15);
    }

    /* ══════════════════════════════════════════════════════
       BUTTONS
    ══════════════════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap:0.5rem;
      padding:0.8125rem 1.75rem;
      border-radius: 9px;
      font-size:0.875rem;
      font-weight: 600;
      font-family: inherit;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
      letter-spacing: -0.01em;
    }

    .btn-primary {
      background: var(--white);
      color: #111111;
      box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
    .btn-primary:hover {
      background: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(255,255,255,0.15);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.05);
      color: var(--light);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.2);
      color: var(--white);
      transform: translateY(-1px);
    }

    .btn-full { width: 100%; justify-content: center; }

    /* ══════════════════════════════════════════════════════
       DIVIDER LINE
    ══════════════════════════════════════════════════════ */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
    }

    /* ══════════════════════════════════════════════════════
       STATS
    ══════════════════════════════════════════════════════ */
    .stats {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding:4rem 1.5rem;
    }

    .stats-grid {
      max-width:68.75rem;
      margin:0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap:0;
      text-align: center;
    }

    .stat-item {
      position: relative;
      padding:0 2rem;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 10%;
      height: 80%; width: 1px;
      background: var(--border);
    }

    .stat-number {
      font-size:clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.75rem;
      letter-spacing: -0.04em;
      font-variant-numeric: tabular-nums;
    }

    .stat-label {
      font-size:0.6875rem;
      color: var(--gray);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
    }

    /* ══════════════════════════════════════════════════════
       PARTNERS
    ══════════════════════════════════════════════════════ */
    .partners {
      background: var(--bg);
      padding:5rem 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .partners-inner { max-width:68.75rem; margin:0 auto; }

    .partners-label {
      text-align: center;
      font-size:0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap:0.75rem;
    }

    .partner-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding:1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap:0.875rem;
      transition: border-color 0.2s, background 0.2s;
    }

    .partner-card:hover {
      border-color: var(--border2);
      background: var(--card2);
    }

    .partner-icon {
      width: 2.375rem; height: 2.375rem;
      border-radius: 8px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size:1.0625rem;
      flex-shrink: 0;
    }

    .partner-name {
      font-size:0.8125rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }

    /* ══════════════════════════════════════════════════════
       SECTION BASE
    ══════════════════════════════════════════════════════ */
    section { padding:7rem 1.5rem; }

    .container { max-width:68.75rem; margin:0 auto; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap:0.625rem;
      font-size:0.6875rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 1.125rem; height: 1px;
      background: var(--light);
      opacity: 0.6;
    }

    .section-title {
      font-size:clamp(1.9rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-bottom: 1rem;
      color: var(--white);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .section-title.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .section-subtitle {
      color: var(--light);
      max-width:31.25rem;
      font-size:1rem;
      margin-bottom: 3.5rem;
      line-height: 1.8;
      font-weight: 400;
    }

    /* ══════════════════════════════════════════════════════
       LEISTUNGEN
    ══════════════════════════════════════════════════════ */
    #leistungen { background: var(--bg2); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap:0.125rem;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }

    .service-card {
      background: var(--card);
      padding:2rem 1.75rem;
      transition: background 0.2s;
      position: relative;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(255,255,255,0.25), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .service-card:hover { background: var(--card2); }
    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 2.75rem; height: 2.75rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.125rem;
      font-size:1.1875rem;
      transition: transform 0.2s, background 0.2s;
    }

    .service-card:hover .service-icon {
      transform: scale(1.08);
      background: rgba(255,255,255,0.08);
    }

    .service-card h3 {
      font-size:0.95rem;
      font-weight: 700;
      margin-bottom: 0.625rem;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .service-card p {
      color: var(--light);
      font-size:0.85rem;
      line-height: 1.75;
      font-weight: 400;
    }

    .service-tag {
      display: inline-flex;
      align-items: center;
      gap:0.25rem;
      margin-top: 1rem;
      font-size:0.625rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray);
      opacity: 0.9;
    }

    /* ══════════════════════════════════════════════════════
       ENTSTÖRUNG BANNER
    ══════════════════════════════════════════════════════ */
    .emergency-banner {
      background: linear-gradient(100deg, rgba(239,68,68,0.07) 0%, transparent 60%), var(--bg2);
      border-top: 1px solid rgba(239,68,68,0.14);
      border-bottom: 1px solid rgba(239,68,68,0.14);
      padding:3rem 1.5rem;
    }

    .emergency-inner {
      max-width:68.75rem;
      margin:0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap:2rem;
      flex-wrap: wrap;
    }

    .emergency-left {
      display: flex;
      align-items: center;
      gap:1.25rem;
    }

    .emergency-icon {
      width: 3.25rem; height: 3.25rem;
      border-radius: 50%;
      background: rgba(239,68,68,0.1);
      border: 1.5px solid rgba(239,68,68,0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size:1.375rem;
      flex-shrink: 0;
      animation: emg-pulse 2.8s ease-in-out infinite;
    }

    @keyframes emg-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.3); }
      50%       { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
    }

    .emergency-text strong {
      display: block;
      font-size:1.1rem;
      font-weight: 700;
      margin-bottom: 0.1875rem;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .emergency-text span {
      font-size:0.9rem;
      color: var(--light);
    }

    /* ══════════════════════════════════════════════════════
       VORTEILE
    ══════════════════════════════════════════════════════ */
    #vorteile { background: var(--bg); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap:1rem;
    }

    .feature-item {
      display: flex;
      gap:1rem;
      align-items: flex-start;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding:1.5rem;
      transition: border-color 0.2s, background 0.2s;
    }

    .feature-item:hover {
      border-color: var(--border2);
      background: var(--card2);
    }

    .feature-dot {
      width: 2.375rem; height: 2.375rem;
      min-width:2.375rem;
      border-radius: 9px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size:1rem;
    }

    .feature-item h4 {
      font-size:0.9rem;
      font-weight: 700;
      margin-bottom: 0.375rem;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .feature-item p { color: var(--light); font-size:0.84rem; line-height: 1.7; }

    /* ══════════════════════════════════════════════════════
       ABLAUF
    ══════════════════════════════════════════════════════ */
    #ablauf { background: var(--bg2); }

    .process-steps { display: flex; flex-direction: column; max-width:42.5rem; }

    .process-step {
      display: flex;
      gap:1.5rem;
      align-items: flex-start;
      padding-bottom: 2.5rem;
    }

    .process-step:last-child { padding-bottom: 0; }

    .step-num-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width:2.5rem;
    }

    .step-num {
      width: 2.5rem; height: 2.5rem;
      border-radius: 50%;
      background: var(--card);
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size:0.8125rem;
      flex-shrink: 0;
      color: var(--light);
      letter-spacing: -0.02em;
    }

    .step-line {
      width: 1px; flex: 1;
      background: var(--border);
      margin-top: 0.5rem;
    }

    .process-step:last-child .step-line { display: none; }

    .step-content h3 {
      font-size:0.97rem;
      font-weight: 700;
      margin-bottom: 0.375rem;
      padding-top: 0.5rem;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .step-content p { color: var(--light); font-size:0.88rem; line-height: 1.7; }

    /* ══════════════════════════════════════════════════════
       KONTAKT
    ══════════════════════════════════════════════════════ */
    #kontakt { background: var(--bg); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap:4.5rem;
      align-items: start;
    }

    .contact-info h2 {
      font-size:clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      margin-bottom: 0.75rem;
      color: var(--white);
      letter-spacing: -0.04em;
    }

    .contact-info > p {
      color: var(--light);
      margin-bottom: 2.25rem;
      line-height: 1.8;
      font-size:0.97rem;
    }

    .contact-detail {
      display: flex;
      gap:0.875rem;
      align-items: flex-start;
      margin-bottom: 1rem;
    }

    .contact-detail-icon {
      width: 2.375rem; height: 2.375rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size:0.9375rem;
      flex-shrink: 0;
    }

    .contact-detail-text strong {
      display: block;
      font-size:0.625rem;
      color: var(--muted);
      letter-spacing: 0.09em;
      text-transform: uppercase;
      margin-bottom: 0.125rem;
      font-weight: 600;
    }

    .contact-detail-text span {
      font-size:0.9rem;
      color: var(--text);
    }

    .contact-form {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding:2.25rem;
      display: flex;
      flex-direction: column;
      gap:1rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap:0.875rem;
    }

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

    .form-group label {
      font-size:0.6875rem;
      color: var(--gray);
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding:0.625rem 0.875rem;
      color: var(--text);
      font-size:0.875rem;
      font-family: inherit;
      transition: border-color 0.18s, background 0.18s;
      outline: none;
      resize: vertical;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--muted); }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: rgba(255,255,255,0.30);
      background: rgba(255,255,255,0.03);
    }

    .form-group select option { background: var(--card); }
    .form-group textarea { min-height:6.5625rem; }

    .form-note {
      font-size:0.6875rem;
      color: var(--muted);
      text-align: center;
    }

    /* ══════════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════════ */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding:3.25rem 1.5rem 2.25rem;
    }

    .footer-inner { max-width:68.75rem; margin:0 auto; }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap:1.75rem;
      margin-bottom: 2.25rem;
    }

    .footer-logo img {
      height: 5rem;
      width: auto;
      max-width:22rem;
      object-fit: contain;
      opacity: 0.85;
    }

    .footer-links {
      display: flex;
      gap:2rem;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--gray);
      text-decoration: none;
      font-size:0.9375rem;
      transition: color 0.18s;
    }

    .footer-links a:hover { color: var(--text); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap:0.75rem;
    }

    .footer-copy { color: var(--muted); font-size:0.7812rem; }

    .footer-dach {
      display: flex;
      gap:0.875rem;
      font-size:0.7812rem;
      color: var(--muted);
      align-items: center;
    }

    /* ══════════════════════════════════════════════════════
       NOTIFICATION
    ══════════════════════════════════════════════════════ */
    .notify {
      position: fixed;
      bottom: 1.75rem; right: 1.75rem;
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 10px;
      padding:1rem 1.25rem;
      font-size:0.875rem;
      color: var(--white);
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
      z-index: 999;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s;
      pointer-events: none;
    }

    .notify.show { transform: translateY(0); opacity: 1; }

    /* ══════════════════════════════════════════════════════
       GALLERY / SHOWCASE
    ══════════════════════════════════════════════════════ */
    .gallery-section { background: var(--bg); padding:5rem 1.5rem 7rem; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap:1.25rem;
    }

    .gallery-card {
      border-radius: 16px;
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--border);
      border-bottom: 3px solid var(--card-accent, #e0e0e0);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }

    .gallery-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 64px rgba(0,0,0,0.55);
    }

    .gallery-img-wrap {
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
    }

    .gallery-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .gallery-card:hover .gallery-img-wrap img {
      transform: scale(1.06);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.55) 100%);
      pointer-events: none;
    }

    .gallery-tag {
      position: absolute;
      top: 0.875rem;
      right: 0.875rem;
      background: var(--card-accent, #e0e0e0);
      color: #111;
      font-size:0.625rem;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding:0.3125rem 0.75rem;
      border-radius: 99px;
    }

    .gallery-info {
      padding:1.25rem 1.375rem 1.5rem;
    }

    .gallery-info h3 {
      font-size:1rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 0.4375rem;
    }

    .gallery-info p {
      font-size:0.84rem;
      color: var(--light);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════════════════
       DISCLAIMER
    ══════════════════════════════════════════════════════ */
    .disclaimer-wrap {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding:1.75rem 1.5rem;
    }

    .disclaimer-inner {
      max-width:68.75rem;
      margin:0 auto;
      display: flex;
      align-items: flex-start;
      gap:0.875rem;
    }

    .disclaimer-icon {
      font-size:0.9375rem;
      line-height: 1;
      opacity: 0.5;
      flex-shrink: 0;
      padding-top: 1px;
    }

    .disclaimer-text {
      font-size:0.7188rem;
      color: var(--gray);
      line-height: 1.65;
    }

    .disclaimer-text strong {
      color: var(--light);
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size:0.625rem;
      display: block;
      margin-bottom: 0.25rem;
    }

    @media (max-width:30rem) {
      .disclaimer-wrap { padding:1.375rem 1rem; }
      .disclaimer-text { font-size:0.6875rem; }
    }

    /* ══════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════ */
    @media (max-width:68.75rem) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width:60rem) {
      .features-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid    { grid-template-columns: repeat(2, 1fr); gap:2.5rem 0; }
      .stat-item:nth-child(2)::after { display: none; }
      .partners-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width:48rem) {
      .nav-inner { padding:0 1.25rem; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 4.125rem; left: 0; right: 0;
        background: rgba(17,17,17,0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding:1.75rem 1.5rem;
        gap:1.5rem;
        z-index: 299;
      }
      .nav-links.open a { font-size:1rem; }
      .hamburger { display: flex; }

      section { padding:4.5rem 1.125rem; }
      .hero { padding-top: 6.875rem; }
      .hero-actions { flex-direction: column; align-items: center; }
      .hero-actions .btn { width: 100%; max-width:20rem; justify-content: center; }

      .services-grid { grid-template-columns: 1fr; gap:0.125rem; }
      .features-grid { grid-template-columns: 1fr; }
      .partners-grid { grid-template-columns: 1fr; }
      .gallery-grid  { grid-template-columns: 1fr; }
      .contact-grid  { grid-template-columns: 1fr; gap:3rem; }
      .form-row      { grid-template-columns: 1fr; }

      .footer-top    { flex-direction: column; align-items: center; text-align: center; }
      .footer-logo img { height: 5.5rem; }
      .footer-links  { justify-content: center; gap: 0.75rem 1.75rem; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

      .emergency-inner { flex-direction: column; }

      .stat-item::after { display: none !important; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap:2rem 0; }

      .section-title { font-size:clamp(1.5rem, 6vw, 2rem); }

      .hero-dach { gap:1.125rem; }
      .dach-flag { font-size:0.9375rem; }
      .dach-flag span { font-size:1.625rem; }
    }

    @media (max-width:30rem) {
      .hero-logo-wrap img { width: 92vw; }
      .nav-brand-name { font-size:0.8125rem; }
      .nav-login { padding:0.4375rem 0.75rem; font-size:0.75rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .feature-item { padding:1.125rem; }
      .contact-form { padding:1.25rem; }
      /* Prevent iOS auto-zoom on input focus */
      .form-group input,
      .form-group select,
      .form-group textarea { font-size:1rem; }
      .hero { padding:6.25rem 1rem 5rem; }
      .section-title { font-size:1.5rem; }
      .step-content { padding-bottom: 2rem; }
      /* Gallery single column on phones */
      .gallery-grid { gap:0.875rem; }
      .gallery-section { padding:4rem 1rem 5rem; }
      .gallery-info { padding:1rem 1.125rem 1.125rem; }
      /* Larger tap targets for nav links on mobile menu */
      .nav-links.open a { padding:0.5rem 0; min-height:2.75rem; display: flex; align-items: center; }
      /* Hero DACH on phone */
      .hero-dach { gap:0.75rem; }
      /* Footer on small phones */
      .footer-logo img { height:4.75rem; }
      .footer-links { gap:0.625rem 1.375rem; }
      .footer-links a { font-size:0.875rem; }
    }

    /* ══════════════════════════════════════════════════════
       2. VORTEILE — editorial two-column layout
    ══════════════════════════════════════════════════════ */

    /* ══════════════════════════════════════════════════════
       3. TYPOGRAPHY REFINEMENTS
    ══════════════════════════════════════════════════════ */
    /* Section label — tighter, more refined */
    .section-label {
      font-size: 0.625rem;
      letter-spacing: 0.22em;
    }
    .section-label::before {
      width: 1.75rem;
      opacity: 0.45;
    }

    /* Process step numbers — lighter weight, more elegant */
    .step-num {
      font-size: 0.875rem;
      font-weight: 300;
      font-variant-numeric: tabular-nums;
      color: rgba(255,255,255,0.35);
      border-color: rgba(255,255,255,0.08);
      letter-spacing: 0.04em;
    }
    .step-content h3 {
      font-size: 1rem;
      letter-spacing: -0.025em;
    }

    /* Footer — more breathing room */
    footer {
      padding: 5rem 1.5rem 3rem;
    }
    .footer-copy {
      font-size: 0.75rem;
      letter-spacing: 0.01em;
    }
    .footer-dach {
      letter-spacing: 0.01em;
    }

    /* ══════════════════════════════════════════════════════
       2b. SERVICE CARD — colored top accent border
    ══════════════════════════════════════════════════════ */
    .service-card {
      border-top: 2px solid rgba(255,255,255,0.13);
    }
    .service-card:hover {
      border-top-color: rgba(255,255,255,0.28);
    }

    /* ══════════════════════════════════════════════════════
       3. STATS — glowing numbers + gradient bg
    ══════════════════════════════════════════════════════ */
    .stats {
      background:
        radial-gradient(ellipse 70% 90% at 50% -10%, rgba(255,255,255,0.028) 0%, transparent 60%),
        var(--bg2);
    }
    .stat-number {
      text-shadow: none;
    }

    /* ══════════════════════════════════════════════════════
       4. PARTNER — monogram badge
    ══════════════════════════════════════════════════════ */
    .partner-badge {
      width: 2.375rem; height: 2.375rem;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: 'Inter', sans-serif;
      font-size: 0.625rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
      background: var(--pb-bg, rgba(255,255,255,0.08));
      border: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.2s, background 0.2s;
    }
    .partner-card:hover .partner-badge { transform: scale(1.08); }

    /* ══════════════════════════════════════════════════════
       5. ABLAUF — animated timeline fill
    ══════════════════════════════════════════════════════ */
    .step-line {
      position: relative;
      overflow: hidden;
      background: var(--border);
    }
    .step-line::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 0%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.08));
      border-radius: 1px;
      transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .step-line.filled::after { height: 100%; }

    /* ══════════════════════════════════════════════════════
       6. SECTION GRADIENT BLEEDS
    ══════════════════════════════════════════════════════ */
    #leistungen {
      position: relative;
    }
    #leistungen::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 14rem;
      background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,255,255,0.025) 0%, transparent 100%);
      pointer-events: none;
    }
    #vorteile {
      position: relative;
    }
    #vorteile::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 14rem;
      background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,255,255,0.022) 0%, transparent 100%);
      pointer-events: none;
    }
    #ablauf {
      position: relative;
    }
    #ablauf::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 14rem;
      background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,255,255,0.022) 0%, transparent 100%);
      pointer-events: none;
    }
    #kontakt {
      position: relative;
    }
    #kontakt::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 14rem;
      background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,255,255,0.020) 0%, transparent 100%);
      pointer-events: none;
    }

    /* ══════════════════════════════════════════════════════
       GRAIN TEXTURE — luxury depth overlay
    ══════════════════════════════════════════════════════ */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.038;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
    }

    /* ══════════════════════════════════════════════════════
       HERO LOGO — radial glow behind image
    ══════════════════════════════════════════════════════ */
    .hero-logo-wrap {
      position: relative;
    }
    .hero-logo-wrap::before {
      content: '';
      position: absolute;
      inset: -20%;
      background: radial-gradient(ellipse 70% 50% at 50% 56%, rgba(255,255,255,0.07) 0%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    /* ══════════════════════════════════════════════════════
       TYPOGRAPHY — stronger hierarchy
    ══════════════════════════════════════════════════════ */
    .section-title {
      font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    }
    /* Restore mobile overrides that the above would otherwise override */
    @media (max-width:48rem) {
      .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    }
    @media (max-width:30rem) {
      .section-title { font-size: 1.65rem; }
    }
    .section-subtitle {
      font-weight: 300;
    }

    /* ══════════════════════════════════════════════════════
       SERVICE CARDS — glass-morphism hover lift
    ══════════════════════════════════════════════════════ */
    .service-card {
      transition: background 0.25s, box-shadow 0.25s, border-top-color 0.25s;
    }
    .service-card:hover {
      background: rgba(255,255,255,0.055);
      box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
    }

    /* ══════════════════════════════════════════════════════
       PARTNER CARDS — brand-color glow on hover
    ══════════════════════════════════════════════════════ */
    .partner-card:hover {
      border-color: color-mix(in srgb, var(--pb-bg, rgba(255,255,255,0.08)) 50%, transparent);
      box-shadow: 0 0 28px color-mix(in srgb, var(--pb-bg, #ffffff) 18%, transparent),
                  inset 0 1px 0 color-mix(in srgb, var(--pb-bg, #ffffff) 22%, transparent);
    }

    /* ══════════════════════════════════════════════════════
       SCROLL FADE — section labels & subtitles
    ══════════════════════════════════════════════════════ */
    .scroll-fade {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .scroll-fade.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* Screen-reader only — visually hidden but accessible to SEO/assistive tech */
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    /* Reduced motion — respect user preference */
    @media (prefers-reduced-motion: reduce) {
      * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
      #fiber-canvas { display: none; }
      .section-title { opacity: 1 !important; transform: none !important; }
      .scroll-fade   { opacity: 1 !important; transform: none !important; }
    }

    /* ── Cookie Banner ─────────────────────────────────── */
    .cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9999;
      background: #1c1c1e;
      border-top: 1px solid rgba(99,102,241,0.35);
      padding: 14px 24px;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .cookie-banner.show { transform: translateY(0); }
    .cookie-inner {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .cookie-text {
      flex: 1;
      font-size: 13px;
      color: #a0a0a0;
      margin: 0;
      line-height: 1.55;
      min-width: 240px;
    }
    .cookie-text strong { color: #d0d0d0; }
    .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-btn {
      padding: 8px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: opacity 0.2s, transform 0.15s;
    }
    .cookie-btn:hover { opacity: 0.85; transform: translateY(-1px); }
    .cookie-accept { background: #6366f1; color: #fff; }
    .cookie-decline {
      background: transparent;
      color: #888;
      border: 1px solid rgba(255,255,255,0.12) !important;
    }

    /* ── WhatsApp Floating Button ──────────────────────── */
    .wa-btn {
      position: fixed;
      bottom: 28px;
      right: 24px;
      z-index: 9998;
      display: flex;
      align-items: center;
      gap: 8px;
      background: #25d366;
      color: #fff;
      text-decoration: none;
      padding: 12px 20px 12px 16px;
      border-radius: 50px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 4px 18px rgba(37,211,102,0.38);
      opacity: 0;
      transform: translateY(20px) scale(0.9);
      animation: waFadeIn 0.5s ease 1.4s forwards;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-btn:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    }
    @keyframes waFadeIn {
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @media (max-width: 520px) {
      .wa-btn .wa-label { display: none; }
      .wa-btn { padding: 14px; border-radius: 50%; }
    }
