:root {
  --kk-purple: #6f3df4;
  --kk-purple-dark: #4620ad;
  --kk-purple-soft: #f5f1ff;
  --kk-text: #151515;
  --kk-muted: #60606a;
  --kk-border: #e8e1f8;
  --kk-bg: #fbf9ff;
  --kk-red: #c92828;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0 !important;
  background: #ffffff !important;
  color: var(--kk-text) !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

#kk-page {
  width: 100%;
  background: #ffffff;
}

/* HERO NUR AUF HOME */
.kk-home-hero {
  display: none;
}

html.kk-is-home .kk-home-hero {
  display: block;
}

/* HEADER */
.kk-header {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  z-index: 9999;
}

.kk-topbar {
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kk-logo img {
  max-width: 305px;
  height: auto;
  display: block;
}

.kk-top-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kk-phone {
  background: var(--kk-purple);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(111, 61, 244, 0.22);
}

.kk-phone:hover {
  background: var(--kk-purple-dark);
}

.kk-cart {
  font-weight: 700;
  font-style: italic;
  color: #222222;
}

/* NAVIGATION */
.kk-nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 28px 18px;
  text-align: center;
}

.kk-nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.kk-nav li {
  display: inline-block !important;
  position: relative !important;
  margin: 4px 10px !important;
}

.kk-nav a {
  color: #171717 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  font-size: 15px !important;
  padding: 9px 4px !important;
  display: inline-block !important;
}

.kk-nav a:hover {
  color: var(--kk-purple) !important;
}

/* DROPDOWN */
.kk-nav li ul {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 285px !important;
  background: #ffffff !important;
  border: 1px solid var(--kk-border) !important;
  border-radius: 18px !important;
  padding: 10px !important;
  box-shadow: 0 20px 50px rgba(40, 25, 90, 0.16) !important;
  z-index: 99999 !important;
  text-align: left !important;
}

.kk-nav li:hover > ul {
  display: block !important;
}

.kk-nav li ul li {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

.kk-nav li ul li a {
  display: block !important;
  padding: 12px 15px !important;
  border-radius: 12px !important;
  white-space: nowrap !important;
}

.kk-nav li ul li a:hover {
  background: var(--kk-purple-soft) !important;
  color: var(--kk-purple-dark) !important;
}

/* HERO */
.kk-hero {
  background:
    radial-gradient(circle at 86% 28%, rgba(111, 61, 244, 0.11), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--kk-bg) 100%);
  padding: 62px 28px 68px;
}

.kk-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 52px;
  align-items: center;
}

.kk-badge {
  display: inline-block;
  background: var(--kk-purple-soft);
  color: var(--kk-purple-dark);
  border: 1px solid var(--kk-border);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 22px;
}

.kk-hero h1 {
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin: 0 0 24px;
  font-weight: 950;
  color: #111111;
}

.kk-hero p {
  font-size: 22px;
  line-height: 1.5;
  color: var(--kk-muted);
  max-width: 760px;
  margin: 0 0 30px;
}

.kk-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.kk-btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 950;
  text-decoration: none !important;
  font-size: 18px;
}

.kk-btn-primary {
  background: var(--kk-purple);
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(111, 61, 244, 0.22);
}

.kk-btn-light {
  background: #ffffff;
  color: var(--kk-purple-dark) !important;
  border: 2px solid var(--kk-border);
}

.kk-mini-info {
  margin-top: 18px;
  font-weight: 800;
  color: #555555;
}

/* ANGEBOTSKARTE PROFESSIONELL */
.kk-promo-card {
  max-width: 390px;
  width: 100%;
  justify-self: center;
  background: #ffffff;
  border: 2px solid var(--kk-purple);
  border-radius: 28px;
  padding: 28px 26px 24px;
  text-align: left;
  box-shadow: 0 22px 58px rgba(70, 38, 160, 0.14);
  position: relative;
  overflow: hidden;
}

.kk-promo-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -90px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(111,61,244,0.14), rgba(111,61,244,0));
  border-radius: 50%;
}

.kk-offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.kk-promo-label {
  display: inline-block;
  background: var(--kk-purple);
  color: #ffffff;
  padding: 9px 17px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.kk-offer-tag {
  font-size: 12px;
  color: var(--kk-purple-dark);
  background: var(--kk-purple-soft);
  border: 1px solid var(--kk-border);
  padding: 8px 11px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.kk-promo-card h2 {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 6px !important;
  font-size: 31px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.8px !important;
  color: #111111 !important;
  font-weight: 950 !important;
  position: relative;
  z-index: 1;
}

.kk-promo-price {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  font-size: 64px !important;
  line-height: 0.95 !important;
  letter-spacing: -3px !important;
  color: var(--kk-red) !important;
  font-weight: 950 !important;
  position: relative;
  z-index: 1;
}

.kk-promo-price::after {
  content: " günstigster Preis";
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--kk-muted);
  font-weight: 900;
  margin-top: 8px;
}

.kk-promo-card p {
  font-size: 16px !important;
  line-height: 1.45 !important;
  color: #444444 !important;
  margin: 0 0 18px !important;
  max-width: 330px;
  position: relative;
  z-index: 1;
}

.kk-promo-note {
  background: var(--kk-purple-soft) !important;
  color: var(--kk-purple-dark) !important;
  border: 1px solid var(--kk-border) !important;
  border-radius: 16px !important;
  padding: 12px 14px !important;
  font-size: 13.5px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  margin: 0 0 16px !important;
  position: relative;
  z-index: 1;
}

.kk-promo-btn {
  display: block;
  background: var(--kk-purple);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 950;
  text-align: center;
  position: relative;
  z-index: 1;
}

.kk-promo-btn:hover {
  background: var(--kk-purple-dark);
}

/* CONTENT */
.kk-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 55px 28px 70px;
}

.kk-content {
  width: 100%;
}

.kk-sidebar {
  display: none;
}

.kk-content h1 {
  font-size: clamp(36px, 4vw, 54px) !important;
  font-weight: 950 !important;
  color: #111111 !important;
}

.kk-content h2 {
  font-size: clamp(30px, 3.4vw, 46px) !important;
  font-weight: 950 !important;
  color: #111111 !important;
}

.kk-content h3 {
  font-weight: 950 !important;
  color: #111111 !important;
}

.kk-content p {
  font-size: 18px !important;
  line-height: 1.58 !important;
  color: var(--kk-muted) !important;
}

.kk-content img {
  border-radius: 20px !important;
}

/* FOOTER */
.kk-footer {
  background: #111111;
  color: #ffffff;
  padding: 42px 28px;
  text-align: center;
}

.kk-footer a {
  color: #ffffff !important;
}

/* MOBILE */
@media (max-width: 900px) {
  .kk-topbar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px 18px 16px;
  }

  .kk-logo img {
    max-width: 255px;
  }

  .kk-top-actions {
    flex-direction: column;
    width: 100%;
  }

  .kk-phone {
    width: 100%;
    text-align: center;
  }

  .kk-nav {
    padding: 8px 18px 18px;
  }

  .kk-nav li {
    display: block !important;
    margin: 2px 0 !important;
  }

  .kk-nav li ul {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    margin-top: 5px !important;
  }

  .kk-hero {
    padding: 42px 18px 52px;
  }

  .kk-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kk-hero h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .kk-hero p {
    font-size: 18px;
  }

  .kk-promo-card {
    max-width: 100%;
    padding: 24px 20px;
  }

  .kk-promo-card h2 {
    font-size: 28px !important;
  }

  .kk-promo-price {
    font-size: 56px !important;
  }

  .kk-offer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .kk-btn {
    width: 100%;
    text-align: center;
  }

  .kk-main {
    padding: 42px 18px 55px;
  }
}