
/* =========================================================
  HK Herobereich
========================================================= */




/* =========================================================
  HK LEISTUNGEN MIN – Minimalismus + Luft + Icon-Rhythmus
========================================================= */

.hk-leistungen-min{
  background: var(--color-page-bg);

  /* Harmonischer Section-Rhythmus:
     Mobile = md, Desktop = lg */
  padding-block: var(--section-space-y-md);
}
@media (min-width: 992px){
  .hk-leistungen-min{
    padding-block: var(--section-space-y-lg);
  }
}

/* Inner: kleiner, konstanter “Headroom” damit Inhalt nicht direkt startet */
.hk-leistungen-min__inner{
  padding-top: var(--space-2);
}
@media (min-width: 992px){
  .hk-leistungen-min__inner{
    padding-top: var(--space-3);
  }
}

/* Copy rechts */
.hk-leistungen-min__copy{
  max-width: 56ch;
}
@media (min-width: 992px){
  .hk-leistungen-min__copy{
    margin-left: auto;
    text-align: right;
    padding-top: var(--space-2);
  }
}

/* Eyebrow */
.hk-leistungen-min__kicker{
  margin: 0 0 var(--space-2);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-neutral-600);
}

/* Lead */
.hk-leistungen-min__lead{
  margin: 0;
  font-size: 1.02rem;
  color: var(--color-neutral-600);
  line-height: 1.75;
  max-width: 64ch;
}
@media (min-width: 992px){
  .hk-leistungen-min__lead{ margin-left: auto; }
}

/* Liste: harmonische Gaps über Tokens */
.hk-leistungen-min__list{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 992px){
  .hk-leistungen-min__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3) var(--space-5);
    padding-top: var(--space-2);
  }
}

/* Links: Editorial Row (keine Box) */
.hk-leistungen-min__link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);

  width: 100%;
  padding-block: calc(var(--space-2) + 2px); /* harmonisch + guter Tap-Target */
  text-decoration: none;
  color: var(--color-neutral-900);

  font-weight: 900;
  letter-spacing: -0.012em;
  line-height: 1.32;

  border-bottom: 1px solid rgba(148,163,184,0.32);

  transition:
    transform var(--duration-fast) var(--easing-standard),
    border-color var(--duration-base) var(--easing-standard),
    color var(--duration-base) var(--easing-standard);
}

/* Underline-Animation: subtil, premium */
.hk-leistungen-min__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:2px;
  border-radius: 999px;

  background: linear-gradient(90deg, var(--color-primary-400), var(--color-primary-600));
  transform: scaleX(0);
  transform-origin: left;
  opacity: .88;

  transition: transform var(--duration-base) var(--easing-standard);
}

/* Icon */
.hk-leistungen-min__link i{
  flex: 0 0 auto;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(37,99,235,0.82);
  transform: translateY(.5px);
  transition:
    transform var(--duration-fast) var(--easing-standard),
    color var(--duration-base) var(--easing-standard);
}

/* Text */
.hk-leistungen-min__link span{
  flex: 1 1 auto;
  min-width: 0;
}

/* Hover */
.hk-leistungen-min__link:hover{
  transform: translateY(-1px);
  border-bottom-color: rgba(37,99,235,0.24);
  color: rgba(15,23,42,0.98);
}
.hk-leistungen-min__link:hover::after{ transform: scaleX(1); }
.hk-leistungen-min__link:hover i{
  color: rgba(37,99,235,0.95);
  transform: translate(1px,.5px);
}

/* Focus */
.hk-leistungen-min__link:focus-visible{
  outline: none;
  border-bottom-color: rgba(37,99,235,0.35);
  box-shadow: var(--focus-ring-soft);
  border-radius: 6px;
}
.hk-leistungen-min__link:focus-visible::after{ transform: scaleX(1); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hk-leistungen-min__link,
  .hk-leistungen-min__link i,
  .hk-leistungen-min__link::after{
    transition: none !important;
    transform: none !important;
  }
}
dding-top: .35rem;
  }
}

/* 7) Links: keine Box — nur Row + Linie, aber “designed”
   - größerer Klickbereich
   - präzise Baseline
   - Underline-Animation (Agentur-Standard)
*/
.hk-leistungen-min__link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7rem;

  width: 100%;
  padding: .54rem 0;

  text-decoration: none;
  color: var(--color-neutral-900);

  font-weight: 900;
  letter-spacing: -0.012em;
  line-height: 1.32;

  border-bottom: 1px solid rgba(148,163,184,0.32);

  transition:
    transform var(--duration-fast) var(--easing-standard),
    border-color var(--duration-base) var(--easing-standard),
    color var(--duration-base) var(--easing-standard),
    opacity var(--duration-base) var(--easing-standard);
}

/* Akzentlinie zieht auf Hover/Focus auf (ohne HTML Änderung) */
.hk-leistungen-min__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:2px;
  border-radius: 999px;

  background: linear-gradient(90deg, var(--color-primary-400), var(--color-primary-600));
  transform: scaleX(0);
  transform-origin: left;
  opacity: .9;

  transition: transform var(--duration-base) var(--easing-standard);
}

/* Icon: bewusst leise, aber exakt */
.hk-leistungen-min__link i{
  flex: 0 0 auto;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(37,99,235,0.82);
  transform: translateY(.5px);
  transition:
    transform var(--duration-fast) var(--easing-standard),
    color var(--duration-base) var(--easing-standard),
    opacity var(--duration-base) var(--easing-standard);
}

/* Text span */
.hk-leistungen-min__link span{
  flex: 1 1 auto;
  min-width: 0;
}

/* Hover: minimal aber hochwertig */
.hk-leistungen-min__link:hover{
  transform: translateY(-1px);
  border-bottom-color: rgba(37,99,235,0.24);
  color: rgba(15,23,42,0.98);
}
.hk-leistungen-min__link:hover::after{ transform: scaleX(1); }
.hk-leistungen-min__link:hover i{
  color: rgba(37,99,235,0.95);
  transform: translate(1px,.5px);
}

/* Focus: sauber sichtbar */
.hk-leistungen-min__link:focus-visible{
  outline: none;
  border-bottom-color: rgba(37,99,235,0.35);
  box-shadow: var(--focus-ring-soft);
  border-radius: 6px;
}
.hk-leistungen-min__link:focus-visible::after{ transform: scaleX(1); }

/* Mobile fein */
@media (max-width: 575.98px){
  .hk-leistungen-min__link{ padding: .46rem 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hk-leistungen-min__link,
  .hk-leistungen-min__link i{
    transition: none !important;
    transform: none !important;
  }
  .hk-leistungen-min__link::after{
    transition: none !important;
    transform: none !important;
  }
}



    /* =========================================================
       RIGHT: Calm Collage (ruhig + elegant)
       - Weniger „Chaos“: klare Proportionen, definierte Abstände
       - Keine Rahmen/Boxen: nur Radius + Shadow
       - Badges als „Glass Pills“
       ========================================================= */

/* =========================================
   FAQ — scoped
   FIX: keine eigene Max-Width mehr über hk-content,
   damit es exakt wie jede andere .container Sektion läuft.
   ========================================= */

.hk-faq{
  position: relative;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-neutral-50, #f8fafc) 92%, white),
    white
  );
}

/* Accordion tuning via Bootstrap variables (scoped) */
.hk-faq__acc{
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;

  --bs-accordion-btn-bg: rgba(255,255,255,0.82);
  --bs-accordion-btn-color: var(--color-ink-950, #0f172a);

  --bs-accordion-active-bg: rgba(255,255,255,0.92);
  --bs-accordion-active-color: var(--color-ink-950, #0f172a);

  --bs-accordion-btn-focus-box-shadow: 0 0 0 .25rem rgba(37,99,235,0.18);

  --bs-accordion-btn-padding-x: 1rem;
  --bs-accordion-btn-padding-y: .95rem;
  --bs-accordion-body-padding-x: 1rem;
  --bs-accordion-body-padding-y: .9rem;
}

.hk-faq__item{
  border: 1px solid color-mix(in srgb, var(--color-neutral-200, #e2e8f0) 70%, white);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-micro, 0 4px 10px rgba(15,23,42,0.10));
}
.hk-faq__item + .hk-faq__item{ margin-top: .7rem; }

.hk-faq__btn{
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.hk-faq__btn::after{ transform: scale(.92); }

.hk-faq__body{
  color: var(--color-neutral-700, #334155);
  line-height: 1.75;
}

/* CTA layout: right aligned on desktop, stacked on xs */
.hk-faq__ctas{
  width: 100%;
  justify-content: flex-start;
  gap: var(--space-2, .5rem);
}
.hk-faq__cta{ min-width: 0; }

@media (min-width: 992px){
  .hk-faq__ctas{ justify-content: flex-end; }
}
@media (max-width: 575.98px){
  .hk-faq__ctas{
    flex-direction: column;
    align-items: stretch;
  }
  .hk-faq__cta{
    width: 100%;
    justify-content: space-between;
  }
}

/* Icon sizing (scoped) */
.hk-faq .btn .ph{
  font-size: 1.05em;
  line-height: 1;
}
/* =========================================================
   CITY HERO – Optimized (Container harmony + Map-first + spawn-safe)
   Wichtig:
   - Map bleibt Prime-Element (auch Mobile)
   - KEINE transforms auf .hk-city-hero__right / Panel / Overlay
     (Spawn-Blocking via getBoundingClientRect bleibt korrekt)
   - Containerbreiten im Einklang mit deiner base.css (.container 1320/1440/1600)
========================================================= */

#city-hero.hk-city-hero{
  /* Lokale Hero-Tokens */
  --hk-hero-bg: var(--color-ink-950, #0f172a);

  --hk-hero-radius: calc(var(--radius-lg, 14px) + 4px);
  --hk-hero-border: rgba(148,163,184,0.22);
  --hk-hero-border-strong: rgba(191,219,254,0.26);

  --hk-hero-shadow: 0 24px 64px rgba(0,0,0,0.38);
  --hk-hero-shadow-soft: 0 18px 48px rgba(0,0,0,0.30);

  --hk-hero-glow-1: var(--color-primary-glow-1, rgba(96,165,250,.42));
  --hk-hero-glow-2: var(--color-primary-glow-2, rgba(37,99,235,.18));
  --hk-hero-glow-3: var(--color-primary-glow-3, rgba(56,189,248,.14));

  --hk-hero-text: rgba(248,250,252,0.92);
  --hk-hero-text-strong: rgba(255,255,255,0.98);
  --hk-hero-text-muted: rgba(226,232,240,0.78);
  --hk-hero-text-soft: rgba(226,232,240,0.62);

  --hk-hero-link: var(--color-link-on-dark, rgba(191,219,254,0.96));
  --hk-hero-link-hover: var(--color-link-on-dark-hover, #fff);

  /* Container-Harmonie (wie Bootstrap / deine base.css)
     base.css: .container 1320px (xxl), ab 1800px -> 1440px, ab 2200px -> 1600px */
  --hk-hero-frame-max: var(--hk-city-hero-frame-max, 1320px);
  --hk-hero-panel-max: var(--hk-city-hero-panel-max, 42rem);
  --hk-hero-notify-max: var(--hk-city-hero-notify-max, 26.25rem);

  /* Notification Rail Tokens */
  --hk-notify-origin-y: var(--hk-city-hero-notify-origin-y, clamp(0px, calc(50% - 150px), 120px));
  --hk-notify-step-y:   var(--hk-city-hero-notify-step-y, clamp(12px, 1.2vw, 22px));
  --hk-notify-drift-y:  var(--hk-city-hero-notify-drift-y, 10px);

  position: relative;
  isolation: isolate;
  background: var(--hk-hero-bg);

  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;

  /* kleine UX-Details */
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1800px){
  #city-hero.hk-city-hero{ --hk-hero-frame-max: var(--hk-city-hero-frame-max, 1440px); }
}
@media (min-width: 2200px){
  #city-hero.hk-city-hero{ --hk-hero-frame-max: var(--hk-city-hero-frame-max, 1600px); }
}

/* optional bessere Ableitung der Border-Farben */
@supports (background: color-mix(in srgb, #000 50%, transparent)){
  #city-hero.hk-city-hero{
    --hk-hero-border: color-mix(in srgb, var(--color-neutral-400, #94a3b8) 22%, transparent);
    --hk-hero-border-strong: color-mix(in srgb, var(--color-primary-200, #bfdbfe) 28%, transparent);
  }
}

/* ---------------------------------------------------------
   MAP (Leaflet) – interaktiv, full bleed
--------------------------------------------------------- */
#city-hero #cityHeroMap.hk-city-hero__map{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:auto;

  /* Fallback wenn Tiles noch laden */
  background:
    radial-gradient(circle at 18% 18%, rgba(96,165,250,.18) 0%, transparent 58%),
    radial-gradient(circle at 84% 10%, rgba(37,99,235,.14) 0%, transparent 62%),
    radial-gradient(circle at 78% 78%, rgba(56,189,248,.10) 0%, transparent 62%),
    #0b1222;
}
@supports (background: color-mix(in srgb, #000 50%, transparent)){
  #city-hero #cityHeroMap.hk-city-hero__map{
    background:
      radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--hk-hero-glow-1) 45%, transparent) 0%, transparent 58%),
      radial-gradient(circle at 84% 10%, color-mix(in srgb, var(--hk-hero-glow-2) 55%, transparent) 0%, transparent 62%),
      radial-gradient(circle at 78% 78%, color-mix(in srgb, var(--hk-hero-glow-3) 50%, transparent) 0%, transparent 62%),
      #0b1222;
  }
}

#city-hero #cityHeroMap,
#city-hero #cityHeroMap .leaflet-container{
  width:100%;
  height:100%;
  touch-action: pan-x pan-y; /* Mobile fühlt sich natürlicher an */
}

/* Map-first: keine harten Filter (optional minimal) */
#city-hero #cityHeroMap .leaflet-tile{ filter:none; }

/* ---------------------------------------------------------
   Atmosphäre (Map bleibt sichtbar, besonders Mobile)
--------------------------------------------------------- */
#city-hero.hk-city-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;

  /* Desktop: etwas mehr Tiefe unten, oben sehr transparent */
  background:
    radial-gradient(circle at 14% 28%, rgba(37,99,235,0.08), transparent 60%),
    radial-gradient(circle at 88% 18%, rgba(96,165,250,0.06), transparent 64%),
    linear-gradient(180deg, rgba(15,23,42,0.06) 0%, rgba(15,23,42,0.14) 62%, rgba(15,23,42,0.30) 100%);
}

/* Mobile: Overlay deutlich ruhiger -> Karte wirkt wirklich „live“ */
@media (max-width: 991.98px){
  #city-hero.hk-city-hero::before{
    background:
      radial-gradient(circle at 14% 28%, rgba(37,99,235,0.06), transparent 60%),
      radial-gradient(circle at 88% 18%, rgba(96,165,250,0.05), transparent 64%),
      linear-gradient(180deg, rgba(15,23,42,0.04) 0%, rgba(15,23,42,0.10) 62%, rgba(15,23,42,0.20) 100%);
  }
}

/* ---------------------------------------------------------
   Overlay (Drivers/Spots) – rein visuell
--------------------------------------------------------- */
#city-hero #cityHeroOverlay.hk-city-hero__overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
}

/* ---------------------------------------------------------
   Content über Map – Map bleibt klickbar
--------------------------------------------------------- */
#city-hero .hk-city-hero__content{
  position:relative;
  z-index:3;
  pointer-events:none;
}

/* Nur echte UI klickbar */
#city-hero .hk-glass,
#city-hero .hk-city-hero__right,
#city-hero .hk-city-hero__live,
#city-hero .hk-city-hero__content a,
#city-hero .hk-city-hero__content button,
#city-hero .hk-city-hero__content .btn{
  pointer-events:auto;
}

/* ---------------------------------------------------------
   Container – im Einklang mit base.css, harmonischer Rhythmus
--------------------------------------------------------- */
#city-hero .hk-city-hero__container{
  /* frame */
  max-width: min(var(--hk-hero-frame-max), 100%);
  margin-inline: auto;

  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;

  display:flex;
  align-items:flex-end;

  /* harmonische Abstände: etwas großzügiger, aber nicht „heroig“ */
  padding-top: clamp(var(--space-6, 2rem), 7vw, calc(var(--space-10, 4rem) + 1rem));
  padding-bottom: clamp(var(--space-5, 1.5rem), 6vw, calc(var(--space-9, 3.5rem) + .5rem));

  /* Seiten: etwas mehr Luft als vorher, wirkt „wertiger“ */
  padding-left:  max(var(--space-4, 1rem), env(safe-area-inset-left));
  padding-right: max(var(--space-4, 1rem), env(safe-area-inset-right));
}

/* Desktop zentrieren */
@media (min-width: 768px){
  #city-hero .hk-city-hero__container{
    align-items:center;
    padding-top: clamp(var(--space-7, 2.5rem), 6vw, calc(var(--space-10, 4rem) + 1.25rem));
    padding-bottom: clamp(var(--space-7, 2.5rem), 6vw, calc(var(--space-10, 4rem) + 1.25rem));
  }
}

/* Row-Gutters harmonisieren, ohne HTML ändern */
#city-hero .hk-city-hero__container > .row{
  width:100%;
  --bs-gutter-y: clamp(1rem, 2.1vw, 1.75rem);
  --bs-gutter-x: clamp(1rem, 3vw, 3.25rem);
}

/* ---------------------------------------------------------
   Mobile Live Badge – sauber platziert, stabil
--------------------------------------------------------- */
#city-hero .hk-city-hero__live{
  position:absolute;
  z-index:4;
  left: max(var(--space-4, 1rem), env(safe-area-inset-left));
  top:  max(var(--space-4, 1rem), env(safe-area-inset-top));

  display:inline-flex;
  align-items:center;
  gap: var(--space-2, .5rem);
  padding: var(--space-2, .5rem) calc(var(--space-3, .75rem) + .05rem);

  border-radius: var(--radius-pill, 999px);
  background: linear-gradient(135deg, rgba(15,23,42,0.84), rgba(29,78,216,0.52));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--hk-hero-shadow-soft);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: var(--hk-hero-text);
  font-size: var(--font-size-sm, .875rem);
  max-width: calc(100% - (2 * max(var(--space-4, 1rem), env(safe-area-inset-left))));
}
#city-hero .hk-city-hero__live i{
  color: var(--hk-hero-link);
  font-size: 1.05rem;
}

/* ---------------------------------------------------------
   Typo – nur Lesbarkeit/Line-length (nutzt deine Klassen)
--------------------------------------------------------- */
#city-hero .hk-eyebrow{ color: rgba(226,232,240,0.72); }

#city-hero .hk-city-hero__headline{
  color: var(--hk-hero-text-strong) !important;
  max-width: 24ch;
  text-wrap: balance;
}

#city-hero .hk-city-hero__subline{
  margin-top: var(--space-3, .75rem);
  font-weight: var(--font-weight-semibold, 600);
  color: rgba(191,219,254,0.94);
  max-width: 64ch;
  text-wrap: pretty;
}

#city-hero .hk-asterisk{ color: var(--hk-hero-text-soft); margin-left:.15rem; }

/* ---------------------------------------------------------
   Glass Panel – Map-first (etwas transparenter), rhythmischer
--------------------------------------------------------- */
#city-hero .hk-glass{
  border-radius: var(--hk-hero-radius);
  border: 1px solid var(--hk-hero-border);
  box-shadow: var(--hk-hero-shadow);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  color: var(--hk-hero-text);
}

/* Panel Padding responsiv + „leichter“ für Map */
#city-hero .hk-glass--panel{
  padding: clamp(1.05rem, 1.55vw, 1.65rem);
  background:
    radial-gradient(circle at 18% 0%, rgba(96,165,250,0.26), transparent 58%),
    radial-gradient(circle at 92% 34%, rgba(56,189,248,0.10), transparent 62%),
    linear-gradient(135deg, rgba(15,23,42,0.78), rgba(30,64,175,0.50));
}

/* Panel-Breite: harmonischer zur Right-Rail (ohne Grid ändern) */
@media (min-width: 992px){
  #city-hero.hk-city-hero{
    --hk-hero-panel-max: clamp(38rem, 46vw, 54rem);
    --hk-hero-notify-max: clamp(25rem, 27vw, 32rem);
  }
}

#city-hero .hk-city-hero__panel{
  max-width: min(var(--hk-hero-panel-max), 100%);
}

/* Stack-Rhythmus (falls deine base hk-stack bereits gap setzt, bleibt es kompatibel) */
#city-hero .hk-city-hero__panel .hk-stack.hk-stack--lg{
  gap: clamp(.9rem, 1.35vw, 1.25rem);
}

/* Chips/CTA: kleine Harmonisierung ohne HTML */
#city-hero .list-unstyled.d-flex.flex-wrap.gap-2{
  gap: clamp(.45rem, .9vw, .65rem) !important;
}
#city-hero .d-grid.gap-2{
  gap: clamp(.5rem, 1vw, .65rem) !important;
}

/* Focus sichtbar (falls base das zu stark entfernt) */
#city-hero .btn:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring-strong, 0 0 0 4px rgba(96,165,250,.28));
}

/* ---------------------------------------------------------
   Right – Notifications (spawn-safe: KEIN transform auf der Rail)
--------------------------------------------------------- */
#city-hero .hk-city-hero__right{
  width: min(var(--hk-hero-notify-max), 100%);
  margin-left: auto;

  /* optisch etwas „näher“ an den Rand (ohne pe-lg-0-Hacks) */
  margin-right: clamp(0px, 1.2vw, 16px);

  position: relative;
  min-height: 360px;

  transform: none !important; /* Schutz: rail niemals transformieren */
  will-change: auto;
}

#city-hero .hk-card{
  border-radius: var(--hk-hero-radius);
  border: 1px solid var(--hk-hero-border);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--hk-hero-shadow);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  color: var(--hk-hero-text);
  padding: .82rem .95rem;

  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
#city-hero .hk-card__label{
  display:flex;
  align-items:center;
  gap:.4rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.76);
  margin-bottom: .35rem;
}
#city-hero .hk-card__title{
  font-weight: var(--font-weight-bold, 700);
  color: var(--hk-hero-text-strong);
  margin: 0 0 .2rem;
  line-height: 1.35;
}
#city-hero .hk-card__meta{ font-size:.82rem; color: rgba(226,232,240,0.82); }

#city-hero .hk-dot{
  width:8px; height:8px; border-radius: 999px;
  background: rgba(96,165,250,0.95);
  box-shadow: 0 0 0 4px rgba(96,165,250,0.18);
}

#city-hero .hk-card--primary{
  background:
    radial-gradient(circle at 20% 0%, rgba(96,165,250,0.20), transparent 62%),
    linear-gradient(135deg, rgba(15,23,42,0.64), rgba(30,64,175,0.48));
  border-color: var(--hk-hero-border-strong);
}
#city-hero .hk-card--soft{
  background:
    radial-gradient(circle at 12% 0%, rgba(96,165,250,0.13), transparent 66%),
    rgba(255,255,255,0.06);
}
#city-hero .hk-card--review{
  background:
    radial-gradient(circle at 18% 0%, rgba(56,189,248,0.11), transparent 62%),
    linear-gradient(135deg, rgba(15,23,42,0.70), rgba(37,99,235,0.32));
}

/* ---------------------------------------------------------
   Buttons – nur nötige Overrides (Kontrast)
--------------------------------------------------------- */
#city-hero .hk-hero__btn-call{
  box-shadow: var(--hk-hero-shadow-soft);
  border-color: color-mix(in srgb, var(--color-primary-200, #bfdbfe) 35%, transparent);
}
#city-hero .hk-hero__btn-call:hover{ box-shadow: var(--hk-hero-shadow); }

#city-hero .hk-hero__btn-ghost{
  background: rgba(255,255,255,0.06);
  border-color: color-mix(in srgb, #fff 16%, transparent);
  color: var(--hk-hero-text-strong);
}
#city-hero .hk-hero__btn-ghost:hover{
  background: rgba(255,255,255,0.10);
  border-color: color-mix(in srgb, #fff 26%, transparent);
  color: var(--hk-hero-text-strong);
}

/* ---------------------------------------------------------
   Animation (lg+) – spawn-safe: Drift auf Cards, NICHT auf Rail
--------------------------------------------------------- */
@media (min-width: 992px){
  #city-hero .hk-city-hero__right{
    /* Rail bleibt statisch -> BoundingClientRect bleibt stabil */
  }

  #city-hero .hk-city-hero__right > .hk-card{
    position:absolute;
    right:0; left:0;
    opacity:0;
    pointer-events:none;
    will-change: opacity, transform, filter;

    --hk-ease: var(--easing-standard, cubic-bezier(0.22,0.61,0.36,1));
    --hk-rotate: 16s;

    /* pro Karte variierbar */
    --hk-enter-y: 14px;
    --hk-exit-y: -12px;

    /* „organischer“ Drift – klein, ohne Rail zu bewegen */
    --hk-drift: var(--hk-notify-drift-y);

    animation:
      hk-notify var(--hk-rotate) var(--hk-ease) infinite both,
      hk-card-drift 8.5s ease-in-out infinite alternate;
  }

  #city-hero .hk-city-hero__right > .hk-card:nth-child(2){ --hk-enter-y: 18px; --hk-exit-y: -14px; animation-delay: 4s, 0s; }
  #city-hero .hk-city-hero__right > .hk-card:nth-child(3){ --hk-enter-y: 12px; --hk-exit-y: -10px; animation-delay: 8s, 0s; }
  #city-hero .hk-city-hero__right > .hk-card:nth-child(4){ --hk-enter-y: 20px; --hk-exit-y: -16px; animation-delay: 12s, 0s; }

  /* Top-Positionen tokenisiert */
  #city-hero .hk-city-hero__right > .hk-card:nth-child(1){ top: calc(var(--hk-notify-origin-y) + (0 * var(--hk-notify-step-y))); animation-delay: 0s, 0s; }
  #city-hero .hk-city-hero__right > .hk-card:nth-child(2){ top: calc(var(--hk-notify-origin-y) + (1 * var(--hk-notify-step-y))); }
  #city-hero .hk-city-hero__right > .hk-card:nth-child(3){ top: calc(var(--hk-notify-origin-y) + (2 * var(--hk-notify-step-y))); }
  #city-hero .hk-city-hero__right > .hk-card:nth-child(4){ top: calc(var(--hk-notify-origin-y) + (3 * var(--hk-notify-step-y))); }

  @keyframes hk-notify{
    0%   { opacity:0; transform: translateY(var(--hk-enter-y)) scale(.985); filter: saturate(1); }
    10%  { opacity:1; transform: translateY(0)              scale(1);     filter: saturate(1.06); }
    30%  { opacity:1; transform: translateY(0)              scale(1);     filter: saturate(1.06); }
    42%  { opacity:0; transform: translateY(var(--hk-exit-y)) scale(.985); filter: saturate(1); }
    100% { opacity:0; transform: translateY(var(--hk-exit-y)) scale(.985); filter: saturate(1); }
  }

  /* Drift ist klein -> wirkt lebendig, ohne Spawn-Messungen zu beeinflussen */
  @keyframes hk-card-drift{
    from { translate: 0 calc(-1 * var(--hk-drift)); }
    to   { translate: 0 var(--hk-drift); }
  }

  #city-hero .hk-city-hero__right:hover > .hk-card{
    animation-play-state: paused;
    opacity: 1;
    transform: translateY(0) scale(1);
    translate: 0 0;
    pointer-events:auto;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce){
  #city-hero .hk-city-hero__right{
    animation: none !important;
    transform: none !important;
    min-height:auto !important;
    display:flex;
    flex-direction:column;
    gap: clamp(.75rem, 1.2vw, 1rem);
  }
  #city-hero .hk-city-hero__right > .hk-card{
    animation: none !important;
    opacity:1 !important;
    transform:none !important;
    translate: 0 0 !important;
    position: static !important;
    pointer-events:auto !important;
  }
}

/* Backdrop Fallback */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  #city-hero .hk-glass,
  #city-hero .hk-card,
  #city-hero .hk-city-hero__live{
    background: rgba(15,23,42,0.88) !important;
  }
}

/* ---------------------------------------------------------
   Overlay Elements (Drivers/Spots) – leicht harmonisiert
--------------------------------------------------------- */
#city-hero .city-driver{
  position:absolute;
  transform: translate(-50%, -50%);
  background: rgba(15,23,42,0.78);
  color: var(--hk-hero-text-strong);
  border: 1px solid var(--hk-hero-border);
  border-radius: var(--radius-pill, 999px);
  padding: 4px 10px 4px 6px;
  font-size: .82rem;
  display:flex;
  align-items:center;
  gap: 6px;
  box-shadow: var(--hk-hero-shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
  will-change: left, top, opacity; /* bewegt sich */
}
#city-hero .city-driver i{
  background: linear-gradient(135deg, var(--color-primary-700, #1d4ed8), var(--color-primary-400, #60a5fa));
  color:#fff;
  width:22px;
  height:22px;
  border-radius: var(--radius-pill, 999px);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  flex-shrink:0;
}

#city-hero .city-spot{
  position:absolute;
  width:14px;
  height:14px;
  background: rgba(96,165,250,0.98);
  border-radius: var(--radius-pill, 999px);
  box-shadow: 0 0 0 2px rgba(96,165,250,0.55);
  animation: city-spot-pop-in .28s ease-out forwards;
}
#city-hero .city-spot::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius: inherit;
  border: 2px solid rgba(191,219,254,0.38);
  animation: city-spot-pulse 1.6s ease-out infinite;
}

@keyframes city-spot-pop-in{
  0%{ transform: scale(0); opacity:0; }
  80%{ transform: scale(1.2); opacity:1; }
  100%{ transform: scale(1); opacity:1; }
}
@keyframes city-spot-pulse{
  0%{ transform: scale(1); opacity:1; }
  70%{ transform: scale(1.9); opacity:0; }
  100%{ transform: scale(1.9); opacity:0; }
}


/* =========================================================
   HK LOC2 – scoped, token-konform, Bootstrap-5-kompatibel
========================================================= */

.hk-loc2{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    var(--color-surface) 0%,
    var(--color-neutral-50) 34%,
    var(--color-primary-50) 68%,
    var(--color-primary-100) 100%
  );
}
.hk-loc2::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 16% 14%, var(--color-primary-glow-1), transparent 58%),
    radial-gradient(circle at 86% 22%, var(--color-primary-glow-2), transparent 62%),
    radial-gradient(circle at 50% 85%, var(--color-primary-glow-3), transparent 66%);
  opacity:.22;
}

.hk-loc2__accent{
  padding: 0 .18em;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-micro);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* MEDIA */
.hk-loc2__media{
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--color-neutral-100);
  aspect-ratio: 4 / 5;
}
@media (max-width: 575.98px){
  .hk-loc2__media{ aspect-ratio: 1 / 1; }
}

.hk-loc2__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 50% 40%;
  display:block;
  transform: translateZ(0);
  filter: contrast(1.01) saturate(1.01);
}

.hk-loc2__media-layer{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(circle at 25% 15%, rgba(255,255,255,.08), transparent 58%),
    radial-gradient(circle at 80% 20%, rgba(96,165,250,.10), transparent 64%),
    linear-gradient(180deg, rgba(0,0,0,0) 52%, var(--color-overlay-soft) 100%);
  opacity:.78;
}

.hk-loc2__overlay{
  position:absolute;
  inset-inline:0;
  bottom:0;
  padding: var(--space-3);
  z-index:2;
}

/* GLASS */
.hk-loc2__glass{
  border-radius: calc(var(--radius-lg) + 2px);
  padding: var(--space-4);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.52);
  box-shadow: var(--shadow-strong);
  max-width: 560px;
  margin-left: auto;
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .hk-loc2__glass{
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
  }
}
@media (max-width: 575.98px){
  .hk-loc2__glass{ max-width:none; margin-left:0; }
}

.hk-loc2__glass-row{
  display:flex;
  gap: var(--space-3);
  align-items:flex-start;
}
.hk-loc2__glass-ico{
  width:44px;
  height:44px;
  border-radius: var(--radius-md);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
  background: rgba(59,130,246,.11);
  border: 1px solid rgba(59,130,246,.18);
  color: var(--color-primary-700);
  box-shadow: var(--shadow-micro);
}
.hk-loc2__glass-ico i{ font-size:1.15rem; line-height:1; }

.hk-loc2__glass-top{
  display:flex;
  flex-wrap:wrap;
  gap: var(--space-2);
  align-items:center;
  margin-bottom: var(--space-1);
}
.hk-loc2__glass-eyebrow{ color: var(--color-neutral-600); margin:0; }
.hk-loc2__glass-meta{
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
  font-weight: var(--font-weight-semibold);
}
.hk-loc2__dot{ opacity:.65; }

.hk-loc2__glass-value{
  font-size: 1.02rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
  line-height: var(--line-height-tight);
  color: var(--color-neutral-900);
}
.hk-loc2__glass-value strong{ font-weight: var(--font-weight-black); }
.hk-loc2__glass-sub{
  margin-top: var(--space-1);
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
  line-height: var(--line-height-normal);
}

.hk-loc2__glass-pills{
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(148,163,184,.22);
  display:flex;
  flex-wrap:wrap;
  gap: var(--space-2);
}
.hk-loc2__pill{
  display:inline-flex;
  align-items:center;
  gap: var(--space-2);
  padding: .28rem .65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.50);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-800);
}
.hk-loc2__pill i{ font-size:1rem; line-height:1; color: var(--color-primary-700); }

/* PANEL / PRICES */
.hk-loc2__content{ max-width: 46rem; }

.hk-loc2__panel{
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid rgba(148,163,184,.22);
  background:
    radial-gradient(circle at 0 0, rgba(37,99,235,.08), transparent 55%),
    rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}

.hk-loc2__panel-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
@media (max-width: 991.98px){
  .hk-loc2__panel-head{ flex-direction:column; align-items:flex-start; }
}

.hk-loc2__badges{
  display:flex;
  flex-wrap:wrap;
  gap: var(--space-2);
}
.hk-loc2__badge{
  display:inline-flex;
  align-items:center;
  gap: .35rem;
  padding: .18rem .7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148,163,184,.60);
  background: rgba(248,250,252,.92);
  font-size: var(--font-size-xs);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--color-neutral-800);
}
.hk-loc2__badge i{ font-size:.95rem; line-height:1; color: var(--color-primary-700); }

.hk-loc2__pricegrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-3);
}
@media (max-width: 575.98px){
  .hk-loc2__pricegrid{ grid-template-columns: 1fr; }
}

.hk-loc2__price{
  border-radius: var(--radius-md);
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-micro);
  padding: .65rem .75rem;
}

.hk-loc2__price-label{
  font-size: var(--font-size-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-neutral-500);
  margin-bottom: .15rem;
}

.hk-loc2__price-value{
  font-size: 1.02rem;
  line-height: var(--line-height-tight);
  color: var(--color-neutral-900);
  letter-spacing: -0.01em;
  font-weight: var(--font-weight-bold);
}
.hk-loc2__price-value strong{ font-weight: var(--font-weight-black); }

.hk-loc2__panel-foot{
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
  line-height: var(--line-height-loose);
}

.hk-loc2__note{
  color: var(--color-neutral-600);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-loose);
  max-width: 46rem;
}

@media (prefers-reduced-motion: reduce){
  .hk-loc2__glass{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
}

/* =========================================================
   HK Zeiten MIt karte 

========================================================= */

/* ==========================================================
   HK PRICES — Clean, premium, scoped
========================================================== */

.hk-prices{
  padding-block: clamp(3.35rem, 5.2vw, 5.6rem);
  background: var(--color-surface, #fff);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid color-mix(in srgb, var(--color-border-soft, rgba(148,163,184,.40)) 35%, transparent);
}

.hk-prices::before{
  content:"";
  position:absolute;
  inset:-14%;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(circle at 16% 24%, color-mix(in srgb, var(--color-primary-500, #3b82f6) 6%, transparent), transparent 58%),
    radial-gradient(circle at 86% 20%, color-mix(in srgb, var(--color-primary-600, #2563eb) 5%, transparent), transparent 60%);
  opacity:.95;
}

.hk-prices__inner{ position: relative; z-index: 1; }

/* Copy rechts */
.hk-prices__copy{ max-width: 52ch; }
@media (min-width: 992px){
  .hk-prices__copy{
    margin-left: auto;
    text-align: right;
    padding-top: .2rem;
  }
}

/* CTA */
.hk-prices__cta{
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-2, .5rem);
  justify-content: flex-end;
}
@media (max-width: 991.98px){
  .hk-prices__cta{ justify-content: flex-start; }
}

/* Table wrapper */
.hk-prices__table-wrap{
  position: relative;
  border-radius: calc(var(--radius-lg, 14px) + 4px);
  border: 1px solid color-mix(in srgb, var(--color-border-soft, rgba(148,163,184,.40)) 55%, transparent);
  background: color-mix(in srgb, var(--color-surface, #fff) 96%, transparent);
  box-shadow: var(--shadow-soft, 0 16px 32px rgba(0,0,0,0.05));
  overflow: hidden;
}

.hk-prices__table-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius: inherit;
  box-shadow: 0 1px 0 rgba(255,255,255,.85) inset;
}

.hk-prices__table{
  position: relative;
  z-index: 1;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

/* Header */
.hk-prices__th{
  font-size: var(--font-size-xs, .75rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  color: color-mix(in srgb, var(--color-neutral-900, #0f172a) 78%, var(--color-neutral-600, #475569));
  padding: 1.05rem 1.15rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-neutral-50, #f8fafc) 98%, transparent),
    color-mix(in srgb, var(--color-surface, #fff) 96%, transparent)
  );
  border-bottom: 1px solid color-mix(in srgb, var(--color-border-soft, rgba(148,163,184,.40)) 40%, transparent);
}

.hk-prices__th-sub{
  display:block;
  margin-top:.22rem;
  font-size: .70rem;
  letter-spacing: .12em;
  text-transform:none;
  font-weight: 700;
  color: color-mix(in srgb, var(--color-neutral-600, #475569) 85%, transparent);
}

/* Cells */
.hk-prices__td{
  padding: 1.02rem 1.15rem;
  border-bottom: 1px solid color-mix(in srgb, var(--color-border-soft, rgba(148,163,184,.40)) 34%, transparent);
  background: transparent;
}
.hk-prices__table tbody tr:last-child .hk-prices__td{ border-bottom: 0; }

/* Typo hierarchy */
.hk-prices__name{
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--color-neutral-900, #0f172a);
  line-height: 1.16;
}

.hk-prices__sub{
  margin-top: .24rem;
  font-size: .92rem;
  color: color-mix(in srgb, var(--color-neutral-700, #334155) 90%, transparent);
  line-height: 1.55;
  max-width: 62ch;
}

/* Price */
.hk-prices__price{
  font-weight: 950;
  letter-spacing: -0.02em;
  color: color-mix(in srgb, var(--color-neutral-900, #0f172a) 92%, transparent);
  white-space: nowrap;
}

/* Fineprint */
.hk-prices__fineprint{
  display: inline-flex;
  align-items: flex-start;
  gap: .6rem;
  color: color-mix(in srgb, var(--color-neutral-700, #334155) 90%, transparent);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.hk-prices__dot{
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill, 999px);
  background: color-mix(in srgb, var(--color-primary-600, #2563eb) 44%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary-600, #2563eb) 10%, transparent);
  margin-top: .45rem;
  flex: 0 0 auto;
}

/* Hover (subtle) */
@media (hover:hover){
  .hk-prices__table tbody tr{
    transition: background-color var(--duration-base, 180ms) var(--easing-standard, ease);
  }
  .hk-prices__table tbody tr:hover{
    background-color: color-mix(in srgb, var(--color-primary-50, #eff6ff) 48%, transparent);
  }
}

/* Mobile spacing */
@media (max-width: 575.98px){
  .hk-prices__th,
  .hk-prices__td{ padding: .9rem .9rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hk-prices__table tbody tr{ transition: none !important; }
}
/* =========================================================
   KONTAKT – DARK BG + LIGHT CARD (Token-first, scoped)
========================================================= */

#kontakt.hk-contact{
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* dunkler Background (keine „hellen“ Flächen hier) */
  background:
    radial-gradient(circle at 14% 18%, var(--color-primary-glow-1, rgba(96,165,250,.42)), transparent 58%),
    radial-gradient(circle at 88% 26%, var(--color-primary-glow-3, rgba(56,189,248,.14)), transparent 62%),
    radial-gradient(circle at 56% 92%, var(--color-primary-glow-2, rgba(37,99,235,.18)), transparent 58%),
    linear-gradient(135deg, var(--color-neutral-900, #0f172a), var(--color-primary-900, #172554));
}

#kontakt.hk-contact::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.20;
  background: radial-gradient(color-mix(in srgb, var(--color-primary-200, #bfdbfe) 18%, transparent) 0.6px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.14) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.14) 60%, rgba(0,0,0,0) 100%);
}

#kontakt.hk-contact::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.55;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 34%, rgba(255,255,255,0) 72%);
}

#kontakt.hk-contact > .container{ position: relative; z-index: 1; }

/* Left: muted helper for dark */
#kontakt .hk-contact__on-dark-muted{ color: rgba(226,232,240,.88); }

/* Accent wort */
#kontakt .hk-contact__accent{
  color: rgba(248,250,252,.98);
  background: rgba(148,197,255,.14);
  border: 1px solid rgba(148,197,255,.20);
  padding: 0 .34em;
  border-radius: 12px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* =========================================================
   DARK GLASS (nur links: CTA + Chips)
   -> bewusst dunkler als vorher, damit kein „heller Block“ entsteht
========================================================= */
#kontakt .hk-glass{
  background: rgba(15,23,42,.34);
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* CTA */
#kontakt .hk-contact__cta{
  padding: .9rem 1rem;
  border-radius: calc(var(--radius-lg, 14px) + 8px);
  color: rgba(226,232,240,.92);
  transition:
    border-color var(--duration-base, 180ms) var(--easing-standard, ease),
    background-color var(--duration-base, 180ms) var(--easing-standard, ease),
    transform var(--duration-fast, 120ms) var(--easing-standard, ease),
    box-shadow var(--duration-base, 180ms) var(--easing-standard, ease);
}
#kontakt .hk-contact__cta-ico{
  width: 48px; height: 48px;
  border-radius: calc(var(--radius-lg, 14px) + 4px);
  background: rgba(59,130,246,.14);
  border: 1px solid rgba(191,219,254,.20);
  color: rgba(191,219,254,.98);
  flex: 0 0 auto;
}
#kontakt .hk-contact__cta-ico i{ font-size: 1.28rem; }

#kontakt .hk-contact__cta-title{
  color: rgba(255,255,255,.98);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 1.18rem;
  line-height: 1.1;
}
#kontakt .hk-contact__cta-sub{
  color: rgba(226,232,240,.82);
  font-size: .92rem;
  line-height: 1.25;
}
#kontakt .hk-contact__cta-pill{
  border-radius: var(--radius-pill, 999px);
  padding: .45rem .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(226,232,240,.18);
  color: rgba(248,250,252,.95);
  font-weight: 750;
  font-size: .9rem;
  white-space: nowrap;
}
#kontakt .hk-contact__cta-pill i{ font-size: 1.05rem; }

#kontakt .hk-contact__micro{
  color: rgba(226,232,240,.72);
  font-size: .86rem;
  line-height: 1.55;
}

@media (hover:hover){
  #kontakt .hk-contact__cta:hover{
    border-color: rgba(96,165,250,.48);
    background: rgba(15,23,42,.40);
    transform: translateY(-1px);
    box-shadow: 0 22px 52px rgba(0,0,0,.34);
  }
}
#kontakt .hk-contact__cta:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring-strong, 0 0 0 3px rgba(13,110,253,0.55)), 0 22px 52px rgba(0,0,0,.34);
}

/* Chips */
#kontakt .hk-contact__chip{
  padding: .62rem .78rem;
  border-radius: calc(var(--radius-lg, 14px) + 4px);
  color: rgba(226,232,240,.92);
  font-size: .92rem;
  line-height: 1.2;
}
#kontakt .hk-contact__chip strong{ color: rgba(255,255,255,.98); font-weight: 650; }
#kontakt .hk-contact__chip-ico{
  width: 36px; height: 36px;
  border-radius: calc(var(--radius-lg, 14px) + 0px);
  background: rgba(59,130,246,.14);
  border: 1px solid rgba(191,219,254,.20);
  color: rgba(191,219,254,.98);
  flex: 0 0 auto;
}
#kontakt .hk-contact__chip-ico i{ font-size: 1.15rem; }

/* =========================================================
   RIGHT CARD (hell!) – bewusst kein hk-glass
========================================================= */
#kontakt .hk-card{
  background: rgba(255,255,255,.98);
  border: 1px solid color-mix(in srgb, var(--color-border-subtle, #e2e8f0) 90%, white);
  border-radius: calc(var(--radius-lg, 14px) + 8px);
  box-shadow: var(--shadow-strong, 0 24px 48px rgba(0,0,0,0.12));
}

/* Card Head */
#kontakt .hk-contact__card-kicker{
  color: var(--color-neutral-500, #64748b);
  font-size: var(--font-size-xs, .75rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 850;
  margin-bottom: .4rem;
}
#kontakt .hk-contact__card-title{
  color: var(--color-neutral-900, #0f172a);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: 1.12rem;
}

/* Labels (dunkel auf heller Card) */
#kontakt .hk-form-label{
  color: var(--color-neutral-800, #1e293b);
  font-size: .9rem;
  margin-bottom: .35rem;
}

/* Field wrapper */
#kontakt .hk-field{ position: relative; }
#kontakt .hk-field > i{
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--color-primary-600, #2563eb);
  font-size: 1.05rem;
  pointer-events: none;
}
#kontakt .hk-field--textarea > i{ top: 18px; transform: none; }

/* Controls (hell, sauber) */
#kontakt .hk-control{
  background: var(--field-bg, #ffffff);
  border: 1px solid var(--field-border, var(--color-border-subtle, #e2e8f0));
  color: var(--field-text, #222);
  border-radius: calc(var(--radius-lg, 14px) + 2px);
  box-shadow: var(--shadow-micro, 0 4px 10px rgba(15,23,42,0.10));
  padding-left: 44px;
  transition:
    border-color var(--duration-base, 180ms) var(--easing-standard, ease),
    box-shadow var(--duration-base, 180ms) var(--easing-standard, ease),
    transform var(--duration-fast, 120ms) var(--easing-standard, ease);
}
#kontakt .hk-control::placeholder{ color: var(--field-placeholder, #94a3b8); }

#kontakt .hk-control:focus{
  border-color: var(--field-border-focus, var(--color-primary-400, #60a5fa));
  box-shadow: 0 0 0 .25rem rgba(37,99,235,.18), var(--shadow-micro, 0 4px 10px rgba(15,23,42,0.10));
}

@media (hover:hover){
  #kontakt .hk-control:hover{
    border-color: var(--field-border-hover, var(--color-neutral-400, #94a3b8));
    transform: translateY(-1px);
  }
}

/* Select arrow */
#kontakt .hk-field--select .hk-control{ padding-right: 2.5rem; cursor: pointer; }
#kontakt .hk-field--select::after{
  content:"";
  position:absolute;
  right: 16px;
  top: 50%;
  width: 10px; height: 10px;
  transform: translateY(-60%) rotate(45deg);
  border-right: 2px solid var(--color-neutral-500, #64748b);
  border-bottom: 2px solid var(--color-neutral-500, #64748b);
  pointer-events:none;
  opacity:.95;
}
#kontakt select.hk-control{ color-scheme: light; }

/* Submeta / fineprint (dunkel) */
#kontakt .hk-contact__submeta{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem .75rem;
  color: var(--color-neutral-600, #475569);
  font-size:.88rem;
}
#kontakt .hk-contact__submeta-item{ display:inline-flex; align-items:center; gap:.4rem; }
#kontakt .hk-contact__submeta-item i{ color: var(--color-primary-600, #2563eb); font-size: 1.05rem; }

#kontakt .hk-contact__fineprint{
  color: var(--color-neutral-500, #64748b);
  font-size:.82rem;
  line-height:1.45;
}

/* Honeypot */
#kontakt .hk-contact__hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* Mobile */
@media (max-width: 575.98px){
  #kontakt .hk-contact__btn{ width: 100%; justify-content:center; }
  #kontakt .hk-contact__cta-pill{ display:none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  #kontakt .hk-contact__cta,
  #kontakt .hk-control{ transition:none !important; transform:none !important; }
}
