@charset "UTF-8";

/* ===================================================
   OBJ – Design Tokens
   Globale Variablen (Single Source of Truth)
=================================================== */
:root {
  --bg-muted: #f3f1ec;
  --bg: #ffffff;

  /* ========================
   TYPO
======================== */

  --font-sans:
    "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /* ========================
     TEXT
  ======================== */
  --text: #20252b;
  --text-strong: #161a1f;
  --text-muted: #3a424b;
  --text-soft: rgba(32, 37, 43, 0.86);
  --text-dark: #2b2f32;
  --text-light: #ffffff;
  /* ========================
     BACKGROUND & WARM LUXE
  ======================== */
  --cream: #fffdf8;
  --sand-cream: #f4efe6;
  --sand-cream-dark: #e8e0d2;
  --sand-cream-edge: #e2d8c9;
  /* ========================
     BRAND DEPTH
  ======================== */
  --ink: #1a1e23;
  --muted: rgba(26, 30, 35, 0.68);
  --line: rgba(26, 30, 35, 0.1);
  --deep: #010d26;
  --sea: #0b2a3d;
  --sea2: #061b28;
  --gold: #d8b36a;
  --copper: #c9895a;
  --mist: #eef2ef;
  /* ========================
     RADIUS
  ======================== */
  --radius: 16px;
  --radius2: 22px;
  /* ========================
     SHADOWS
  ======================== */
  --shadow1: 0 10px 30px rgba(1, 13, 38, 0.1);
  --shadow2: 0 22px 60px rgba(1, 13, 38, 0.18);
  /* ========================
     VALENTINE DEFAULT
  ======================== */
  --val-bg: url("/assets/img/concierge/valentinstag.png");
  /* Layout Tokens (wichtig für Wrapper + Luft) */
  --container-width: 1120px;
  --container-narrow: 820px;
  --section-padding: 72px;
  --section-padding-mobile: 56px;
  /* Optional: falls du’s nutzt */
  --bg: #ffffff;
}

/* =========================================
   BRAND PALETTE – Juist Symphony
========================================= */
:root {
  /* Core (Juist) */
  --brand-blue: #0b2a3d; /* Meer/Ink */
  --brand-blue-2: #061b28; /* Tiefe */
  --brand-yellow: #f4c542; /* Sonne */
  --brand-yellow-soft: #fff2c2;
  /* Accents */
  --brand-green: #2bb673; /* Vertrauen/“OK” */
  --brand-orange: #f08a24; /* Energie/Highlights */
  /* Neutrals */
  --bg: #ffffff;
  --bg-muted: #f6f7f9;
  --text: #20252b;
  --muted: rgba(26, 30, 35, 0.68);
  --line: rgba(26, 30, 35, 0.1);
  /* Usages (Semantik) */
  --primary: var(--brand-blue);
  --accent: var(--brand-yellow);
  --success: var(--brand-green);
  --warm: var(--brand-orange);
  /* Effects */
  --ring: rgba(244, 197, 66, 0.35);
}

/* ===================================================
   01 – Base Styles
   Reset + Grundtypografie + Basis-Elemente
=================================================== */
:root {
  /* Core */
  --bg: #ffffff;
  --text: #111111;
  /* Optional */
  --bg-muted: #f3f1ec;
  /* Hero System Defaults */
  --hero-bg: none;
  --hero-focus: 50% 50%;
}

/* -------- Reset -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-sans);
  background: #ffffff !important;
  color: var(--text);
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff !important;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* -------- Typography -------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px 0;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-strong);
}

p {
  margin: 0 0 16px 0;
  color: var(--text-soft);
}

strong {
  color: var(--text-strong);
}

small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* -------- Links -------- */
a {
  color: var(--sea);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

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

/* -------- Lists -------- */
ul,
ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

/* -------- Horizontal Rule -------- */
hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

/* =========================================
   OBJ Layout System
   ========================================= */
/* Container */
.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3vw, 28px);
  padding-right: clamp(16px, 3vw, 28px);
}

/* Sections */
.section {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  padding-bottom: clamp(64px, 8vw, 96px);
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1120px, 100% - 48px);
  height: 1px;
  background: var(--line);
  opacity: 0.55;
}

.section--alt {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-muted) 100%);
}

/* Abstand Hero → erste Section */
.hero + .section,
.hero-wow + .section {
  padding-top: clamp(96px, 9vw, 140px);
}

/* Grids */
.grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

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

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}
/* Panels */
.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(32px, 5vw, 48px);
}
/* Basis Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--sea);
  color: var(--sea);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    color 0.15s ease;
}

.btn:hover {
  background: var(--sea);
  color: #fff;
  transform: translateY(-2px);
}

/* Outline Variante (CTA, ruhige Aktionen)
   Nutzung im HTML: class="btn btn-outline"
*/
.btn.btn-outline {
  border-color: rgba(15, 23, 42, 0.25);
  color: var(--text-strong);
  background: transparent;
}

.btn.btn-outline:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.45);
  color: var(--text-strong);
  transform: translateY(-1px);
}

/* ========================
   CARDS
======================== */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow1);
}

.card-body {
  padding: 36px;
}

@media (max-width: 768px) {
  .card-body {
    padding: 22px;
  }
}
/* ========================
   FORMS
======================== */
.form {
  display: grid;
  gap: 18px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(11, 42, 61, 0.12);
}

.form textarea {
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================
   CONTACT ICONS
======================== */
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  color: var(--sea);
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.contact-icon:hover {
  background: var(--sea);
  color: #fff;
  transform: translateY(-2px);
}

/* ========================
   MISC UI HELPERS
======================== */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand-cream);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.hr {
  height: 1px;
  background: var(--line);
  margin: 30px 0;
}

/* ========================
   SERVICE TEASER (Cards)
   Wiederverwendbar: Startseite + Unterseiten
======================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: none;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.service-card p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-strong);
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.22);
  padding-bottom: 2px;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.22);
  background: rgba(15, 23, 42, 0.02);
}

.service-card:hover .card-link {
  border-bottom-color: rgba(15, 23, 42, 0.42);
}

@media (max-width: 768px) {
  .service-grid {
    gap: 18px;
  }
  .service-card {
    padding: 22px;
    border-radius: 16px;
  }
}
/* ========================
   CTA BAND (ruhig, ohne Bild)
======================== */
.section-cta {
  padding: calc(var(--section-padding) * 1.1) 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.section-cta h2 {
  margin-bottom: 12px;
}

.section-cta .lead {
  margin-bottom: 28px;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  justify-content: flex-start;
}

/* Wrapper für Icon-Gruppen (Social, Actions etc.) */
.icon-list {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* SVG- & Icon-Grundregeln */
.icon,
.icon-list svg,
.icon-list img {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: block;
  flex-shrink: 0;
}

/* Falls Font-Icons genutzt werden */
.icon {
  font-size: 28px;
  line-height: 1;
}
/* =========================================================
   LEISTUNGEN – PAGE TOP / HERO / SERVICES
   ========================================================= */

.hero.hero--leistungen {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f3ed 0%, #fdfbf8 52%, #ffffff 100%);
}

.hero.hero--leistungen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 18%,
      rgba(216, 179, 106, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 85% 12%, rgba(11, 42, 61, 0.06), transparent 24%);
}

.hero.hero--leistungen .hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 112px) 0 clamp(56px, 7vw, 88px);
}
.hero.hero--leistungen .hero__content,
.hero.hero--leistungen .hero__content--wide {
  max-width: 920px;
}

.hero.hero--leistungen .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(26, 30, 35, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(26, 30, 35, 0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero.hero--leistungen .hero__title {
  max-width: 920px;
  margin: 0 0 22px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--text-strong);
}
.hero.hero--leistungen .hero__lead {
  max-width: 66ch;
  margin: 0 0 28px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.72;
  color: rgba(32, 37, 43, 0.82);
}

.hero.hero--leistungen .hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero.hero--leistungen .hero__facts li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 30, 35, 0.08);
  color: rgba(32, 37, 43, 0.86);
  font-size: 14px;
  font-weight: 500;
}

.hero.hero--leistungen .hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero.hero--leistungen .btn--primary {
  background: #d9a441;
  border-color: #d9a441;
  color: #1a1e23;
}

.hero.hero--leistungen .btn--primary:hover,
.hero.hero--leistungen .btn--primary:focus-visible {
  background: #c6902d;
  border-color: #c6902d;
  color: #1a1e23;
}

.hero.hero--leistungen .btn--ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(26, 30, 35, 0.14);
  color: var(--text-strong);
}

.hero.hero--leistungen .btn--ghost:hover,
.hero.hero--leistungen .btn--ghost:focus-visible {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.28);
  color: var(--text-strong);
}
.hero.hero--barrierefreiheit {
  position: relative;
  overflow: hidden;
  background: url("/assets/img/hero-barrierefreiheit-juist.webp") center
    center / cover no-repeat;
}

.hero.hero--barrierefreiheit .hero__inner,
.hero.hero--barrierefreiheit .hero__content,
.hero.hero--barrierefreiheit .container,
.hero.hero--barrierefreiheit .hero__cta,
.hero.hero--barrierefreiheit .btn,
.hero.hero--barrierefreiheit a.btn {
  position: relative;
  z-index: 5;
}
.hero.hero--barrierefreiheit .hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 40px;
}

.hero.hero--barrierefreiheit .hero__cta .btn,
.hero.hero--barrierefreiheit .hero__actions .btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.hero.hero--barrierefreiheit .hero__cta .btn:hover,
.hero.hero--barrierefreiheit .hero__cta .btn:focus-visible,
.hero.hero--barrierefreiheit .hero__actions .btn:hover,
.hero.hero--barrierefreiheit .hero__actions .btn:focus-visible {
  transform: translateY(-1px);
}

.hero.hero--barrierefreiheit .hero__cta .btn--primary,
.hero.hero--barrierefreiheit .hero__actions .btn--primary {
  background: #d9a441;
  border-color: rgba(217, 164, 65, 0.82);
  color: #ffffff;
  font-weight: 650;
}

.hero.hero--barrierefreiheit .hero__cta .btn--primary:hover,
.hero.hero--barrierefreiheit .hero__cta .btn--primary:focus-visible,
.hero.hero--barrierefreiheit .hero__actions .btn--primary:hover,
.hero.hero--barrierefreiheit .hero__actions .btn--primary:focus-visible {
  background: #d3a04a;
  border-color: rgba(211, 160, 74, 0.88);
  color: #ffffff;
}
.hero.hero--barrierefreiheit .hero__cta .btn--ghost,
.hero.hero--barrierefreiheit .hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.hero.hero--barrierefreiheit .hero__cta .btn--ghost:hover,
.hero.hero--barrierefreiheit .hero__cta .btn--ghost:focus-visible,
.hero.hero--barrierefreiheit .hero__actions .btn--ghost:hover,
.hero.hero--barrierefreiheit .hero__actions .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.92);
  color: #ffffff;
}

@media (max-width: 767px) {
  .hero.hero--barrierefreiheit .hero__cta {
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 28px;
  }

  .hero.hero--barrierefreiheit .hero__cta .btn,
  .hero.hero--barrierefreiheit .hero__actions .btn {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.97rem;
  }
}

.page-barrierefreiheit {
  position: relative;
  margin-top: clamp(-26px, -3vw, -14px);
  z-index: 2;
}

.page-barrierefreiheit__head {
  margin-bottom: clamp(26px, 4vw, 38px);
}
.page-barrierefreiheit__head .lead {
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.58;
  text-align: center;
}

.page-barrierefreiheit__intro::after {
  content: none;
}
.page-barrierefreiheit__intro {
  max-width: 860px;
  margin: 0 auto clamp(24px, 3.5vw, 34px);
  padding: clamp(20px, 3vw, 26px);
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.95) 100%
  );
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.035);
}
.page-barrierefreiheit__intro p {
  max-width: none;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
  font-weight: 450;
  color: rgba(15, 23, 42, 0.78);
}

.page-barrierefreiheit__head .sunline {
  margin: 10px auto 18px;
}

.page-barrierefreiheit__intro p:last-child,
.page-barrierefreiheit__panel p:last-child,
.page-barrierefreiheit__status p:last-child,
.page-barrierefreiheit__contact p:last-child {
  margin-bottom: 0;
}

.page-barrierefreiheit__grid {
  align-items: stretch;
  gap: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(26px, 4vw, 38px);
}

.page-barrierefreiheit__panel,
.page-barrierefreiheit__status,
.page-barrierefreiheit__contact {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
}

.page-barrierefreiheit__panel {
  padding: clamp(28px, 4vw, 36px);
}

.page-barrierefreiheit__status,
.page-barrierefreiheit__contact {
  padding: clamp(30px, 4vw, 40px);
}

.page-barrierefreiheit__label {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.44);
}

.page-barrierefreiheit .page-barrierefreiheit__panel h3,
.page-barrierefreiheit .page-barrierefreiheit__status h3,
.page-barrierefreiheit .page-barrierefreiheit__contact h3 {
  margin: 0 0 16px;
  font-size: clamp(1.22rem, 1.08rem + 0.52vw, 1.56rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #0f4c81;
}

.page-barrierefreiheit .page-barrierefreiheit__list {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--text);
}

.page-barrierefreiheit .page-barrierefreiheit__list li {
  padding-left: 0.22rem;
  line-height: 1.74;
}

.page-barrierefreiheit .page-barrierefreiheit__list li::marker {
  color: #0f4c81;
}

.page-barrierefreiheit .page-barrierefreiheit__list li + li {
  margin-top: 14px;
}

.page-barrierefreiheit__status {
  margin-bottom: clamp(26px, 4vw, 38px);
}

.page-barrierefreiheit__status-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.page-barrierefreiheit__note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.page-barrierefreiheit__contact {
  text-align: center;
}

.page-barrierefreiheit__contact-text {
  max-width: 760px;
  margin: 0 auto 28px;
}

.page-barrierefreiheit .guest-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  margin-top: 14px;
}

.page-barrierefreiheit .guest-contact-actions .contact-btn {
  min-width: 210px;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.96) 100%
  );
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.page-barrierefreiheit .guest-contact-actions .contact-btn:hover,
.page-barrierefreiheit .guest-contact-actions .contact-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 76, 129, 0.18);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
}

.page-barrierefreiheit .guest-contact-actions .btn-ico {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 76, 129, 0.08);
  color: #0f4c81;
  margin: 0 auto 12px;
}

.page-barrierefreiheit .guest-contact-actions .btn-text {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f4c81;
}

.page-barrierefreiheit .guest-contact-actions .btn-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.68);
}

@media (max-width: 767px) {
  .page-barrierefreiheit .guest-contact-actions .contact-btn {
    width: 100%;
    min-width: 0;
    min-height: 86px;
    padding: 16px 18px;
  }
}
.page-barrierefreiheit .contact-fallback {
  margin-top: 28px;
}
.page-barrierefreiheit .fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  align-items: center;
}

.page-barrierefreiheit .fallback-link,
.page-barrierefreiheit .fallback-copy--text {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 600;
  color: #0f4c81;
  text-decoration: none;
  cursor: pointer;
}

.page-barrierefreiheit .fallback-link:hover,
.page-barrierefreiheit .fallback-link:focus-visible,
.page-barrierefreiheit .fallback-copy--text:hover,
.page-barrierefreiheit .fallback-copy--text:focus-visible {
  color: #0c426f;
  text-decoration: underline;
}

.page-barrierefreiheit .fallback-copy--text {
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 900px) {
  .page-barrierefreiheit__intro {
    padding: 26px 22px;
  }

  .page-barrierefreiheit__status-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-barrierefreiheit__panel,
  .page-barrierefreiheit__status,
  .page-barrierefreiheit__contact {
    padding: 24px 22px;
    border-radius: 18px;
  }
}
.section-badges {
  background: #ffffff;
}

.section-badges .section-head,
.section-services .section-head {
  max-width: 760px;
  margin: 0 0 34px;
}

.section-head--compact h2,
.section-services .section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.section-head--compact .lead,
.section-services .section-head .lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(32, 37, 43, 0.78);
}

.badge-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.badge.badge--soft {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: linear-gradient(180deg, #fcfaf7 0%, #f7f2ea 100%);
  box-shadow: 0 14px 34px rgba(1, 13, 38, 0.04);
}

.badge.badge--soft .badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(26, 30, 35, 0.08);
  color: #2b5a78;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.badge.badge--soft .badge__text {
  display: block;
  padding-top: 3px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(32, 37, 43, 0.86);
}

.leistungen-audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.audience-card {
  padding: 24px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(1, 13, 38, 0.04);
}

.audience-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.audience-card p {
  margin: 0;
  color: rgba(32, 37, 43, 0.78);
}

.cards-grid--services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.section-services .card {
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  border: 1px solid rgba(26, 30, 35, 0.08);
  box-shadow: 0 16px 40px rgba(1, 13, 38, 0.05);
}

.section-services .card-body {
  height: 100%;
  padding: 28px 28px 26px;
}

.section-services .card h3 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
}

.section-services .card-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f4efe6;
  border: 1px solid rgba(26, 30, 35, 0.08);
  color: #2b5a78;
}

.section-services .card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-services .card-meta {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(43, 90, 120, 0.92);
}

.section-services .card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.section-services .card-list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.65;
}

.section-services .card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d8b36a;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .badge-row,
  .leistungen-audiences,
  .cards-grid--services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero.hero--leistungen .hero__inner {
    padding: 56px 0 48px;
  }

  .hero.hero--leistungen .hero__title {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.02;
  }

  .hero.hero--leistungen .hero__lead,
  .section-head--compact .lead,
  .section-services .section-head .lead {
    font-size: 15px;
    line-height: 1.68;
  }

  .badge.badge--soft,
  .audience-card,
  .section-services .card-body {
    padding: 20px;
  }

  .section-services .card h3 {
    font-size: 19px;
  }
}
/* =========================================================
   LEISTUNGEN – WORKFLOW / VERTRAUEN / MID CTA
   ========================================================= */

.section-workflow {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
}

.workflow-shell {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(26, 30, 35, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(1, 13, 38, 0.05);
}

.workflow-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 10px;
  color: #2b5a78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.workflow-step {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
}

.workflow-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4efe6;
  border: 1px solid rgba(26, 30, 35, 0.08);
  color: #2b5a78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.workflow-step h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  color: var(--text-strong);
}

.workflow-step p {
  margin: 0 0 16px;
  color: rgba(32, 37, 43, 0.78);
  line-height: 1.68;
}

.workflow-step ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.workflow-step ul li {
  position: relative;
  padding-left: 16px;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.6;
}

.workflow-step ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #d8b36a;
  transform: translateY(-50%);
}

.workflow-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 8px;
  margin-bottom: 22px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8f4ed 0%, #fdfbf8 100%);
  border: 1px solid rgba(26, 30, 35, 0.08);
}

.workflow-proof__eyebrow {
  margin: 0 0 8px;
  color: #2b5a78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-proof__content h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.workflow-proof__content p {
  margin: 0;
  max-width: 62ch;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.72;
}

.workflow-proof__facts {
  display: grid;
  gap: 12px;
}

.workflow-fact {
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(26, 30, 35, 0.08);
}

.workflow-fact strong {
  display: block;
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-strong);
}

.workflow-fact span {
  display: block;
  color: rgba(32, 37, 43, 0.76);
  line-height: 1.58;
}

.workflow-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
  padding-top: 6px;
}

.workflow-cta p {
  margin: 0;
  max-width: 52ch;
  color: rgba(32, 37, 43, 0.72);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .workflow-shell {
    padding: 20px;
    border-radius: 22px;
  }

  .workflow-step,
  .workflow-proof,
  .workflow-fact {
    border-radius: 18px;
  }

  .workflow-step {
    padding: 20px;
  }

  .workflow-proof {
    padding: 20px;
  }

  .workflow-cta {
    align-items: flex-start;
  }
}
/* =========================================================
   LEISTUNGEN – MODELLE / FINAL CTA
   ========================================================= */

.section-models {
  background: #ffffff;
}

.models-head {
  max-width: 800px;
  margin-bottom: 32px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.model-card {
  padding: 26px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  box-shadow: 0 16px 40px rgba(1, 13, 38, 0.04);
}

.model-card--primary {
  background: linear-gradient(180deg, #f8f3ea 0%, #fffdfa 100%);
  border-color: rgba(216, 179, 106, 0.38);
}

.model-card__eyebrow {
  margin: 0 0 10px;
  color: #2b5a78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.model-card__intro {
  margin: 0 0 16px;
  color: rgba(32, 37, 43, 0.78);
  line-height: 1.68;
}

.model-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.model-card__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.62;
}

.model-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d8b36a;
  transform: translateY(-50%);
}

.models-note {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: linear-gradient(180deg, #fbf8f3 0%, #ffffff 100%);
}

.models-note__eyebrow {
  margin: 0 0 8px;
  color: #2b5a78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.models-note__content h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.models-note__content p {
  margin: 0;
  max-width: 62ch;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.72;
}

.models-note__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.models-note__list li {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: #ffffff;
  color: rgba(32, 37, 43, 0.82);
  font-weight: 500;
}

.section-cta--leistungen {
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ed 100%);
}

.section-cta--leistungen .cta-panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: linear-gradient(180deg, #fffdfa 0%, #f8f3ea 100%);
  box-shadow: 0 20px 50px rgba(1, 13, 38, 0.05);
}

.section-cta--leistungen h2 {
  margin: 0 0 14px;
  max-width: 14ch;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-strong);
}

.section-cta--leistungen .lead {
  margin: 0 0 24px;
  max-width: 64ch;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.72;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.cta-panel__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.cta-panel__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 30, 35, 0.08);
  color: rgba(32, 37, 43, 0.8);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .models-grid {
    grid-template-columns: 1fr;
  }

  .models-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .model-card,
  .models-note,
  .section-cta--leistungen .cta-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .model-card h3 {
    font-size: 21px;
  }

  .section-cta--leistungen h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 38px);
  }
}
/* =========================================
   Topbar – Social Hover (Brand-konform)
========================================= */
.topbar .social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.topbar .social a:hover {
  background: var(--brand-yellow-soft);
  transform: translateY(-1px);
}

/* Icon-Farbe beim Hover */
.topbar .social a:hover svg,
.topbar .social a:hover svg * {
  fill: var(--brand-blue) !important;
  stroke: var(--brand-blue) !important;
}

.topbar .social a:hover i {
  color: var(--brand-blue) !important;
}

/* Hero styles removed (reset) – concierge hero system removed as requested. */
.infobox--valentine {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius2);
  padding: 26px;
  color: #fff;
  /* Wichtig: nicht abgeschnitten */
  min-height: 520px;
  /* Single Source Background */
  background: var(--val-bg) center/cover no-repeat;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Overlay: macht Text lesbar */
.infobox--valentine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: 0;
}

.infobox--valentine > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .infobox--valentine {
    min-height: 620px;
    padding: 20px;
    background-position: 55% 45%;
  }
}
/* =========================================
   KONTAKT – Layout (2 Cards nebeneinander)
========================================= */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   KONTAKT – Phone/Mail Links dezenter
========================================= */
.contact-value a[href^="tel:"],
.contact-value a[href^="mailto:"] {
  color: var(--sea);
}

/* =========================================
   PAGE HEAD Helper (wenn du es nutzt)
========================================= */
.page-head {
  max-width: var(--container-narrow);
}

.page-head.center {
  margin: 0 auto;
  text-align: center;
}
/* =========================================
   0) Safety: Hintergrund stabil
========================================= */
html,
body {
  background: #fff !important;
  color-scheme: light;
}

/* =========================================
   1) Focus / Accessibility (neutral)
========================================= */
:focus-visible {
  outline: 2px solid rgba(15, 23, 42, 0.55) !important;
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.14) !important;
  border-radius: 12px;
}
/* =========================================
   STELLENANGEBOTE – ruhige Hinweisseite
   ========================================= */

.jobs-head {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.jobs-head__eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
  opacity: 0.9;
}

.jobs-head h1 {
  margin: 0 0 14px;
  color: var(--sea);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.jobs-head .lead {
  max-width: 40rem;
  margin: 0 0 14px;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-strong);
}

.jobs-head__intro {
  max-width: 46rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.jobs-hero {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  min-height: clamp(300px, 34vw, 460px);
  background: #dfe8ee;
  border-radius: 0;
  box-shadow: none;
}
.jobs-hero + .section,
.jobs-hero + section {
  margin-top: 0;
}
.jobs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 27, 40, 0.08) 0%,
    rgba(6, 27, 40, 0.12) 100%
  );
  pointer-events: none;
}

.jobs-hero__image {
  display: block;
  width: 100%;
  height: clamp(300px, 34vw, 460px);
  object-fit: cover;
  object-position: center 74%;
}

.jobs-hero__overlay {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  bottom: clamp(22px, 4vw, 44px);
  z-index: 2;
  max-width: 60%;
}

.jobs-hero__headline {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.22),
    0 1px 2px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1100px) {
  .jobs-hero {
    min-height: 360px;
  }

  .jobs-hero__image {
    height: 360px;
    object-position: center 72%;
  }

  .jobs-hero__overlay {
    max-width: 75%;
  }
}

@media (max-width: 768px) {
  .jobs-hero {
    margin-top: 14px;
    min-height: 280px;
  }

  .jobs-hero__image {
    height: 280px;
    object-position: center 70%;
  }

  .jobs-hero__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .jobs-hero__headline {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }
}
.jobs-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: clamp(24px, 4vw, 40px);
}

.jobs-hero__card {
  max-width: min(560px, 100%);
  padding: clamp(22px, 3vw, 30px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(1, 13, 38, 0.14);
}

.jobs-hero__label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
}

.jobs-hero__title {
  margin: 0 0 10px;
  color: var(--sea);
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.jobs-hero__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.jobs-status {
  padding-top: clamp(28px, 5vw, 52px);
}

.jobs-status::before {
  display: none;
}

.jobs-status__panel {
  border: 1px solid rgba(11, 42, 61, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf9 100%);
  box-shadow: 0 14px 40px rgba(1, 13, 38, 0.08);
}

.jobs-status__content {
  max-width: 780px;
}

.jobs-status__label {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
}

.jobs-status h2 {
  margin: 0 0 18px;
  color: var(--sea);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.jobs-status p {
  margin: 0 0 16px;
  max-width: 62ch;
  line-height: 1.8;
  color: var(--text-soft);
}

.jobs-status__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.jobs-status__note {
  padding: 22px 22px 20px;
  border: 1px solid rgba(11, 42, 61, 0.1);
  border-radius: 18px;
  background: rgba(244, 241, 236, 0.36);
}

.jobs-status__note h3 {
  margin: 0 0 10px;
  color: var(--sea);
  font-size: 1.02rem;
  line-height: 1.3;
}

.jobs-status__note p {
  margin: 0;
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.75;
}

.jobs-status__contact {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 42, 61, 0.1);
}

.jobs-status__contact-text {
  margin-bottom: 10px;
}

.jobs-status__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0;
  color: var(--sea);
  font-weight: 500;
}

.jobs-status__actions a {
  color: var(--sea);
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 42, 61, 0.22);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.jobs-status__actions a:hover {
  opacity: 1;
  color: var(--brand-blue);
  border-color: rgba(11, 42, 61, 0.5);
}

.jobs-status__actions span {
  color: rgba(11, 42, 61, 0.35);
}

/* Mobile */
@media (max-width: 900px) {
  .jobs-status__notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .jobs-head {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .jobs-hero {
    min-height: 280px;
    border-radius: 20px;
  }

  .jobs-hero__inner {
    padding: 18px;
  }

  .jobs-hero__card {
    padding: 18px;
    border-radius: 16px;
  }

  .jobs-status__panel {
    border-radius: 20px;
  }

  .jobs-status__note {
    padding: 18px;
  }

  .jobs-status__actions {
    align-items: flex-start;
  }

  .jobs-status__actions span {
    display: none;
  }
}

/* Safari / Fallback für Backdrop */
@supports not (
  (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))
) {
  .jobs-hero__card {
    background: rgba(255, 255, 255, 0.96);
  }
}
/* =========================================
   2) Header / Topbar / Navigation – opak, ruhig
========================================= */
.topbar {
  background: #fff !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.topbar,
.topbar a,
.topbar span {
  color: rgba(15, 23, 42, 0.74) !important;
  opacity: 1 !important;
}

.topbar a:hover {
  color: rgba(15, 23, 42, 0.92) !important;
}

.site-header,
.header-inner {
  background: #fff !important;
  opacity: 1 !important;
}

.header-inner {
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .header-inner {
    background: #fff !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}
.main-nav a,
.nav-item {
  color: rgba(15, 23, 42, 0.95) !important;
  font-weight: 500;
}

.main-nav a:hover,
.nav-item:hover {
  color: rgb(15, 23, 42) !important;
}

/* Nav underline neutral */
.nav-item::after {
  background: rgba(15, 23, 42, 0.85) !important;
  opacity: 0;
}

.nav-item:hover::after {
  opacity: 0.75;
}

/* Portal/CTA im Nav: outlined */
.nav-item.nav-portal {
  background: transparent !important;
  color: rgba(15, 23, 42, 0.92) !important;
  border: 1px solid rgba(15, 23, 42, 0.22) !important;
  box-shadow: none !important;
}

.nav-item.nav-portal:hover {
  background: rgba(15, 23, 42, 0.04) !important;
  border-color: rgba(15, 23, 42, 0.36) !important;
  transform: translateY(-1px);
}

/* =========================================
   3) Support Button – nie „weiß“, immer lesbar
========================================= */
.topbar .support-link,
.header-inner .support-link,
a.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(15, 23, 42, 0.95) !important;
  background: rgba(15, 23, 42, 0.04) !important;
  border: 1px solid rgba(15, 23, 42, 0.22) !important;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: none !important;
}

.topbar .support-link:hover,
.header-inner .support-link:hover,
a.support-link:hover {
  background: rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(15, 23, 42, 0.36) !important;
  transform: translateY(-1px);
}

.topbar .support-link *,
.header-inner .support-link *,
a.support-link * {
  color: inherit !important;
}

.topbar .support-link svg,
.topbar .support-link svg *,
.header-inner .support-link svg,
.header-inner .support-link svg *,
a.support-link svg,
a.support-link svg * {
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* =========================================
   4) ICONS – Fix gegen „riesige“ Icons (SCOPED)
   WICHTIG: KEIN globales svg{width:auto} mehr!
========================================= */
/* Topbar Social */
.topbar .social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .social-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar .social-btn svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
}

/* Header Nav icons + Support icon image */
.header-inner .nav-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-inner .nav-item img,
.topbar .support-link img,
.header-inner .support-link img {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  display: block;
}

/* Footer Social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-btn svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
}

/* FontAwesome baseline */
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
  font-size: 1em !important;
  line-height: 1 !important;
}

/* Contact icons (falls genutzt) */
.contact-icon i,
.contact-icon svg {
  font-size: 1em !important;
  width: 1em !important;
  height: 1em !important;
}

/* Icons im Header niemals invertieren */
.header-inner svg,
.header-inner img {
  filter: none !important;
  opacity: 0.92;
}

/* =========================================
   5) Section-Rhythmus (global SAFE)
   Hinweis: gehört langfristig nach 02-layout.scss
========================================= */
.section {
  padding: clamp(64px, 7vw, 110px) 0 !important;
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0 !important;
  }
}
/* Extra Luft nach Hero → erste Section (bestehendes System) */
.hero + .section,
.hero-wow + .section {
  padding-top: clamp(70px, 7vw, 120px) !important;
}

/* =========================================
   6) HERO – Concierge (SCOPED) + Grauer Balken FIX
   EIN Block, keine Dopplungen.
========================================= */
/* Concierge: Main-Padding neutralisieren (nur auf page--hero) */
.page.page--hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Concierge: Full-bleed, stabile Höhe, kein „graues Nachlaufen“ */
.page--hero .hero.hero--concierge {
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 72vh !important;
  padding-bottom: 64px !important; /* nicht zu groß, sonst „Box“ */
  margin-bottom: 0 !important;
  /* Bild hart setzen (stabil gegen Legacy-Kollision) */
  background-image: url("/assets/img/concierge/hero-concierge.jpg") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: 55% 50% !important;
  background-color: #000 !important;
  position: relative;
  overflow: hidden;
}

/* Overlay sauber im Hero halten */
.page--hero .hero.hero--concierge::before,
.page--hero .hero.hero--concierge::after {
  inset: 0 !important;
}

/* Overlay-Gradient (EINMAL definiert) */
.page--hero .hero.hero--concierge::after {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.22) 40%,
    rgba(0, 0, 0, 0.08) 100%
  ) !important;
}

/* Nächste Section: immer weiß + über dem Hero */
.page--hero .hero.hero--concierge + .section {
  position: relative;
  z-index: 1;
  background: #fff !important;
  margin-top: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .page--hero .hero.hero--concierge {
    min-height: 70vh !important;
    padding-bottom: 56px !important;
    background-position: 55% 50% !important;
  }
}
/* Ultrawide */
@media (min-width: 1800px) {
  .page--hero .hero.hero--concierge {
    min-height: 62vh !important;
    max-height: 720px !important;
  }
}
/* Startseite: Hero-WOW Overlay reduzieren */
.hero-wow::before {
  background: linear-gradient(
    180deg,
    rgba(1, 13, 38, 0.26) 0%,
    rgba(11, 42, 61, 0.14) 52%,
    rgba(1, 13, 38, 0.22) 100%
  ) !important;
}

.hero-wow::after {
  opacity: 0.28 !important;
}

/* =========================================
   7) "Graues Band" / Intro sicher entfernen
========================================= */
.section-intro {
  background: #fff !important;
}

/* =========================================
   8) Valentine Infobox Fix
========================================= */
.infobox--valentine {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
}

@media (max-width: 768px) {
  .infobox--valentine {
    min-height: 620px !important;
  }
}
/* =========================================
   9) Links: tel/mail + visited + tap highlight
========================================= */
a[href^="tel:"],
a[href^="mailto:"] {
  color: rgba(15, 23, 42, 0.95);
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:visited {
  color: inherit;
}

/* =========================================
   10) Reveal Fix – Content darf niemals verschwinden
========================================= */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
/* =========================================================
   HOME – HEADING SCALE
   ========================================================= */

:root {
  --home-h2-size: clamp(18px, 1.6vw, 26px);
  --home-h2-line: 1.1;
  --home-h2-track: -0.02em;
}
/* =========================================================
   HOME – HOME SECTION EYEBROW AS BADGE
   ========================================================= */

.story-split.page-home .eyebrow,
.section-services.page-home .eyebrow,
.section-services-carousel.page-home .eyebrow,
.section-kinetic.page-home .eyebrow,
.section-dashboard .eyebrow,
.section-kinetic .vision-eyebrow,
.section-kinetic .kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  width: auto;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(32, 83, 115, 0.82);
  font-size: 11px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(1, 13, 38, 0.04);
  margin: 0 0 18px;
}
/* Falls ein Carousel-Section-Label als normales Eyebrow statt .carousel-badge kommt */
.section-services-carousel.page-home .eyebrow {
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .story-split.page-home .eyebrow,
  .section-services.page-home .eyebrow,
  .section-services-carousel.page-home .eyebrow,
  .section-kinetic.page-home .eyebrow,
  .section-dashboard .eyebrow,
  .section-kinetic .vision-eyebrow,
  .section-kinetic .kicker {
    min-height: 40px;
    padding: 0 20px;
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }
}
/* =========================================================
   HOME – HERO
   ========================================================= */

.hero.hero--index {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  background: #0f1720;
}

.hero.hero--index .hero__media,
.hero.hero--index .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero.hero--index .hero__media img,
.hero.hero--index .hero-media img,
.hero.hero--index .hero__image,
.hero.hero--index .hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero.hero--index::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 28, 0.46) 0%,
    rgba(10, 18, 28, 0.5) 48%,
    rgba(10, 18, 28, 0.56) 100%
  );
}

.hero.hero--index .container,
.hero.hero--index .hero__inner,
.hero.hero--index .hero-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
}

.hero.hero--index .hero__inner,
.hero.hero--index .hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 0 86px;
}

.hero.hero--index .hero__content,
.hero.hero--index .hero-content {
  max-width: 860px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.hero.hero--index .hero__content h1,
.hero.hero--index .hero-content h1,
.hero.hero--index h1 {
  margin: 0 0 14px;
  max-width: 11.5ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}
.hero.hero--index .hero__content p,
.hero.hero--index .hero-content p,
.hero.hero--index .hero__lead,
.hero.hero--index .hero-lead {
  margin: 0 auto 24px;
  max-width: 66ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.hero.hero--index .hero__actions,
.hero.hero--index .hero-actions,
.hero.hero--index .hero__cta,
.hero.hero--index .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero.hero--index .btn,
.hero.hero--index .button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: none;
  transform: none;
}

.hero.hero--index .btn:hover,
.hero.hero--index .button:hover {
  transform: translateY(-1px);
}

.hero.hero--index .btn--primary,
.hero.hero--index .button--primary {
  background: #d9a441;
  border-color: #d9a441;
  color: #1a1e23;
}

.hero.hero--index .btn--primary:hover,
.hero.hero--index .button--primary:hover,
.hero.hero--index .btn--primary:focus-visible,
.hero.hero--index .button--primary:focus-visible {
  background: #c6902d;
  border-color: #c6902d;
  color: #1a1e23;
}

.hero.hero--index .btn--ghost,
.hero.hero--index .button--ghost,
.hero.hero--index .btn.btn-outline,
.hero.hero--index .button.btn-outline {
  background: rgba(24, 30, 36, 0.72);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero.hero--index .btn--ghost:hover,
.hero.hero--index .button--ghost:hover,
.hero.hero--index .btn--ghost:focus-visible,
.hero.hero--index .button--ghost:focus-visible,
.hero.hero--index .btn.btn-outline:hover,
.hero.hero--index .button.btn-outline:hover,
.hero.hero--index .btn.btn-outline:focus-visible,
.hero.hero--index .button.btn-outline:focus-visible {
  background: rgba(24, 30, 36, 0.86);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 820px) {
  .hero.hero--index {
    min-height: 440px;
  }

  .hero.hero--index::after {
    background: linear-gradient(
      180deg,
      rgba(10, 18, 28, 0.24) 0%,
      rgba(10, 18, 28, 0.42) 42%,
      rgba(10, 18, 28, 0.6) 100%
    );
  }

  .hero.hero--index .hero__inner,
  .hero.hero--index .hero-inner {
    align-items: center;
    padding: 72px 0 68px;
  }

  .hero.hero--index .hero__content h1,
  .hero.hero--index .hero-content h1,
  .hero.hero--index h1 {
    max-width: 10ch;
    font-size: clamp(30px, 7.2vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .hero.hero--index .hero__content p,
  .hero.hero--index .hero-content p,
  .hero.hero--index .hero__lead,
  .hero.hero--index .hero-lead {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }
}
/* =========================================================
   HOME – STORY BLOCK
   ========================================================= */

.story-split.page-home {
  padding: clamp(56px, 6vw, 84px) 0;
  background: #e8e1d4;
}

.story-split.page-home .container {
  max-width: 1120px;
}

.story-split.page-home .story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(300px, 420px);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  justify-content: center;
}

.story-split.page-home .story-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(1, 13, 38, 0.06);
}

.story-split.page-home .story-media img {
  width: 100%;
  height: auto;
  display: block;
}

.story-split.page-home .story-content {
  max-width: 420px;
}

.story-split.page-home .eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  color: rgba(32, 83, 115, 0.7);
}

.story-split.page-home .story-title {
  margin: 0 0 12px;
  max-width: 11ch;
  font-size: var(--home-h2-size);
  line-height: var(--home-h2-line);
  letter-spacing: var(--home-h2-track);
  color: #2b5a78;
}
.story-split.page-home .sunline {
  width: 52px;
  height: 3px;
  border-radius: 999px;
  margin: 0 0 18px;
  background: linear-gradient(90deg, #d7b46a 0%, #efd598 100%);
}

.story-split.page-home .story-lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.62;
  color: rgba(32, 37, 43, 0.82);
}

.story-split.page-home .story-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.story-split.page-home .story-points li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid rgba(26, 30, 35, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.story-split.page-home .pt-ico {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 20px;
  min-width: 20px;
  padding-top: 2px;
}

.story-split.page-home .pt-ico img,
.story-split.page-home .pt-ico svg {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.72;
}

.story-split.page-home .pt-text {
  display: block;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(32, 37, 43, 0.72);
}

.story-split.page-home .pt-text strong {
  display: block;
  margin: 0 0 3px;
  font-size: 13px;
  line-height: 1.35;
  color: #1f2937;
}

@media (max-width: 640px) {
  .story-split.page-home {
    padding: 56px 0 72px;
  }

  .story-split.page-home .story-media {
    width: min(100%, 320px);
    margin: 0 auto;
    border-radius: 18px;
    aspect-ratio: 4 / 5;
  }

  .story-split.page-home .story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .story-split.page-home .story-title {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.1;
  }

  .story-split.page-home .story-points li {
    border-radius: 14px;
    padding: 12px 13px;
  }
}
/* =========================================================
   HOME – SERVICES INTRO
   ========================================================= */

.section-services.page-home {
  padding: clamp(48px, 6vw, 72px) 0 clamp(10px, 2vw, 18px);
  background: #ffffff;
}
section.section.section-services.page-home,
.section.section-services.page-home {
  background: #ffffff !important;
}
.section-services.page-home .container {
  max-width: 1180px;
}

.section-services.page-home .services-overview {
  max-width: 700px;
}

.section-services.page-home .services-overview h2 {
  margin: 0 0 12px;
  font-size: var(--home-h2-size);
  line-height: var(--home-h2-line);
  letter-spacing: var(--home-h2-track);
  color: #2b5a78;
}

.section-services.page-home .services-overview p {
  margin: 0 0 12px;
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.62;
  color: rgba(32, 37, 43, 0.8);
}

.section-services.page-home .services-bullets {
  margin: 14px 0 0;
  padding-left: 1.05rem;
}

.section-services.page-home .services-bullets li {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(32, 37, 43, 0.78);
}

@media (max-width: 900px) {
  .section-services.page-home .services-overview {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .section-services.page-home {
    padding: 56px 0 16px;
  }

  .section-services.page-home .services-overview h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .section-services.page-home .services-overview p,
  .section-services.page-home .services-bullets li {
    font-size: 14px;
  }
}
/* HOME – SERVICES BADGE = exakt wie Story-Badge */
.section-services.page-home .eyebrow,
.section-services.page-home .services-overview .eyebrow,
.section-services.page-home .services-overview .badge {
  color: rgba(32, 83, 115, 0.82) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  line-height: 44px !important;
}
/* =========================================================
   HOME – SERVICE CAROUSEL
   ========================================================= */

.section-services-carousel.page-home {
  padding: clamp(14px, 2vw, 20px) 0 clamp(48px, 6vw, 72px);
  background: #f5f5f5;
}

.section-services-carousel.page-home .container {
  max-width: 1180px;
}

.section-services-carousel.page-home .carousel-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.section-services-carousel.page-home .carousel-head-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.section-services-carousel.page-home .carousel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(32, 83, 115, 0.82);
  font-size: 11px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(1, 13, 38, 0.04);
}

.section-services-carousel.page-home .carousel-head h2 {
  margin: 0;
  font-size: var(--home-h2-size);
  line-height: var(--home-h2-line);
  letter-spacing: var(--home-h2-track);
  color: #2b5a78;
}

.section-services-carousel.page-home .carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-services-carousel.page-home .carousel-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(32, 83, 115, 0.82);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(1, 13, 38, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.section-services-carousel.page-home .carousel-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(1, 13, 38, 0.08);
  border-color: rgba(32, 83, 115, 0.14);
}

.section-services-carousel.page-home .carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.section-services-carousel.page-home .carousel::-webkit-scrollbar {
  display: none;
}

.section-services-carousel.page-home .carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 210px;
  gap: 12px;
  align-items: stretch;
  width: max-content;
  padding-right: 56px;
}

.section-services-carousel.page-home .carousel-card {
  scroll-snap-align: start;
  min-height: 248px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(26, 30, 35, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(1, 13, 38, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.section-services-carousel.page-home .carousel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(1, 13, 38, 0.08);
  border-color: rgba(32, 83, 115, 0.12);
}

.section-services-carousel.page-home .carousel-ico {
  width: 22px;
  height: 22px;
  margin-bottom: 8px;
  flex: 0 0 auto;
}

.section-services-carousel.page-home .carousel-ico img,
.section-services-carousel.page-home .carousel-ico svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.section-services-carousel.page-home .carousel-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #2b5a78;
}

.section-services-carousel.page-home .carousel-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.68;
  color: rgba(32, 37, 43, 0.74);
}

.section-services-carousel.page-home .carousel-card--cta {
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.82);
}

.section-services-carousel.page-home .carousel-card--cta h3 {
  margin-bottom: 8px;
}

.section-services-carousel.page-home .carousel-card--cta p {
  max-width: 18ch;
  margin-bottom: 6px;
}

.section-services-carousel.page-home .carousel-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: auto;
  padding-top: 6px;
}

.section-services-carousel.page-home .carousel-actions .btn,
.section-services-carousel.page-home .carousel-actions .button {
  min-height: 0;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 40px;
  box-shadow: none;
}

.section-services-carousel.page-home .carousel-actions .btn,
.section-services-carousel.page-home .carousel-actions .button {
  width: 190px;
  max-width: 190px;
  justify-content: center;
}

.section-services-carousel.page-home .carousel-actions .btn:first-child,
.section-services-carousel.page-home .carousel-actions .button:first-child,
.section-services-carousel.page-home .carousel-actions .btn:last-child,
.section-services-carousel.page-home .carousel-actions .button:last-child {
  min-width: 190px;
  max-width: 190px;
}
@media (max-width: 900px) {
  .section-services-carousel.page-home .carousel-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-services-carousel.page-home .carousel-head-copy {
    gap: 8px;
  }

  .section-services-carousel.page-home .carousel-head h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .section-services-carousel.page-home .carousel-track {
    grid-auto-columns: 240px;
    padding-right: 30px;
  }
}

@media (max-width: 640px) {
  .section-services-carousel.page-home .carousel-track {
    grid-auto-columns: 74vw;
    padding-right: 16px;
  }

  .section-services-carousel.page-home .carousel-card {
    min-height: auto;
    border-radius: 18px;
  }

  .section-services-carousel.page-home .carousel-card--cta {
    min-height: auto;
    padding: 20px 16px 18px;
  }

  .section-services-carousel.page-home .carousel-card--cta h3 {
    margin-bottom: 6px;
  }

  .section-services-carousel.page-home .carousel-card--cta p {
    max-width: 100%;
    margin-bottom: 4px;
    line-height: 1.55;
  }

  .section-services-carousel.page-home .carousel-actions {
    width: 100%;
    align-items: flex-start;
    gap: 10px;
    padding-top: 2px;
  }

  .section-services-carousel.page-home .carousel-actions .btn,
  .section-services-carousel.page-home .carousel-actions .button {
    width: auto;
    min-width: 200px;
    max-width: 100%;
    min-height: 42px;
    line-height: 42px;
    justify-content: center;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-services-carousel.page-home .carousel,
  .section-services-carousel.page-home .carousel-card,
  .section-services-carousel.page-home .carousel-btn {
    scroll-behavior: auto;
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   HOME – VISION / DASHBOARD
   ========================================================= */

.section-dashboard {
  padding: clamp(48px, 6vw, 72px) 0 clamp(60px, 7vw, 84px);
  background: #f1ebe6;
}

.section-dashboard .container {
  max-width: 1180px;
}

.section-dashboard .dashboard-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(340px, 520px);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.section-dashboard h2 {
  margin: 0 0 14px;
  max-width: 11ch;
  font-size: var(--home-h2-size);
  line-height: var(--home-h2-line);
  letter-spacing: var(--home-h2-track);
  color: #2b5a78;
}
.section-dashboard .dashboard-copy > p,
.section-dashboard .dashboard-content > p,
.section-dashboard .dashboard-text > p,
.section-dashboard .dashboard-note {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(32, 37, 43, 0.8);
}

.section-dashboard .dashboard-copy,
.section-dashboard .dashboard-content,
.section-dashboard .dashboard-text {
  max-width: 460px;
}
.section-dashboard .dashboard-copy p,
.section-dashboard .dashboard-content p,
.section-dashboard .dashboard-text p {
  line-height: 1.8;
  color: rgba(32, 37, 43, 0.8);
}
.section-dashboard .dashboard-visual {
  position: relative;
  margin: 0;
  padding: 22px 22px 18px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(250, 247, 244, 0.78) 100%
  );
  border: 1px solid rgba(26, 30, 35, 0.05);
  box-shadow:
    0 24px 60px rgba(1, 13, 38, 0.06),
    0 8px 20px rgba(1, 13, 38, 0.03);
}
.section-dashboard .dashboard-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0) 38%
  );
}

.section-dashboard .dashboard-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: rgba(43, 90, 120, 0.96);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow:
    0 12px 24px rgba(1, 13, 38, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 3;
}

.section-dashboard .dashboard-visual img,
.section-dashboard .dashboard-visual svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .section-dashboard {
    padding: 48px 0 84px;
  }

  .section-dashboard .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-dashboard .dashboard-copy,
  .section-dashboard .dashboard-content,
  .section-dashboard .dashboard-text {
    max-width: none;
  }

  .section-dashboard .dashboard-visual {
    padding: 16px 16px 14px;
    border-radius: 20px;
  }
}
@media (max-width: 640px) {
  .section-dashboard .dashboard-visual {
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 14px 14px 12px;
    border-radius: 18px;
  }

  .section-dashboard .dashboard-badge {
    left: 12px;
    bottom: 12px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }
}
.section-dashboard .dashboard-points {
  display: grid;
  gap: 14px;
  margin: 18px 0 18px;
}

.section-dashboard .dashboard-points p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(32, 37, 43, 0.76);
}
.section-dashboard .dashboard-points .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #2b5a78;
}

/* =========================================================
   HOME – SAFETY
   ========================================================= */

.page-home .carousel-card img,
.page-home .carousel-card svg,
.page-home .service-icon img,
.page-home .service-icon svg {
  max-width: 100%;
}

/* =========================================================
   HOME – RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .story-split.page-home .story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-split.page-home .story-content {
    order: 1;
    max-width: none;
  }

  .story-split.page-home .story-media {
    order: 2;
  }

  .story-split.page-home .story-title,
  .story-split.page-home .story-lead {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .section-dashboard .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .section-services.page-home .services-overview {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .story-split.page-home {
    padding: 44px 0 52px;
  }

  .story-split.page-home .story-media {
    border-radius: 18px;
  }

  .story-split.page-home .story-title {
    font-size: clamp(18px, 5.6vw, 24px);
  }

  .story-split.page-home .story-points li {
    border-radius: 14px;
  }

  .section-services.page-home {
    padding: 40px 0 10px;
  }

  .section-services-carousel.page-home .carousel-track {
    grid-auto-columns: 72vw;
    padding-right: 14px;
  }

  .section-services-carousel.page-home .carousel-card {
    min-height: auto;
    border-radius: 16px;
    padding: 14px;
  }

  .section-kinetic.page-home,
  .section-kinetic {
    padding: 44px 0 40px;
  }

  .section-dashboard {
    padding: 44px 0 60px;
  }

  .section-dashboard .dashboard-visual {
    padding: 12px 12px 10px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel {
    scroll-behavior: auto;
  }

  .carousel-card,
  .carousel-btn {
    transition: none !important;
    transform: none !important;
  }
}
/* =========================================================
   HOME – VISION BLOCK
   ========================================================= */

.section-kinetic.page-home,
.section-kinetic {
  position: relative;
  overflow: hidden;
  min-height: auto;
  height: auto;
  padding: clamp(52px, 6vw, 76px) 0 clamp(40px, 5vw, 60px);
  background: #e8e1d4;
}

.section-kinetic .container {
  max-width: 1180px;
}

.section-kinetic .vision-layout {
  display: grid;
  grid-template-columns: minmax(340px, 520px) minmax(260px, 360px);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.section-kinetic .vision-copy,
.section-kinetic .vision,
.section-kinetic .vision-wrap,
.section-kinetic .vision-inner {
  position: relative;
  max-width: 360px;
  order: 2;
}

.section-kinetic .eyebrow,
.section-kinetic .vision-eyebrow,
.section-kinetic .kicker {
  margin-bottom: 18px;
}

.section-kinetic h2,
.section-kinetic .vision-title {
  margin: 0 0 22px;
  max-width: 10ch;
  font-size: var(--home-h2-size);
  line-height: 1.04;
  letter-spacing: var(--home-h2-track);
  color: #2b5a78;
}
.section-kinetic .vision__headline {
  margin: 0 0 16px;
  max-width: 8.5ch;
  font-size: var(--home-h2-size);
  line-height: 1.04;
  letter-spacing: var(--home-h2-track);
  color: #2b5a78;
}

.section-kinetic .vision__line {
  display: block;
}
.section-kinetic .vision-lead {
  margin: 0 0 24px;
  max-width: 34ch;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(32, 37, 43, 0.82);
}

.section-kinetic .vision__flow {
  display: grid;
  gap: 12px;
  max-width: 32ch;
}

.section-kinetic .vision__item {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: rgba(32, 37, 43, 0.84);
}
.section-kinetic .vision__item--muted {
  max-width: 34ch;
  font-size: 13px;
  line-height: 1.68;
  color: rgba(32, 37, 43, 0.74);
}
.section-kinetic .vision__item--closing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #2b5a78;
}
.section-kinetic .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(43, 90, 120, 0.42);
  flex: 0 0 auto;
}
.section-kinetic .vision__signature {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #2b5a78;
}

.section-kinetic .vision-media {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 26px 60px rgba(1, 13, 38, 0.12);
  order: 1;
}

.section-kinetic .vision-media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .section-kinetic.page-home,
  .section-kinetic {
    padding: 72px 0 56px;
  }

  .section-kinetic .vision-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-kinetic .vision-copy {
    order: 1;
    max-width: none;
  }

  .section-kinetic .vision-media {
    order: 2;
    border-radius: 22px;
  }

  .section-kinetic h2,
  .section-kinetic .vision-title,
  .section-kinetic .vision__headline,
  .section-kinetic .vision-lead,
  .section-kinetic .vision__flow,
  .section-kinetic .vision__item--muted {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .section-kinetic.page-home,
  .section-kinetic {
    padding: 56px 0 44px;
  }

  .section-kinetic h2,
  .section-kinetic .vision-title,
  .section-kinetic .vision__headline {
    max-width: 100%;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.06;
  }
  .section-kinetic .vision__flow {
    gap: 14px;
  }

  .section-kinetic .vision-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .section-kinetic .vision__item {
    font-size: 15px;
    line-height: 1.58;
  }
  .section-kinetic .vision__item--muted {
    font-size: 14px;
    line-height: 1.72;
  }
  .section-kinetic .vision__item--closing {
    gap: 8px;
  }

  .section-kinetic .dot {
    width: 5px;
    height: 5px;
  }
  .section-kinetic .vision-media {
    width: min(100%, 320px);
    margin: 0 auto;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
  }

  .section-kinetic .vision-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* =========================================================
   HOME – VISION BLOCK REVEAL
   ========================================================= */

/* Basis: sofort sichtbar, damit beim Laden nichts "verschwindet" */
.section-kinetic .vision__headline,
.section-kinetic .vision__item,
.section-kinetic .vision-lead,
.section-kinetic .vision-media {
  opacity: 1;
  transform: none;
  will-change: opacity, transform;
}

/* Reveal nur aktiv, wenn JS die Section vorbereitet hat */
.section-kinetic.reveal-ready .vision__headline,
.section-kinetic.reveal-ready .vision__item,
.section-kinetic.reveal-ready .vision-lead,
.section-kinetic.reveal-ready .vision-media {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.section-kinetic.reveal-ready.is-inview .vision__headline,
.section-kinetic.reveal-ready.is-inview .vision__item,
.section-kinetic.reveal-ready.is-inview .vision-lead,
.section-kinetic.reveal-ready.is-inview .vision-media {
  opacity: 1;
  transform: translateY(0);
}

.section-kinetic.reveal-ready .vision__headline {
  transition-delay: 0ms;
}

.section-kinetic.reveal-ready .vision-lead {
  transition-delay: 120ms;
}

.section-kinetic.reveal-ready .vision__item:nth-child(1) {
  transition-delay: 180ms;
}

.section-kinetic.reveal-ready .vision__item:nth-child(2) {
  transition-delay: 260ms;
}

.section-kinetic.reveal-ready .vision__item:nth-child(3) {
  transition-delay: 340ms;
}

.section-kinetic.reveal-ready .vision__item:nth-child(4) {
  transition-delay: 420ms;
}

.section-kinetic.reveal-ready .vision__item:nth-child(5) {
  transition-delay: 500ms;
}

.section-kinetic.reveal-ready .vision-media {
  transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  .section-kinetic .vision__headline,
  .section-kinetic .vision__item,
  .section-kinetic .vision-lead,
  .section-kinetic .vision-media {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* =========================================================
   HEADER + FOOTER – FINAL CLEAN
   ========================================================= */

:root {
  --obj-deep-blue: #1f5f86;
  --obj-deep-blue-dark: #0b3f4b;
  --obj-accent-warm: #d9a441;
  --obj-accent-warm-dark: #c6902d;
}

/* ========================
   TOPBAR + HEADER FINAL
======================== */

.topbar {
  background: var(--obj-deep-blue) !important;
  color: #ffffff !important;
}

.topbar,
.topbar a,
.topbar .topbar-inner,
.topbar .topbar-left,
.topbar .topbar-right,
.topbar .topbar-contact,
.topbar .topbar-contact a,
.topbar .topbar-mail,
.topbar .topbar-phone,
.topbar .topbar-sep,
.topbar .sep,
.topbar .divider {
  color: #ffffff !important;
}

.topbar .topbar-sep,
.topbar .sep,
.topbar .divider {
  opacity: 0.72 !important;
}

/* Telefon / Mail / Separator */
.topbar i,
.topbar .fa,
.topbar [class*="fa-"],
.topbar svg,
.topbar svg * {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Social oben – feiner, nicht so „zugefüllt“ */
.topbar .social-link,
.topbar .topbar-social a,
.topbar .social-btn,
.topbar .social a {
  width: 34px !important;
  height: 34px !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.94) !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.topbar .social-link i,
.topbar .topbar-social a i,
.topbar .social-btn i,
.topbar .social a i,
.topbar .social-link .fa,
.topbar .topbar-social a .fa,
.topbar .social-btn .fa,
.topbar .social a .fa,
.topbar .social-link [class*="fa-"],
.topbar .topbar-social a [class*="fa-"],
.topbar .social-btn [class*="fa-"],
.topbar .social a [class*="fa-"],
.topbar .social-link svg,
.topbar .topbar-social a svg,
.topbar .social-btn svg,
.topbar .social a svg,
.topbar .social-link svg *,
.topbar .topbar-social a svg *,
.topbar .social-btn svg *,
.topbar .social a svg * {
  width: 14px !important;
  height: 14px !important;
  font-size: 14px !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}

.topbar .social-link:hover,
.topbar .social-link:focus-visible,
.topbar .topbar-social a:hover,
.topbar .topbar-social a:focus-visible,
.topbar .social-btn:hover,
.topbar .social-btn:focus-visible,
.topbar .social a:hover,
.topbar .social a:focus-visible {
  color: var(--obj-accent-warm) !important;
  border-color: rgba(217, 164, 65, 0.6) !important;
  background: rgba(217, 164, 65, 0.1) !important;
  transform: translateY(-1px);
}

/* Support-Button – weiße Kontur */
.topbar .support-link,
.topbar .support-btn,
.topbar .btn-support {
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  min-height: 34px !important;
  padding: 0 16px 0 10px !important;
  text-align: left !important;
}
.topbar .support-link .support-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 24px !important;
}

.topbar .support-link .support-icon img {
  width: 13px !important;
  height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  margin: 0 !important;
  display: block !important;
}

.topbar .support-link > span:last-child {
  display: inline-block !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.topbar .support-link i,
.topbar .support-link .fa,
.topbar .support-link [class*="fa-"],
.topbar .support-link svg,
.topbar .support-link svg * {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.topbar .support-link:hover,
.topbar .support-link:focus-visible,
.topbar .support-btn:hover,
.topbar .support-btn:focus-visible,
.topbar .btn-support:hover,
.topbar .btn-support:focus-visible {
  color: var(--obj-accent-warm) !important;
  border-color: rgba(217, 164, 65, 0.65) !important;
  background: rgba(217, 164, 65, 0.08) !important;
}
/* =========================================================
   MOBILE – TOPBAR / HEADER ZEILE 1 HARD FIX
   ========================================================= */

@media (max-width: 768px) {
  .topbar,
  .topbar .container,
  .topbar .topbar-inner,
  .topbar .topbar-left,
  .topbar .topbar-right,
  .topbar .topbar-contact,
  .topbar .topbar-social {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .topbar {
    padding: 6px 0 !important;
    line-height: normal !important;
  }

  .topbar .container,
  .topbar .topbar-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .topbar .topbar-left,
  .topbar .topbar-right {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .topbar .topbar-contact,
  .topbar .topbar-social {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .topbar .topbar-contact a,
  .topbar .topbar-phone,
  .topbar .topbar-mail,
  .topbar .topbar-contact span {
    font-size: 9px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
  }

  .topbar .topbar-contact i,
  .topbar .topbar-contact svg,
  .topbar .topbar-contact img {
    width: 11px !important;
    height: 11px !important;
    font-size: 11px !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  .topbar .social-link,
  .topbar .topbar-social a,
  .topbar .social-btn,
  .topbar .social a {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
  }

  .topbar .social-link svg,
  .topbar .topbar-social a svg,
  .topbar .social-btn svg,
  .topbar .social a svg,
  .topbar .social-link i,
  .topbar .topbar-social a i,
  .topbar .social-btn i,
  .topbar .social a i {
    width: 12px !important;
    height: 12px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  /* Support-Link exakt für:
     <a class="support-link"><span class="support-icon">...</span><span>Support</span></a>
  */
  .topbar .support-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    min-height: 28px !important;
    padding: 0 12px 0 6px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .topbar .support-link .support-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 20px !important;
  }

  .topbar .support-link .support-icon img,
  .topbar .support-link .support-icon svg,
  .topbar .support-link .support-icon i {
    width: 11px !important;
    height: 11px !important;
    max-width: 11px !important;
    max-height: 11px !important;
    font-size: 11px !important;
    margin: 0 !important;
    display: block !important;
  }

  .topbar .support-link > span:last-child {
    display: inline-block !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
/* ========================
   MAIN NAV FINAL
======================== */

/* Menülinks normal */
.main-nav a,
.nav-item,
.site-header .nav-link,
.site-header nav a {
  color: #1f2937 !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

/* Underline komplett weg */
.nav-item::after,
.site-header .nav-link::after,
.site-header .main-nav a::after,
.site-header nav a::after,
.site-header .is-active::after,
.site-header .active::after,
.site-header .current-menu-item > a::after,
.site-header .current-page-ancestor > a::after,
.site-header .current_page_item > a::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

/* Hover orange-gelb */
.main-nav a:hover,
.nav-item:hover,
.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible,
.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--obj-accent-warm) !important;
}

/* Aktive Seite orange-gelb */
.main-nav .is-active > a,
.main-nav .active > a,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-page-ancestor > a,
.site-header .nav-link.is-active,
.site-header .nav-link.active,
.site-header nav a[aria-current="page"] {
  color: var(--obj-accent-warm) !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Menü-Icons folgen currentColor */
.main-nav a i,
.main-nav a .fa,
.main-nav a [class*="fa-"],
.main-nav a svg,
.main-nav a svg *,
.nav-item i,
.nav-item .fa,
.nav-item [class*="fa-"],
.nav-item svg,
.nav-item svg * {
  color: currentColor !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Eigentümerportal warm */
.nav-item.nav-portal,
.site-header .portal-link,
.site-header .portal-btn,
.site-header .btn-portal,
.site-header a[href*="eigentuemerportal"] {
  background: var(--obj-accent-warm) !important;
  border: 1px solid transparent !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(217, 164, 65, 0.22) !important;
}

.nav-item.nav-portal i,
.nav-item.nav-portal .fa,
.nav-item.nav-portal [class*="fa-"],
.nav-item.nav-portal svg,
.nav-item.nav-portal svg *,
.site-header .portal-link i,
.site-header .portal-link .fa,
.site-header .portal-link [class*="fa-"],
.site-header .portal-link svg,
.site-header .portal-link svg *,
.site-header .portal-btn i,
.site-header .portal-btn .fa,
.site-header .portal-btn [class*="fa-"],
.site-header .portal-btn svg,
.site-header .portal-btn svg *,
.site-header .btn-portal i,
.site-header .btn-portal .fa,
.site-header .btn-portal [class*="fa-"],
.site-header .btn-portal svg,
.site-header .btn-portal svg *,
.site-header a[href*="eigentuemerportal"] i,
.site-header a[href*="eigentuemerportal"] .fa,
.site-header a[href*="eigentuemerportal"] [class*="fa-"],
.site-header a[href*="eigentuemerportal"] svg,
.site-header a[href*="eigentuemerportal"] svg *,
.site-header a[href*="eigentuemerportal"] img {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  filter: brightness(0) invert(1) !important;
}

.nav-item.nav-portal:hover,
.nav-item.nav-portal:focus-visible,
.site-header .portal-link:hover,
.site-header .portal-link:focus-visible,
.site-header .portal-btn:hover,
.site-header .portal-btn:focus-visible,
.site-header .btn-portal:hover,
.site-header .btn-portal:focus-visible,
.site-header a[href*="eigentuemerportal"]:hover,
.site-header a[href*="eigentuemerportal"]:focus-visible {
  background: var(--obj-accent-warm-dark) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
/* =========================================================
   HEADER ICON FIX – Topbar
   ========================================================= */

.topbar .topbar-contact a,
.topbar .topbar-phone,
.topbar .topbar-mail,
.topbar .support-link {
  color: #ffffff !important;
}

.topbar .topbar-contact a i,
.topbar .topbar-contact a .fa,
.topbar .topbar-contact a [class*="fa-"],
.topbar .topbar-contact a svg,
.topbar .topbar-contact a svg *,
.topbar .topbar-phone i,
.topbar .topbar-phone .fa,
.topbar .topbar-phone [class*="fa-"],
.topbar .topbar-phone svg,
.topbar .topbar-phone svg *,
.topbar .topbar-mail i,
.topbar .topbar-mail .fa,
.topbar .topbar-mail [class*="fa-"],
.topbar .topbar-mail svg,
.topbar .topbar-mail svg *,
.topbar .support-link i,
.topbar .support-link .fa,
.topbar .support-link [class*="fa-"],
.topbar .support-link svg,
.topbar .support-link svg * {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.topbar .topbar-contact a img,
.topbar .topbar-phone img,
.topbar .topbar-mail img,
.topbar .support-link img {
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}
/* ---------------------------
   TOPBAR – Telefon + Mail
---------------------------- */

.topbar .icon-svg {
  color: #ffffff !important;
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* ---------------------------
   NAV ICONS (IMG SVGs)
---------------------------- */

.site-header .nav-item img {
  filter: brightness(0) invert(1); /* → weiß */
  opacity: 0.9;
  transition:
    filter 160ms ease,
    opacity 160ms ease;
}

/* Hover */
.site-header .nav-item:hover img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(42%) saturate(566%)
    hue-rotate(4deg) brightness(96%) contrast(92%);
}

/* Aktive Seite */
.site-header .nav-item.is-active img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(42%) saturate(566%)
    hue-rotate(4deg) brightness(96%) contrast(92%);
}

/* ---------------------------
   Eigentümerportal Icon
---------------------------- */

.site-header .nav-portal img {
  filter: brightness(0) invert(1) !important;
}

/* ---------------------------
   Support Icon (IMG)
---------------------------- */

.topbar .support-link img {
  filter: brightness(0) invert(1) !important;
}

/* ========================
   FOOTER BASE
======================== */

.site-footer {
  background: var(--obj-deep-blue) !important;
  background-image: none !important;
  color: rgba(255, 255, 255, 0.92) !important;
  padding-top: 34px !important;
  padding-bottom: 14px !important;
}

.site-footer::before,
.site-footer::after,
.site-footer .container,
.site-footer .footer-inner,
.site-footer .footer-grid,
.site-footer .footer-bottom {
  background-image: none !important;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr !important;
  gap: 34px !important;
  align-items: start !important;
}

/* ========================
   FOOTER TYPO
======================== */

.site-footer .footer-h {
  margin: 0 0 8px !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--obj-accent-warm) !important;
}

.site-footer .footer-p,
.site-footer .footer-links,
.site-footer .footer-copy,
.site-footer .footer-legal {
  line-height: 1.32 !important;
}

.site-footer .footer-p {
  margin: 0 0 6px !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.site-footer .footer-links {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.site-footer .footer-links li + li {
  margin-top: 6px !important;
}

/* 2. Zeile kleiner */
.site-footer .footer-copy,
.site-footer .footer-legal {
  font-size: 9px !important;
  line-height: 1.2 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* obere Textspalten etwas ruhiger */
.site-footer .footer-grid > div:nth-child(2),
.site-footer .footer-grid > div:nth-child(3),
.site-footer .footer-grid > div:nth-child(4) {
  padding-left: 6px !important;
}

/* ========================
   FOOTER LINKS
======================== */

.site-footer .footer-links a,
.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.92) !important;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible,
.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible {
  color: var(--obj-accent-warm) !important;
}

/* optionale kleine Akzente */
.site-footer .footer-claim,
.site-footer .footer-hours strong {
  color: var(--obj-accent-warm) !important;
}

/* ========================
   FOOTER SOCIAL
======================== */

.site-footer .footer-social {
  margin-top: 10px !important;
  gap: 8px !important;
}

.site-footer .footer-social-btn {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-footer .footer-social-btn svg,
.site-footer .footer-social-btn svg *,
.site-footer .footer-social-btn i,
.site-footer .footer-social-btn .fa,
.site-footer .footer-social-btn [class*="fa-"] {
  width: 16px !important;
  height: 16px !important;
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}

.site-footer .footer-social-btn:hover,
.site-footer .footer-social-btn:focus-visible {
  background: rgba(217, 164, 65, 0.14) !important;
  border-color: rgba(217, 164, 65, 0.55) !important;
  color: var(--obj-accent-warm) !important;
  transform: translateY(-1px);
}

.site-footer .footer-social-btn:hover svg,
.site-footer .footer-social-btn:hover svg *,
.site-footer .footer-social-btn:focus-visible svg,
.site-footer .footer-social-btn:focus-visible svg *,
.site-footer .footer-social-btn:hover i,
.site-footer .footer-social-btn:focus-visible i,
.site-footer .footer-social-btn:hover .fa,
.site-footer .footer-social-btn:focus-visible .fa,
.site-footer .footer-social-btn:hover [class*="fa-"],
.site-footer .footer-social-btn:focus-visible [class*="fa-"] {
  color: var(--obj-accent-warm) !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* ========================
   FOOTER BOTTOM
======================== */

.site-footer .footer-bottom {
  margin-top: 16px !important;
  padding-top: 10px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* ========================
   RESPONSIVE
======================== */

@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  .site-footer .footer-grid > div:nth-child(2),
  .site-footer .footer-grid > div:nth-child(3),
  .site-footer .footer-grid > div:nth-child(4) {
    padding-left: 0 !important;
  }

  .site-footer .footer-copy,
  .site-footer .footer-legal {
    font-size: 10px !important;
  }
}
/* =========================================================
   HEADER ICONS – HARD OVERRIDE
   ========================================================= */

/* Topbar: Telefon + Mail + Support wirklich weiß */
.topbar .topbar-contact a,
.topbar .topbar-phone,
.topbar .topbar-mail,
.topbar .support-link {
  color: #fff !important;
}

.topbar .topbar-contact a i,
.topbar .topbar-contact a .fa,
.topbar .topbar-contact a [class*="fa-"],
.topbar .topbar-contact a svg,
.topbar .topbar-contact a svg *,
.topbar .topbar-phone i,
.topbar .topbar-phone .fa,
.topbar .topbar-phone [class*="fa-"],
.topbar .topbar-phone svg,
.topbar .topbar-phone svg *,
.topbar .topbar-mail i,
.topbar .topbar-mail .fa,
.topbar .topbar-mail [class*="fa-"],
.topbar .topbar-mail svg,
.topbar .topbar-mail svg *,
.topbar .support-link i,
.topbar .support-link .fa,
.topbar .support-link [class*="fa-"],
.topbar .support-link svg,
.topbar .support-link svg * {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
}

/* Falls eines der Icons als Bild eingebunden ist */
.topbar .topbar-contact a img,
.topbar .topbar-phone img,
.topbar .topbar-mail img,
.topbar .support-link img {
  filter: brightness(0) invert(1) !important;
}

/* Eigentümerportal-Button + Icon wirklich weiß */
.site-header a[href*="eigentuemerportal"] {
  color: #fff !important;
}

.site-header a[href*="eigentuemerportal"] i,
.site-header a[href*="eigentuemerportal"] .fa,
.site-header a[href*="eigentuemerportal"] [class*="fa-"],
.site-header a[href*="eigentuemerportal"] svg,
.site-header a[href*="eigentuemerportal"] svg *,
.site-header a[href*="eigentuemerportal"] img {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
}

.site-header a[href*="eigentuemerportal"] img {
  filter: brightness(0) invert(1) !important;
}
/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(26, 30, 35, 0.08);
  background: rgba(255, 253, 248, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow:
    0 20px 48px rgba(1, 13, 38, 0.1),
    0 8px 20px rgba(1, 13, 38, 0.04);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.cookie-banner__copy {
  min-width: 0;
}

.cookie-banner__copy strong {
  display: block;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1f2937;
}

.cookie-banner__copy p {
  margin: 0;
  max-width: 62ch;
  font-size: 13px;
  line-height: 1.58;
  color: rgba(32, 37, 43, 0.74);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner__actions .btn,
.cookie-banner__actions .button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 40px;
  font-weight: 500;
  box-shadow: none;
  white-space: nowrap;
}

.cookie-banner__actions .btn.btn-outline,
.cookie-banner__actions .button.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 23, 42, 0.14);
  color: #1f2937;
}

.cookie-banner__actions .btn.btn-outline:hover,
.cookie-banner__actions .button.btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.22);
  color: #1f2937;
  transform: translateY(-1px);
}

.cookie-banner__actions .btn:not(.btn-outline),
.cookie-banner__actions .button:not(.btn-outline) {
  background: #2b5a78;
  border-color: #2b5a78;
  color: #ffffff;
}

.cookie-banner__actions .btn:not(.btn-outline):hover,
.cookie-banner__actions .button:not(.btn-outline):hover {
  background: #244b63;
  border-color: #244b63;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-banner__copy strong {
    font-size: 13px;
  }

  .cookie-banner__copy p {
    font-size: 12px;
    line-height: 1.55;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
    gap: 8px;
  }

  .cookie-banner__actions .btn,
  .cookie-banner__actions .button {
    flex: 1 1 100%;
    width: 100%;
    min-height: 42px;
    line-height: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none !important;
    transform: none !important;
  }

  .cookie-banner.is-visible {
    transform: none !important;
  }
}
/* =========================================================
   BACK TO TOP – FINAL
   ========================================================= */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: auto;
  z-index: 9998;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 144, 45, 0.32);
  border-radius: 999px;
  background: #d9a441;
  box-shadow:
    0 14px 34px rgba(201, 144, 45, 0.28),
    0 6px 16px rgba(1, 13, 38, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #c6902d;
  border-color: rgba(201, 144, 45, 0.46);
  color: #ffffff;
  box-shadow:
    0 18px 38px rgba(201, 144, 45, 0.32),
    0 8px 18px rgba(1, 13, 38, 0.1);
  transform: translateY(-1px);
}

.back-to-top svg,
.back-to-top i,
.back-to-top img {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  color: currentColor;
  fill: currentColor;
  stroke: currentColor;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 46px;
    height: 46px;
  }

  .back-to-top svg,
  .back-to-top i,
  .back-to-top img {
    width: 18px;
    height: 18px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none !important;
    transform: none !important;
  }

  .back-to-top.is-visible {
    transform: none !important;
  }
}
/* =========================================================
   LEISTUNGEN – PROOF / BILD / CTA FEINSCHLIFF
   ========================================================= */

.section-proof {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
}

.section-proof .section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-proof .proof-stack {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(26, 30, 35, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  box-shadow: 0 20px 50px rgba(1, 13, 38, 0.05);
}

.section-proof .proof-copy {
  max-width: 860px;
}
.section-proof .proof-copy h2 {
  margin: 0 0 14px;
  max-width: 18ch;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--text-strong);
}
.section-proof .proof-lead {
  margin: 0 0 22px;
  max-width: 62ch;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.72;
}
.section-proof .proof-points {
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.section-proof .proof-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(26, 30, 35, 0.08);
}

.section-proof .proof-point strong {
  display: block;
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-strong);
}

.section-proof .proof-point span {
  display: block;
  color: rgba(32, 37, 43, 0.76);
  line-height: 1.58;
}

.section-proof .proof-eyebrow {
  margin: 0 0 10px;
  color: #2b5a78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-proof .proof-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.section-proof .proof-text,
.section-proof .proof-note {
  margin: 0 0 16px;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.72;
}

.section-proof .proof-note {
  margin-bottom: 0;
}

.section-proof .proof-media {
  margin: 0;
}
.section-proof .proof-media--full {
  width: 100%;
}
.section-proof .proof-media--full img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 22px 56px rgba(1, 13, 38, 0.12);
}

.section-proof .proof-media--full figcaption {
  margin-top: 12px;
  color: rgba(32, 37, 43, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.section-cta .cta-card {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(26, 30, 35, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdfa 0%, #f8f3ea 100%);
  box-shadow: 0 20px 50px rgba(1, 13, 38, 0.05);
}

.section-cta .cta-card h2 {
  margin: 0 0 14px;
  max-width: 14ch;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-strong);
}

.section-cta .cta-card .lead {
  margin: 0 0 24px;
  max-width: 62ch;
  color: rgba(32, 37, 43, 0.8);
  line-height: 1.72;
}

.section-cta .cta-card .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-cta .cta-card .btn {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 980px) {
  .section-proof .proof-split {
    grid-template-columns: 1fr;
  }

  .section-proof .proof-copy {
    max-width: 100%;
  }

  .section-proof .proof-media img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .section-proof .proof-stack,
  .section-cta .cta-card {
    padding: 20px;
    border-radius: 22px;
  }

  .section-proof .proof-title,
  .section-proof .proof-copy h2,
  .section-cta .cta-card h2 {
    max-width: 100%;
  }

  .section-proof .proof-media--full img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .section-cta .cta-card .btn {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   LEISTUNGEN – FINALE TYPO-BEREINIGUNG
   Überschriften: globales Startseiten-Blau + Startseiten-Skala
   ========================================================= */

/* HERO – ruhiger, weniger "Sonderfall", aber weiter als H2-Logik */
.hero.hero--leistungen .hero__inner {
  padding: clamp(44px, 6vw, 72px) 0 clamp(34px, 4.5vw, 52px);
}

.hero.hero--leistungen .hero__content,
.hero.hero--leistungen .hero__content--wide {
  max-width: 1040px;
}

.hero.hero--leistungen .hero__title {
  max-width: 1040px;
  margin: 0 0 22px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #2b5a78;
}

.hero.hero--leistungen .hero__eyebrow {
  color: rgba(32, 83, 115, 0.82);
}

/* SECTION HEADS – gleiche Typo wie Startseite */
.section-badges .section-head h2,
.section-services .section-head h2,
.section-workflow .section-head h2,
.section-proof h2,
.section-pricing .section-head h2,
.section-note .section-head h2,
.section-cta .cta-card h2 {
  margin: 0 0 12px;
  font-size: var(--home-h2-size);
  line-height: var(--home-h2-line);
  letter-spacing: var(--home-h2-track);
  color: #2b5a78;
  max-width: none;
}

/* kompaktere Leads unter den Überschriften */
.section-badges .section-head .lead,
.section-services .section-head .lead,
.section-workflow .section-head .lead,
.section-proof .proof-lead,
.section-pricing .section-head .lead,
.section-note .section-head .lead,
.section-cta .cta-card .lead {
  font-size: 14px;
  line-height: 1.62;
  color: rgba(32, 37, 43, 0.8);
}

/* Kicker / Eyebrow auf dieselbe Markenfarbe ziehen */
.section-kicker,
.section-proof .proof-eyebrow,
.workflow-proof__eyebrow {
  color: rgba(32, 83, 115, 0.82);
}

/* Karten- und Zwischenüberschriften ruhiger machen */
.section-services .card h3,
.workflow-step h3,
.workflow-proof__content h3,
.pricing-card h3,
.audience-card h3,
.section-proof .proof-point strong {
  color: #2b5a78;
}

/* Proof-Titel nicht mehr als Sonder-H2 aufblasen */
.section-proof .proof-copy h2 {
  font-size: var(--home-h2-size);
  line-height: var(--home-h2-line);
  letter-spacing: var(--home-h2-track);
  color: #2b5a78;
  max-width: none;
}

/* CTA unten nicht riesig, sondern sauber markenkonsistent */
.section-cta .cta-card h2 {
  max-width: 22ch;
}

/* Mobile */
@media (max-width: 768px) {
  .hero.hero--leistungen .hero__inner {
    padding: 34px 0 28px;
  }

  .hero.hero--leistungen .hero__title {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.01;
    letter-spacing: -0.035em;
  }
}
/* Concierge – Osterbild im Feature-Block vollständig anzeigen */
.concierge-moment--image-only {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.concierge-moment--image-only .concierge-moment__img {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 28px;
}

.concierge-moment--image-only .concierge-moment__img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  border-radius: 28px;
}
/* Concierge – grauen Overlay-/Box-Look rausnehmen */
.concierge-heart__box,
.concierge-moment,
.concierge-moment--feature,
.concierge-moment--image-only {
  background: #fffdfa !important;
  background-image: none !important;
  box-shadow: 0 18px 42px rgba(1, 13, 38, 0.06) !important;
}

/* falls ein Overlay per Pseudo-Element gesetzt wird */
.concierge-heart__box::before,
.concierge-heart__box::after,
.concierge-moment::before,
.concierge-moment::after,
.concierge-moment--feature::before,
.concierge-moment--feature::after,
.concierge-moment--image-only::before,
.concierge-moment--image-only::after {
  content: none !important;
  display: none !important;
}

/* Bildkarte sauber und hell halten */
.concierge-moment--image-only .concierge-moment__img {
  background: #fffdfa !important;
}
/* =========================================
   INNOVATION – FINAL
   ========================================= */

.innovation-hero {
  position: relative;
  min-height: clamp(360px, 46vw, 620px);
  display: flex;
  align-items: flex-end;
  margin-top: 0;
  background:
    linear-gradient(
      180deg,
      rgba(11, 42, 61, 0.34) 0%,
      rgba(11, 42, 61, 0.56) 100%
    ),
    url("/assets/img/hero-innovation.png") center center / cover no-repeat;
  overflow: hidden;
}

.innovation-hero__inner {
  width: 100%;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.innovation-hero__content {
  max-width: 760px;
}

.innovation-hero__eyebrow,
.innovation-intro__eyebrow,
.innovation-showcase__eyebrow,
.innovation-benefits__eyebrow,
.innovation-practice__eyebrow,
.innovation-statement__eyebrow,
.innovation-closing__eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.innovation-hero__eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.innovation-hero h1 {
  margin: 0 0 16px;
  color: var(--sea);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.innovation-hero__lead {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

/* Intro */

.section.innovation-intro {
  padding-top: clamp(72px, 8vw, 118px) !important;
  padding-bottom: clamp(42px, 5vw, 72px) !important;
}

.innovation-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.innovation-intro__eyebrow,
.innovation-showcase__eyebrow,
.innovation-benefits__eyebrow,
.innovation-practice__eyebrow,
.innovation-statement__eyebrow,
.innovation-closing__eyebrow {
  color: var(--sea);
}

.innovation-intro__headline h2,
.innovation-showcase__head h2,
.innovation-benefits__head h2,
.innovation-practice__content h2,
.innovation-statement__inner h2,
.innovation-closing__inner h2 {
  margin: 0 0 14px;
  color: var(--sea);
}

.innovation-intro__text p,
.innovation-showcase__head p,
.innovation-benefit p,
.innovation-practice__side p,
.innovation-closing__inner p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.innovation-intro__text p + p {
  margin-top: 16px;
}

/* Showcase */

.section.innovation-showcase {
  padding-top: clamp(30px, 5vw, 58px) !important;
  padding-bottom: clamp(44px, 6vw, 86px) !important;
}

.innovation-showcase__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.innovation-showcase__panel {
  padding: clamp(34px, 4.5vw, 56px);
  border-radius: 18px;
  background-color: #eef0f2;
  border: 1px solid rgba(11, 42, 61, 0.08);
  box-shadow:
    0 24px 70px rgba(1, 13, 38, 0.07),
    0 2px 12px rgba(1, 13, 38, 0.04);
}

.innovation-showcase__panel img {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Benefits */

.section.innovation-benefits {
  padding-top: clamp(38px, 6vw, 74px) !important;
  padding-bottom: clamp(38px, 6vw, 74px) !important;
}

.innovation-benefits__head {
  max-width: 760px;
  margin-bottom: 32px;
}

.innovation-benefits__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.innovation-benefit {
  min-height: 100%;
  padding: 30px 28px;
  border-radius: 18px;
  background-color: #eef0f2;
  border: 1px solid rgba(11, 42, 61, 0.08);
  box-shadow: 0 12px 30px rgba(1, 13, 38, 0.04);
}

.innovation-benefit--primary {
  transform: translateY(-12px);
}

.innovation-benefit h3 {
  margin: 0 0 12px;
  color: var(--sea);
  font-size: 1.14rem;
}

/* Statement */

.section.innovation-statement {
  padding-top: clamp(44px, 6vw, 88px) !important;
  padding-bottom: clamp(44px, 6vw, 88px) !important;
}

.innovation-statement__panel {
  border-radius: 22px;
  background: var(--sea);
  box-shadow: 0 22px 55px rgba(11, 42, 61, 0.18);
}

.innovation-statement__inner {
  max-width: 920px;
  padding: clamp(34px, 5vw, 52px);
}

.innovation-statement__inner h2 {
  color: var(--sea);
}

.innovation-statement__inner p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
}

.innovation-statement__eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

/* Practice */

.section.innovation-practice {
  padding-top: clamp(34px, 5vw, 72px) !important;
  padding-bottom: clamp(46px, 7vw, 92px) !important;
}

.innovation-practice__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.innovation-practice__content {
  max-width: 820px;
}

.innovation-practice__list {
  margin: 20px 0 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.9;
}

.innovation-practice__side {
  padding-top: 52px;
}

.innovation-practice__side p {
  font-size: 1.08rem;
  line-height: 1.85;
}

/* Closing */

.section.innovation-closing {
  padding-top: clamp(56px, 7vw, 104px) !important;
  padding-bottom: clamp(72px, 8vw, 126px) !important;
}

.innovation-closing__inner {
  max-width: 920px;
}

.innovation-closing__inner p {
  max-width: 720px;
}

.innovation-closing__link {
  display: inline-block;
  margin-top: 22px;
  color: var(--sea);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 42, 61, 0.24);
}

.innovation-closing__link:hover {
  border-bottom-color: rgba(11, 42, 61, 0.52);
}

/* Responsive */

@media (max-width: 1100px) {
  .innovation-intro__grid,
  .innovation-benefits__grid,
  .innovation-practice__grid {
    grid-template-columns: 1fr;
  }

  .innovation-benefit--primary {
    transform: none;
  }

  .innovation-practice__side {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .innovation-hero {
    min-height: 320px;
    background-position: center center;
  }

  .innovation-hero__inner {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .innovation-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .innovation-hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .innovation-showcase__panel,
  .innovation-benefit,
  .innovation-statement__inner {
    padding: 24px;
    border-radius: 16px;
  }
}
/* =========================================
   SUPPORT – finaler Livegang-Block
   Scoped nur für support.php
========================================= */

.support-hero {
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.support-hero::before {
  display: none;
}

.support-hero__inner {
  max-width: 860px;
}

.support-hero__eyebrow,
.support-section-label {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b5a78;
  opacity: 1;
}

.support-hero h1 {
  margin: 0 0 18px;
  color: #2b5a78;
  font-size: clamp(2.2rem, 5.2vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 11ch;
}

.support-hero__lead {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.72;
  color: var(--text-soft);
}

.support-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.support-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.support-hero__facts li {
  position: relative;
  padding-left: 16px;
}

.support-hero__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(43, 90, 120, 0.35);
}

.support-intro {
  padding-top: clamp(34px, 4vw, 48px);
}

.support-intro__panel,
.support-process__panel,
.support-contact__panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.04);
}

.support-intro__panel {
  max-width: 920px;
}

.support-intro__panel h2,
.support-section-head h2,
.support-process__head h2,
.support-contact__panel h2 {
  color: #2b5a78;
}

.support-intro__text {
  max-width: 58rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.support-intro__text + .support-intro__text {
  margin-top: 14px;
}

.support-section-head {
  max-width: 760px;
  margin-bottom: clamp(26px, 4vw, 38px);
}

.support-section-head .lead {
  color: var(--text-soft);
}

.support-topics__grid {
  align-items: stretch;
}

.support-topic-card {
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.support-topic-card h3 {
  margin: 0 0 12px;
  color: #2b5a78;
  font-size: clamp(1.18rem, 1.8vw, 1.4rem);
  line-height: 1.2;
}

.support-topic-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.support-process__head {
  max-width: 700px;
  margin-bottom: 28px;
}

.support-process__grid {
  gap: 22px;
}

.support-process__block h3 {
  margin: 0 0 10px;
  color: #2b5a78;
  font-size: 1.08rem;
  line-height: 1.3;
}

.support-process__block p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.support-process__note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-soft);
  line-height: 1.7;
}

.support-process__note strong {
  color: #2b5a78;
}

.support-contact__panel {
  max-width: 980px;
}

.support-contact__text {
  max-width: 46rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.support-contact__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.support-contact__action {
  display: block;
  padding: 22px 24px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(248, 250, 252, 0.82) 100%
  );
  color: inherit;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.support-contact__action:hover {
  border-color: rgba(43, 90, 120, 0.22);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.support-contact__action-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2b5a78;
}

.support-contact__action-value {
  display: block;
  color: #2b5a78;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.3;
  word-break: break-word;
}

.support-contact__action-sub {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.support-contact__meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.support-contact__meta p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.support-contact__meta p strong {
  color: #2b5a78;
}

.support-contact__meta p + p {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .support-contact__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .support-hero {
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .support-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .support-hero__lead,
  .support-intro__text,
  .support-topic-card p,
  .support-process__block p,
  .support-contact__text,
  .support-contact__meta p {
    line-height: 1.72;
  }

  .support-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .support-hero__actions .btn {
    width: 100%;
  }

  .support-hero__facts {
    gap: 10px 16px;
    font-size: 0.93rem;
  }

  .support-contact__action {
    padding: 18px;
    border-radius: 16px;
  }
}


/* Concierge: Willkommensbild passend in die rechte Box */
.concierge-heart__split {
  align-items: stretch !important;
}

.concierge-moment--image-only {
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
}

.concierge-moment--image-only .concierge-moment__img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  border-radius: 28px !important;
}

.concierge-moment--image-only .concierge-moment__img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center 28% !important;
  border-radius: 28px !important;
}

/* ==================================================
   OBJ HEADER – verbindliche stabile Version
   Der Header ist fest; seine Höhe wird per JS gemessen.
================================================== */

:root {
  --obj-header-height: 98px;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  padding-top: var(--obj-header-height) !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;

  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;

  background: #ffffff !important;
  box-shadow: 0 3px 16px rgba(15, 23, 42, 0.08);
}

.site-header .topbar {
  position: relative !important;
  top: auto !important;
  left: auto !important;

  margin: 0 !important;
  transform: none !important;
}

.site-header .header-inner {
  position: relative !important;
  margin-top: 0 !important;
  transform: none !important;
}

.site-main {
  position: relative;
  z-index: 1;
}

/* Sprungmarken verschwinden nicht unter dem festen Header */
html {
  scroll-padding-top: calc(var(--obj-header-height) + 16px);
}

@media (max-width: 820px) {
  :root {
    --obj-header-height: 110px;
  }
}

/* OBJ FIX: Seiteninhalt unter dem festen Header */
body {
  padding-top: 0 !important;
}

.site-main {
  display: block !important;
  padding-top: var(--obj-header-height) !important;
  margin-top: 0 !important;
}

.site-main > :first-child {
  margin-top: 0 !important;
}

/* ==================================================
   OBJ TYPOGRAFIE – blaue Überschriften luftiger
================================================== */

:root {
  --home-h2-size: clamp(24px, 2.2vw, 34px);
  --home-h2-line: 1.18;
  --home-h2-track: -0.015em;
}

/* Schmale Worttürme aufheben */
.story-split.page-home .story-title,
.section-dashboard h2,
.section-badges .section-head h2,
.section-services .section-head h2,
.section-workflow .section-head h2,
.section-proof h2,
.section-pricing .section-head h2,
.section-note .section-head h2,
.section-cta .cta-card h2,
.section-proof .proof-copy h2,
.concierge-heart__head h2,
.section-concierge-promise h2 {
  width: auto !important;
  max-width: 22ch !important;
  line-height: 1.18 !important;
  letter-spacing: -0.015em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

/* In breiten Textbereichen darf die Überschrift noch weiter laufen */
.section-head h2,
.section-dashboard h2 {
  max-width: 28ch !important;
}

@media (max-width: 768px) {
  .story-split.page-home .story-title,
  .section-dashboard h2,
  .section-head h2 {
    max-width: 100% !important;
    font-size: clamp(22px, 6.5vw, 30px) !important;
    line-height: 1.2 !important;
  }
}

/* OBJ FIX: Vision-Überschrift breit und ruhig */
.story-split.page-home .story-content {
  max-width: 520px !important;
}

.story-split.page-home .story-title {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  font-size: clamp(28px, 2.4vw, 38px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

/* ==================================================
   LEISTUNGEN – Vorher / Nachher
================================================== */

.section-before-after .compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.compare-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.compare-card img {
  display: block;
  width: 100%;
  height: auto;
}

.compare-card figcaption {
  padding: 18px 22px 22px;
  font-size: 16px;
  line-height: 1.55;
  color: #43515c;
}

.compare-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(17, 47, 74, 0.92);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
}

.compare-card__badge--after {
  background: rgba(187, 145, 48, 0.95);
  color: #ffffff;
}

.compare-note {
  margin-top: 22px;
  background: #ffffff;
  border-left: 4px solid #d6aa47;
  border-radius: 18px;
  padding: 18px 22px;
  color: #43515c;
  line-height: 1.6;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

@media (max-width: 900px) {
  .section-before-after .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   LEISTUNGEN – Planung / Konzept
================================================== */

.section-planung .planung-shell {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.section-planung .planung-copy {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.section-planung .planung-copy .lead {
  margin-top: 16px;
}

.section-planung .planung-list {
  margin: 20px 0 0;
  padding-left: 20px;
  color: #43515c;
  line-height: 1.7;
}

.section-planung .planung-media {
  margin: 0;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.section-planung .planung-media img {
  display: block;
  width: 100%;
  height: auto;
}

.section-planung .planung-media figcaption {
  padding: 18px 22px 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #5a6772;
}

@media (max-width: 980px) {
  .section-planung .planung-shell {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   OBJ MOBILE KOMPAKT – LEISTUNGEN
================================================== */

@media (max-width: 760px) {

  /* Weniger Leerraum zwischen den Bereichen */
  .page .section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .page .section-head {
    margin-bottom: 24px !important;
  }

  .page .section-head .lead {
    margin-top: 10px !important;
  }

  /* Leistungskarten horizontal wischbar */
  .cards-grid--services {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 82%);
    gap: 14px !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 18px 18px 2px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .cards-grid--services > .card {
    scroll-snap-align: start;
    height: 100%;
  }

  /* Paketkarten horizontal wischbar */
  .pricing-grid {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88%, 88%);
    gap: 16px !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 18px 20px 2px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-grid > .pricing-card {
    scroll-snap-align: start;
    height: auto;
  }

  /* Vorher/Nachher ebenfalls seitlich wischbar */
  .section-before-after .compare-grid {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88%, 88%);
    gap: 14px !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 18px 18px 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .section-before-after .compare-card {
    scroll-snap-align: start;
  }

  /* Kompaktere Karten */
  .card-body,
  .pricing-card,
  .planung-copy {
    padding: 22px !important;
  }

  .card-list,
  .pricing-list {
    line-height: 1.55 !important;
  }

  .card-list li,
  .pricing-list li {
    margin-bottom: 7px !important;
  }

  /* Planungsbild nimmt nicht unnötig viel Höhe ein */
  .section-planung .planung-media img {
    max-height: 360px;
    object-fit: contain;
    background: #ffffff;
  }

  .section-planung .planung-media figcaption {
    padding: 14px 18px 18px !important;
  }

  /* Hinweisboxen kompakter */
  .compare-note,
  .pricing-note,
  .note-card {
    margin-top: 18px !important;
    padding: 18px !important;
  }
}

/* Scrollleisten dezent ausblenden */
.cards-grid--services,
.pricing-grid,
.section-before-after .compare-grid {
  scrollbar-width: none;
}

.cards-grid--services::-webkit-scrollbar,
.pricing-grid::-webkit-scrollbar,
.section-before-after .compare-grid::-webkit-scrollbar {
  display: none;
}

/* ==================================================
   OBJ MOBILE VORHER NACHHER UNTEREINANDER
================================================== */

@media (max-width: 760px) {

  /* Vorher und Nachher nicht wischen, sondern untereinander */
  .section-before-after .compare-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    gap: 20px !important;
    overflow: visible !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
  }

  .section-before-after .compare-card {
    width: 100% !important;
    max-width: none !important;
    scroll-snap-align: none !important;
  }

  .section-before-after .compare-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  /* Kein künstlicher Pfeil am rechten Rand */
  .section-before-after .compare-grid::after {
    display: none !important;
    content: none !important;
  }

  /* Wisch-Hinweis nur im Vorher/Nachher-Bereich ausblenden */
  .section-before-after .mobile-swipe-hint {
    display: none !important;
  }
}

/* ==================================================
   OBJ MOBILE VORHER NACHHER BILDER KLEINER
================================================== */

@media (max-width: 760px) {

  .section-before-after .compare-card {
    max-width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-before-after .compare-card img {
    width: 100% !important;
    height: 320px !important;
    max-height: 320px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .section-before-after .compare-card figcaption {
    padding: 16px 18px 20px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .section-before-after .compare-card__badge {
    top: 14px !important;
    left: 14px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {

  .section-before-after .compare-card {
    max-width: 94% !important;
  }

  .section-before-after .compare-card img {
    height: 260px !important;
    max-height: 260px !important;
  }
}

/* ==================================================
   OBJ MOBILE TYPOGRAFIE KOMPAKT
================================================== */

@media (max-width: 760px) {

  /* Hero */
  .page .hero__eyebrow {
    font-size: 11px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.08em !important;
  }

  .page .hero__title {
    font-size: clamp(26px, 7.2vw, 34px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.025em !important;
  }

  /* Kleine Abschnittskennzeichnungen */
  .page .section-kicker,
  .page .section-head .section-kicker {
    font-size: 10px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.12em !important;
  }

  /* Große Abschnittsüberschriften */
  .page .section-head h2,
  .page .planung-copy h2,
  .page .proof-copy h2,
  .page .cta-card h2,
  .page .section-before-after h2 {
    font-size: clamp(24px, 6.6vw, 30px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 12px !important;
  }

  /* Allgemeine Texte */
  .page p,
  .page li,
  .page .lead,
  .page .card-meta,
  .page figcaption {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* Einleitungstexte etwas kleiner */
  .page .lead {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  /* Kartenüberschriften */
  .page .card h3,
  .page .audience-card h3,
  .page .pricing-card h3,
  .page .note-card h3,
  .page .workflow-step h3 {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  /* Paket-Unterzeilen */
  .page .pricing-sub {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  /* Listen kompakter */
  .page .card-list,
  .page .pricing-list,
  .page .planung-list {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .page .card-list li,
  .page .pricing-list li,
  .page .planung-list li {
    margin-bottom: 6px !important;
  }

  /* Badges und kleine Vorteilskarten */
  .page .badge__text,
  .page .workflow-fact span,
  .page .proof-point span {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  /* Bildunterschriften */
  .page .compare-card figcaption,
  .page .planung-media figcaption {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  /* Buttons etwas kompakter */
  .page .btn {
    font-size: 13px !important;
    line-height: 1.2 !important;
    padding: 11px 16px !important;
  }

  /* Wisch-Hinweis kleiner */
  .page .mobile-swipe-hint {
    font-size: 12px !important;
    line-height: 1.25 !important;
    padding: 8px 11px !important;
  }

  /* CTA unten */
  .page .cta-card .lead {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 420px) {

  .page .hero__title {
    font-size: 25px !important;
  }

  .page .section-head h2,
  .page .planung-copy h2,
  .page .proof-copy h2,
  .page .cta-card h2,
  .page .section-before-after h2 {
    font-size: 23px !important;
  }

  .page p,
  .page li,
  .page .lead {
    font-size: 13.5px !important;
  }

  .page .card h3,
  .page .pricing-card h3,
  .page .audience-card h3 {
    font-size: 17px !important;
  }
}


/* === OBJ CORPORATE DESIGN START === */

/* --------------------------------------------------
   1. DESIGN-TOKENS
-------------------------------------------------- */

:root {
  /* Markenfarben */
  --obj-navy: #082b45;
  --obj-blue: #24688e;
  --obj-blue-dark: #174f70;
  --obj-green: #7fa51f;
  --obj-green-dark: #557812;
  --obj-gold: #dfa52e;

  /* Neutrale Farben */
  --obj-white: #ffffff;
  --obj-offwhite: #f8f7f3;
  --obj-sand: #eee7d8;
  --obj-light: #f3f5f6;
  --obj-border: rgba(8, 43, 69, 0.12);
  --obj-text: #30383e;
  --obj-text-soft: #5c6870;

  /* Typografie */
  --obj-font-heading:
    "Aptos Display",
    "Montserrat",
    Arial,
    sans-serif;

  --obj-font-body:
    "Aptos",
    "Poppins",
    "Nunito Sans",
    Arial,
    sans-serif;

  --obj-font-emotional:
    "Caveat",
    "Segoe Print",
    cursive;

  /* Größen */
  --obj-h1: clamp(2.15rem, 4.8vw, 4.6rem);
  --obj-h2: clamp(1.8rem, 3vw, 3rem);
  --obj-h3: clamp(1.15rem, 1.6vw, 1.45rem);
  --obj-body: 1rem;
  --obj-small: 0.875rem;

  /* Abstände */
  --obj-section-space: clamp(64px, 8vw, 112px);
  --obj-section-space-mobile: 46px;
  --obj-container: 1240px;

  /* Formen */
  --obj-radius-small: 12px;
  --obj-radius-medium: 20px;
  --obj-radius-large: 30px;
  --obj-radius-pill: 999px;

  /* Schatten */
  --obj-shadow-soft:
    0 10px 30px rgba(8, 43, 69, 0.07);

  --obj-shadow-card:
    0 16px 40px rgba(8, 43, 69, 0.10);

  --obj-shadow-button:
    0 10px 24px rgba(8, 43, 69, 0.16);

  /* Bewegung */
  --obj-transition:
    180ms ease;
}

/* --------------------------------------------------
   2. GLOBALE TYPOGRAFIE
-------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--obj-font-body) !important;
  color: var(--obj-text);
  background: var(--obj-white);
  font-size: var(--obj-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.section-title,
.card-title,
.pricing-card h3 {
  font-family: var(--obj-font-heading) !important;
  color: var(--obj-blue-dark);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1,
.hero__title {
  font-size: var(--obj-h1);
}

h2,
.section-head h2 {
  font-size: var(--obj-h2);
}

h3,
.card h3,
.pricing-card h3 {
  font-size: var(--obj-h3);
}

p,
li,
label,
input,
textarea,
select,
button {
  font-family: var(--obj-font-body);
}

p,
li {
  color: var(--obj-text);
}

.lead {
  color: var(--obj-text-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}

/* Emotionale Textklasse */
.emotional-text,
.brand-handwriting,
.font-emotional,
.text-emotional {
  font-family: var(--obj-font-emotional) !important;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

/* --------------------------------------------------
   3. ABSCHNITTE UND CONTAINER
-------------------------------------------------- */

.container {
  width: min(
    calc(100% - 40px),
    var(--obj-container)
  );
  margin-inline: auto;
}

.page .section {
  padding-top: var(--obj-section-space);
  padding-bottom: var(--obj-section-space);
}

.page .section:nth-of-type(even) {
  background-color: var(--obj-offwhite);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-kicker,
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--obj-blue);
  font-family: var(--obj-font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  margin-right: 10px;
  border-radius: var(--obj-radius-pill);
  background: var(--obj-green);
}

/* --------------------------------------------------
   4. KARTEN
-------------------------------------------------- */

.card,
.audience-card,
.pricing-card,
.note-card,
.cta-card,
.compare-card,
.planung-copy,
.planung-media,
.workflow-step,
.workflow-proof,
.proof-point {
  border: 1px solid var(--obj-border);
  border-radius: var(--obj-radius-medium);
  background: var(--obj-white);
  box-shadow: var(--obj-shadow-soft);
}

.card,
.audience-card,
.pricing-card,
.note-card,
.workflow-step {
  transition:
    transform var(--obj-transition),
    box-shadow var(--obj-transition),
    border-color var(--obj-transition);
}

.card:hover,
.audience-card:hover,
.pricing-card:hover,
.workflow-step:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 104, 142, 0.24);
  box-shadow: var(--obj-shadow-card);
}

.card-body,
.pricing-card,
.audience-card,
.note-card {
  padding: clamp(22px, 3vw, 34px);
}

.card-meta,
.pricing-sub,
.muted,
figcaption {
  color: var(--obj-text-soft);
}

/* --------------------------------------------------
   5. LISTEN
-------------------------------------------------- */

.card-list,
.pricing-list,
.planung-list {
  padding-left: 1.25rem;
}

.card-list li,
.pricing-list li,
.planung-list li {
  margin-bottom: 0.65rem;
}

.card-list li::marker,
.pricing-list li::marker,
.planung-list li::marker {
  color: var(--obj-green);
}

/* --------------------------------------------------
   6. BUTTONS
-------------------------------------------------- */

.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: var(--obj-radius-pill);
  font-family: var(--obj-font-heading) !important;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform var(--obj-transition),
    background-color var(--obj-transition),
    color var(--obj-transition),
    border-color var(--obj-transition),
    box-shadow var(--obj-transition);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
}

.btn--primary,
.btn-primary,
input[type="submit"] {
  border: 1px solid var(--obj-green);
  background: var(--obj-green);
  color: var(--obj-white);
  box-shadow: var(--obj-shadow-button);
}

.btn--primary:hover,
.btn-primary:hover,
input[type="submit"]:hover {
  border-color: var(--obj-green-dark);
  background: var(--obj-green-dark);
  color: var(--obj-white);
}

.btn--ghost,
.btn-outline {
  border: 1px solid rgba(8, 43, 69, 0.28);
  background: rgba(255, 255, 255, 0.88);
  color: var(--obj-navy);
}

.btn--ghost:hover,
.btn-outline:hover {
  border-color: var(--obj-blue);
  background: var(--obj-blue);
  color: var(--obj-white);
}

/* --------------------------------------------------
   7. LINKS
-------------------------------------------------- */

.page a:not(.btn) {
  color: var(--obj-blue-dark);
  text-decoration-color: rgba(36, 104, 142, 0.35);
  text-underline-offset: 3px;
}

.page a:not(.btn):hover {
  color: var(--obj-green-dark);
}

/* --------------------------------------------------
   8. FORMULARE
-------------------------------------------------- */

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--obj-border);
  border-radius: var(--obj-radius-small);
  background: var(--obj-white);
  color: var(--obj-text);
  padding: 13px 15px;
  font-size: 1rem;
  transition:
    border-color var(--obj-transition),
    box-shadow var(--obj-transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--obj-blue);
  box-shadow: 0 0 0 4px rgba(36, 104, 142, 0.11);
}

/* --------------------------------------------------
   9. BILDER
-------------------------------------------------- */

.page img {
  max-width: 100%;
}

.compare-card img,
.planung-media img,
.proof-media img {
  display: block;
  width: 100%;
}

figcaption {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* --------------------------------------------------
   10. CTA
-------------------------------------------------- */

.section-cta .cta-card {
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(
      135deg,
      var(--obj-offwhite),
      var(--obj-sand)
    );
}

.section-cta .cta-card h2 {
  max-width: 18ch;
}

/* --------------------------------------------------
   11. MOBILE TYPOGRAFIE UND ABSTÄNDE
-------------------------------------------------- */

@media (max-width: 760px) {
  :root {
    --obj-h1: clamp(1.75rem, 8vw, 2.35rem);
    --obj-h2: clamp(1.45rem, 6.5vw, 1.95rem);
    --obj-h3: 1.05rem;
    --obj-body: 0.9rem;
  }

  body {
    line-height: 1.55;
  }

  .container {
    width: min(
      calc(100% - 30px),
      var(--obj-container)
    );
  }

  .page .section {
    padding-top: var(--obj-section-space-mobile);
    padding-bottom: var(--obj-section-space-mobile);
  }

  .section-head {
    margin-bottom: 24px;
  }

  .lead {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .card-body,
  .pricing-card,
  .audience-card,
  .note-card {
    padding: 20px;
  }

  .card-list li,
  .pricing-list li,
  .planung-list li {
    margin-bottom: 0.45rem;
  }

  .btn,
  button,
  input[type="submit"] {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.82rem;
  }

  .section-kicker,
  .hero__eyebrow {
    font-size: 0.66rem;
  }

  figcaption {
    font-size: 0.78rem;
  }
}

/* === OBJ CORPORATE DESIGN ENDE === */


/* === OBJ HEADER MARKENMODUL START === */

/* ==================================================
   1. GESAMTER HEADER
================================================== */

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: var(--obj-white, #ffffff);
  border-bottom: 1px solid rgba(6, 43, 83, 0.10);
  box-shadow: 0 8px 28px rgba(6, 43, 83, 0.06);
  font-family:
    var(--obj-font-body),
    "Poppins",
    "Nunito Sans",
    Arial,
    sans-serif;
}

/* ==================================================
   2. TOPBAR
================================================== */

.site-header .topbar {
  min-height: 42px !important;
  padding: 0 !important;
  background:
    linear-gradient(
      90deg,
      var(--obj-navy, #062b53),
      var(--obj-blue, #24688e)
    ) !important;
  color: #ffffff !important;
}

.site-header .topbar-inner {
  min-height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.site-header .topbar-left,
.site-header .topbar-right {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.site-header .top-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: rgba(255, 255, 255, 0.96) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition:
    opacity 180ms ease,
    transform 180ms ease !important;
}

.site-header .top-link:hover,
.site-header .top-link:focus-visible {
  color: #ffffff !important;
  opacity: 0.78 !important;
  transform: translateY(-1px);
}

.site-header .topbar .sep {
  color: rgba(255, 255, 255, 0.40) !important;
  font-size: 0.9rem !important;
}

.site-header .topbar .icon-svg {
  color: var(--obj-green, #7fa52b) !important;
  font-size: 0.9rem !important;
}

/* ==================================================
   3. SOCIAL ICONS
================================================== */

.site-header .social {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.site-header .social-btn {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease !important;
}

.site-header .social-btn:hover,
.site-header .social-btn:focus-visible {
  background: var(--obj-green, #7fa52b) !important;
  border-color: var(--obj-green, #7fa52b) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.site-header .social-btn svg {
  width: 14px !important;
  height: 14px !important;
  color: currentColor !important;
  stroke: currentColor !important;
}

/* ==================================================
   4. SUPPORT
================================================== */

.site-header .support-link {
  min-height: 30px !important;
  padding: 0 13px 0 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: #ffffff !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease !important;
}

.site-header .support-link:hover,
.site-header .support-link:focus-visible {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
}

.site-header .support-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.site-header .support-icon img {
  width: 12px !important;
  height: 12px !important;
  filter: brightness(0) invert(1) !important;
}

/* ==================================================
   5. HAUPTZEILE
================================================== */

.site-header .header-inner {
  min-height: 86px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background: transparent !important;
}

/* ==================================================
   6. LOGO
================================================== */

.site-header .brand {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 7px !important;
  border: 1px solid rgba(6, 43, 83, 0.08) !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 28px rgba(6, 43, 83, 0.09) !important;
  text-decoration: none !important;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease !important;
}

.site-header .brand:hover,
.site-header .brand:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(6, 43, 83, 0.13) !important;
}

.site-header .brand img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: none !important;
}

/* ==================================================
   7. DESKTOP-NAVIGATION
================================================== */

.site-header .nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 5px !important;
  margin-left: auto !important;
}

.site-header .nav-item {
  position: relative !important;
  min-height: 44px !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--obj-navy, #062b53) !important;
  font-family:
    var(--obj-font-heading),
    "Montserrat",
    Arial,
    sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease !important;
}

.site-header .nav-item:hover,
.site-header .nav-item:focus-visible {
  background: rgba(36, 104, 142, 0.07) !important;
  border-color: rgba(36, 104, 142, 0.12) !important;
  color: var(--obj-blue, #24688e) !important;
  transform: translateY(-1px);
}

.site-header .nav-item.is-active {
  background: rgba(127, 165, 43, 0.11) !important;
  border-color: rgba(127, 165, 43, 0.20) !important;
  color: var(--obj-green-dark, #557812) !important;
}

.site-header .nav-item img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
  opacity: 0.88 !important;
  filter:
    brightness(0)
    saturate(100%)
    invert(15%)
    sepia(34%)
    saturate(1320%)
    hue-rotate(163deg)
    brightness(88%)
    contrast(98%) !important;
}

.site-header .nav-item:hover img,
.site-header .nav-item:focus-visible img {
  opacity: 1 !important;
}

.site-header .nav-item.is-active img {
  filter:
    brightness(0)
    saturate(100%)
    invert(53%)
    sepia(58%)
    saturate(533%)
    hue-rotate(38deg)
    brightness(91%)
    contrast(94%) !important;
}

/* ==================================================
   8. EIGENTÜMERPORTAL
================================================== */

.site-header .nav-item.nav-portal {
  min-height: 46px !important;
  margin-left: 6px !important;
  padding: 0 18px !important;
  border: 1px solid var(--obj-green, #7fa52b) !important;
  background:
    linear-gradient(
      135deg,
      var(--obj-green, #7fa52b),
      var(--obj-green-dark, #557812)
    ) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(85, 120, 18, 0.22) !important;
}

.site-header .nav-item.nav-portal:hover,
.site-header .nav-item.nav-portal:focus-visible,
.site-header .nav-item.nav-portal.is-active {
  border-color: var(--obj-green-dark, #557812) !important;
  background: var(--obj-green-dark, #557812) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(85, 120, 18, 0.28) !important;
}

.site-header .nav-item.nav-portal img,
.site-header .nav-item.nav-portal:hover img,
.site-header .nav-item.nav-portal.is-active img {
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}

/* ==================================================
   9. HAMBURGER – DESKTOP AUS
================================================== */

.site-header .nav-toggle {
  display: none !important;
}

/* ==================================================
   10. MOBILE HEADER UND NAVIGATION
================================================== */

@media (max-width: 900px) {

  .site-header .topbar {
    min-height: auto !important;
    padding: 8px 0 !important;
  }

  .site-header .topbar-inner {
    min-height: 0 !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .site-header .topbar-left {
    flex: 1 1 auto !important;
    flex-wrap: wrap !important;
    gap: 8px 12px !important;
  }

  .site-header .topbar-right {
    flex: 0 0 auto !important;
  }

  .site-header .topbar .sep {
    display: none !important;
  }

  .site-header .top-link {
    font-size: 0.72rem !important;
  }

  .site-header .social {
    flex-basis: 100% !important;
    margin-top: 1px !important;
  }

  .site-header .social-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
  }

  .site-header .support-link {
    min-height: 29px !important;
    padding-right: 11px !important;
    font-size: 0.69rem !important;
  }

  .site-header .header-inner {
    position: relative !important;
    min-height: 82px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .site-header .brand {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    border-radius: 18px !important;
  }

  /* Hamburger */
  .site-header .nav-toggle {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 1px solid rgba(6, 43, 83, 0.14) !important;
    border-radius: 16px !important;
    background: var(--obj-offwhite, #f8f7f3) !important;
    color: var(--obj-navy, #062b53) !important;
    box-shadow: 0 8px 22px rgba(6, 43, 83, 0.08) !important;
    cursor: pointer !important;
    transition:
      background-color 180ms ease,
      color 180ms ease,
      border-color 180ms ease,
      transform 180ms ease !important;
  }

  .site-header .nav-toggle:hover,
  .site-header .nav-toggle:focus-visible,
  .site-header .nav-toggle[aria-expanded="true"] {
    border-color: var(--obj-green, #7fa52b) !important;
    background: var(--obj-green, #7fa52b) !important;
    color: #ffffff !important;
  }

  .site-header .nav-toggle[aria-expanded="true"] {
    transform: rotate(90deg);
  }

  .site-header .nav-toggle svg {
    width: 26px !important;
    height: 26px !important;
    color: currentColor !important;
  }

  /* Geschlossen */
  .site-header .nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 15px !important;
    right: 15px !important;
    z-index: 1200 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 10px !important;
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
    border: 1px solid transparent !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 22px 55px rgba(6, 43, 83, 0.18) !important;
    transform: translateY(-10px) scale(0.98) !important;
    transform-origin: top right !important;
    transition:
      max-height 260ms ease,
      padding 260ms ease,
      opacity 180ms ease,
      visibility 180ms ease,
      transform 260ms ease,
      border-color 180ms ease !important;
  }

  /* Mehrere mögliche Öffnungszustände unterstützt */
  .site-header .nav.is-open,
  .site-header .nav.open,
  .site-header .nav[data-open="true"],
  .site-header.is-open .nav,
  .site-header.nav-open .nav,
  body.nav-open .site-header .nav,
  .site-header .nav-toggle[aria-expanded="true"] + .nav {
    max-height: min(620px, calc(100vh - 150px)) !important;
    padding: 12px !important;
    overflow-y: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-color: rgba(6, 43, 83, 0.10) !important;
    transform: translateY(0) scale(1) !important;
  }

  .site-header .nav-item {
    width: 100% !important;
    min-height: 50px !important;
    padding: 0 15px !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    border-radius: 15px !important;
    font-size: 0.9rem !important;
  }

  .site-header .nav-item img {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
  }

  .site-header .nav-item.is-active {
    background: rgba(127, 165, 43, 0.12) !important;
  }

  .site-header .nav-item.nav-portal {
    min-height: 52px !important;
    margin: 5px 0 0 !important;
    justify-content: center !important;
    border-radius: 16px !important;
  }
}

/* ==================================================
   11. SEHR KLEINE SMARTPHONES
================================================== */

@media (max-width: 480px) {

  .site-header .topbar-inner {
    gap: 7px !important;
  }

  .site-header .topbar-left {
    gap: 7px 10px !important;
  }

  .site-header .top-link {
    font-size: 0.67rem !important;
  }

  .site-header .top-link .icon-svg {
    font-size: 0.75rem !important;
  }

  .site-header .support-link {
    padding: 0 9px 0 5px !important;
  }

  .site-header .support-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
  }

  .site-header .header-inner {
    min-height: 76px !important;
  }

  .site-header .brand {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
  }

  .site-header .nav-toggle {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 15px !important;
  }

  .site-header .nav {
    left: 10px !important;
    right: 10px !important;
  }
}

/* ==================================================
   12. TASTATURFOKUS
================================================== */

.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 3px solid rgba(127, 165, 43, 0.40) !important;
  outline-offset: 3px !important;
}

/* === OBJ HEADER MARKENMODUL ENDE === */


/* === OBJ FOOTER MARKENMODUL START === */

/* ==================================================
   1. GRUNDFLÄCHE
================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 0 !important;
  border-top: 4px solid var(--obj-green, #7fa51f) !important;
  background:
    linear-gradient(
      145deg,
      var(--obj-navy, #082b45) 0%,
      #0d3b5b 58%,
      var(--obj-blue-dark, #174f70) 100%
    ) !important;
  color: #ffffff !important;
  font-family:
    var(--obj-font-body),
    "Poppins",
    "Nunito Sans",
    Arial,
    sans-serif !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(127, 165, 31, 0.08);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* ==================================================
   2. FOOTER-SPALTEN
================================================== */

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns:
    minmax(220px, 1.35fr)
    minmax(160px, 0.85fr)
    minmax(180px, 0.95fr)
    minmax(180px, 0.95fr) !important;
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: start !important;
  margin: 0 !important;
  padding: 0 0 42px !important;
}

.site-footer .footer-grid > * {
  min-width: 0;
  padding-left: 0 !important;
}

/* ==================================================
   3. LOGO UND MARKENBEREICH
================================================== */

.site-footer .footer-brand,
.site-footer .footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  margin-bottom: 18px !important;
}

.site-footer .footer-logo img,
.site-footer .footer-brand img {
  display: block !important;
  width: auto !important;
  max-width: 150px !important;
  max-height: 92px !important;
  object-fit: contain !important;
  filter: none !important;
}

.site-footer .footer-claim {
  max-width: 28ch !important;
  margin: 10px 0 0 !important;
  color: rgba(255, 255, 255, 0.94) !important;
  font-family:
    var(--obj-font-emotional),
    "Caveat",
    "Segoe Print",
    cursive !important;
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

/* ==================================================
   4. ÜBERSCHRIFTEN
================================================== */

.site-footer .footer-h,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  margin: 0 0 16px !important;
  color: var(--obj-green, #7fa51f) !important;
  font-family:
    var(--obj-font-heading),
    "Montserrat",
    Arial,
    sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* ==================================================
   5. TEXTE UND KONTAKTDATEN
================================================== */

.site-footer,
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer address {
  color: rgba(255, 255, 255, 0.86) !important;
}

.site-footer .footer-p,
.site-footer address {
  margin: 0 0 9px !important;
  font-size: 0.9rem !important;
  font-style: normal !important;
  line-height: 1.6 !important;
}

.site-footer .footer-hours {
  margin-top: 15px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, 0.045) !important;
}

.site-footer .footer-hours strong {
  color: var(--obj-green, #7fa51f) !important;
}

/* ==================================================
   6. FOOTER-LINKS
================================================== */

.site-footer .footer-links {
  display: grid !important;
  gap: 9px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.site-footer .footer-links li,
.site-footer .footer-links li + li {
  margin: 0 !important;
}

.site-footer .footer-links a,
.site-footer .footer-legal a,
.site-footer a:not(.footer-social-btn) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  text-underline-offset: 4px !important;
  transition:
    color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease !important;
}

.site-footer .footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--obj-green, #7fa51f);
  opacity: 0.75;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible,
.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible,
.site-footer a:not(.footer-social-btn):hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

/* ==================================================
   7. SOCIAL-MEDIA
================================================== */

.site-footer .footer-social {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 9px !important;
  margin-top: 18px !important;
}

.site-footer .footer-social-btn {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.055) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease !important;
}

.site-footer .footer-social-btn:hover,
.site-footer .footer-social-btn:focus-visible {
  border-color: var(--obj-green, #7fa51f) !important;
  background: var(--obj-green, #7fa51f) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.site-footer .footer-social-btn svg,
.site-footer .footer-social-btn svg *,
.site-footer .footer-social-btn i,
.site-footer .footer-social-btn [class*="fa-"] {
  width: 17px !important;
  height: 17px !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* ==================================================
   8. UNTERE ABSCHLUSSZEILE
================================================== */

.site-footer .footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 19px 0 21px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.11) !important;
}

.site-footer .footer-copy,
.site-footer .footer-legal {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.73rem !important;
  line-height: 1.5 !important;
}

.site-footer .footer-legal {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px 14px !important;
}

.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: inherit !important;
}

.site-footer .footer-legal a::before {
  content: none !important;
}

/* Webdesign-Zeile hervorheben */
.site-footer .footer-copy,
.site-footer .footer-bottom {
  font-family:
    var(--obj-font-body),
    "Poppins",
    Arial,
    sans-serif !important;
}

/* ==================================================
   9. TABLET
================================================== */

@media (max-width: 900px) {
  .site-footer {
    padding-top: 48px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px 28px !important;
    padding-bottom: 34px !important;
  }

  .site-footer .footer-bottom {
    align-items: flex-start !important;
  }
}

/* ==================================================
   10. SMARTPHONE
================================================== */

@media (max-width: 600px) {
  .site-footer {
    padding-top: 38px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 27px !important;
    padding-bottom: 30px !important;
  }

  .site-footer .footer-logo img,
  .site-footer .footer-brand img {
    max-width: 128px !important;
    max-height: 78px !important;
  }

  .site-footer .footer-claim {
    max-width: 100% !important;
    font-size: 1.28rem !important;
  }

  .site-footer .footer-h,
  .site-footer h2,
  .site-footer h3,
  .site-footer h4 {
    margin-bottom: 11px !important;
    font-size: 0.7rem !important;
  }

  .site-footer .footer-p,
  .site-footer address,
  .site-footer .footer-links a {
    font-size: 0.82rem !important;
  }

  .site-footer .footer-links {
    gap: 7px !important;
  }

  .site-footer .footer-social-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  .site-footer .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 16px 0 18px !important;
  }

  .site-footer .footer-copy,
  .site-footer .footer-legal {
    width: 100% !important;
    justify-content: flex-start !important;
    font-size: 0.68rem !important;
  }
}

/* ==================================================
   11. FOKUS
================================================== */

.site-footer a:focus-visible {
  outline: 3px solid rgba(127, 165, 31, 0.48) !important;
  outline-offset: 3px !important;
}

/* === OBJ FOOTER MARKENMODUL ENDE === */


















/* === OBJ SECTION REVEAL START === */

/*
  Einheitliche Scroll-Animation für alle Inhaltsbereiche.
  Hero, Header und Footer bleiben davon unberührt.
*/

html.js-section-reveal .page > section:not(.hero) {
  opacity: 0;
  transform: translateY(54px);
  transition:
    opacity 1250ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1250ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

html.js-section-reveal .page > section:not(.hero).section-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Alte Spezialanimationen innerhalb der Sections neutralisieren */
html.js-section-reveal .page > section:not(.hero) .reveal,
html.js-section-reveal .page > section:not(.hero) .vision-copy,
html.js-section-reveal .page > section:not(.hero) .vision-media,
html.js-section-reveal .page > section:not(.hero) .dashboard-copy,
html.js-section-reveal .page > section:not(.hero) .dashboard-visual {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Smartphone: etwas kürzer und ruhiger */
@media (max-width: 760px) {
  html.js-section-reveal .page > section:not(.hero) {
    transform: translateY(36px);
    transition-duration: 950ms;
  }

  html.js-section-reveal .page > section:not(.hero).section-is-visible {
    transform: translateY(0);
  }
}

/* Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
  html.js-section-reveal .page > section:not(.hero) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

/* === OBJ SECTION REVEAL ENDE === */

/* === OBJ FINAL OVERRIDES START === */

/* --------------------------------------------------
   Finale Typografie: kompakt und einheitlich
-------------------------------------------------- */
html body {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

html body .page h1,
html body .hero h1,
html body .hero__title {
  font-size: clamp(34px, 3.1vw, 46px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
}

/* H2 bleibt semantisch H2, erscheint bewusst in kompakter H3-Größe. */
html body .page section:not(.hero) h2,
html body .page .story-title,
html body .page .carousel-head h2,
html body .page .vision__headline,
html body .page .dashboard-copy h2,
html body .page .cta-card h2,
html body .page .section-head h2 {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  font-family: var(--obj-font-heading), "Montserrat", Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.012em !important;
  color: var(--obj-blue-dark, #174f70) !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: balance !important;
}

html body .page .vision-copy {
  width: 100% !important;
  max-width: 520px !important;
}

html body .page .vision__headline .vision__line {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

html body .page h3,
html body .page .card h3,
html body .page .carousel-card h3,
html body .page .pricing-card h3,
html body .page .audience-card h3,
html body .page .note-card h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.01em !important;
}

html body .page p,
html body .page li,
html body .story-lead,
html body .story-points .pt-text,
html body .carousel-card p,
html body .dashboard-points p {
  font-size: 14px !important;
  line-height: 1.52 !important;
}

html body .page .lead,
html body .hero__lead {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

html body .page .section-kicker,
html body .page .eyebrow,
html body .page .hero__eyebrow,
html body .page .carousel-badge {
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.13em !important;
}

html body .page figcaption,
html body .page .dashboard-note,
html body .page .card-meta,
html body .page .pricing-sub {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

html body .page .section {
  padding-top: clamp(48px, 5.5vw, 72px) !important;
  padding-bottom: clamp(48px, 5.5vw, 72px) !important;
}

html body .section-head {
  margin-bottom: 28px !important;
}

/* --------------------------------------------------
   Finale kompakte Buttons
-------------------------------------------------- */
html body a.btn,
html body button.btn,
html body input[type="submit"],
html body .hero__cta .btn,
html body .cta-actions .btn,
html body .carousel-actions .btn {
  min-height: 30px !important;
  padding: 5px 10px !important;
  font-size: 10.5px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  border-radius: 999px !important;
}

html body .site-header .nav-item.nav-portal {
  min-height: 36px !important;
  padding: 5px 13px !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

/* --------------------------------------------------
   Social Icons im OBJ-Grün
-------------------------------------------------- */
.site-header .social-btn,
.site-header .social-btn .social-icon {
  color: var(--obj-green, #7fa51f) !important;
}

.site-header .social-btn .social-icon {
  fill: currentColor !important;
}

.site-header .social-btn:hover,
.site-header .social-btn:focus-visible,
.site-header .social-btn:hover .social-icon,
.site-header .social-btn:focus-visible .social-icon {
  color: #ffffff !important;
}

/* --------------------------------------------------
   Footer-Typografie kompakt
-------------------------------------------------- */
html body .site-footer .footer-h,
html body .site-footer h2,
html body .site-footer h3,
html body .site-footer h4 {
  margin-bottom: 10px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.11em !important;
}

html body .site-footer p,
html body .site-footer li,
html body .site-footer address,
html body .site-footer .footer-p {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

html body .site-footer .footer-links a,
html body .site-footer a:not(.footer-social-btn) {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

html body .site-footer .footer-hours {
  margin-top: 10px !important;
  padding: 11px 13px !important;
}

html body .site-footer .footer-hours p {
  margin-bottom: 7px !important;
}

html body .site-footer .footer-copy {
  font-size: 10px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.01em !important;
}

html body .site-footer .footer-legal,
html body .site-footer .footer-legal a {
  font-size: 9px !important;
  line-height: 1.35 !important;
  letter-spacing: 0.01em !important;
}

html body .site-footer .footer-bottom {
  gap: 8px !important;
  padding-top: 14px !important;
  padding-bottom: 15px !important;
}

html body .site-footer .footer-legal {
  gap: 5px 11px !important;
}

@media (max-width: 980px) {
  html body .page section:not(.hero) h2,
  html body .page .story-title,
  html body .page .carousel-head h2,
  html body .page .vision__headline,
  html body .page .dashboard-copy h2,
  html body .page .cta-card h2,
  html body .page .section-head h2 {
    font-size: 18px !important;
  }
}

@media (max-width: 760px) {
  html body {
    font-size: 13px !important;
  }

  html body .page h1,
  html body .hero h1,
  html body .hero__title {
    font-size: 28px !important;
    line-height: 1.03 !important;
  }

  html body .page section:not(.hero) h2,
  html body .page .story-title,
  html body .page .carousel-head h2,
  html body .page .vision__headline,
  html body .page .dashboard-copy h2,
  html body .page .cta-card h2,
  html body .page .section-head h2 {
    font-size: 17px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  html body .page h3,
  html body .page .card h3,
  html body .page .carousel-card h3,
  html body .page .pricing-card h3,
  html body .page .audience-card h3,
  html body .page .note-card h3 {
    font-size: 14px !important;
  }

  html body .page p,
  html body .page li,
  html body .story-lead,
  html body .story-points .pt-text,
  html body .carousel-card p,
  html body .dashboard-points p {
    font-size: 13px !important;
    line-height: 1.48 !important;
  }

  html body .page .lead,
  html body .hero__lead {
    font-size: 13.5px !important;
  }

  html body .page .section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  html body .section-head {
    margin-bottom: 20px !important;
  }

  html body a.btn,
  html body button.btn,
  html body input[type="submit"],
  html body .hero__cta .btn,
  html body .cta-actions .btn,
  html body .carousel-actions .btn {
    min-height: 28px !important;
    padding: 5px 9px !important;
    font-size: 10px !important;
  }

  html body .site-header .nav-item.nav-portal {
    min-height: 40px !important;
    font-size: 11px !important;
  }

  html body .page .vision-copy {
    max-width: 100% !important;
  }
}

@media (max-width: 600px) {
  html body .site-footer .footer-h,
  html body .site-footer h2,
  html body .site-footer h3,
  html body .site-footer h4 {
    font-size: 11px !important;
  }

  html body .site-footer p,
  html body .site-footer li,
  html body .site-footer address,
  html body .site-footer .footer-p {
    font-size: 12px !important;
  }

  html body .site-footer .footer-links a {
    font-size: 11px !important;
  }

  html body .site-footer .footer-copy {
    font-size: 9.5px !important;
  }

  html body .site-footer .footer-legal,
  html body .site-footer .footer-legal a {
    font-size: 9px !important;
  }
}

/* === OBJ FINAL OVERRIDES ENDE === */


/* === OBJ STARTSEITE STORY TITEL FINAL START === */

html body main.page.page-home .story-split .story-title,
html body main.page.page-home .story-split h2 {
  font-size: 20px !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
  letter-spacing: -0.012em !important;
  margin-bottom: 10px !important;
  max-width: none !important;
}

@media (max-width: 980px) {
  html body main.page.page-home .story-split .story-title,
  html body main.page.page-home .story-split h2 {
    font-size: 18px !important;
  }
}

@media (max-width: 760px) {
  html body main.page.page-home .story-split .story-title,
  html body main.page.page-home .story-split h2 {
    font-size: 17px !important;
  }
}

/* === OBJ STARTSEITE STORY TITEL FINAL ENDE === */


/* === OBJ STARTSEITE SECTION TITEL FINAL START === */

/* Große Story-Überschrift wieder auf kompakte H3-Optik setzen */
html body main.page-home .story-split h2,
html body main.page-home .story-split .story-title,
html body main.page-home .story-copy h2 {
  margin: 0 0 12px !important;
  max-width: none !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

/* Weitere normale Startseiten-Sectiontitel angleichen */
html body main.page-home .section-services-carousel h2,
html body main.page-home .section-dashboard h2,
html body main.page-home .section-cta h2 {
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

@media (max-width: 980px) {
  html body main.page-home .story-split h2,
  html body main.page-home .story-split .story-title,
  html body main.page-home .story-copy h2,
  html body main.page-home .section-services-carousel h2,
  html body main.page-home .section-dashboard h2,
  html body main.page-home .section-cta h2 {
    font-size: 18px !important;
  }
}

@media (max-width: 760px) {
  html body main.page-home .story-split h2,
  html body main.page-home .story-split .story-title,
  html body main.page-home .story-copy h2,
  html body main.page-home .section-services-carousel h2,
  html body main.page-home .section-dashboard h2,
  html body main.page-home .section-cta h2 {
    font-size: 17px !important;
  }
}

/* === OBJ STARTSEITE SECTION TITEL FINAL ENDE === */


/* === OBJ LEISTUNGEN MARKENHERO START === */

.page-leistungen .hero--leistungen-brand {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  background: #082c45;
}

.page-leistungen .leistungen-hero-brand {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(420px, 44%);
  min-height: clamp(540px, 66vh, 720px);
  background: #082c45;
}

/* Linke Bildseite */
.page-leistungen .leistungen-hero-brand__media {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  background: #dce7ec;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.page-leistungen .leistungen-hero-brand__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(540px, 66vh, 720px);
  object-fit: cover;
  object-position: center;
}

/* Rechter Markenbereich */
.page-leistungen .leistungen-hero-brand__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: clamp(-70px, -4vw, -34px);
  padding:
    clamp(58px, 7vw, 90px)
    clamp(34px, 6vw, 88px)
    clamp(52px, 6vw, 78px)
    clamp(92px, 9vw, 142px);
  color: #ffffff;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(41, 182, 115, 0.13),
      transparent 34%
    ),
    linear-gradient(145deg, #082c45 0%, #0b3856 100%);
}

.page-leistungen .leistungen-hero-brand__eyebrow {
  margin: 0 0 20px;
  color: #91b724;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Der Slogan ist gleichzeitig die semantische H1 */
.page-leistungen .leistungen-hero-brand__slogan {
  display: grid;
  gap: 2px;
  margin: 0;
  max-width: 500px;
  color: #ffffff;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(43px, 4.1vw, 68px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: 0;
}

.page-leistungen .leistungen-hero-brand__slogan span {
  display: block;
  color: inherit;
}

.page-leistungen .leistungen-hero-brand__slogan-accent {
  margin-top: 4px;
  color: #91b724 !important;
}

.page-leistungen .leistungen-hero-brand__stroke {
  width: clamp(150px, 18vw, 245px);
  height: 3px;
  margin: 17px 0 31px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #91b724 0%,
    rgba(145, 183, 36, 0.95) 72%,
    rgba(145, 183, 36, 0) 100%
  );
  transform: rotate(-3deg);
  transform-origin: left center;
}

/* Werte */
.page-leistungen .leistungen-hero-brand__values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 610px;
  margin-bottom: 32px;
}

.page-leistungen .leistungen-hero-brand__value {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.page-leistungen .leistungen-hero-brand__value-icon {
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #91b724;
}

.page-leistungen .leistungen-hero-brand__value-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-leistungen .leistungen-hero-brand__value-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.page-leistungen .leistungen-hero-brand__value-text strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.page-leistungen .leistungen-hero-brand__value-text small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  line-height: 1.25;
}

/* Buttons */
.page-leistungen .leistungen-hero-brand__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-leistungen .leistungen-hero-brand__actions .btn {
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
}

.page-leistungen .leistungen-hero-brand__actions .btn--primary {
  color: #11212b;
  background: #e2ab3d;
  border-color: #e2ab3d;
}

.page-leistungen .leistungen-hero-brand__actions .btn--primary:hover,
.page-leistungen .leistungen-hero-brand__actions .btn--primary:focus-visible {
  color: #11212b;
  background: #efba50;
  border-color: #efba50;
}

.page-leistungen .leistungen-hero-brand__actions .btn--ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
}

.page-leistungen .leistungen-hero-brand__actions .btn--ghost:hover,
.page-leistungen .leistungen-hero-brand__actions .btn--ghost:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Tablet */
@media (max-width: 1050px) {
  .page-leistungen .leistungen-hero-brand {
    grid-template-columns: minmax(0, 51%) minmax(380px, 49%);
  }

  .page-leistungen .leistungen-hero-brand__content {
    padding-left: 84px;
    padding-right: 34px;
  }

  .page-leistungen .leistungen-hero-brand__values {
    grid-template-columns: 1fr;
    gap: 11px;
    max-width: 310px;
  }

  .page-leistungen .leistungen-hero-brand__value-icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .page-leistungen .leistungen-hero-brand__value-icon svg {
    width: 25px;
    height: 25px;
  }
}

/* Smartphone: Bild oben, Text darunter */
@media (max-width: 760px) {
  .page-leistungen .leistungen-hero-brand {
    display: block;
    min-height: 0;
  }

  .page-leistungen .leistungen-hero-brand__media {
    height: 280px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }

  .page-leistungen .leistungen-hero-brand__media img {
    height: 100%;
    min-height: 0;
    object-position: center;
  }

  .page-leistungen .leistungen-hero-brand__content {
    margin: -36px 0 0;
    padding: 74px 22px 48px;
  }

  .page-leistungen .leistungen-hero-brand__eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .page-leistungen .leistungen-hero-brand__slogan {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.94;
  }

  .page-leistungen .leistungen-hero-brand__stroke {
    margin-top: 16px;
    margin-bottom: 27px;
  }

  .page-leistungen .leistungen-hero-brand__values {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 28px;
  }

  .page-leistungen .leistungen-hero-brand__value-text strong {
    font-size: 13px;
  }

  .page-leistungen .leistungen-hero-brand__value-text small {
    font-size: 10px;
  }

  .page-leistungen .leistungen-hero-brand__actions {
    align-items: stretch;
  }

  .page-leistungen .leistungen-hero-brand__actions .btn {
    flex: 1 1 150px;
  }
}

/* === OBJ LEISTUNGEN MARKENHERO ENDE === */


/* === OBJ LEISTUNGEN SLOGAN SCHREIBSCHRIFT START === */

html body .page-leistungen .leistungen-hero-brand__slogan,
html body .page-leistungen .leistungen-hero-brand__slogan span {
  font-family:
    "Caveat",
    "Segoe Print",
    "Bradley Hand",
    cursive !important;

  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html body .page-leistungen .leistungen-hero-brand__slogan {
  font-size: clamp(50px, 4.8vw, 76px) !important;
  line-height: 0.88 !important;
}

html body .page-leistungen .leistungen-hero-brand__slogan span {
  display: block !important;
}

html body .page-leistungen .leistungen-hero-brand__slogan-accent {
  margin-top: 9px !important;
  color: #91b724 !important;
  font-size: 0.9em !important;
  transform: rotate(-2deg);
  transform-origin: left center;
}

@media (max-width: 1050px) {
  html body .page-leistungen .leistungen-hero-brand__slogan {
    font-size: clamp(46px, 5.7vw, 66px) !important;
  }
}

@media (max-width: 760px) {
  html body .page-leistungen .leistungen-hero-brand__slogan {
    font-size: clamp(45px, 14vw, 62px) !important;
    line-height: 0.9 !important;
  }
}

/* === OBJ LEISTUNGEN SLOGAN SCHREIBSCHRIFT ENDE === */


/* === OBJ LEISTUNGEN HERO KOMPAKT START === */

.page-leistungen .leistungen-hero-brand {
  grid-template-columns: minmax(0, 52%) minmax(420px, 48%) !important;
  min-height: clamp(420px, 54vh, 540px) !important;
}

.page-leistungen .leistungen-hero-brand__media img {
  min-height: clamp(420px, 54vh, 540px) !important;
}

.page-leistungen .leistungen-hero-brand__content {
  margin-left: clamp(-48px, -3vw, -20px) !important;
  padding:
    clamp(34px, 4.2vw, 52px)
    clamp(26px, 3.5vw, 44px)
    clamp(30px, 3.8vw, 46px)
    clamp(72px, 6vw, 96px) !important;
}

.page-leistungen .leistungen-hero-brand__eyebrow {
  margin-bottom: 14px !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
}

html body .page-leistungen .leistungen-hero-brand__slogan {
  max-width: 390px !important;
  font-size: clamp(34px, 3.2vw, 50px) !important;
  line-height: 0.92 !important;
}

html body .page-leistungen .leistungen-hero-brand__slogan-accent {
  margin-top: 6px !important;
  font-size: 0.88em !important;
}

.page-leistungen .leistungen-hero-brand__stroke {
  width: clamp(110px, 11vw, 160px) !important;
  height: 2px !important;
  margin: 10px 0 18px !important;
}

.page-leistungen .leistungen-hero-brand__values {
  max-width: 540px !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}

.page-leistungen .leistungen-hero-brand__value {
  gap: 8px !important;
}

.page-leistungen .leistungen-hero-brand__value-icon {
  flex: 0 0 28px !important;
  width: 28px !important;
  height: 28px !important;
}

.page-leistungen .leistungen-hero-brand__value-icon svg {
  width: 21px !important;
  height: 21px !important;
}

.page-leistungen .leistungen-hero-brand__value-text strong {
  font-size: 11px !important;
  line-height: 1.15 !important;
}

.page-leistungen .leistungen-hero-brand__value-text small {
  font-size: 9px !important;
  line-height: 1.2 !important;
}

.page-leistungen .leistungen-hero-brand__actions {
  gap: 10px !important;
}

.page-leistungen .leistungen-hero-brand__actions .btn {
  min-height: 32px !important;
  padding: 0 14px !important;
  font-size: 11px !important;
  border-radius: 999px !important;
}

/* Tablet */
@media (max-width: 1050px) {
  .page-leistungen .leistungen-hero-brand {
    grid-template-columns: minmax(0, 50%) minmax(340px, 50%) !important;
    min-height: clamp(390px, 48vh, 470px) !important;
  }

  .page-leistungen .leistungen-hero-brand__media img {
    min-height: clamp(390px, 48vh, 470px) !important;
  }

  .page-leistungen .leistungen-hero-brand__content {
    padding:
      30px
      22px
      30px
      62px !important;
  }

  html body .page-leistungen .leistungen-hero-brand__slogan {
    font-size: clamp(30px, 3.8vw, 42px) !important;
    max-width: 320px !important;
  }

  .page-leistungen .leistungen-hero-brand__values {
    grid-template-columns: 1fr !important;
    max-width: 260px !important;
    gap: 10px !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .page-leistungen .leistungen-hero-brand__media {
    height: 220px !important;
  }

  .page-leistungen .leistungen-hero-brand__content {
    margin-top: -22px !important;
    padding: 48px 18px 30px !important;
  }

  .page-leistungen .leistungen-hero-brand__eyebrow {
    font-size: 9px !important;
    margin-bottom: 10px !important;
  }

  html body .page-leistungen .leistungen-hero-brand__slogan {
    font-size: clamp(30px, 10vw, 44px) !important;
    line-height: 0.94 !important;
    max-width: 100% !important;
  }

  .page-leistungen .leistungen-hero-brand__stroke {
    margin: 10px 0 16px !important;
  }

  .page-leistungen .leistungen-hero-brand__values {
    gap: 10px !important;
    margin-bottom: 18px !important;
  }

  .page-leistungen .leistungen-hero-brand__value-icon {
    flex-basis: 26px !important;
    width: 26px !important;
    height: 26px !important;
  }

  .page-leistungen .leistungen-hero-brand__value-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  .page-leistungen .leistungen-hero-brand__value-text strong {
    font-size: 10px !important;
  }

  .page-leistungen .leistungen-hero-brand__value-text small {
    font-size: 8px !important;
  }

  .page-leistungen .leistungen-hero-brand__actions .btn {
    min-height: 30px !important;
    font-size: 10px !important;
    padding: 0 12px !important;
  }
}

/* === OBJ LEISTUNGEN HERO KOMPAKT ENDE === */


/* === OBJ LEISTUNGEN TRENNUNG ENDGUELTIG START === */

.page-leistungen .leistungen-hero-brand {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
}

/* Bild läuft bis direkt an die schräge Schnittkante */
.page-leistungen .leistungen-hero-brand__media {
  position: relative !important;
  z-index: 2 !important;
  overflow: hidden !important;

  clip-path: polygon(
    0 0,
    100% 0,
    calc(100% - 72px) 100%,
    0 100%
  ) !important;
}

.page-leistungen .leistungen-hero-brand__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Navyfläche direkt hinter das Bild ziehen */
.page-leistungen .leistungen-hero-brand__content {
  position: relative !important;
  z-index: 1 !important;
  margin-left: -72px !important;
  padding-left: 110px !important;
}

/* Alle alten Pseudoelemente neutralisieren */
.page-leistungen .leistungen-hero-brand__content::before,
.page-leistungen .leistungen-hero-brand__media::after {
  content: none !important;
  display: none !important;
}

/* Schmaler grüner Streifen exakt auf der Bildkante */
.page-leistungen .leistungen-hero-brand::after {
  content: "" !important;
  position: absolute !important;
  z-index: 20 !important;
  top: 0 !important;
  bottom: 0 !important;

  left: calc(52% - 72px) !important;
  width: 78px !important;

  background: #91b724 !important;

  clip-path: polygon(
    72px 0,
    78px 0,
    6px 100%,
    0 100%
  ) !important;

  pointer-events: none !important;
}

/* Tablet */
@media (max-width: 1050px) {
  .page-leistungen .leistungen-hero-brand__media {
    clip-path: polygon(
      0 0,
      100% 0,
      calc(100% - 48px) 100%,
      0 100%
    ) !important;
  }

  .page-leistungen .leistungen-hero-brand__content {
    margin-left: -48px !important;
    padding-left: 78px !important;
  }

  .page-leistungen .leistungen-hero-brand::after {
    left: calc(50% - 48px) !important;
    width: 54px !important;

    clip-path: polygon(
      48px 0,
      54px 0,
      6px 100%,
      0 100%
    ) !important;
  }
}

/* Smartphone */
@media (max-width: 760px) {
  .page-leistungen .leistungen-hero-brand__media {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 89%,
      0 100%
    ) !important;
  }

  .page-leistungen .leistungen-hero-brand__content {
    margin-left: 0 !important;
    padding-left: 18px !important;
  }

  .page-leistungen .leistungen-hero-brand::after {
    display: none !important;
  }
}

/* === OBJ LEISTUNGEN TRENNUNG ENDGUELTIG ENDE === */


/* === OBJ LEISTUNGEN HERO OBEN AN HEADER START === */

/* Nur auf der Leistungsseite den Abstand unter dem Header entfernen */
html body main.page.page-leistungen {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

html body main.page.page-leistungen > .hero--leistungen-brand {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Eventuelle globale Abstände zwischen Header und Main neutralisieren */
html body .site-header + main.page-leistungen,
html body header + main.page-leistungen {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Oberen Leerraum des Hero-Moduls vollständig entfernen */
.page-leistungen .leistungen-hero-brand,
.page-leistungen .leistungen-hero-brand__media,
.page-leistungen .leistungen-hero-brand__content {
  margin-top: 0 !important;
}

/* Smartphone ebenfalls direkt anschließen */
@media (max-width: 760px) {
  html body main.page.page-leistungen,
  html body main.page.page-leistungen > .hero--leistungen-brand {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* === OBJ LEISTUNGEN HERO OBEN AN HEADER ENDE === */


/* === OBJ STICKY HEADER STRUKTUR FINAL START === */

/*
  Eine einzige Abstandssystematik:
  - Header fest am oberen Rand
  - body gleicht exakt die Headerhöhe aus
  - .site-main erzeugt keinen zweiten Abstand
*/

:root {
  --obj-header-height: 132px;
}

html {
  margin: 0 !important;
  padding: 0 !important;
  scroll-padding-top: calc(var(--obj-header-height) + 16px);
}

body {
  margin: 0 !important;
  padding:
    var(--obj-header-height)
    0
    0
    0 !important;
}

/* Header wieder feststehend */
html body .site-header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;

  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;

  transform: none !important;
  background: #ffffff !important;
}

/* Innere Headerteile bleiben normal im festen Header */
html body .site-header .topbar,
html body .site-header .header-inner {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  margin-top: 0 !important;
  transform: none !important;
}

/* Äußerer Seitenwrapper ohne zweiten Headerabstand */
html body .site-main {
  display: block !important;
  position: relative !important;
  z-index: 1 !important;

  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Seiten und erste Heroes ebenfalls ohne zusätzlichen oberen Raum */
html body .site-main > main.page,
html body main.page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

html body main.page > .hero:first-child,
html body main.page > section:first-child {
  margin-top: 0 !important;
}

/* Leistungs-Hero bleibt direkt unter dem Header */
html body main.page-leistungen,
html body main.page-leistungen > .hero--leistungen-brand {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Mobile Fallback, bis JavaScript die genaue Höhe misst */
@media (max-width: 900px) {
  :root {
    --obj-header-height: 176px;
  }
}

/* === OBJ STICKY HEADER STRUKTUR FINAL ENDE === */


/* === OBJ CONCIERGE HERO UND KARTEN START === */

/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.page-concierge .hero--concierge {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 44, 69, 0.82) 0%,
      rgba(8, 44, 69, 0.68) 36%,
      rgba(8, 44, 69, 0.28) 68%,
      rgba(8, 44, 69, 0.16) 100%
    ),
    url("/assets/img/herzlich_willkommen.png") center center / cover no-repeat;
}

.page-concierge .hero--concierge::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02) 0%,
      rgba(255,255,255,0.00) 100%
    );
  pointer-events: none;
}

.page-concierge .hero__inner--concierge {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(460px, 62vh, 620px);
  max-width: 680px;
  padding:
    clamp(54px, 7vw, 92px)
    0
    clamp(54px, 7vw, 92px);
  color: #ffffff;
}

.page-concierge .hero-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.page-concierge .hero__title {
  margin: 0 0 14px;
  color: #ffffff;
}

.page-concierge .hero__title .hero-script {
  display: block;
  font-family: "Caveat", "Segoe Print", cursive;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.88;
  font-weight: 700;
  color: #ffffff;
}

.page-concierge .hero__title .hero-serif {
  display: block;
  margin-top: 2px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #91b724;
}

.page-concierge .hero__lead--concierge {
  max-width: 560px;
  margin: 0 0 22px;
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.6;
}

.page-concierge .hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-concierge .hero__fact {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.page-concierge .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-concierge .hero__actions .btn {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
}

.page-concierge .hero__actions .btn:first-child {
  color: #11212b;
  background: #e2ab3d;
  border-color: #e2ab3d;
}

.page-concierge .hero__actions .btn:first-child:hover,
.page-concierge .hero__actions .btn:first-child:focus-visible {
  color: #11212b;
  background: #efba50;
  border-color: #efba50;
}

.page-concierge .hero__actions .btn:last-child {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255,255,255,0.52);
}

.page-concierge .hero__actions .btn:last-child:hover,
.page-concierge .hero__actions .btn:last-child:focus-visible {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
}

/* --------------------------------------------------
   EINFÜHRUNG
-------------------------------------------------- */

.page-concierge .section-concierge-promise .section-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.page-concierge .section-concierge-promise .lead {
  max-width: 760px;
  margin-inline: auto;
}

/* --------------------------------------------------
   KARTENBEREICH
-------------------------------------------------- */

.page-concierge .concierge-heart__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.page-concierge .concierge-moment {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(8,44,69,0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(8,44,69,0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.page-concierge .concierge-moment:hover,
.page-concierge .concierge-moment:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(8,44,69,0.12);
  border-color: rgba(145,183,36,0.22);
}

.page-concierge .concierge-moment__img {
  overflow: hidden;
  background: #d9e5ea;
}

.page-concierge .concierge-moment__img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-concierge .concierge-moment__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
}

.page-concierge .concierge-moment__body h3 {
  margin: 0;
  color: #082c45;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-concierge .concierge-moment__body p {
  margin: 0;
  color: rgba(8,44,69,0.82);
  font-size: 15px;
  line-height: 1.65;
}

/* --------------------------------------------------
   BOX + FEATURE
-------------------------------------------------- */

.page-concierge .concierge-heart__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 34px;
}

.page-concierge .concierge-heart__box {
  padding: 28px 28px 26px;
  border: 1px solid rgba(8,44,69,0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(145,183,36,0.06) 0%, rgba(255,255,255,1) 100%);
  box-shadow: 0 14px 34px rgba(8,44,69,0.08);
}

.page-concierge .concierge-heart__box h3 {
  margin: 0 0 18px;
  color: #082c45;
  font-size: 24px;
  line-height: 1.2;
}

.page-concierge .concierge-heart__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-concierge .concierge-heart__list li {
  position: relative;
  padding-left: 26px;
  color: rgba(8,44,69,0.88);
  font-size: 15px;
  line-height: 1.5;
}

.page-concierge .concierge-heart__list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #91b724;
  font-size: 18px;
  line-height: 1.2;
}

.page-concierge .concierge-heart__note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(8,44,69,0.10);
  color: rgba(8,44,69,0.78);
  font-size: 15px;
  line-height: 1.6;
}

.page-concierge .concierge-heart__note strong {
  color: #082c45;
}

.page-concierge .concierge-moment--feature {
  min-height: 100%;
}

.page-concierge .concierge-moment--feature .concierge-moment__img,
.page-concierge .concierge-moment--feature .concierge-moment__img img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

/* --------------------------------------------------
   CTA
-------------------------------------------------- */

.page-concierge .section-cta .narrow {
  max-width: 760px;
  text-align: center;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 980px) {
  .page-concierge .concierge-heart__grid,
  .page-concierge .concierge-heart__split {
    grid-template-columns: 1fr;
  }

  .page-concierge .concierge-heart__split {
    gap: 22px;
  }

  .page-concierge .concierge-moment--feature .concierge-moment__img img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .page-concierge .hero--concierge {
    background:
      linear-gradient(
        180deg,
        rgba(8, 44, 69, 0.82) 0%,
        rgba(8, 44, 69, 0.74) 44%,
        rgba(8, 44, 69, 0.52) 100%
      ),
      url("/assets/img/herzlich_willkommen.png") center center / cover no-repeat;
  }

  .page-concierge .hero__inner--concierge {
    min-height: 420px;
    padding: 44px 0 46px;
  }

  .page-concierge .hero__title .hero-script {
    font-size: clamp(46px, 14vw, 72px);
  }

  .page-concierge .hero__title .hero-serif {
    font-size: clamp(24px, 7vw, 34px);
  }

  .page-concierge .hero__lead--concierge {
    font-size: 15px;
    line-height: 1.55;
  }

  .page-concierge .hero__facts {
    gap: 8px;
    margin-bottom: 20px;
  }

  .page-concierge .hero__fact {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  .page-concierge .hero__actions .btn {
    min-height: 34px;
    font-size: 11px;
    padding: 0 14px;
  }

  .page-concierge .concierge-heart__grid {
    gap: 18px;
  }

  .page-concierge .concierge-moment__body {
    padding: 18px 18px 20px;
  }

  .page-concierge .concierge-moment__body h3 {
    font-size: 18px;
  }

  .page-concierge .concierge-moment__body p,
  .page-concierge .concierge-heart__list li,
  .page-concierge .concierge-heart__note {
    font-size: 14px;
  }

  .page-concierge .concierge-heart__box {
    padding: 22px 20px;
  }

  .page-concierge .concierge-heart__box h3 {
    font-size: 21px;
  }
}

/* === OBJ CONCIERGE HERO UND KARTEN ENDE === */


/* === OBJ KONTAKT VISUELL FINAL START === */

/* --------------------------------------------------
   KONTAKT – Seitenbasis
-------------------------------------------------- */

.page-kontakt {
  background: #f7f9fa;
}

.page-kontakt .contact-section {
  position: relative;
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(72px, 8vw, 110px);
  background:
    linear-gradient(
      180deg,
      #f7f9fa 0%,
      #ffffff 42%,
      #f7f9fa 100%
    );
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.page-kontakt .hero--kontakt {
  position: relative;
  overflow: hidden;
  min-height: clamp(330px, 42vw, 470px);
  display: flex;
  align-items: center;
  margin: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 44, 69, 0.72) 0%,
      rgba(8, 44, 69, 0.54) 48%,
      rgba(8, 44, 69, 0.28) 100%
    ),
    url("/assets/img/kontakte/kontakt.png") center center / cover no-repeat;
}

.page-kontakt .hero--kontakt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 82% 28%,
      rgba(145, 183, 36, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    );
}

.page-kontakt .hero--kontakt::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(255, 255, 255, 0.025),
    0 0 0 118px rgba(145, 183, 36, 0.025);
  pointer-events: none;
}

.page-kontakt .hero--kontakt .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
}

.page-kontakt .hero--kontakt .page-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-kontakt .hero--kontakt .section-kicker {
  margin-bottom: 14px;
  color: #91b724;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-kontakt .hero--kontakt h1 {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #ffffff !important;
  font-size: clamp(36px, 5vw, 58px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.035em !important;
}

.page-kontakt .hero--kontakt .lead {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
}

/* --------------------------------------------------
   GRID UND KARTEN
-------------------------------------------------- */

.page-kontakt .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}

.page-kontakt .contact-grid > .card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(8, 44, 69, 0.08);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(8, 44, 69, 0.075);
}

.page-kontakt .contact-grid > .card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #91b724 0%,
    #91b724 42%,
    rgba(145, 183, 36, 0.14) 100%
  );
}

.page-kontakt .contact-grid > .card .card-body {
  height: 100%;
  padding: clamp(26px, 3.5vw, 40px);
}

.page-kontakt .contact-title {
  margin: 0 0 10px;
  color: #082c45;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-kontakt .contact-title + .muted {
  margin-bottom: 28px;
  color: rgba(8, 44, 69, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

/* --------------------------------------------------
   DIREKTKONTAKT
-------------------------------------------------- */

.page-kontakt .contact-card {
  background:
    linear-gradient(
      180deg,
      rgba(145, 183, 36, 0.055) 0%,
      #ffffff 34%
    ) !important;
}

.page-kontakt .contact-list {
  display: grid;
  gap: 0;
  margin-bottom: 26px;
}

.page-kontakt .contact-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(8, 44, 69, 0.08);
}

.page-kontakt .contact-item:first-child {
  padding-top: 0;
}

.page-kontakt .contact-label {
  margin-bottom: 5px;
  color: rgba(8, 44, 69, 0.48);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-kontakt .contact-value {
  color: #082c45;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 550;
}

.page-kontakt a.contact-value {
  text-decoration: none;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.page-kontakt a.contact-value:hover,
.page-kontakt a.contact-value:focus-visible {
  color: #70941a;
  opacity: 1;
}

.page-kontakt .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.page-kontakt .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(8, 44, 69, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #082c45;
  box-shadow: 0 6px 16px rgba(8, 44, 69, 0.055);
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.page-kontakt .contact-icon svg {
  width: 18px;
  height: 18px;
}

.page-kontakt .contact-icon:hover,
.page-kontakt .contact-icon:focus-visible {
  color: #ffffff;
  background: #082c45;
  border-color: #082c45;
  box-shadow: 0 10px 24px rgba(8, 44, 69, 0.16);
  transform: translateY(-2px);
  opacity: 1;
}

.page-kontakt .contact-divider {
  margin: 28px 0 22px;
  background: rgba(8, 44, 69, 0.08);
}

.page-kontakt .contact-divider + .small {
  margin-bottom: 0;
  color: rgba(8, 44, 69, 0.6);
  font-size: 12px;
  line-height: 1.65;
}

/* --------------------------------------------------
   FORMULAR
-------------------------------------------------- */

.page-kontakt .form {
  display: grid;
  gap: 17px;
}

.page-kontakt .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.page-kontakt .form label {
  display: grid;
  gap: 7px;
  color: #082c45;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.page-kontakt .form input:not([type="checkbox"]),
.page-kontakt .form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 44, 69, 0.13);
  border-radius: 13px;
  background: #fbfcfc;
  color: #17242c;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: inset 0 1px 2px rgba(8, 44, 69, 0.025);
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.page-kontakt .form textarea {
  min-height: 150px;
  resize: vertical;
}

.page-kontakt .form input:not([type="checkbox"]):hover,
.page-kontakt .form textarea:hover {
  border-color: rgba(8, 44, 69, 0.22);
  background: #ffffff;
}

.page-kontakt .form input:not([type="checkbox"]):focus,
.page-kontakt .form textarea:focus {
  border-color: #91b724;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(145, 183, 36, 0.12);
}

.page-kontakt .checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin-top: 2px;
  color: rgba(8, 44, 69, 0.68) !important;
  font-size: 11px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

.page-kontakt .checkbox input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: #91b724;
}

.page-kontakt .checkbox a {
  color: #082c45;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.page-kontakt .form > .small {
  margin: -3px 0 2px;
  color: rgba(8, 44, 69, 0.52);
  font-size: 11px;
  line-height: 1.6;
}

.page-kontakt .form .btn--primary {
  justify-self: start;
  min-height: 42px;
  padding: 0 20px;
  border-color: #e2ab3d;
  border-radius: 999px;
  background: #e2ab3d;
  color: #17242c;
  font-size: 12px;
  font-weight: 700;
  box-shadow: none;
}

.page-kontakt .form .btn--primary:hover,
.page-kontakt .form .btn--primary:focus-visible {
  border-color: #efba50;
  background: #efba50;
  color: #17242c;
  transform: translateY(-1px);
}

/* --------------------------------------------------
   FEHLERMELDUNGEN
-------------------------------------------------- */

.page-kontakt .form-errors {
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(176, 50, 50, 0.18);
  border-radius: 15px;
  background: #fff7f7;
  box-shadow: none;
}

.page-kontakt .form-errors .card-body {
  padding: 16px 18px;
}

.page-kontakt .form-errors p {
  margin: 0 0 8px;
  color: #8b2424;
}

.page-kontakt .form-errors ul {
  margin: 0;
  padding-left: 18px;
  color: #8b2424;
  font-size: 12px;
  line-height: 1.55;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 980px) {
  .page-kontakt .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-kontakt .contact-grid > .card {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .page-kontakt .hero--kontakt {
  position: relative;
  overflow: hidden;
  min-height: clamp(330px, 42vw, 470px);
  display: flex;
  align-items: center;
  margin: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 44, 69, 0.72) 0%,
      rgba(8, 44, 69, 0.54) 48%,
      rgba(8, 44, 69, 0.28) 100%
    ),
    url("/assets/img/kontakte/kontakt.png") center center / cover no-repeat;
}

  .page-kontakt .hero--kontakt .hero__inner {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .page-kontakt .hero--kontakt h1 {
    font-size: clamp(31px, 9vw, 40px) !important;
  }

  .page-kontakt .hero--kontakt .lead {
    max-width: 34ch;
    font-size: 14px;
    line-height: 1.58;
  }

  .page-kontakt .contact-section {
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .page-kontakt .contact-grid {
    gap: 18px;
  }

  .page-kontakt .contact-grid > .card {
    border-radius: 20px;
  }

  .page-kontakt .contact-grid > .card .card-body {
    padding: 23px 20px;
  }

  .page-kontakt .form-row {
    grid-template-columns: 1fr;
  }

  .page-kontakt .form .btn--primary {
    width: 100%;
    justify-self: stretch;
  }
}

/* === OBJ KONTAKT VISUELL FINAL ENDE === */


/* === OBJ DANKE SEITE FINAL START === */

.page-danke {
  background: #f7f9fa;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.page-danke .hero--danke {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 46vw, 520px);
  margin: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 44, 69, 0.86) 0%,
      rgba(8, 44, 69, 0.68) 52%,
      rgba(8, 44, 69, 0.40) 100%
    ),
    url("/assets/img/danke/danke.png") center center / cover no-repeat;
}

.page-danke .hero--danke::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(145, 183, 36, 0.18),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(8, 44, 69, 0.08)
    );
}

.page-danke .hero--danke .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(58px, 7vw, 90px);
  padding-bottom: clamp(58px, 7vw, 90px);
}

.page-danke .hero--danke .page-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-danke .hero--danke .section-kicker {
  margin-bottom: 14px;
  color: #a7cb3a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-danke .hero--danke h1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 14px);

  margin: 0 auto 18px;
  color: #ffffff !important;
  font-size: clamp(42px, 6vw, 70px) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

.page-danke .danke-heart {
  display: inline-block;
  font-size: 0.7em;
  line-height: 1;
  transform: translateY(2px);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.page-danke .hero--danke .lead {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
}

/* --------------------------------------------------
   BESTÄTIGUNGSKARTE
-------------------------------------------------- */

.page-danke > .section {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(72px, 8vw, 110px);
  background:
    linear-gradient(
      180deg,
      #f7f9fa 0%,
      #ffffff 48%,
      #f7f9fa 100%
    );
}

.page-danke .danke-card {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(8, 44, 69, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(8, 44, 69, 0.09);
}

.page-danke .danke-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #91b724 0%,
      #91b724 42%,
      rgba(145, 183, 36, 0.14) 100%
    );
}

.page-danke .danke-card .card-body {
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}

.page-danke .danke-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;
  margin: 0 auto 22px;

  border-radius: 50%;
  background: rgba(145, 183, 36, 0.11);
  color: #70941a;
}

.page-danke .danke-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-danke .danke-card h2 {
  margin: 0 0 14px;
  color: #082c45;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.page-danke .danke-card .muted {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(8, 44, 69, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.page-danke .danke-card .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.page-danke .danke-card .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.page-danke .danke-card .btn--primary {
  border-color: #e2ab3d;
  background: #e2ab3d;
  color: #17242c;
}

.page-danke .danke-card .btn--primary:hover,
.page-danke .danke-card .btn--primary:focus-visible {
  border-color: #efba50;
  background: #efba50;
  color: #17242c;
}

.page-danke .danke-card .btn-outline {
  border-color: rgba(8, 44, 69, 0.20);
  color: #082c45;
  background: transparent;
}

.page-danke .danke-card .btn-outline:hover,
.page-danke .danke-card .btn-outline:focus-visible {
  border-color: #082c45;
  background: #082c45;
  color: #ffffff;
}

/* --------------------------------------------------
   MOBIL
-------------------------------------------------- */

@media (max-width: 680px) {
  .page-danke .hero--danke {
    min-height: 330px;
    background-position: 58% center;
  }

  .page-danke .hero--danke .hero__inner {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .page-danke .hero--danke h1 {
    gap: 8px;
    font-size: clamp(36px, 11vw, 46px) !important;
  }

  .page-danke .hero--danke .lead {
    max-width: 35ch;
    font-size: 14px;
    line-height: 1.6;
  }

  .page-danke > .section {
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .page-danke .danke-card {
    border-radius: 21px;
  }

  .page-danke .danke-card .card-body {
    padding: 28px 21px;
  }

  .page-danke .danke-card__icon {
    width: 52px;
    height: 52px;
  }

  .page-danke .danke-card .muted {
    font-size: 14px;
  }

  .page-danke .danke-card .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-danke .danke-card .btn {
    width: 100%;
  }
}

/* === OBJ DANKE SEITE FINAL ENDE === */


/* === OBJ HEADER LOGO GROESSE FINAL START === */

/*
  Die PNG-Datei enthält freien transparenten Rand.
  Deshalb wird nur das Bild im vorhandenen Logokasten vergrößert.
*/

.site-header .brand {
  overflow: hidden !important;
}

.site-header .brand img {
  width: 150% !important;
  height: 150% !important;
  max-width: none !important;
  object-fit: contain !important;
  transform: scale(1.15) !important;
  transform-origin: center center !important;
}

/* === OBJ HEADER LOGO GROESSE FINAL ENDE === */


/* === OBJ EIGENTUEMERPORTAL FINAL START === */

.page-eigentuemer {
  background: #f7f9fa;
}

/* HERO */

.page-eigentuemer .hero--eigentuemer {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(390px, 48vw, 560px);
  margin: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 44, 69, 0.96) 0%,
      rgba(8, 44, 69, 0.88) 50%,
      rgba(8, 44, 69, 0.72) 100%
    );
}

.page-eigentuemer .hero--eigentuemer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 82% 28%,
      rgba(145, 183, 36, 0.22),
      transparent 27%
    ),
    radial-gradient(
      circle at 15% 88%,
      rgba(255, 255, 255, 0.08),
      transparent 32%
    );
}

.page-eigentuemer .hero--eigentuemer::after {
  content: "";
  position: absolute;
  right: clamp(28px, 7vw, 110px);
  top: 50%;
  width: clamp(170px, 24vw, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 36px;
  transform: translateY(-50%) rotate(8deg);
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.025),
    0 0 0 76px rgba(145, 183, 36, 0.018);
  pointer-events: none;
}

.page-eigentuemer .hero--eigentuemer .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(62px, 8vw, 104px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.page-eigentuemer .eigentuemer-hero__content {
  max-width: 720px;
}

.page-eigentuemer .hero--eigentuemer .section-kicker {
  margin-bottom: 15px;
  color: #a7cb3a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-eigentuemer .hero--eigentuemer h1 {
  margin: 0 0 20px;
  color: #ffffff !important;
  font-size: clamp(42px, 6vw, 72px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
}

.page-eigentuemer .hero--eigentuemer .lead {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
}

.page-eigentuemer .eigentuemer-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.page-eigentuemer .eigentuemer-hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a7cb3a;
  box-shadow: 0 0 0 5px rgba(167, 203, 58, 0.13);
}

/* STATUSKARTE */

.page-eigentuemer .eigentuemer-status {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(52px, 6vw, 78px);
  background: #f7f9fa;
}

.page-eigentuemer .eigentuemer-status__card {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(8, 44, 69, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(8, 44, 69, 0.08);
}

.page-eigentuemer .eigentuemer-status__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(
    90deg,
    #91b724 0%,
    #91b724 42%,
    rgba(145, 183, 36, 0.14) 100%
  );
}

.page-eigentuemer .eigentuemer-status__card .card-body {
  padding: clamp(32px, 5vw, 54px);
  text-align: center;
}

.page-eigentuemer .eigentuemer-status__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(145, 183, 36, 0.10);
  color: #70941a;
}

.page-eigentuemer .eigentuemer-status__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-eigentuemer .eigentuemer-status__card h2 {
  margin: 0 auto 15px;
  color: #082c45;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.page-eigentuemer .eigentuemer-status__card .lead {
  max-width: 660px;
  margin: 0 auto 14px;
  color: rgba(8, 44, 69, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.page-eigentuemer .eigentuemer-status__card .muted {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(8, 44, 69, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

/* FUNKTIONEN */

.page-eigentuemer .eigentuemer-features {
  background: #ffffff;
}

.page-eigentuemer .eigentuemer-features .section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.page-eigentuemer .eigentuemer-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.page-eigentuemer .eigentuemer-feature {
  border: 1px solid rgba(8, 44, 69, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 44, 69, 0.055);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.page-eigentuemer .eigentuemer-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(145, 183, 36, 0.22);
  box-shadow: 0 20px 42px rgba(8, 44, 69, 0.09);
}

.page-eigentuemer .eigentuemer-feature .card-body {
  padding: 28px;
}

.page-eigentuemer .eigentuemer-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(145, 183, 36, 0.09);
  color: #70941a;
}

.page-eigentuemer .eigentuemer-feature__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-eigentuemer .eigentuemer-feature h3 {
  margin: 0 0 10px;
  color: #082c45;
  font-size: 20px;
  line-height: 1.2;
}

.page-eigentuemer .eigentuemer-feature p {
  margin: 0;
  color: rgba(8, 44, 69, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

/* CTA */

.page-eigentuemer .eigentuemer-cta {
  background:
    linear-gradient(
      180deg,
      #f7f9fa 0%,
      #ffffff 100%
    );
}

.page-eigentuemer .eigentuemer-cta .cta-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-eigentuemer .eigentuemer-cta .cta-actions {
  justify-content: center;
  gap: 12px;
}

.page-eigentuemer .eigentuemer-cta .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.page-eigentuemer .eigentuemer-cta .btn--primary {
  border-color: #e2ab3d;
  background: #e2ab3d;
  color: #17242c;
}

.page-eigentuemer .eigentuemer-cta .btn--primary:hover {
  border-color: #efba50;
  background: #efba50;
  color: #17242c;
}

/* MOBIL */

@media (max-width: 760px) {
  .page-eigentuemer .hero--eigentuemer {
    min-height: 390px;
  }

  .page-eigentuemer .hero--eigentuemer::after {
    right: -70px;
    opacity: 0.45;
  }

  .page-eigentuemer .hero--eigentuemer .hero__inner {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .page-eigentuemer .hero--eigentuemer h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }

  .page-eigentuemer .hero--eigentuemer .lead {
    max-width: 36ch;
    font-size: 14px;
  }

  .page-eigentuemer .eigentuemer-features__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-eigentuemer .eigentuemer-status__card,
  .page-eigentuemer .eigentuemer-feature {
    border-radius: 21px;
  }

  .page-eigentuemer .eigentuemer-feature .card-body {
    padding: 23px 21px;
  }

  .page-eigentuemer .eigentuemer-cta .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-eigentuemer .eigentuemer-cta .btn {
    width: 100%;
  }
}

/* === OBJ EIGENTUEMERPORTAL FINAL ENDE === */


/* === OBJ EIGENTUEMER HERO PORTAL PREVIEW START === */

/* Hero insgesamt kompakter */
.page-eigentuemer .hero--eigentuemer {
  min-height: auto !important;
}

/* Innenabstände reduzieren */
.page-eigentuemer .hero--eigentuemer .hero__inner {
  padding-top: clamp(42px, 5vw, 64px) !important;
  padding-bottom: clamp(42px, 5vw, 64px) !important;
}

/* Zwei kompaktere Spalten */
.page-eigentuemer .eigentuemer-hero__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(320px, 460px);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

/* Textbereich etwas schmaler */
.page-eigentuemer .eigentuemer-hero__content {
  max-width: 610px;
}

/* Überschrift kleiner */
.page-eigentuemer .hero--eigentuemer h1 {
  margin-bottom: 16px !important;
  font-size: clamp(38px, 5vw, 60px) !important;
  line-height: 0.98 !important;
}

/* Begleittext kompakter */
.page-eigentuemer .hero--eigentuemer .lead {
  max-width: 560px;
  margin-bottom: 20px !important;
  font-size: clamp(14px, 1.4vw, 16px) !important;
  line-height: 1.58 !important;
}

/* Status-Pill kleiner */
.page-eigentuemer .eigentuemer-hero__status {
  min-height: 32px;
  padding: 0 13px;
  font-size: 11px;
}

/* Bildbereich */
.page-eigentuemer .eigentuemer-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* Previewkarte deutlich kleiner */
.page-eigentuemer .eigentuemer-hero__visual-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(8px);
}

/* Vorschaubadge kleiner */
.page-eigentuemer .eigentuemer-hero__preview-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 44, 69, 0.72);
  color: #ffffff;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Bild kleiner, aber vollständig sichtbar */
.page-eigentuemer .eigentuemer-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;

  filter:
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

/* Alte Dekoration deaktivieren */
.page-eigentuemer .hero--eigentuemer::after {
  content: none !important;
}

/* Tablet */
@media (max-width: 980px) {
  .page-eigentuemer .eigentuemer-hero__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-eigentuemer .eigentuemer-hero__content {
    max-width: 680px;
  }

  .page-eigentuemer .eigentuemer-hero__visual {
    justify-content: flex-start;
  }

  .page-eigentuemer .eigentuemer-hero__visual-card {
    max-width: 500px;
  }
}

/* Mobil */
@media (max-width: 760px) {
  .page-eigentuemer .hero--eigentuemer .hero__inner {
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }

  .page-eigentuemer .hero--eigentuemer h1 {
    font-size: clamp(34px, 11vw, 46px) !important;
  }

  .page-eigentuemer .eigentuemer-hero__grid {
    gap: 20px;
  }

  .page-eigentuemer .eigentuemer-hero__visual {
    justify-content: center;
  }

  .page-eigentuemer .eigentuemer-hero__visual-card {
    max-width: 100%;
    padding: 9px;
    border-radius: 20px;
  }

  .page-eigentuemer .eigentuemer-hero__image {
    max-height: 240px;
  }
}

/* === OBJ EIGENTUEMER HERO PORTAL PREVIEW ENDE === */

/* === OBJ SUPPORT FINAL START === */

.page-support {
  background: #f7f9fa;
}

/* HERO */

.page-support .hero--support {
  position: relative;
  overflow: hidden;
  margin: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(145, 183, 36, 0.18), transparent 26%),
    linear-gradient(100deg, #082c45 0%, #123f59 58%, #315f6d 100%);
}

.page-support .hero--support::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(255, 255, 255, 0.018),
    0 0 0 118px rgba(145, 183, 36, 0.018);
  pointer-events: none;
}

.page-support .hero--support .hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

.page-support .support-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.page-support .support-hero__content {
  max-width: 690px;
}

.page-support .hero--support .section-kicker {
  margin-bottom: 14px;
  color: #a7cb3a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-support .hero--support h1 {
  margin: 0 0 18px;
  color: #fff !important;
  font-size: clamp(40px, 5.4vw, 66px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
}

.page-support .hero--support .lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

.page-support .support-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.page-support .support-hero__actions .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.page-support .support-hero__actions .btn--primary {
  border-color: #e2ab3d;
  background: #e2ab3d;
  color: #17242c;
}

.page-support .support-hero__actions .btn--primary:hover,
.page-support .support-hero__actions .btn--primary:focus-visible {
  border-color: #efba50;
  background: #efba50;
  color: #17242c;
}

.page-support .support-hero__actions .btn-outline {
  border-color: rgba(255,255,255,0.42);
  color: #fff;
  background: transparent;
}

.page-support .support-hero__actions .btn-outline:hover,
.page-support .support-hero__actions .btn-outline:focus-visible {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.10);
}

.page-support .support-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-support .support-hero__facts li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* QUICK CONTACT CARD */

.page-support .support-hero__card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  background: rgba(255,255,255,0.075);
  box-shadow: 0 24px 60px rgba(0,0,0,0.20);
  backdrop-filter: blur(12px);
}

.page-support .support-hero__card-label {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-support .support-quick-link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.page-support .support-quick-link:last-child {
  border-bottom: 0;
}

.page-support .support-quick-link:hover,
.page-support .support-quick-link:focus-visible {
  opacity: 1;
}

.page-support .support-quick-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(145,183,36,0.13);
  color: #b9da59;
}

.page-support .support-quick-link__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-support .support-quick-link strong,
.page-support .support-quick-link small {
  display: block;
}

.page-support .support-quick-link strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
}

.page-support .support-quick-link small {
  color: rgba(255,255,255,0.68);
  font-size: 12px;
}

/* INTRO */

.page-support .support-intro {
  padding-top: clamp(58px, 7vw, 90px);
  padding-bottom: clamp(58px, 7vw, 90px);
  background: #fff;
}

.page-support .support-intro .support-section-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.page-support .support-section-head h2 {
  margin-bottom: 14px;
  color: #082c45;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.page-support .support-section-head .lead {
  margin: 0;
  color: rgba(8,44,69,0.68);
  font-size: 16px;
  line-height: 1.72;
}

/* TOPICS */

.page-support .support-topics {
  background: #f7f9fa;
}

.page-support .support-topics .support-section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.page-support .support-topics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-support .support-topic-card {
  padding: 28px;
  border: 1px solid rgba(8,44,69,0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(8,44,69,0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.page-support .support-topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(145,183,36,0.20);
  box-shadow: 0 22px 46px rgba(8,44,69,0.09);
}

.page-support .support-topic-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(145,183,36,0.10);
  color: #70941a;
}

.page-support .support-topic-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-support .support-topic-card h3 {
  margin: 0 0 10px;
  color: #082c45;
  font-size: 20px;
  line-height: 1.2;
}

.page-support .support-topic-card p {
  margin: 0;
  color: rgba(8,44,69,0.66);
  font-size: 14px;
  line-height: 1.65;
}

/* PROCESS */

.page-support .support-process {
  background: #fff;
}

.page-support .support-process__shell {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(8,44,69,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(145,183,36,0.045), #fff 30%);
  box-shadow: 0 20px 48px rgba(8,44,69,0.06);
}

.page-support .support-process__shell .support-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.page-support .support-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-support .support-process__step {
  padding: 22px;
  border: 1px solid rgba(8,44,69,0.08);
  border-radius: 20px;
  background: #fff;
}

.page-support .support-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(145,183,36,0.10);
  color: #70941a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.page-support .support-process__step h3 {
  margin: 0 0 9px;
  color: #082c45;
  font-size: 18px;
}

.page-support .support-process__step p {
  margin: 0;
  color: rgba(8,44,69,0.65);
  font-size: 14px;
  line-height: 1.65;
}

.page-support .support-process__note {
  margin-top: 20px;
  padding: 17px 18px;
  border-radius: 16px;
  background: rgba(8,44,69,0.045);
  color: rgba(8,44,69,0.72);
  font-size: 13px;
  line-height: 1.6;
}

.page-support .support-process__note strong {
  color: #082c45;
}

/* CTA */

.page-support .support-contact {
  background: linear-gradient(180deg, #f7f9fa 0%, #fff 100%);
}

.page-support .support-contact .cta-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-support .support-contact .cta-actions {
  justify-content: center;
  gap: 12px;
}

.page-support .support-contact .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.page-support .support-contact .btn--primary {
  border-color: #e2ab3d;
  background: #e2ab3d;
  color: #17242c;
}

.page-support .support-contact .btn--primary:hover,
.page-support .support-contact .btn--primary:focus-visible {
  border-color: #efba50;
  background: #efba50;
  color: #17242c;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .page-support .support-hero__grid,
  .page-support .support-topics__grid,
  .page-support .support-process__grid {
    grid-template-columns: 1fr;
  }

  .page-support .support-hero__card {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .page-support .hero--support .hero__inner {
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .page-support .hero--support h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .page-support .hero--support .lead {
    font-size: 14px;
  }

  .page-support .support-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-support .support-hero__actions .btn {
    width: 100%;
  }

  .page-support .support-hero__card {
    padding: 18px;
    border-radius: 21px;
  }

  .page-support .support-topic-card,
  .page-support .support-process__shell {
    border-radius: 21px;
  }

  .page-support .support-topic-card {
    padding: 22px 20px;
  }

  .page-support .support-process__shell {
    padding: 22px 20px;
  }

  .page-support .support-contact .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-support .support-contact .btn {
    width: 100%;
  }
}

/* === OBJ SUPPORT FINAL ENDE === */


/* === OBJ SUPPORT HERO KOMPAKT START === */

.page-support .hero--support {
  min-height: auto !important;
}

.page-support .hero--support .hero__inner {
  padding-top: clamp(34px, 4vw, 52px) !important;
  padding-bottom: clamp(34px, 4vw, 52px) !important;
}

.page-support .support-hero__grid {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(290px, 380px) !important;
  gap: clamp(24px, 3.5vw, 44px) !important;
}

.page-support .hero--support h1 {
  margin-bottom: 14px !important;
  font-size: clamp(36px, 4.6vw, 56px) !important;
  line-height: 1 !important;
}

.page-support .hero--support .lead {
  margin-bottom: 18px !important;
  font-size: clamp(14px, 1.4vw, 16px) !important;
  line-height: 1.58 !important;
}

.page-support .support-hero__actions {
  margin-bottom: 16px !important;
}

.page-support .support-hero__actions .btn {
  min-height: 36px !important;
  padding: 0 15px !important;
  font-size: 11px !important;
}

.page-support .support-hero__facts li {
  min-height: 28px !important;
  padding: 0 10px !important;
  font-size: 10px !important;
}

.page-support .support-hero__card {
  padding: 16px 18px !important;
  border-radius: 22px !important;
}

.page-support .support-hero__card-label {
  margin-bottom: 8px !important;
}

.page-support .support-quick-link {
  grid-template-columns: 38px minmax(0, 1fr) !important;
  gap: 11px !important;
  padding: 10px 0 !important;
}

.page-support .support-quick-link__icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
}

.page-support .support-quick-link__icon svg {
  width: 19px !important;
  height: 19px !important;
}

.page-support .support-quick-link strong {
  font-size: 13px !important;
}

.page-support .support-quick-link small {
  font-size: 11px !important;
}

@media (max-width: 980px) {
  .page-support .support-hero__grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .page-support .support-hero__card {
    max-width: 520px !important;
  }
}

@media (max-width: 680px) {
  .page-support .hero--support .hero__inner {
    padding-top: 30px !important;
    padding-bottom: 34px !important;
  }

  .page-support .hero--support h1 {
    font-size: clamp(32px, 9vw, 42px) !important;
  }

  .page-support .support-hero__grid {
    gap: 18px !important;
  }

  .page-support .support-hero__card {
    padding: 14px 16px !important;
    border-radius: 19px !important;
  }
}

/* === OBJ SUPPORT HERO KOMPAKT ENDE === */
