.due-home {
  background: radial-gradient(900px 420px at 80% -10%, rgba(0, 100, 173, 0.12), transparent 60%), linear-gradient(180deg, #f7f9fb 0%, #ffffff 28%);
  color: var(--due-text);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--due-line);
  min-height: 500px;
  padding: 0;
  background: #0b2a44;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.due-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.due-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 22, 38, 0.82) 0%, rgba(5, 22, 38, 0.58) 46%, rgba(5, 22, 38, 0.2) 100%);
  z-index: 1;
}

.due-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 92px 0 86px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
}

.due-hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.due-hero-dots span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.due-hero-dots span.is-active {
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfe8ff;
  margin-bottom: 14px;
}

.eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cfe8ff;
  box-shadow: 0 0 0 5px rgba(207, 232, 255, 0.18);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero p {
  margin: 0 0 22px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 62ch;
}

.hero-actions,
.card-actions,
.promo-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--due-line);
}

.btn-primary {
  background: var(--due-blue);
  border-color: var(--due-blue);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--due-text);
}

.btn-secondary:hover {
  border-color: rgba(0, 100, 173, 0.55);
  color: var(--due-blue);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-stage {
  position: relative;
  border-radius: var(--due-radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  min-height: 360px;
  overflow: hidden;
}

.product-float {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 92%);
  aspect-ratio: 16/10;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
}

.product-float img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.55) 45%, transparent 55%);
  opacity: 0.35;
}

section {
  padding: 68px 0;
}

#gruppen,
#katalog,
.due-home-teasers,
.due-news-preview,
.due-home__content {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.due-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.due-feature {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 190px;
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}

.due-feature__media {
  display: block;
  background: var(--due-surface);
}

.due-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.due-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}

.due-feature__body strong {
  font-size: 19px;
  line-height: 1.25;
}

.due-feature__body span {
  color: var(--due-muted);
  font-size: 14px;
}

.due-feature__body em {
  color: var(--due-blue);
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.15vw, 34px);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.link {
  color: var(--due-blue);
  font-weight: 700;
}

.tiles,
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tile,
.card {
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.tile:hover,
.card:hover {
  border-color: rgba(0, 100, 173, 0.24);
  transform: translateY(-2px);
}

.tile-media,
.card-media {
  position: relative;
  background: var(--due-surface);
}

.tile-media {
  height: 200px;
}

.card-media {
  height: 190px;
  border-bottom: 1px solid var(--due-line);
}

.tile-media img,
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.tile-body,
.card-body {
  padding: 20px;
}

.due-news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.due-news-card .card-media {
  display: block;
  height: 210px;
}

.due-news-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.due-news-card .card-title a {
  color: var(--due-text);
  text-decoration: none;
}

.due-news-card .card-sub {
  margin: 0 0 4px;
  color: var(--due-muted);
  font-size: 14px;
}

.due-news-card .tile-link {
  margin-top: auto;
}

.tile-title,
.card-title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card-title {
  margin: 0 0 8px;
}

.tile-sub {
  margin: 0;
  color: var(--due-muted);
  font-size: 13px;
  line-height: 1.55;
}

.tile-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--due-blue);
  font-size: 13px;
  font-weight: 800;
}

.mini-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--due-line);
  font-size: 12px;
  font-weight: 800;
}

.promo {
  position: relative;
  border-top: 1px solid var(--due-line);
  border-bottom: 1px solid var(--due-line);
  background: linear-gradient(135deg, #e9f3f9 0%, #f6fafc 52%, #ffffff 100%);
  box-shadow: inset 0 0 120px rgba(0, 100, 173, 0.1);
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding: 0;
}

.promo h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.35vw, 36px);
  letter-spacing: -0.01em;
}

.promo p {
  margin: 0 0 24px;
  color: var(--due-muted);
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.65;
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--due-blue);
  font-weight: 800;
  margin-bottom: 10px;
}

.promo-cta {
  align-items: center;
}

.promo-visual {
  position: relative;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-height: 300px;
}

.promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.05);
}

.promo-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--due-line);
  font-size: 12px;
  font-weight: 800;
  color: var(--due-text);
}

.due-home__content > .due-home__container {
  background: #fff;
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  padding: 24px;
}

/* Ensure content sections never become full-bleed accidentally */
#gruppen > .due-home__container,
#katalog > .due-home__container,
.due-home-teasers > .due-home__container,
.due-news-preview > .due-home__container,
.promo > .due-home__container,
.due-home__content > .due-home__container {
  width: min(var(--due-max), calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 980px) {
  .hero {
    padding: 56px 0 52px;
  }

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

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .tiles,
  .cards,
  .due-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .due-feature {
    grid-template-columns: 1fr;
  }

  .due-feature__media {
    min-height: 180px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 44px 0 40px;
  }

  .due-home__container {
    width: min(var(--due-max), calc(100% - 28px));
  }

  .tiles,
  .cards,
  .due-feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 300px;
  }

  #gruppen > .due-home__container,
  #katalog > .due-home__container,
  .due-home-teasers > .due-home__container,
  .due-news-preview > .due-home__container,
  .promo > .due-home__container,
  .due-home__content > .due-home__container {
    width: min(var(--due-max), calc(100% - 28px));
  }
}
