/* =========================================================
   DZIP – Early Detect 365 Partnerseite
   Saubere, konsolidierte style.css
========================================================= */

/* -----------------------------
   Reset & Basis
----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.2;
  color: #1C4587; /* Marken-Blau für Headlines */
}

/* Hero-Überschriften bleiben weiß */
.section--hero h1,
.section--hero h2,
.section--hero h3 {
  color: #ffffff;
}

/* -----------------------------
   Layout: Container & Sections
----------------------------- */
.container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section--fullwidth {
  padding: 0;
}

.section--muted {
  background: #f5f1ec; /* warmes Beige */
}

.section__header--center {
  text-align: center;
  margin-bottom: 28px;
}

.section__title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section__intro {
  max-width: 860px;
  margin: 12px auto 0;
  color: #374151;
}

.section__note--small {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #6b7280;
}

/* -----------------------------
   Eyebrow / kleine Überschrift
----------------------------- */
.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Hero-Eyebrow: weiß & größer */
.section--hero .eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 14px;
}

/* -----------------------------
   Buttons
----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform 120ms ease, opacity 120ms ease;
  text-decoration: none !important;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn--primary {
  background: #0f2a52;
  color: #ffffff;
  border-color: #0f2a52;
}

/* CTA im Header */
.btn--cta {
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -----------------------------
   Header
----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

/* Header etwas breiter als Content */
.site-header .container {
  width: min(1600px, calc(100% - 48px));
}

.header__inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header__logo {
  flex: 0 0 auto;
}

.header__logo img {
  height: 72px;
  width: auto;
  display: block;
}

.header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 48px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav__link {
  font-size: 1.02rem;
  font-weight: 520;
  color: #0f2a52;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__link:hover {
  opacity: 0.9;
  text-decoration: none !important;
}

.nav__caret {
  font-size: 0.8rem;
  line-height: 1;
  opacity: 0.85;
}

.header__cta {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

/* Mobile-Burger (Platzhalter) */
.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #ffffff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0f2a52;
}

/* =========================================================
   NAV: Dropdown / Untermenü
========================================================= */

.nav__item--has-dropdown {
  position: relative;
}

/* Unterstreichung beim Hover/Focus wie im Screenshot */
.nav__item--has-dropdown:hover .nav__link,
.nav__item--has-dropdown:focus-within .nav__link {
  text-decoration: none;
}

.nav__item--has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: transparent;
  transition: background 120ms ease;
}

.nav__item--has-dropdown:hover::after,
.nav__item--has-dropdown:focus-within::after {
  background: #1C4587; /* Akzentlinie unterhalb des Menüpunktes */
}

/* Das Dropdown-Panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding: 8px 0 10px;        /* nur oben/unten, KEIN links/rechts */
  min-width: 320px;
  background: #ffffff;
  border-radius: 0 0 18px 18px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 10000;
}

/* sichtbar bei Hover/Fokus */
.nav__item--has-dropdown:hover .nav-dropdown,
.nav__item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-dropdown__list li {
  width: 100%;
}

/* Link füllt das komplette Panel in der Zeile aus */
.nav-dropdown__list li a {
  display: block;
  width: 100%;
  padding: 12px 24px;          /* innen Abstand, aber bis zum Rand */
  color: #1C4587;
  border-radius: 0;            /* kein eigener Radius mehr */
  transition: background 120ms ease;
  text-decoration: none;
}

/* Hover über die komplette Breite */
.nav-dropdown__list li:hover > a,
.nav-dropdown__list li:focus-within > a {
  background: #f2dfcf;         /* dein Beigeton */
}

/* sicherheitshalber: keine Unterstreichung */
.nav-dropdown__list a,
.nav-dropdown__list a:hover,
.nav-dropdown__list a:focus {
  text-decoration: none !important;
}
/* -----------------------------
   Hero-Bereich
----------------------------- */
.section--hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.section--hero .section__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section--hero .section__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.section__container--hero {
  position: relative;
  z-index: 2;
  padding: 76px 0;
}

.hero__inner {
  max-width: 760px;
  color: #ffffff;
}

.hero__title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hero__teaser {
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
  max-width: 780px;
}

.hero__disclaimer {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.hero__actions {
  margin-top: 8px;
}

/* -----------------------------
   2-Spalten-Layout
----------------------------- */
.section__container--two-column {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.section__col--sidebar .card {
  position: sticky;
  top: 18px;
}

/* -----------------------------
   Karten, Infoboxen, etc.
----------------------------- */
.card,
.infobox,
.partner-card,
.quality-card,
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
}

.card {
  padding: 22px;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card__list {
  margin: 0;
  padding-left: 18px;
  color: #374151;
}

/* Highlight-Textblock im Content */
.section__highlight {
  padding: 14px 16px;
  border-left: 4px solid #0f2a52;
  background: rgba(15, 42, 82, 0.06);
  border-radius: 10px;
  margin-top: 18px;
  color: #111827;
}

/* -----------------------------
   Bildstreifen / Image Strip
----------------------------- */
.section--image-strip {
  padding: 34px 0 34px;
  background: #ffffff;
}

.section__container--image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.image-strip__item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.05);
  margin: 0;
}

.image-strip__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* -----------------------------
   Program Section – Bild
----------------------------- */
.section__col--image img {
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.07);
}

/* -----------------------------
   Infoboxen
----------------------------- */
.infobox {
  padding: 18px 18px;
  margin: 18px 0;
}

.infobox p {
  margin: 0;
  color: #374151;
}

.infobox--neutral {
  background: rgba(15, 42, 82, 0.05);
  border-color: rgba(15, 42, 82, 0.18);
}

.infobox--outline {
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.12);
}

.infobox__title {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* -----------------------------
   Partner-Übersicht
----------------------------- */
.section__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 26px 0 18px;
}

/* Filter */
.partner-filter {
  margin: 24px 0 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(245, 241, 236, 0.65);
}

.partner-filter__title {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.partner-filter__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.partner-filter__field label {
  display: block;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 6px;
}

.partner-filter__field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #ffffff;
}

.partner-grid {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem 1.5rem;
  background: #f7f9fc; /* optional */
}

.partner-card {
  max-width: 1200px;   /* Lesebreite */
  margin: 0 auto;
padding: 2.5rem 3rem;
}

.partner-card__role {
  line-height: 1.7;
  max-width: 900px;
}

.partner-card__name {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.partner-card__location {
  color: #6b7280;
  margin-bottom: 10px;
}

.partner-card__role {
  color: #374151;
  margin-bottom: 12px;
}

.partner-card__contact {
  font-size: 0.95rem;
  color: #111827;
}

/* -----------------------------
   Qualitäts-Section
----------------------------- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.quality-card {
  padding: 20px;
}

.quality-card__title {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* -----------------------------
   Steps / Ablauf
----------------------------- */
.steps-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #374151;
}

.steps-list li {
  margin-bottom: 12px;
}

/* -----------------------------
   Kontaktformular
----------------------------- */
.contact-form-card {
  padding: 22px;
}

.contact-form-card__title {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.form__field {
  margin-bottom: 12px;
}

.form__field label {
  display: block;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 6px;
}

.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #ffffff;
  font: inherit;
}

.form__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230f2a52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;

  padding-right: 44px; /* Platz für Pfeil */
}


.form__actions {
  margin-top: 10px;
}

/* Checkbox-Zeile: Checkbox links, Text rechts */
.contact-form-card .form__field--checkbox {
  margin-top: 12px;
}

.contact-form-card .form__field--checkbox .checkbox-inline {
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 14px;
  align-items: start;
}

.contact-form-card .form__field--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.contact-form-card .form__field--checkbox span {
  display: block;
  width: 100%;
  line-height: 1.55;
  white-space: normal;
  word-break: normal;
}

/* -----------------------------
   Responsive
----------------------------- */
@media (max-width: 980px) {
  .header__inner {
    height: 84px;
    gap: 16px;
  }

  .header__nav {
    display: none; /* später per JS/Mobile-Menü */
  }

  .header__burger {
    display: inline-flex;
    margin-left: 8px;
  }

  .header__logo img {
    height: 56px;
  }

  .section__container--two-column {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section__col--sidebar .card {
    position: static;
  }

  .section__container--image-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .section__info-grid {
    grid-template-columns: 1fr;
  }

  .partner-filter__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1280px, calc(100% - 32px));
  }

  .section {
    padding: 56px 0;
  }

  .section--hero {
    min-height: 78vh;
  }

  .section__container--image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip__item img {
    height: 200px;
  }

  .btn--cta {
    padding: 12px 18px;
    font-size: 0.82rem;
  }

  .hero__teaser {
    font-size: 1.05rem;
  }

  .section--hero .eyebrow {
    font-size: 0.9rem;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #2b1307; /* dunkles Braun – nah am Screenshot */
  color: #f9f5f0;
  padding: 64px 0 32px;
}

.site-footer a {
  color: #f9f5f0;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* oberer Bereich: Claim + Adresse + Kontakt */
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(249, 245, 240, 0.14);
}

.footer__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: #f9f5f0;
}

.footer__heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: #f9f5f0;
}

.footer__col p {
  margin: 0;
  font-size: 0.98rem;
}

/* unterer Bereich: Links + Copyright */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.95rem;
}

.footer__links a {
  opacity: 0.9;
}

.footer__links a:hover {
  opacity: 1;
}

/* Firmennamen-Stil wie gewünscht (.footer-company) */
.footer-company {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;        /* etwas kleiner */
  letter-spacing: 0.08em;   /* weniger gesperrt */
  text-transform: uppercase;
  opacity: 0.85;
}

/* -----------------------------
   Footer – Responsive
----------------------------- */
@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1.6fr 1fr;
    row-gap: 32px;
  }

  .footer__col--headline {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 48px 0 28px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    align-items: flex-start;
  }

  .footer__links {
    gap: 16px;
  }
}


/* Bildfokus: Frau auf dem Stein – etwas tiefer platzieren */
.image-strip__item:nth-child(2) img {
  object-position: center 40%;
}


/* =========================================================
   FAQ / Accordion
========================================================= */

.section--faq .faq {
  max-width: 860px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  margin-bottom: 14px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.05);
}

.faq__question {
  padding: 18px 22px;
  font-weight: 600;
  color: #1C4587;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "▾";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 160ms ease;
  color: #1C4587;
}

.faq__item[open] .faq__question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
  padding: 0 22px 20px;
  color: #374151;
  line-height: 1.6;
}

.faq__answer p {
  margin-bottom: 12px;
}

.section--contact-partner .contact-form-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}



/* =========================================================
   Kooperationsanfrage – Formular unten bündig ausrichten
========================================================= */

.section--contact-partner .section__container--two-column {
  align-items: stretch;
}

.section--contact-partner .section__col--form {
  display: flex;
  align-items: flex-end;
}


/* =========================================================
   Top Notice / Hinweis-Box (oberhalb der Inhalte)
========================================================= */

.section--top-notice .notice{
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.06);
  max-width: 980px;
}

.section--top-notice .section__title{
  margin: 8px 0 10px;
}

.section--top-notice .notice__text{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #374151;
}

/* =========================================================
   Feinschliff: Top-Hinweis Early Detect 365
========================================================= */

.section--top-notice {
  padding-top: 48px;      /* etwas weniger Luft oben */
  padding-bottom: 40px;   /* etwas näher an den Inhalt darunter ran */
}

.section--top-notice .notice {
  max-width: 980px;
  padding: 22px 26px 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);

  /* dezenter Akzent links */
  border-left: 5px solid #1C4587;
}

/* Eyebrow etwas feiner */
.section--top-notice .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
}

/* Überschrift: kleiner als Hero, besser lesbar in einer Zeile */
.section--top-notice .section__title {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 4px 0 8px;
}

/* Fließtext ruhiger und gut lesbar */
.section--top-notice .notice__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #374151;
}

.section--top-notice .notice {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fafb 100%
  );
}

.section--top-notice .notice::before {
  content: "ℹ";
  position: absolute;
  left: 22px;
  top: 26px;
  font-size: 1.6rem;
  color: #1C4587;
  opacity: 0.9;
}

.notice__meta {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* =========================================================
   Header – Meta Navigation rechts (Krebsfrüherkennung)
========================================================= */

.header__cta--with-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* dezenter Textlink, kein Button */
.nav__link--meta {
  font-size: 0.95rem;
  font-weight: 520;
  letter-spacing: 0.02em;
  color: #0f2a52;
  padding: 6px 0;
}

/* schmaleres Dropdown für Krebsfrüherkennung */
.nav-dropdown--meta {
  left: auto;
  right: 0;
  min-width: unset;
  width: max-content;
  padding-left: 0;
  padding-right: 0;
}

.nav-dropdown--meta .nav-dropdown__list li a {
  padding: 12px 40px 12px 40px;
  text-align: center;
}

/* =========================================================
   Active State – Early Detect Partnerseite
========================================================= */

/* aktiver Unterpunkt im Dropdown */
.page-early-detect-partner 
.nav-dropdown--meta a.is-active {
  font-weight: 600;
  color: #0f2a52;
  background: rgba(28, 69, 135, 0.08);
}

/* Kontext-Hervorhebung im Header (Krebsfrüherkennung) */
.page-early-detect-partner 
.nav__link--meta {
  position: relative;
}

.page-early-detect-partner 
.nav__link--meta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #1C4587;
}

.page-early-detect-patient 
.nav-dropdown--meta a.is-active {
  font-weight: 600;
  color: #0f2a52;
  background: rgba(28, 69, 135, 0.08);
}

.page-early-detect-patient 
.nav__link--meta {
  position: relative;
}

.page-early-detect-patient 
.nav__link--meta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #1C4587;
}




/* =========================================================
   Partner – Kooperationsanfrage (farblich ruhiger)
========================================================= */

.section--contact-partner {
  background: linear-gradient(
    180deg,
    #f7f9fc 0%,
    #eef2f7 100%
  );
}

.section--contact-partner .section__col--content {
  padding-right: 20px;
}

.section--contact-partner .contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(15, 42, 82, 0.18);
  box-shadow: 0 18px 40px rgba(15, 42, 82, 0.12);
}

.section--contact-partner .contact-form-card__title {
  color: #0f2a52;
}


/* =========================================================
   Programm-Bild – Breite angleichen (Partner-Seite)
========================================================= */

.section--program .section__col--image {
  display: flex;
  justify-content: center;
}

.section--program .section__col--image img {
  width: 100%;
  max-width: 480px;   /* entspricht optisch den Bildern darüber */
}


/* =========================================================
   Hero – Patienten-Seite: Bildfokus tiefer setzen
========================================================= */

.page-early-detect-patient 
.section--hero .section__background img {
  object-position: center 30%;
}

/* =========================================================
   Patienten – Ablauf als 5er-Grid
========================================================= */

.steps-list--grid {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.steps-list--grid li {
  counter-increment: step;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
}

.steps-list--grid li strong {
  display: block;
  margin-bottom: 6px;
  color: #1C4587;
}

/* Nummerierung oben */
.steps-list--grid li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;
  margin-bottom: 10px;

  border-radius: 50%;
  background: #1C4587;
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .steps-list--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps-list--grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Listen mit dezenten Häkchen (Patienten & Partner)
========================================================= */

.section ul {
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}

.section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #374151;
  line-height: 1.6;
}

/* Häkchen */
.section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;

  font-size: 0.9rem;
  font-weight: 600;
  color: #1C4587; /* DZIP-Blau */
}


/* ===== Desktop: Dropdown-Pfeile clean (ohne Box) ===== */
@media (min-width: 981px) {

  /* Falls der Pfeil ein Button ist */
  .nav__toggle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 0 6px;   /* etwas Luft links vom Text */
    line-height: 1;
  }

  /* Falls der Pfeil ein span ist */
  .nav__caret {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin-left: 6px;
  }

  /* auch beim Hover nichts anzeigen */
  .nav__toggle:hover,
  .nav__toggle:focus,
  .nav__caret:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 980px){
  .nav__link--disabled{
    cursor: default;
    font-weight: 600;
  }

  /* Statische Unterliste für Krebsfrüherkennung (immer sichtbar) */
  .nav-static-sublist{
    list-style: none;
    padding-left: 16px;
    margin-top: 6px;
    border-left: 1px solid rgba(148, 163, 184, 0.4);
    width: 100%;
  }

  .nav-static-sublist li a{
    display: block;
    padding: 6px 0;
  }
}


