    :root{
      --bg:#0b0f14;
      --card:#111826;
      --card2:#0f172a;
      --text:#e5e7eb;
      --muted:#a3aab6;
      --brand:#f59e0b;
      --brand2:#22c55e;
      --line:rgba(255,255,255,.10);
      --line2:rgba(255,255,255,.14);
      --shadow: 0 18px 40px rgba(0,0,0,.35);
      --shadow2: 0 24px 70px rgba(0,0,0,.42);
      --radius: 18px;
      --max: 1120px;
      --focus: 0 0 0 3px rgba(245,158,11,.28), 0 0 0 6px rgba(34,197,94,.16);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background:
        radial-gradient(1200px 600px at 20% -20%, rgba(245,158,11,.25), transparent 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(34,197,94,.18), transparent 55%),
        var(--bg);
      color:var(--text);
      line-height:1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img{max-width:100%; height:auto; display:block}
    a{color:inherit; text-decoration:none}
    a:hover{opacity:.95}
    :focus-visible{outline:none; box-shadow: var(--focus); border-radius: 14px}
    .wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px; border:1px solid var(--line); border-radius:999px;
      background:rgba(255,255,255,.04);
      color:var(--muted);
      font-size:13px;
      font-weight:800;
      letter-spacing:.2px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:12px 16px;
      border-radius:14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.06);
      color:var(--text);
      font-weight:900;
      letter-spacing:.2px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      min-height:44px;
      will-change: transform;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 14px 32px rgba(0,0,0,.28); border-color: var(--line2)}
    .btn:active{transform:translateY(0)}
    .btn.primary{
      background:linear-gradient(135deg, rgba(245,158,11,.98), rgba(245,158,11,.68));
      border-color:rgba(245,158,11,.38);
      color:#111;
      box-shadow: 0 18px 45px rgba(245,158,11,.12);
    }
    .btn.secondary{
      background:linear-gradient(135deg, rgba(34,197,94,.98), rgba(34,197,94,.62));
      border-color:rgba(34,197,94,.38);
      color:#07110b;
      box-shadow: 0 18px 45px rgba(34,197,94,.10);
    }
    .btn.ghost{background:transparent}
    .grid{display:grid; gap:16px}
    .card{
      background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .card.soft{box-shadow: 0 14px 32px rgba(0,0,0,.24)}
    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background:rgba(11,15,20,.62);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 220px;
    }
    .brand img{height:40px; width:auto}
    .navlinks{
      display:flex; flex-wrap:wrap; gap:10px;
      justify-content:center;
    }
    .navlinks a{
      padding:10px 12px;
      border-radius:12px;
      border:1px solid transparent;
      color:var(--muted);
      font-weight:900;
      font-size:14px;
    }
    .navlinks a:hover{
      border-color:rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
      color:var(--text);
    }
    .navcta{display:flex; gap:10px; align-items:center}
    .mobileToggle{
      display:none;
      border:1px solid var(--line);
      background:rgba(255,255,255,.05);
      border-radius:12px;
      padding:10px 12px;
      color:var(--text);
      font-weight:1000;
      min-height:44px;
    }

    .hero{padding:26px 0 18px}
    .heroTop{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:16px;
      align-items:stretch;
    }
    .heroMain{
      position:relative;
      min-height:440px;
      border-radius:calc(var(--radius) + 8px);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.10);
      box-shadow:var(--shadow2);
      transform: translateZ(0);
    }
    .heroSlide{
      position:absolute; inset:0;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:center;
      padding:24px;
      background-size:cover;
      background-position:center;
    }
    .heroOverlay{
      position:absolute; inset:0;
      background:
        radial-gradient(900px 380px at 20% 20%, rgba(245,158,11,.18), transparent 60%),
        linear-gradient(90deg, rgba(11,15,20,.90), rgba(11,15,20,.35), rgba(11,15,20,.82));
    }
    .heroInner{position:relative; z-index:2}
    .kicker{color:var(--muted); font-weight:1000; letter-spacing:.35px; text-transform:uppercase; font-size:12px}
    h1{margin:10px 0 10px; font-size:40px; line-height:1.12; letter-spacing:-.3px}
    .lead{color:rgba(229,231,235,.92); max-width:62ch}
    .heroActions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
    .heroArt{position:relative; z-index:2; display:flex; align-items:center; justify-content:center}
    .heroArt img{max-height:290px; filter: drop-shadow(0 18px 48px rgba(0,0,0,.55))}
    .heroSide{display:flex; flex-direction:column; gap:14px}
    .sideCard{padding:16px}
    .sideCard h3{margin:2px 0 8px; font-size:16px}
    .sideCard p{margin:0; color:var(--muted); font-size:14px}

    .stats{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .stat{
      padding:14px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.09);
      border-radius:16px;
      text-align:center;
    }
    .stat .num{font-size:22px; font-weight:1000}
    .stat .lbl{color:var(--muted); font-size:13px; font-weight:1000}

    section{padding:44px 0}
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:16px;
    }
    .sectionHead h2{margin:0; font-size:26px; letter-spacing:-.2px}
    .sectionHead p{margin:0; color:var(--muted); max-width:60ch}

    .introBox{
      padding:22px;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:start;
    }
    .introBox .text p{margin-top:0; color:rgba(229,231,235,.92)}
    .introBox .logoBlock{
      display:flex; flex-direction:column; gap:12px; align-items:center; justify-content:center;
      padding:16px;
      background:rgba(255,255,255,.03);
      border:1px dashed rgba(255,255,255,.12);
      border-radius:16px;
      text-align:center;
    }
    .introBox .logoBlock img{max-width:260px}

    .services{grid-template-columns: repeat(3, 1fr)}
    .service{padding:18px}
    .service h3{margin:6px 0 10px; font-size:18px}
    .service p{margin:0; color:var(--muted); font-size:14px}

    .refGrid{grid-template-columns: repeat(3, 1fr)}
    .refItem{
      position:relative;
      overflow:hidden;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.10);
      background:#0d1420;
      min-height:240px;
      box-shadow:var(--shadow);
      transform: translateZ(0);
    }
    .refItem img{width:100%; height:240px; object-fit:cover; opacity:.94}
    .refOverlay{
      position:absolute; inset:0;
      background:linear-gradient(0deg, rgba(11,15,20,.94), rgba(11,15,20,.10));
      display:flex; align-items:flex-end;
      padding:16px;
    }
    .refOverlay h3{margin:0; font-size:16px}
    .refOverlay span{display:block; color:var(--muted); font-weight:1000; font-size:13px; margin-top:4px}

    .ctaBar{
      padding:18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .ctaBar h3{margin:0; font-size:18px}

    .steps{grid-template-columns: repeat(5, 1fr)}
    .step{
      padding:14px;
      text-align:center;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.09);
      border-radius:16px;
    }
    .step .n{font-weight:1000; color:var(--brand); font-size:14px}
    .step .t{font-weight:1000}

    .team{grid-template-columns: repeat(3, 1fr)}
    .member img{width:100%; height:260px; object-fit:cover}
    .member .info{padding:14px}
    .member .info h4{margin:0 0 4px; font-size:16px}
    .member .info p{margin:0; color:var(--muted); font-size:13px}

    .aboutGrid{grid-template-columns: 1fr 1fr; align-items:start}
    .quote{padding:18px}
    .quote p{margin:0; color:rgba(229,231,235,.92)}
    .quote .by{margin-top:10px; color:var(--muted); font-weight:1000}
    .bars{padding:18px}
    .bar{margin:10px 0 14px}
    .bar .top{display:flex; justify-content:space-between; color:var(--muted); font-weight:1000; font-size:13px}
    .rail{height:10px; background:rgba(255,255,255,.07); border-radius:999px; overflow:hidden; border:1px solid rgba(255,255,255,.10)}
    .fill{height:100%; background:linear-gradient(90deg, rgba(245,158,11,.95), rgba(34,197,94,.85))}


    .logos{
      grid-template-columns: repeat(4, 1fr);
      align-items:stretch;
    }
    .logoCell{
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      border-radius:16px;
      min-height:110px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .logoCell:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(0,0,0,.28);
      border-color: rgba(255,255,255,.14);
    }
    .logoCell img{
      max-height:78px;
      width:auto;
      max-width: 100%;
      object-fit:contain;
      filter: drop-shadow(0 12px 28px rgba(0,0,0,.35));
    }
    .logoCell.wide{
      grid-column: 1 / -1; /* bleibt voll breit */
      min-height:130px;
    }
    .logoCell.wide img{
      max-height:86px;
    }

    .contactGrid{grid-template-columns: 1fr 1.35fr; align-items:start}
    .contactBox{padding:18px}
    .contactBox h3{margin:0 0 8px}
    .contactBox p{margin:0 0 10px; color:var(--muted)}
    .form{padding:18px; display:grid; gap:12px}
    .row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    input, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.05);
      color:var(--text);
      outline:none;
      font-weight:700;
    }
    textarea{min-height:140px; resize:vertical}
    input::placeholder, textarea::placeholder{color:rgba(163,170,182,.85)}

    footer{
      border-top:1px solid rgba(255,255,255,.10);
      padding:28px 0;
      color:var(--muted);
    }
    .foot{
      display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .backTop{
      position:fixed; right:16px; bottom:16px;
      width:46px; height:46px; border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
      display:flex; align-items:center; justify-content:center;
      box-shadow:var(--shadow);
      opacity:0; pointer-events:none; transform:translateY(8px);
      transition:.18s ease;
      font-weight:1000;
    }
    .backTop.show{opacity:1; pointer-events:auto; transform:none}

    /* Utility */
    .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;
    }

    /* Responsive */
    @media (max-width: 980px){
      .heroTop{grid-template-columns:1fr}
      .heroSlide{grid-template-columns:1fr}
      .heroArt{display:none}
      .stats{grid-template-columns:1fr}
      .introBox{grid-template-columns:1fr}
      .services{grid-template-columns:1fr}
      .refGrid{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr 1fr}
      .team{grid-template-columns:1fr}
      .aboutGrid{grid-template-columns:1fr}
      .logos{grid-template-columns: 1fr 1fr}
      .contactGrid{grid-template-columns:1fr}
      .row2{grid-template-columns:1fr}
      .navlinks{display:none}
      .mobileToggle{display:inline-flex}
      .navcta{min-width:auto}
      .brand{min-width:auto}
    }
    @media (max-width: 420px){
      h1{font-size:30px}
      .steps{grid-template-columns:1fr}
      .logos{grid-template-columns: 1fr}
    }

    /* Reduce Motion */
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .btn, .logoCell{transition:none}
      .btn:hover, .logoCell:hover{transform:none}
    }
	
	
.heroTop > :not(.heroMain):not(.heroSide){
  display:none !important;
}

.logos > :not(.logoCell),
.services > :not(.service),
.refGrid > :not(.refItem),
.team > :not(.member),
.aboutGrid > :not(.quote):not(.bars),
.contactGrid > :not(.contactBox):not(.card){
  display:none !important;
}