  :root{
      --bg:#0b1220;
      --bg2:#0f1a33;
      --card:#111c38;
      --text:#e8eefc;
      --muted:#b9c6e6;
      --line:rgba(255,255,255,.12);
      --primary:#af1421; /* rot */
      --secondary:#2b7fff; /* blau */
      --cta:#22c55e; /* whatsapp grün */
      --shadow: 0 18px 55px rgba(0,0,0,.35);
      --radius: 18px;
      --max: 1120px;
      --focus: 0 0 0 4px rgba(43,127,255,.35);
      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      background:
        radial-gradient(900px 500px at 10% 10%, rgba(43,127,255,.22), transparent 55%),
        radial-gradient(900px 500px at 90% 0%, rgba(225,29,46,.20), transparent 55%),
        linear-gradient(180deg, var(--bg), #050913 70%);
      color:var(--text);
    }
    html,
    body{
    background-color: #050913;
    }
    a{color:inherit}
    .container{max-width:var(--max); margin:0 auto; padding:0 20px}
    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:#fff; color:#000; border-radius:10px; z-index:9999;
    }

    /* Header */
    header {
    position: sticky;
    top: 0;
    z-index: 50;

    padding-top: env(safe-area-inset-top);

    background: linear-gradient(
    90deg,
    rgba(24, 47, 87, 0.95) 0%,
    rgba(12, 25, 49, 0.95) 45%,
    rgba(5,9,19,0.98) 100%
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:150px;
      text-decoration:none;
    }
    .brand img{
      width:160px; height:auto; display:block;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
    }
    nav ul{
      list-style:none; margin:0; padding:0;
      display:flex; gap:18px; align-items:center;
    }
    nav a{
      text-decoration:none; color:var(--muted);
      padding:10px 10px; border-radius:12px;
    }
    nav a:hover, nav a:focus-visible{
      color:var(--text);
      background:rgba(255,255,255,.06);
      outline:none;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:12px 14px; border-radius:14px;
      font-weight:700; text-decoration:none;
      border:1px solid transparent;
      transition: transform .12s ease, background .12s ease, border-color .12s ease;
      white-space:nowrap;
    }
    .btn:focus-visible{outline:none; box-shadow:var(--focus)}
    .btn:hover{transform: translateY(-1px)}
    .btn-primary{
      background: linear-gradient(135deg, rgba(83, 18, 24, 0.95), rgba(179, 4, 19, 0.87));
      color:#fff;
      box-shadow: 0 14px 40px rgba(225,29,46,.25);
    }
    .btn-ghost{
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.10);
      color: var(--text);
    }
    .btn-whatsapp{
      background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(34,197,94,.70));
      color:#06210f;
      box-shadow: 0 14px 40px rgba(34,197,94,.20);
    }

    /* Hero */
    .hero{padding:56px 0 24px}
    .hero-grid{
      display:grid; grid-template-columns: 1.25fr .75fr; gap:26px; align-items:center;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px; border:1px solid var(--line);
      border-radius:999px; color:var(--muted);
      background: rgba(255,255,255,.05);
      width:fit-content;
      margin-bottom:14px;
    }
    h1{
      font-size: clamp(32px, 4.2vw, 54px);
      line-height:1.05; margin:0 0 14px;
      letter-spacing:-.02em;
    }
    .lead{
      font-size: clamp(16px, 1.4vw, 18px);
      color: var(--muted);
      line-height:1.65;
      margin:0 0 18px;
      max-width: 62ch;
    }
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
    .hero-card{
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      border:1px solid var(--line);
      border-radius: var(--radius);
      padding:18px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-badges{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px; margin-top:10px;
    }
    .badge{
      padding:12px 12px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      border-radius: 14px;
      color: var(--muted);
      font-weight:600;
    }
    .badge b{color:var(--text); font-weight:800}

    /* Sections */
    /* Modal */
  .modal{
    position:fixed; inset:0;
    display:none;
    align-items:center; justify-content:center;
    padding:18px;
    background: rgba(0,0,0,.62);
    z-index: 9999;
  }
  .modal[aria-hidden="false"]{display:flex}
  .modal-dialog{
    width:min(980px, 100%);
    border-radius: var(--radius);
    border:1px solid var(--line);
    background: linear-gradient(180deg, rgba(17,28,56,.96), rgba(17,28,56,.82));
    box-shadow: var(--shadow);
    overflow:hidden;
  }
  .modal-head{
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    padding:14px 16px;
    border-bottom:1px solid var(--line);
    background: rgba(255,255,255,.04);
  }
  .modal-title{
    margin:0; font-size:18px;
  }
  .modal-close{
    background: rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color: var(--text);
    border-radius: 12px;
    padding:10px 12px;
    font-weight:800;
    cursor:pointer;
  }
  .modal-close:focus-visible{outline:none; box-shadow:var(--focus)}
  .modal-body{padding:16px}
  .gallery{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:12px;
  }
  .gallery a{
    display:block;
    border-radius: 14px;
    border:1px solid rgba(255,255,255,.12);
    overflow:hidden;
    background: rgba(255,255,255,.04);
  }
  .gallery img{
    width:100%; height:170px; object-fit:cover; display:block;
    transform: scale(1);
    transition: transform .18s ease;
  }
  .gallery a:hover img{transform: scale(1.03)}
  .modal-hint{
    margin:12px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height:1.5;
  }

  @media (max-width: 860px){
    .gallery{grid-template-columns: repeat(2, minmax(0,1fr))}
    .gallery img{height:160px}
  }
  @media (max-width: 520px){
    .gallery{grid-template-columns: 1fr}
    .gallery img{height:180px}
    h1{
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .lead{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .kicker{
    font-size: 13px;
    padding: 8px 10px;
    margin-bottom: 14px;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .hero-actions{
    gap: 10px;
    margin-top: 8px;
  }
  }

  /* Button inside cards */
  .card-actions{
    margin-top:auto;
    padding-top: 12px;
    display:flex; gap:10px; flex-wrap:wrap;
  }
  .btn-small{
    padding:10px 12px;
    border-radius: 14px;
    font-weight:800;
    font-size: 14px;
  }
    section{padding:54px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:22px;
    }
    h2{
      margin:0;
      font-size: clamp(22px, 2.3vw, 30px);
      letter-spacing:-.01em;
    }
    .sub{
      margin:6px 0 0;
      color: var(--muted);
      max-width: 70ch;
      line-height:1.6;
    }
    .divider{
      height:1px; background: var(--line);
      margin: 14px 0 0;
    }

    /* Services */
    .grid{
      display:grid; gap:16px;
      grid-template-columns: repeat(4, minmax(0,1fr));
      align-items: stretch;
    }
    .card{
      display: flex;
      flex-direction: column;
      height: 100%;
      background: linear-gradient(180deg, rgba(17,28,56,.92), rgba(17,28,56,.65));
      border:1px solid var(--line);
      border-radius: var(--radius);
      padding:18px;
      box-shadow: 0 12px 40px rgba(0,0,0,.25);
      min-height: 220px;
    }
    .card h3{margin:0 0 10px; font-size:18px}
    .card p{margin:0; color:var(--muted); line-height:1.65}

    /* WhatsApp stripe */
    .cta-strip{
      margin-top:18px;
      padding:18px;
      border-radius: var(--radius);
      border:1px solid rgba(34,197,94,.25);
      background: linear-gradient(90deg, rgba(34,197,94,.16), rgba(255,255,255,.03));
      display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
    }
    .cta-strip p{margin:0; color:var(--muted); line-height:1.6}
    .cta-strip p b{color:var(--text)}

    /* Why */
    .why{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px;
    }
    .why .card{min-height:auto}
    .icon{
      width:42px; height:42px; border-radius:14px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      margin-bottom:10px;
      font-weight:900;
      color: var(--text);
    }

    /* Contact */
    .contact-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:16px;
      align-items:start;
    }
    .contact-box{
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
      border:1px solid var(--line);
      border-radius: var(--radius);
      padding:18px;
      box-shadow: var(--shadow);
    }
    .contact-list{
      margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px;
      color: var(--muted);
    }
    .contact-list a{color:var(--text); text-decoration:none}
    .contact-list a:hover{text-decoration:underline}
    .form{
      display:grid; gap:12px; margin-top:10px;
    }
    label{font-weight:700; font-size:13px; color:var(--muted)}
    input, textarea{
      width:100%;
      padding:12px 12px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(5,9,19,.35);
      color: var(--text);
      outline:none;
    }
    input:focus, textarea:focus{box-shadow:var(--focus); border-color:rgba(43,127,255,.6)}
    textarea{min-height:110px; resize:vertical}
    .hint{
      color: var(--muted);
      font-size: 12px;
      line-height:1.5;
      margin:10px 0 0;
    }

    footer{
      padding:28px 0 34px;
      border-top:1px solid var(--line);
      color: var(--muted);
      font-size:14px;
    }
    .foot{
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .foot a{color:var(--muted); text-decoration:none}
    .foot a:hover{text-decoration:underline}

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      nav ul{display:none}
      .grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .why{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .brand img{width:140px}
    }
    @media (max-width: 520px){
      .grid{grid-template-columns: 1fr}
      .btn{width:100%}
      .hero-actions{flex-direction:column; align-items:stretch}
      .cta-strip{align-items:stretch}
    }