

*{
  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{
  padding:120px 0 90px;

  background:
    radial-gradient(circle at top right,rgba(37,99,235,.12),transparent 35%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}

.hero .container{
  max-width:920px;
}

.hero-badge,
.section-badge{
  display:inline-flex;

  background:#dbeafe;

  color:#1d4ed8;

  border:1px solid #bfdbfe;

  padding:10px 16px;

  border-radius:999px;

  font-size:.82rem;

  font-weight:900;

  margin-bottom:24px;
}

.hero h1,
.section-head h2,
.features-content h2,
.profile-content h2,
.target-box h2{
  font-size:clamp(2.6rem,6vw,5rem);

  line-height:.95;

  letter-spacing:-.06em;

  margin-bottom:24px;
}

.hero p,
.section-head p,
.features-content p,
.profile-content p,
.target-box p{
  color:#64748b;

  font-size:1.05rem;

  line-height:1.8;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:36px;
}

.hero-button-primary,
.hero-button-secondary{
  display:inline-flex;

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

  min-height:58px;

  padding:0 28px;

  border-radius:18px;

  font-weight:900;
}

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

  color:#ffffff;

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

.hero-button-secondary{
  background:#ffffff;
  border:1px solid #dbe1ea;
}

.business-benefits,
.features-section,
.profile-section,
.target-section{
  padding:100px 0;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 60px;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}

.benefit-card{
  background:#ffffff;

  border-radius:28px;

  padding:34px;

  border:1px solid rgba(37,99,235,.08);

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

.benefit-icon{
  font-size:2rem;
  margin-bottom:18px;
}

.benefit-card h3{
  margin-bottom:14px;
  font-size:1.2rem;
}

.benefit-card p{
  color:#64748b;
}

.features-box{
  background:#ffffff;

  border-radius:34px;

  padding:50px;

  box-shadow:
    0 30px 80px rgba(15,23,42,.06);
}

.feature-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
  margin-top:40px;
}

.feature-item{
  background:#f8fafc;

  border-radius:18px;

  padding:18px 20px;

  font-weight:700;

  border:1px solid #e2e8f0;
}

.profile-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:60px;
  align-items:center;
}

.profile-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.profile-tags span{
  background:#eff6ff;
  color:#1d4ed8;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  font-size:.9rem;
}

.profile-preview{
  background:
    linear-gradient(
      135deg,
      #0f172a,
      #1e293b
    );

  border-radius:34px;

  padding:26px;

  box-shadow:
    0 30px 80px rgba(15,23,42,.18);
}

.preview-header{
  color:#ffffff;
  font-weight:900;
  margin-bottom:24px;
}

.preview-body{
  background:#ffffff;
  border-radius:24px;
  padding:24px;
}

.preview-line{
  height:14px;
  border-radius:999px;
  background:#e2e8f0;
  margin-bottom:14px;
}

.preview-line.large{
  width:100%;
}

.preview-line{
  width:85%;
}

.preview-line.short{
  width:50%;
}

.preview-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:24px;
}

.preview-gallery div{
  background:#dbeafe;
  border-radius:18px;
  aspect-ratio:1 / 1;
}

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

  color:#ffffff;

  border-radius:36px;

  padding:60px;

  text-align:center;

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

.target-box h2,
.target-box p{
  color:#ffffff;
}

.target-box .section-badge{
  background:rgba(255,255,255,.14);
  color:#ffffff;
  border-color:rgba(255,255,255,.18);
}

.target-box .hero-button-primary{
  background:#ffffff;
  color:#2563eb;
  margin-top:34px;
}
/* =====================================================
   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;
  }

}
/* MOBILE */

@media(max-width:900px){

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

}

@media(max-width:640px){

  .hero,
  .business-benefits,
  .features-section,
  .profile-section,
  .target-section{
    padding:80px 0;
  }

  .features-box,
  .target-box{
    padding:34px 24px;
    border-radius:28px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-button-primary,
  .hero-button-secondary{
    width:100%;
  }

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

}

