/* Hero */
    header.hero{
      position:relative;
      height:100vh;
      min-height:520px;
      display:grid;
      place-items:center;
      overflow:hidden;
      background:#000 url("/images/img-22.webp") center/cover no-repeat;
    }
    header.hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 20% 0%,rgba(45,212,191,.18),transparent 60%),
                  linear-gradient(180deg,rgba(0,0,0,.7),rgba(0,0,0,.96));
    }
    .hero-inner{
      position:relative;
      text-align:center;
      padding:0 6vw;
      z-index:1;
      max-width:880px;
    }
    .kicker{
      letter-spacing:.26em;
      font-weight:800;
      opacity:.9;
      margin:0 0 12px;
      text-transform:uppercase;
      font-size:.78rem;
    }
    .title{
      font-weight:1000;
      line-height:.96;
      margin:0;
      font-size:clamp(34px,7vw,86px);
      text-transform:uppercase;
      letter-spacing:.03em;
      text-shadow:0 0 20px rgba(45,212,191,.8);
    }
    .title span{display:block;}
    .title .split{
      transform:skewX(-6deg);
      border-top:3px solid var(--gold);
      border-bottom:3px solid var(--gold);
      padding:.18em 0;
      margin-top:.18em;
    }
    .tagline{
      margin:1rem auto 0;
      max-width:620px;
      font-weight:500;
      opacity:.9;
      font-size:.98rem;
    }
    .hero-claim{
      margin-top:.65rem;
      font-size:.9rem;
      opacity:.85;
      letter-spacing:.12em;
      text-transform:uppercase;
    }
    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:10px;
      margin-top:1.6rem;
    }
    .cta{
      display:inline-block;
      padding:.95rem 1.6rem;
      border:2px solid var(--gold);
      color:var(--fg);
      font-weight:900;
      letter-spacing:.08em;
      font-size:.82rem;
      text-transform:uppercase;
      border-radius:999px;
      transition:.2s;
    }
    .cta.primary{background:var(--gold);color:#121212;}
    .cta:hover{transform:translateY(-2px);background:var(--gold);color:#121212;}
    .cta.secondary{background:transparent;}

    /* Sections */
    .section{padding:60px 20px;max-width:1200px;margin:0 auto;}
    .section h2{margin-top:0;font-size:1.8rem;}
    .divider{
      height:1px;
      background:linear-gradient(90deg,transparent,var(--gold),transparent);
      margin:24px 0 26px;
    }

    /* Showcase tiles */
    .showcase{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
      gap:16px;
    }
    .tile{
      position:relative;
      border-radius:18px;
      overflow:hidden;
      background:#000;
      border:1px solid var(--stroke);
      cursor:pointer;
      min-height:220px;
    }
    .tile::before{
      content:"";
      display:block;
      padding-top:70%;
    }
    .tile img,
    .tile .overlay{
      position:absolute;
      inset:0;
    }
    .tile img{
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.9;
      transition:transform .5s ease,opacity .3s ease;
    }
    .tile:hover img{transform:scale(1.05);opacity:1;}
    .overlay{
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      padding:16px;
      background:linear-gradient(0deg,rgba(0,0,0,.78),rgba(0,0,0,.2) 45%,transparent);
      color:#fff;
    }
    .overlay h3{margin:0 0 4px;font-size:1.1rem;}
    .overlay p{margin:0;font-size:.9rem;opacity:.9;}
    .badgebar{
      display:flex;
      flex-wrap:wrap;
      gap:6px;
      margin-top:.4rem;
    }
    .badge{
      display:inline-block;
      font-size:.78rem;
      padding:.28rem .6rem;
      border-radius:999px;
      border:1px solid var(--stroke);
      background:rgba(10,10,10,.85);
    }
    .badge.gold{border-color:var(--gold);color:var(--gold);}

    /* Drei Spalten / Story */
    .three-cols{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:18px;
    }
    .panel{
      border:1px solid var(--stroke);
      border-radius:16px;
      padding:18px 18px 16px;
      background:#0e0e0e;
    }
    .panel h3{margin-top:0;font-size:1.1rem;color:var(--gold);}
    .panel p{margin:.3rem 0 .6rem;font-size:.95rem;}
    .panel ul{margin:.3rem 0 0;padding-left:18px;font-size:.92rem;}

    /* Produktteaser */
    .product-teaser-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:18px;
    }
    .product-card{
      border:1px solid var(--stroke);
      border-radius:18px;
      padding:16px 16px 18px;
      background:#050505;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .product-card-header{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .dot{
      width:9px;
      height:9px;
      border-radius:999px;
      background:var(--gold);
    }
    .product-card h3{
      margin:0;
      font-size:1.1rem;
      color:var(--gold);
    }
    .product-card p{margin:0;font-size:.94rem;opacity:.92;}
    .product-card .link-row{
      margin-top:auto;
      display:flex;
      justify-content:flex-start;
      margin-top:10px;
    }
    .ghost-link{
      font-size:.86rem;
      padding:.45rem .9rem;
      border-radius:999px;
      border:1px solid var(--stroke);
      background:#0c0c0c;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .ghost-link span{font-size:.8rem;opacity:.9;}
    .ghost-link:hover{border-color:var(--gold);}

    /* Händler-Teaser */
    .dealer-strip{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      align-items:center;
      margin-top:10px;
    }
    .dealer-chip{
      border-radius:999px;
      border:1px solid var(--stroke);
      padding:8px 12px;
      font-size:.85rem;
      background:#0a0a0a;
      opacity:.9;
    }

    /* Social */
    .social-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:16px;
      margin-top:14px;
    }
    .social-btn{
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid var(--stroke);
      background:#0a0a0a;
      text-decoration:none;
      transition:.2s;
    }
    .social-btn:hover{
      transform:translateY(-2px);
      border-color:var(--gold);
      box-shadow:0 8px 22px rgba(0,0,0,.6);
    }
    .social-icon{
      width:38px;
      height:38px;
      border-radius:999px;
      border:2px solid var(--gold);
      display:grid;
      place-items:center;
      font-weight:800;
      font-size:.8rem;
      background:#000;
    }
    .social-body h3{
      margin:0;
      font-size:1rem;
      color:var(--gold);
    }
    .social-body p{
      margin:.2rem 0 0;
      font-size:.9rem;
      opacity:.9;
    }
