:root {
  --color-blue: #0F2747;
  --color-blue-deep: #0A1B33;
  --color-anthracite: #2B2F36;
  --color-white: #FFFFFF;
  --color-light: #F6F8FB;
  --color-border: #DDE5EF;
  --color-gold: #C8A96B;
  --color-green: #1F8A5B;
  --color-green-dark: #186F49;
  --color-text: #18233B;
  --color-muted: #475467;
  --color-muted-strong: #344054;
  --shadow-soft: 0 18px 45px rgba(15, 39, 71, 0.12);
  --shadow-card: 0 6px 18px rgba(15, 39, 71, 0.06);
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--color-green-dark); }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-blue);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.4em; }
h3 { font-size: 1.2rem; margin-top: 1.6em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: 0.4em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.brand {
  font-weight: 700; font-size: 1rem;
  color: var(--color-blue); text-decoration: none;
  letter-spacing: -0.01em;
}
.brand span { color: var(--color-gold); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a,
.nav-group__trigger {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--color-anthracite);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-small);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  background: transparent; border: 0; cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.nav > a:hover,
.nav-group__trigger:hover { color: var(--color-blue); }
.nav > a.is-active,
.nav-group.is-active > .nav-group__trigger { color: var(--color-blue); font-weight: 600; }
.nav > a.is-active::after,
.nav-group.is-active > .nav-group__trigger::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: -2px;
  height: 2px; background: var(--color-gold); border-radius: 2px;
}
.nav-group { position: relative; }
.nav-group__trigger svg { transition: transform 0.18s ease; opacity: 0.7; }
.nav-group:hover .nav-group__trigger svg,
.nav-group:focus-within .nav-group__trigger svg { transform: rotate(180deg); }
.nav-group__panel {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 360px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  display: none;
  z-index: 60;
}
.nav-group:hover .nav-group__panel,
.nav-group:focus-within .nav-group__panel { display: block; }
.nav-group__panel a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-small);
  text-decoration: none;
  color: var(--color-blue);
}
.nav-group__panel a strong { display: block; font-size: 0.95rem; font-weight: 600; }
.nav-group__panel a span { display: block; font-size: 0.84rem; color: var(--color-muted); margin-top: 2px; font-weight: 400; }
.nav-group__panel a:hover { background: var(--color-light); }
.nav-group__panel a:hover strong { color: var(--color-blue); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { white-space: nowrap; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--color-blue);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--color-blue);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 24px 24px;
    gap: 0;
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav.is-open > a,
  .nav.is-open .nav-group__trigger { padding: 14px 12px; border-bottom: 1px solid var(--color-light); width: 100%; justify-content: space-between; }
  .nav.is-open .nav-group { width: 100%; }
  .nav.is-open .nav-group__panel { position: static; min-width: 0; box-shadow: none; border: 0; border-radius: 0; padding: 4px 0 12px 16px; display: block; }
  .nav.is-open .nav-group__panel a { padding: 10px 12px; }
  .nav > a.is-active::after, .nav-group.is-active > .nav-group__trigger::after { display: none; }
  .header-cta .btn--mobile-hide { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  border-radius: var(--radius-medium);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--color-green); color: var(--color-white);
  border-color: var(--color-green-dark);
}
.btn--primary:hover { background: var(--color-green-dark); color: var(--color-white); }
.btn--secondary {
  background: transparent; color: var(--color-blue);
  border-color: var(--color-blue);
}
.btn--secondary:hover { background: var(--color-blue); color: var(--color-white); }
.btn--ghost {
  background: var(--color-white); color: var(--color-blue);
  border-color: var(--color-border);
}
.btn--ghost:hover { border-color: var(--color-blue); }
.btn--sm { padding: 10px 16px; font-size: 0.9rem; }

/* HERO */
.hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
  border-bottom: 1px solid var(--color-border);
}
.hero__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-gold); font-weight: 700;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 2px;
  background: var(--color-gold); border-radius: 2px;
}
.hero__title { margin-bottom: 20px; }
.hero__title em { font-style: italic; color: var(--color-gold); font-weight: 700; }
.hero__text { font-size: 1.14rem; color: var(--color-muted-strong); margin-bottom: 28px; max-width: 56ch; line-height: 1.6; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

/* Badge row (replaces hero__trust dashes) */
.badge-row {
  display: flex; gap: 10px; flex-wrap: wrap; padding: 0; margin: 0; list-style: none;
}
.badge-row > span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.84rem; font-weight: 500;
  color: var(--color-muted-strong);
  box-shadow: var(--shadow-card);
}
.badge-row__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-green); box-shadow: 0 0 0 3px rgba(31,138,91,0.18);
}

.hero__panel {
  background: linear-gradient(155deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
  color: var(--color-white);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.hero__panel::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% -10%, rgba(200,169,107,0.32), transparent 50%),
    radial-gradient(circle at -10% 110%, rgba(31,138,91,0.18), transparent 50%);
  pointer-events: none;
}
.hero__panel > * { position: relative; }
.hero__panel-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 22px;
}
.hero__metric-value {
  display: block;
  font-size: 1.7rem; font-weight: 700; color: var(--color-gold);
  letter-spacing: -0.01em; line-height: 1.1;
}
.hero__metric-value .hero__metric-unit { font-size: 1rem; margin-left: 2px; }
.hero__metric-label {
  display: block; font-size: 0.78rem; line-height: 1.4;
  color: rgba(255,255,255,0.78); margin-top: 6px;
}
.hero__panel-divider { height: 1px; background: rgba(255,255,255,0.12); margin-bottom: 20px; }
.hero__panel h2 {
  color: var(--color-white); font-size: 0.86rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700; margin: 0 0 14px;
}
.hero__panel ul { list-style: none; padding: 0; margin: 0; }
.hero__panel li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 0.96rem;
  display: flex; align-items: flex-start; gap: 12px;
}
.hero__panel li:last-child { border-bottom: 0; }
.hero__panel li::before {
  content: ""; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px;
  background: rgba(200,169,107,0.18);
  border: 1px solid rgba(200,169,107,0.55);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.2l2.4 2.4L9.5 3.8' fill='none' stroke='%23C8A96B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

@media (max-width: 720px) {
  .hero__panel-metrics { grid-template-columns: 1fr 1fr; }
  .hero__metric-value { font-size: 1.4rem; }
}

/* LOGOBAR / Trust strip */
.logobar { background: var(--color-light); border-bottom: 1px solid var(--color-border); padding: 22px 0; }
.logobar__inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.logobar__label {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-muted); font-weight: 700;
}
.logobar ul {
  display: flex; gap: 28px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0;
}
.logobar li {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.78rem; color: var(--color-muted); margin: 0;
}
.logobar li strong {
  color: var(--color-blue); font-size: 0.92rem; letter-spacing: -0.01em;
}

@media (max-width: 880px) {
  .hero { padding: 48px 0 40px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* SECTIONS */
.section { padding: 64px 0; }
.section--light { background: var(--color-light); }
.section--blue {
  background: var(--color-blue);
  color: var(--color-white);
}
.section--blue h1, .section--blue h2, .section--blue h3 { color: var(--color-white); }

.section__head { max-width: 760px; margin-bottom: 40px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { margin-top: 0; }
.section__head p { color: var(--color-muted-strong); font-size: 1.05rem; max-width: 62ch; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-gold); font-weight: 700; margin-bottom: 12px;
}
.section__eyebrow::before {
  content: ""; display: inline-block; width: 24px; height: 2px;
  background: var(--color-gold); border-radius: 2px;
}
.section__head--center .section__eyebrow { display: inline-flex; }

/* BREADCRUMB */
.breadcrumb {
  padding: 18px 0 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li::after { content: "/"; margin-left: 10px; color: var(--color-border); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--color-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-blue); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--color-blue); font-weight: 500; }

/* ANSWER BOX */
.answer-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-medium);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
}
.answer-box h2 { font-size: 1.15rem; margin: 0 0 10px; color: var(--color-blue); }
.answer-box p { margin: 0; color: var(--color-text); }

/* CARDS */
.card-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--color-gold); transform: scaleY(0); transform-origin: top;
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: #C7D2E2; }
.card:hover::before { transform: scaleY(1); }
.card h3 { margin: 0 0 10px; font-size: 1.08rem; color: var(--color-blue); }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--color-blue); text-decoration: underline; text-decoration-color: var(--color-gold); }
.card p { margin: 0; color: var(--color-muted); font-size: 0.95rem; line-height: 1.55; }
.card a { color: var(--color-blue); font-weight: 600; text-decoration: none; }
.card a:hover { text-decoration: underline; }
.card__eyebrow {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold); font-weight: 700; margin-bottom: 10px; display: block;
}

/* LINK CARD (for related/industry lists) */
.link-card {
  position: relative; display: block;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  padding: 20px 46px 20px 22px;
  text-decoration: none;
  color: var(--color-blue);
  font-weight: 600;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-card);
}
.link-card::after {
  content: "→"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--color-gold); font-weight: 700; font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.link-card:hover { border-color: var(--color-gold); transform: translateY(-2px); color: var(--color-blue); box-shadow: var(--shadow-soft); }
.link-card:hover::after { transform: translateY(-50%) translateX(4px); }
.link-card small { display: block; font-weight: 400; color: var(--color-muted); font-size: 0.86rem; margin-top: 4px; }

/* STEPS */
.steps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
  list-style: none; padding: 0;
}
.steps li {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  padding: 24px;
  position: relative;
  counter-increment: step;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.85rem; color: var(--color-gold); font-weight: 700;
  margin-bottom: 8px;
}
.steps li strong { display: block; color: var(--color-blue); margin-bottom: 4px; }
.steps li span { color: var(--color-muted); font-size: 0.94rem; }

/* TABLE */
.table-responsive { overflow-x: auto; margin: 0 0 1.5em; border-radius: var(--radius-medium); border: 1px solid var(--color-border); }
table {
  width: 100%; border-collapse: collapse;
  background: var(--color-white);
  min-width: 560px;
}
th, td {
  text-align: left; padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  vertical-align: top;
}
th { background: var(--color-light); color: var(--color-blue); font-weight: 700; }
tr:last-child td { border-bottom: 0; }

/* TRUST BAR */
.trust-bar {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
}
.trust-bar div { font-size: 0.92rem; color: var(--color-muted); }
.trust-bar strong { display: block; color: var(--color-blue); margin-bottom: 4px; font-size: 1rem; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  overflow: hidden;
}
.faq-item button {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  padding: 20px 24px;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  color: var(--color-blue);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item button::after {
  content: "+"; font-weight: 400; font-size: 1.5rem; color: var(--color-gold);
  line-height: 1; transition: transform 0.2s ease;
}
.faq-item button[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--color-text);
  display: none;
}
.faq-item button[aria-expanded="true"] + .faq-item__body { display: block; }
.faq-item__body p:last-child { margin-bottom: 0; }

/* CTA SECTION */
.cta-section {
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius-large);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,169,107,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31,138,91,0.18), transparent 50%);
}
.cta-section > * { position: relative; }
.cta-section h2 { color: var(--color-white); max-width: 22ch; margin: 0 auto 14px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0 auto 28px; }
.cta-section .btn--primary { background: var(--color-gold); color: var(--color-blue-deep); border-color: var(--color-gold); }
.cta-section .btn--primary:hover { background: #b9985a; border-color: #b9985a; color: var(--color-blue-deep); }
.cta-section .btn--secondary { color: var(--color-white); border-color: rgba(255,255,255,0.6); }
.cta-section .btn--secondary:hover { background: var(--color-white); color: var(--color-blue); border-color: var(--color-white); }

@media (max-width: 720px) {
  .cta-section { padding: 40px 24px; }
}

/* PROSE for ratgeber articles */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; }
.prose ul li, .prose ol li { margin-bottom: 0.5em; }

/* RELATED */
.related { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 18px; }
.form label { display: block; font-weight: 600; color: var(--color-blue); font-size: 0.92rem; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  font-family: inherit; font-size: 1rem;
  background: var(--color-white);
  color: var(--color-text);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(15,39,71,0.12);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form .form-row { grid-template-columns: 1fr; } }
.form .checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--color-muted); }
.form .checkbox input { width: auto; margin-top: 4px; }
.form-note { font-size: 0.85rem; color: var(--color-muted); }

/* FOOTER */
.site-footer {
  background: var(--color-blue-deep);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 28px;
  margin-top: 80px;
}
.site-footer__grid {
  display: grid; gap: 36px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: var(--color-white); font-size: 0.95rem; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.94rem; }
.site-footer a:hover { color: var(--color-white); text-decoration: underline; }
.site-footer__brand { font-weight: 700; color: var(--color-white); font-size: 1.05rem; margin-bottom: 10px; }
.site-footer__about { font-size: 0.92rem; max-width: 38ch; }
.site-footer__bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.86rem; color: rgba(255,255,255,0.6);
}

/* PAGE HEADER (inner pages) */
.page-header {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
  border-bottom: 1px solid var(--color-border);
}
.page-header h1 { margin: 8px 0 14px; }
.page-header__intro { font-size: 1.1rem; color: var(--color-muted-strong); max-width: 62ch; line-height: 1.6; }
.page-header__cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.page-header--split .page-header__grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 880px) {
  .page-header--split .page-header__grid { grid-template-columns: 1fr; gap: 32px; }
}
.page-header__aside .quickcard { margin-top: 4px; }

/* QUICK CARD (sidebar booking card) */
.quickcard {
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius-large);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative; overflow: hidden;
}
.quickcard::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(200,169,107,0.28), transparent 55%);
  pointer-events: none;
}
.quickcard > * { position: relative; }
.quickcard__eyebrow {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-gold); font-weight: 700;
  margin-bottom: 10px;
}
.quickcard h2 { color: var(--color-white); font-size: 1.35rem; margin: 0 0 18px; }
.quickcard ul { list-style: none; padding: 0; margin: 0 0 22px; }
.quickcard li {
  padding: 9px 0 9px 26px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 0.94rem;
}
.quickcard li:last-child { border-bottom: 0; }
.quickcard li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  color: var(--color-gold); font-weight: 700;
}
.quickcard .btn { width: 100%; background: var(--color-gold); color: var(--color-blue-deep); border-color: var(--color-gold); }
.quickcard .btn:hover { background: #b9985a; border-color: #b9985a; color: var(--color-blue-deep); }
.quickcard__note { margin: 14px 0 0; font-size: 0.86rem; color: rgba(255,255,255,0.78); text-align: center; }
.quickcard__note a { color: var(--color-gold); text-decoration: underline; }
.quickcard__note a:hover { color: var(--color-white); }

/* SOURCES (Quellen / external authority links) */
.sources {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.sources li {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-medium);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.sources li:hover { border-color: var(--color-gold); transform: translateY(-1px); }
.sources li a {
  color: var(--color-blue); font-weight: 600; text-decoration: none;
  word-break: break-word;
}
.sources li a:hover { text-decoration: underline; text-decoration-color: var(--color-gold); }
.sources li a::after {
  content: " ↗"; color: var(--color-gold); font-weight: 700;
}
.sources__publisher { font-size: 0.84rem; color: var(--color-muted-strong); font-weight: 500; }
.sources__note { font-size: 0.82rem; color: var(--color-muted); font-style: italic; }

/* UTILS */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--color-muted); }
.center { text-align: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Bullet list with check marks */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding-left: 28px; position: relative; margin-bottom: 10px;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--color-green); font-weight: 700;
}

/* Sitemap page list */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list > li { margin-bottom: 24px; }
.sitemap-list h3 { margin: 0 0 10px; font-size: 1.05rem; }
.sitemap-list ul { list-style: none; padding-left: 0; display: grid; gap: 6px; }
.sitemap-list a { color: var(--color-blue); text-decoration: none; }
.sitemap-list a:hover { text-decoration: underline; }
