/*
DreyCommerce Clean Header 1.6.3
Nur neue Header-Klassen: dch-*
Keine drey-site-header / drey-hf-header / drey-header Optik-Fallen.
*/

.drey-layout-header {
  margin: 0;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 9999;
}

.dch-header,
.dch-header * {
  box-sizing: border-box;
}

.dch-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.dch-wrap {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.dch-topbar {
  background: #0b1020;
  color: #d7deea;
  font-size: 13px;
  font-weight: 800;
}

.dch-topbar .dch-wrap {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dch-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #8cf2aa;
  box-shadow: 0 0 18px rgba(140, 242, 170, .7);
}

.dch-mainbar {
  background: rgba(255, 255, 255, .96);
}

.dch-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}

.dch-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #111827;
  text-decoration: none;
}

.dch-logo:hover {
  color: #111827;
  text-decoration: none;
}

.dch-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2fb45a, #8cf2aa);
  color: #06130a;
  font-weight: 950;
  letter-spacing: -.04em;
  box-shadow: 0 14px 34px rgba(47, 180, 90, .20);
}

.dch-logo-text {
  display: grid;
  gap: 2px;
}

.dch-logo-text strong {
  color: #111827;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.035em;
}

.dch-logo-text small {
  color: #667085;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.dch-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.dch-links a {
  color: #344054;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
  transition: color .18s ease, transform .18s ease;
}

.dch-links a:hover {
  color: #2fb45a;
  transform: translateY(-1px);
}

.dch-links .dch-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .14);
}

.dch-links .dch-cta:hover {
  color: #fff;
  background: #0b1020;
}

.dch-menu {
  display: none;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .dch-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dch-links {
    display: none;
  }

  .dch-links.is-open,
  .dch-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 22px 70px rgba(17, 24, 39, .14);
  }

  .dch-links.is-open a,
  .dch-links.open a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .dch-wrap {
    width: min(100% - 28px, 1220px);
  }

  .dch-logo-text small {
    display: none;
  }

  .dch-topbar {
    font-size: 12px;
  }
}


/*
DreyCommerce Clean Footer 1.6.3
Nur neue Footer-Klassen: dcf-*
Keine drey-footer-clean / drey-hf-footer / drey-site-footer Fallen.
*/

.drey-layout-footer {
  margin: 0;
  padding: 0;
  background: transparent;
}

.dcf-footer,
.dcf-footer * {
  box-sizing: border-box;
}

.dcf-footer {
  width: 100%;
  margin: 0;
  padding: 88px 0 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(140, 242, 170, .16), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(88, 110, 255, .12), transparent 30%),
    linear-gradient(180deg, #070b18 0%, #050816 100%);
  color: #ffffff;
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.dcf-footer a {
  color: inherit;
  text-decoration: none;
}

.dcf-wrap {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.dcf-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .78fr);
  gap: 76px;
  align-items: start;
}

.dcf-main {
  max-width: 720px;
}

.dcf-badge {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dcf-footer h1,
.dcf-footer h2,
.dcf-footer h3,
.dcf-footer h4,
.dcf-footer h5,
.dcf-footer h6 {
  color: #ffffff;
  font-weight: 950;
}

.dcf-footer h2 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.055em;
}

.dcf-footer h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.dcf-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.78;
}

.dcf-profile {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
  width: min(100%, 640px);
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.dcf-profile:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .13);
  border-color: rgba(140, 242, 170, .36);
}

.dcf-avatar {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2fb45a, #8cf2aa);
  color: #06130a;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -.06em;
  box-shadow: 0 18px 44px rgba(47, 180, 90, .25);
}

.dcf-profile strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -.035em;
}

.dcf-profile small {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 650;
}

.dcf-panel {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .20);
}

.dcf-panel p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.68;
}

.dcf-links {
  display: grid;
  gap: 14px;
}

.dcf-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #ffffff;
  font-weight: 900;
  line-height: 1.35;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.dcf-links a::after {
  content: "→";
  color: #8cf2aa;
  font-size: 14px;
  font-weight: 950;
}

.dcf-links a:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, .15);
  border-color: rgba(140, 242, 170, .40);
}

.dcf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dcf-chips a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.dcf-bottom {
  min-height: 78px;
  margin-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 700;
}

.dcf-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.dcf-bottom a {
  color: rgba(255, 255, 255, .74);
  font-weight: 760;
}

.dcf-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .dcf-footer {
    padding-top: 74px;
  }

  .dcf-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dcf-main,
  .dcf-footer h2,
  .dcf-footer p {
    max-width: none;
  }

  .dcf-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }

  .dcf-bottom nav {
    justify-content: flex-start;
  }
}

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

  .dcf-footer h2 {
    font-size: 34px;
  }

  .dcf-profile {
    grid-template-columns: 64px 1fr;
    padding: 18px;
  }

  .dcf-avatar {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 21px;
  }

  .dcf-panel {
    padding: 24px;
  }
}
