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

    body{
      font-family:Inter,Arial,sans-serif;
      background:#f8fafc;
      color:#0f172a;
      line-height:1.7;
    }

    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}

    .container{
      width:min(1180px,calc(100% - 40px));
      margin:auto;
    }

/* =========================
   HEADER CLEAN FLOATING
========================= */

header{
  position:sticky;
  top:0;
  z-index:9999;

  background:transparent;

  border:none;

  box-shadow:none;

  transition:.3s ease;
}

/* KEIN WEISSER BALKEN */

header.scrolled{
  background:transparent;

  border:none;

  box-shadow:none;

  backdrop-filter:none;

  -webkit-backdrop-filter:none;
}

/* =========================
   NAVBAR
========================= */

.nav{
  height:110px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:24px;
}

/* =========================
   LOGO
========================= */

.logo{
  display:flex;
  align-items:center;

  flex-shrink:0;

  height:110px;

  overflow:visible;
}

.logo-image{
  width:170px !important;
  height:170px !important;

  max-width:none !important;

  object-fit:contain;

  display:block;

  transform:translateY(8px);

  filter:
    drop-shadow(
      0 0 25px rgba(37,99,235,.22)
    );

  transition:.3s ease;
}

/* =========================
   DESKTOP MENU
========================= */

.desktop-menu{
  display:flex;

  align-items:center;

  gap:14px;
}

/* STANDARD LINKS */

.desktop-menu a{
  color:#0f172a;

  font-weight:900;

  font-size:.95rem;

  text-decoration:none;

  padding:12px 18px;

  border-radius:16px;

  transition:.25s ease;
}

/* HOVER */

.desktop-menu a:hover{
  color:#2563eb;

  background:
    rgba(255,255,255,.65);

  backdrop-filter:blur(12px);
}

/* BEIM SCROLLEN */

header.scrolled .desktop-menu a{
  color:#0f172a;
}

header.scrolled .desktop-menu a:hover{
  color:#2563eb;

  background:
    rgba(255,255,255,.65);
}

/* =========================
   TOP 1000 BUTTON
========================= */

.desktop-menu a[href="/suche"]{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff !important;

  box-shadow:
    0 10px 25px rgba(37,99,235,.18);
}

/* HOVER */

.desktop-menu
a[href="/suche"]:hover{
  color:#ffffff !important;

  transform:translateY(-2px);

  background:
    linear-gradient(
      135deg,
      #1d4ed8,
      #1e40af
    );
}

/* SCROLLED */

header.scrolled
.desktop-menu
a[href="/suche"]{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff !important;
}

/* =========================
   BUTTON
========================= */

.nav-button{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff;

  padding:14px 24px;

  border-radius:16px;

  font-weight:900;

  text-decoration:none;

  box-shadow:
    0 18px 40px rgba(37,99,235,.18);

  transition:.25s ease;
}

/* HOVER */

.nav-button:hover{
  transform:translateY(-2px);

  background:
    linear-gradient(
      135deg,
      #1d4ed8,
      #1e40af
    );
}

/* SCROLLED */

header.scrolled .nav-button{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff;
}

/* =========================
   MOBILE TOGGLE
========================= */

#menu-toggle{
  display:none;
}

.mobile-toggle{
  display:none;

  width:56px;
  height:56px;

  border-radius:16px;

  background:#2563eb;

  color:#ffffff;

  cursor:pointer;

  font-size:1.5rem;

  align-items:center;
  justify-content:center;

  box-shadow:
    0 12px 30px rgba(37,99,235,.22);

  transition:.25s ease;
}

/* SCROLLED */

header.scrolled .mobile-toggle{
  background:#2563eb;

  color:#ffffff;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
  display:none;

  background:#ffffff;

  border-top:
    1px solid #e5e7eb;

  box-shadow:
    0 20px 40px rgba(15,23,42,.08);
}

#menu-toggle:checked ~ .mobile-menu{
  display:block;
}

.mobile-menu .container{
  display:grid;

  gap:12px;

  padding:18px 0 24px;
}

.mobile-menu a{
  display:flex;

  align-items:center;
  justify-content:space-between;

  min-height:56px;

  padding:0 18px;

  border-radius:16px;

  background:#f8fafc;

  color:#0f172a;

  font-weight:900;

  text-decoration:none;

  border:
    1px solid #e5e7eb;
}

.mobile-menu a::after{
  content:"›";

  color:#2563eb;

  font-size:1.4rem;
}

.mobile-menu a:last-child{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff;

  border:none;
}

.mobile-menu a:last-child::after{
  color:#ffffff;
}

/* =========================
   MOBILE
========================= */


@media (max-width:900px){

  .nav{
    height:130px;
  }

  .logo{
    height:130px;
  }

  .logo-image{
    width:220px !important;
    height:auto !important;

    max-width:none !important;
    max-height:none !important;

    object-fit:contain;

    transform:translateY(10px);
  }

  .desktop-menu,
  .nav-button{
    display:none;
  }

  .mobile-toggle{
    display:flex;
  }
}


    .hero{
      position:relative;
      overflow:hidden;
      padding:85px 0 90px;
      background:
        radial-gradient(circle at top right,rgba(37,99,235,.12),transparent 35%),
        linear-gradient(180deg,#fff 0%,#f8fafc 100%);
    }

    .top1000-floating-seal{
      display:flex;
      justify-content:center;
      margin-bottom:42px;
      position:relative;
      z-index:3;
    }

    .top1000-floating-seal img{
      width:180px;
      height:auto;
      aspect-ratio:1 / 1;
      object-fit:contain;
      filter:drop-shadow(0 30px 60px rgba(15,23,42,.18));
      animation:floatingSeal 5s ease-in-out infinite;
    }

    @keyframes floatingSeal{
      0%{transform:translateY(0)}
      50%{transform:translateY(-10px)}
      100%{transform:translateY(0)}
    }

    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:1fr .85fr;
      gap:70px;
      align-items:center;
    }

    .hero-badge{
      display:inline-flex;
      background:#dbeafe;
      color:#1d4ed8;
      border:1px solid #bfdbfe;
      padding:10px 16px;
      border-radius:999px;
      font-size:.84rem;
      font-weight:900;
      margin-bottom:24px;
    }

    .hero h1{
      font-size:clamp(2.8rem,6vw,5rem);
      line-height:.95;
      letter-spacing:-.07em;
      margin-bottom:24px;
      max-width:760px;
    }

    .hero p{
      color:#64748b;
      font-size:1.08rem;
      max-width:720px;
      margin-bottom:34px;
    }

    .hero-points{
      display:grid;
      gap:16px;
    }

    .hero-point{
      background:#fff;
      border:1px solid #e2e8f0;
      border-radius:22px;
      padding:18px 20px;
      font-weight:800;
      box-shadow:0 16px 34px rgba(15,23,42,.04);
    }

    .hero-image-wrap{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .hero-image-wrap::before{
      content:"";
      position:absolute;
      width:480px;
      height:480px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(37,99,235,.12),transparent 72%);
      filter:blur(18px);
    }

    .hero-image{
      position:relative;
      width:100%;
      max-width:430px;
      height:auto;
      aspect-ratio:1 / 1;
      object-fit:contain;
      filter:drop-shadow(0 40px 80px rgba(15,23,42,.18));
      animation:floatingSeal 5s ease-in-out infinite;
    }

    .content{
      padding:40px 0 120px;
    }

    .content-box{
      background:#fff;
      border:1px solid rgba(37,99,235,.08);
      border-radius:42px;
      padding:60px;
      box-shadow:0 30px 90px rgba(15,23,42,.06);
    }

    .content-box h2{
      font-size:clamp(2rem,4vw,3rem);
      line-height:1.05;
      letter-spacing:-.05em;
      margin-bottom:20px;
    }

    .content-box p{
      color:#64748b;
      font-size:1.05rem;
      margin-bottom:24px;
    }

    .info-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:22px;
      margin-top:40px;
    }

    .info-card{
      background:#f8fafc;
      border:1px solid #e2e8f0;
      border-radius:26px;
      padding:28px;
      box-shadow:0 12px 30px rgba(15,23,42,.04);
    }

    .info-card h3{
      margin-bottom:12px;
      font-size:1.15rem;
    }

    .info-card p{
      margin:0;
    }

    .cta{
      margin-top:60px;
      display:flex;
      flex-wrap:wrap;
      gap:16px;
    }

    .cta a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:58px;
      padding:0 28px;
      border-radius:18px;
      font-weight:900;
    }

    .cta-primary{
      background:linear-gradient(135deg,#2563eb,#1d4ed8);
      color:#fff;
      box-shadow:0 22px 50px rgba(37,99,235,.18);
    }

    .cta-secondary{
      background:#fff;
      color:#0f172a;
      border:1px solid #dbe1ea;
    }
/* =====================================================
   FOOTER
   ===================================================== */

.site-footer{
  background:#0f172a;
  color:#e2e8f0;
  padding:70px 0 30px;
}

.footer-top{
  display:grid;
  grid-template-columns:1.25fr 1.75fr;
  gap:56px;
  margin-bottom:42px;
}

.footer-brand{
  color:#ffffff;
  font-size:1.45rem;
  font-weight:900;
  margin-bottom:14px;
  letter-spacing:-0.04em;
}

.footer-brand-block p{
  color:#cbd5e1;
  line-height:1.7;
}

.footer-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

.footer-title{
  color:#ffffff;
  font-size:1rem;
  font-weight:800;
  margin-bottom:18px;
}

.footer-links a{
  display:block;
  margin-bottom:12px;
  color:#cbd5e1;
  transition:.2s ease;
}

.footer-links a:hover{
  color:#ffffff;
  transform:translateX(2px);
}

.footer-award{
  margin-top:26px;
}

.footer-award-title{
  display:block;
  color:#ffffff;
  font-size:.92rem;
  font-weight:800;
  margin-bottom:10px;
}

.footer-award-text{
  font-size:.9rem;
  color:#94a3b8 !important;
  margin-bottom:16px;
}

.footer-award img{
  width:140px;
  height:auto;
  aspect-ratio:1 / 1;
  object-fit:contain;
}

/* Zahlungsmethoden */

.footer-payment{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:28px;
  margin-bottom:28px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.footer-payment-title{
  display:block;
  color:#ffffff;
  font-size:.92rem;
  font-weight:800;
  margin-bottom:8px;
}

.footer-payment-info{
  color:#94a3b8;
  font-size:.9rem;
  line-height:1.6;
}

.footer-payment-logos{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
}

.footer-payment-logos img{
  height:34px;
  width:auto;
  object-fit:contain;
  background:#ffffff;
  border-radius:12px;
  padding:7px 12px;
  box-shadow:0 8px 24px rgba(0,0,0,.16);
  transition:.2s ease;
}

.footer-payment-logos img:hover{
  transform:translateY(-2px) scale(1.03);
}

/* Bottom */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  padding-top:24px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer-seo{
  color:#94a3b8;
  font-size:.88rem;
}

.copyright{
  color:#cbd5e1;
  font-size:.92rem;
  white-space:nowrap;
}

/* Responsive */

@media(max-width:900px){

  .footer-top{
    grid-template-columns:1fr;
  }

  .footer-links{
    grid-template-columns:1fr 1fr;
  }

  .footer-payment{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-payment-logos{
    justify-content:flex-start;
  }

  .footer-bottom{
    align-items:flex-start;
    flex-direction:column;
  }

  .copyright{
    white-space:normal;
  }

}

@media(max-width:640px){

  .site-footer{
    padding:60px 0 28px;
  }

  .footer-links{
    grid-template-columns:1fr;
  }

  .footer-payment-logos{
    gap:10px;
  }

  .footer-payment-logos img{
    height:30px;
    padding:6px 10px;
  }

}
@media(max-width:980px){
  .nav-links,
  .nav-btn{
    display:none;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .hero-grid,
  .info-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding:70px 0;
  }

  .content-box{
    padding:36px;
  }
}

@media(max-width:640px){
  .container{
    width:min(100% - 28px,1180px);
  }

  .nav{
    height:72px;
  }

  .logo-image{
    height:44px;
    max-width:180px;
  }

  .top1000-floating-seal img{
    width:120px;
    height:auto;
    aspect-ratio:1 / 1;
    object-fit:contain;
  }

  .hero h1{
    font-size:2.6rem;
  }

  .hero-image{
    max-width:260px;
    height:auto;
    aspect-ratio:1 / 1;
    object-fit:contain;
  }

  .content-box{
    padding:24px;
    border-radius:28px;
  }

  .cta a{
    width:100%;
  }

  .footer-award img{
    width:120px;
    height:auto;
  }
}
.premium-counter-section{
  padding:90px 0;
}

.premium-counter-box{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  border-radius:34px;
  padding:44px;
  color:#ffffff;
  text-align:center;
  box-shadow:0 30px 80px rgba(15,23,42,.16);
}

.premium-counter-badge{
  display:inline-flex;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:10px 16px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:900;
  margin-bottom:22px;
}

.premium-counter-box h2{
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.08;
  margin-bottom:18px;
  letter-spacing:-.05em;
}

.premium-counter-box p{
  max-width:760px;
  margin:0 auto 34px;
  color:#cbd5e1;
  line-height:1.7;
}

.premium-progress{
  height:16px;
  background:rgba(255,255,255,.08);
  border-radius:999px;
  overflow:hidden;
  margin-bottom:18px;
}

.premium-progress-bar{
  height:100%;
  width:0;
  border-radius:999px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  transition:width .8s ease;
}

.premium-counter-footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#cbd5e1;
  font-size:.95rem;
  font-weight:700;
}

@media(max-width:640px){
  .premium-counter-section{
    padding:70px 0;
  }

  .premium-counter-box{
    padding:34px 24px;
    border-radius:28px;
  }

  .premium-counter-footer{
    flex-direction:column;
  }
}

#fh-search-toggle{
  display:none;
}

.fh-floating-search{
  position:fixed;

  left:50%;
  bottom:24px;

  transform:
    translateX(-50%)
    translateY(20px);

  width:min(860px, calc(100% - 28px));

  z-index:999;

  opacity:0;
  pointer-events:none;

  transition:.25s ease;
}

.fh-floating-search.is-visible{
  opacity:1;
  pointer-events:auto;

  transform:
    translateX(-50%)
    translateY(0);
}

.fh-floating-search form{
  display:flex;
  align-items:center;
  gap:14px;

  background:#ffffff;

  border:1px solid #dbe1ea;

  border-radius:24px;

  padding:10px 12px;

  box-shadow:
    0 14px 38px rgba(15,23,42,.12);

  position:relative;
}

.fh-floating-search form::before{
  content:"";

  position:absolute;

  inset:-2px;

  border-radius:26px;

  border:2px solid rgba(37,99,235,.10);

  pointer-events:none;
}

.fh-search-group{
  display:flex;
  flex-direction:column;

  flex:1;

  min-width:0;
}

.fh-search-label{
  font-size:.78rem;
  font-weight:900;

  color:#2563eb;

  margin-bottom:2px;

  padding-left:2px;
}

.fh-search-group input{
  border:0;
  outline:0;

  background:transparent;

  font-size:1rem;

  color:#111827;

  width:100%;
}

.fh-search-group input::placeholder{
  color:#94a3b8;
}

.fh-divider{
  width:1px;
  align-self:stretch;

  background:#e5e7eb;
}

.fh-floating-search button{
  border:0;

  background:linear-gradient(135deg,#2563eb,#1d4ed8);

  color:#ffffff;

  padding:14px 24px;

  border-radius:18px;

  font-weight:900;

  cursor:pointer;

  white-space:nowrap;

  box-shadow:
    0 10px 24px rgba(37,99,235,.20);
}

/* Mobile Button */

.fh-mobile-search-button{
  display:none;
}

.fh-search-close{
  display:none;
}

/* Mobile */

@media(max-width:700px){

  .fh-floating-search{
    left:auto;
    right:16px;
    bottom:18px;

    width:auto;

    transform:none;
  }

  .fh-mobile-search-button{
    display:flex;

    width:58px;
    height:58px;

    border-radius:999px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#ffffff;

    align-items:center;
    justify-content:center;

    font-size:24px;

    cursor:pointer;

    box-shadow:
      0 16px 38px rgba(37,99,235,.30);
  }

  .fh-floating-search form{
    position:absolute;

    right:0;
    bottom:72px;

    width:min(360px, calc(100vw - 20px));

    flex-direction:column;
    align-items:stretch;

    gap:10px;

    padding:16px;

    border-radius:24px;

    opacity:0;
    pointer-events:none;

    transform:
      translateY(12px)
      scale(.96);

    transition:.22s ease;
  }

  #fh-search-toggle:checked ~ form{
    opacity:1;
    pointer-events:auto;

    transform:
      translateY(0)
      scale(1);
  }

  .fh-divider{
    width:100%;
    height:1px;
  }

  .fh-floating-search button{
    width:100%;
  }

  .fh-search-close{
    display:flex;

    position:absolute;

    top:-10px;
    right:-10px;

    width:32px;
    height:32px;

    border-radius:999px;

    background:#dc2626;
    color:#ffffff;

    align-items:center;
    justify-content:center;

    font-size:16px;
    font-weight:900;

    cursor:pointer;

    box-shadow:
      0 10px 26px rgba(220,38,38,.28);
  }
}


  