/* ═══════════════════════════════════════════════════════════════
   Welle 5.7.97 — Premium Mega-Menu (Apple/Stripe/Linear DNA)
   3-Layer Liquid-Glass + Magnetic Indicator + Cursor-Spotlight
   + Cross-Category-Switch + Color-Theme-Wechsel + Coming-Soon-Pulse
═══════════════════════════════════════════════════════════════ */

/* === Active Item State === */
.nav-clean--mega .nav-clean-link--mega {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding: inherit;
  letter-spacing: inherit;
  position: relative;
  transition: color 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.nav-clean--mega .nav-clean-chevron {
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  opacity: 0.5;
}
.nav-clean--mega .nav-clean-item[aria-expanded="true"] .nav-clean-chevron,
.nav-clean--mega .nav-clean-link--mega[aria-expanded="true"] .nav-clean-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* === Magnetic Active-Indicator (smooth follows hover) === */
.nav-clean--mega .nav-clean-links {
  position: relative;
}
.nav-clean-indicator {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,
    var(--indicator-from, #b8895a) 0%,
    var(--indicator-to, #d4a574) 100%);
  border-radius: 2px;
  opacity: 0;
  transform: translateX(0);
  transition:
    transform 380ms cubic-bezier(0.32, 0.72, 0, 1),
    width    380ms cubic-bezier(0.32, 0.72, 0, 1),
    opacity  220ms ease;
  pointer-events: none;
  box-shadow: 0 0 12px var(--indicator-from, rgba(184, 137, 90, 0.4));
}
.nav-clean--mega .nav-clean-links.is-hovering .nav-clean-indicator {
  opacity: 1;
}

/* === MEGA-PANEL — Welle 5.22.10: full-width Apple-Style (matched Navbar).
   Extends die ganze Bildschirmbreite, content innen 1140px container. === */
.nav-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(-4px);
  margin-top: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 280ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 9999;
}
.nav-mega[data-state="open"] {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

/* Welle 5.22.10 — Apple-Style full-width: BG geht über ganze Bildschirmbreite,
   Content innerhalb max 1140px centered. BG identisch zu Navbar-Wrapper. */
.nav-mega {
  background: rgba(253, 250, 245, 0.98);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 12px 28px -8px rgba(15, 23, 42, 0.10),
    0 24px 48px -16px rgba(15, 23, 42, 0.10);
}
.nav-mega-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 0;
  background: transparent;
  border: none;
  overflow: hidden;
  transition: box-shadow 400ms ease;
}
body.is-dark-bg .nav-mega {
  background: rgba(20, 25, 35, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 28px -8px rgba(0, 0, 0, 0.40),
    0 24px 48px -16px rgba(0, 0, 0, 0.30);
}
body.is-dark-bg .nav-mega-inner {
  background: transparent;
  border: none;
}

/* Cursor-Spotlight — radial gradient follows mouse (dezenter für Lesbarkeit, Welle 5.7.98) */
.nav-mega-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    480px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(255, 215, 160, 0.08) 0%,
    rgba(255, 215, 160, 0.03) 40%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 360ms ease, background 0ms;
  z-index: 1;
  border-radius: 0;
  mix-blend-mode: overlay;
}
.nav-mega[data-state="open"] .nav-mega-spotlight {
  /* Welle 5.22.11 — Spotlight aus: tinted das Menu sonst subtle gegenüber
     der Navbar (mix-blend-mode overlay + radial-gradient) → Color-Shift. */
  opacity: 0;
}
body.is-dark-bg .nav-mega-spotlight {
  background: radial-gradient(
    420px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(255, 215, 160, 0.12) 0%,
    rgba(184, 137, 90, 0.06) 35%,
    transparent 70%
  );
}

/* Panels — Welle 5.22.12: nur noch EIN Panel (Solutions), kein Slide nötig.
   Apple/Stripe/Linear-Pattern: Mega-Menu nur wo echter Content da ist,
   Work + Company sind direkte Links. */
.nav-mega-panels-wrap {
  display: block;
  width: 100%;
}
.nav-mega-panel {
  width: 100%;
  padding: 1.75rem 2rem 2rem;
  opacity: 1;
  pointer-events: auto;
}
.nav-mega:not([data-state="open"]) .nav-mega-panel[hidden] {
  visibility: hidden;
}

/* Layout: Cols + Featured */
.nav-mega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(260px, 320px);
  gap: 2rem;
}
.nav-mega-col--wide ~ .nav-mega-featured,
.nav-mega-panel[data-mega-panel="work"] .nav-mega-cols,
.nav-mega-panel[data-mega-panel="company"] .nav-mega-cols {
  grid-template-columns: 1fr minmax(260px, 320px);
}

.nav-mega-col-label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.42);
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
body.is-dark-bg .nav-mega-col-label {
  color: rgba(255, 255, 255, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* Item — Icon + Title + Description */
.nav-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition:
    background 280ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
  opacity: 0;
  transform: translateY(6px);
  animation: nav-mega-item-reveal 360ms cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
.nav-mega-panel[data-active="true"] .nav-mega-item {
  animation-delay: calc(var(--item-i, 0) * 40ms + 80ms);
}
@keyframes nav-mega-item-reveal {
  to { opacity: 1; transform: translateY(0); }
}
.nav-mega-item:hover,
.nav-mega-item:focus-visible {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--item-accent, #b8895a) 8%, transparent) 0%,
    color-mix(in srgb, var(--item-accent, #b8895a) 4%, transparent) 100%);
  transform: translateX(2px);
  outline: none;
}
.nav-mega-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.04);
  transition: background 280ms ease, transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.nav-mega-item-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav-mega-item-icon--svg svg {
  color: var(--item-accent, #1a2540);
  transition: color 280ms ease;
}
.nav-mega-item:hover .nav-mega-item-icon {
  background: color-mix(in srgb, var(--item-accent, #b8895a) 14%, transparent);
  transform: scale(1.08) rotate(-2deg);
}
body.is-dark-bg .nav-mega-item-icon {
  background: rgba(255, 255, 255, 0.06);
}
.nav-mega-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}
.nav-mega-item-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.92);
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
body.is-dark-bg .nav-mega-item-title {
  color: rgba(255, 255, 255, 0.92);
}
.nav-mega-item-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.35;
}
body.is-dark-bg .nav-mega-item-desc {
  color: rgba(255, 255, 255, 0.58);
}

/* Coming-Soon Badge in Mega-Menu */
.nav-mega-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  padding: 0.12rem 0.4rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--item-accent, #d97757);
  background: color-mix(in srgb, var(--item-accent, #d97757) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--item-accent, #d97757) 24%, transparent);
  border-radius: 999px;
  white-space: nowrap;
}
.nav-mega-coming-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--item-accent, #d97757);
  animation: nav-mega-coming-pulse 2.2s ease-out infinite;
}
@keyframes nav-mega-coming-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 currentColor; }
  50%      { opacity: 0.55; box-shadow: 0 0 0 3px transparent; }
}
.nav-mega-item--coming { /* slight dim on whole item */
  position: relative;
}

/* === Featured-Card (right column) === */
.nav-mega-featured {
  padding: 0;
  position: relative;
}
.nav-mega-featured-label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.42);
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
body.is-dark-bg .nav-mega-featured-label {
  color: rgba(255, 255, 255, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav-mega-featured-card {
  padding: 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(184, 137, 90, 0.08) 0%,
    rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid rgba(184, 137, 90, 0.14);
  position: relative;
  overflow: hidden;
}
body.is-dark-bg .nav-mega-featured-card {
  background: linear-gradient(135deg,
    rgba(184, 137, 90, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(184, 137, 90, 0.22);
}
.nav-mega-featured-preview {
  margin-bottom: 0.9rem;
  border-radius: 9px;
  overflow: hidden;
}
.nav-mega-featured-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
  margin: 0 0 0.32rem;
  letter-spacing: -0.012em;
}
body.is-dark-bg .nav-mega-featured-title {
  color: rgba(255, 255, 255, 0.92);
}
.nav-mega-featured-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.6);
  margin: 0 0 0.85rem;
  line-height: 1.4;
}
body.is-dark-bg .nav-mega-featured-desc {
  color: rgba(255, 255, 255, 0.6);
}
.nav-mega-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: #b8895a;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.nav-mega-featured-cta:hover {
  gap: 0.55rem;
}
body.is-dark-bg .nav-mega-featured-cta {
  color: #d6b18c;
}

/* === Mini-Live-Preview: Booking Calendar (Suite Featured) === */
.nav-mega-mini-cal {
  padding: 0.65rem 0.8rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  font-family: 'Inter', system-ui, sans-serif;
}
body.is-dark-bg .nav-mega-mini-cal {
  background: #1a2030;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.4);
}
.nav-mega-mini-cal-header {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
  padding-bottom: 0.32rem;
  margin-bottom: 0.32rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
body.is-dark-bg .nav-mega-mini-cal-header {
  color: rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.nav-mega-mini-cal-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0;
  font-variant-numeric: tabular-nums;
}
.nav-mega-mini-cal-time {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.85);
  text-align: center;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 4px;
  padding: 0.2rem 0;
}
.nav-mega-mini-cal-row--new .nav-mega-mini-cal-time {
  background: rgba(45, 106, 79, 0.16);
  color: #2d6a4f;
}
body.is-dark-bg .nav-mega-mini-cal-time {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}
.nav-mega-mini-cal-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.85);
}
body.is-dark-bg .nav-mega-mini-cal-name {
  color: rgba(255, 255, 255, 0.85);
}
.nav-mega-mini-cal-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.14);
  color: #2d6a4f;
  font-size: 0.6rem;
  font-weight: 700;
}
.nav-mega-mini-cal-status--new {
  width: auto;
  height: auto;
  padding: 0.15rem 0.42rem;
  border-radius: 999px;
  background: #2d6a4f;
  color: #ffffff;
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  animation: nav-mega-coming-pulse 2.4s ease-in-out infinite;
}

/* === Project-Preview (Work Featured) === */
.nav-mega-project-img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 106, 79, 0.3) 0%, rgba(184, 137, 90, 0.4) 100%),
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0.6rem;
}
.nav-mega-project-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.5);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* === Team-Avatars (Company Featured) === */
.nav-mega-featured-preview--team {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg,
    rgba(45, 106, 79, 0.16) 0%,
    rgba(184, 137, 90, 0.16) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-mega-team-avatars {
  display: flex;
  gap: -10px;
}
.nav-mega-team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8895a 0%, #d4a574 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.18);
}
.nav-mega-team-avatar + .nav-mega-team-avatar {
  margin-left: -16px;
  background: linear-gradient(135deg, #2d6a4f 0%, #5fa078 100%);
}

/* === Color-Theme-Wechsel pro Category === */
.nav-mega[data-theme="suite"] {
  --indicator-from: #b8895a;
  --indicator-to: #d4a574;
}
.nav-mega[data-theme="work"] {
  --indicator-from: #475569;
  --indicator-to: #1a2540;
}
.nav-mega[data-theme="company"] {
  --indicator-from: #2d6a4f;
  --indicator-to: #5fa078;
}

/* === Hide Desktop Mega on Mobile (<1024px) === */
@media (max-width: 1023px) {
  .nav-mega { display: none; }
  .nav-clean-indicator { display: none; }
  .nav-clean--mega .nav-clean-links { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MEGA-MENU — Welle 5.7.99
   Premium Slide-Sheet mit Accordion-Categories + Icons + Descriptions
   Matches Desktop-Mega-Menu Visual-Language
═══════════════════════════════════════════════════════════════ */
.mobile-menu--mega {
  display: flex;
  flex-direction: column;
}

/* Categories (Accordion via <details>) */
.mobile-menu-cat {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
body.is-dark-bg .mobile-menu-cat {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.mobile-menu-cat-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.92);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 240ms ease;
}
.mobile-menu-cat-trigger::-webkit-details-marker {
  display: none;
}
.mobile-menu-cat-trigger:hover,
.mobile-menu-cat-trigger:focus-visible {
  background: rgba(184, 137, 90, 0.05);
  outline: none;
}
body.is-dark-bg .mobile-menu-cat-trigger {
  color: rgba(255, 255, 255, 0.92);
}
body.is-dark-bg .mobile-menu-cat-trigger:hover {
  background: rgba(184, 137, 90, 0.08);
}

.mobile-menu-cat-chevron {
  color: rgba(15, 23, 42, 0.4);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
}
body.is-dark-bg .mobile-menu-cat-chevron {
  color: rgba(255, 255, 255, 0.4);
}
.mobile-menu-cat[open] .mobile-menu-cat-chevron {
  transform: rotate(180deg);
  color: #b8895a;
}

.mobile-menu-cat-content {
  padding: 0.2rem 1rem 0.6rem;
  animation: mobileMenuExpand 320ms cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes mobileMenuExpand {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu-sub-label {
  display: block;
  padding: 0.45rem 0.5rem 0.22rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.42);
}
body.is-dark-bg .mobile-menu-sub-label {
  color: rgba(255, 255, 255, 0.45);
}

/* Items — Icon + Title + Description (Welle 5.7.105 kompakter — kein Scroll) */
.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 240ms cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-menu-item:active {
  background: rgba(184, 137, 90, 0.1);
}
.mobile-menu-item-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(15, 23, 42, 0.04);
}
.mobile-menu-item-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.mobile-menu-item-icon--svg {
  color: #1a2540;
}
body.is-dark-bg .mobile-menu-item-icon {
  background: rgba(255, 255, 255, 0.06);
}
body.is-dark-bg .mobile-menu-item-icon--svg {
  color: #d6b18c;
}

.mobile-menu-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  flex: 1;
}
.mobile-menu-item-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.92);
  line-height: 1.2;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
body.is-dark-bg .mobile-menu-item-title {
  color: rgba(255, 255, 255, 0.92);
}
.mobile-menu-item-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.is-dark-bg .mobile-menu-item-desc {
  color: rgba(255, 255, 255, 0.58);
}

/* Coming-Soon Badge in Mobile-Menu */
.mobile-menu-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  padding: 0.12rem 0.42rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d97757;
  background: rgba(217, 119, 87, 0.14);
  border: 1px solid rgba(217, 119, 87, 0.24);
  border-radius: 999px;
  white-space: nowrap;
}
.mobile-menu-coming-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d97757;
  animation: nav-mega-coming-pulse 2.2s ease-out infinite;
}

/* Direct Link (Pricing — no accordion) */
.mobile-menu-direct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 240ms ease;
}
.mobile-menu-direct:active {
  background: rgba(184, 137, 90, 0.06);
}
.mobile-menu-direct svg {
  color: rgba(15, 23, 42, 0.4);
}
body.is-dark-bg .mobile-menu-direct {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
body.is-dark-bg .mobile-menu-direct svg {
  color: rgba(255, 255, 255, 0.4);
}

/* Featured CTA Card am Ende */
.mobile-menu-featured {
  margin: 1.5rem 1rem;
  padding: 1.25rem 1.15rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(184, 137, 90, 0.1) 0%,
    rgba(184, 137, 90, 0.04) 100%);
  border: 1px solid rgba(184, 137, 90, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  position: relative;
  overflow: hidden;
}

/* Welle 5.7.100: Top-Position Featured-Card — kompakter, horizontal-Layout */
.mobile-menu-featured--top {
  margin: 0.75rem 1rem 1rem;
  padding: 0.95rem 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg,
    rgba(184, 137, 90, 0.12) 0%,
    rgba(184, 137, 90, 0.05) 100%);
  border: 1px solid rgba(184, 137, 90, 0.22);
  position: relative;
  overflow: hidden;
}
.mobile-menu-featured--top::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.mobile-menu-featured-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.mobile-menu-featured--top .mobile-menu-featured-title {
  font-size: 0.92rem;
}
.mobile-menu-featured--top .mobile-menu-featured-desc {
  font-size: 0.72rem;
}
.mobile-menu-featured--top .mobile-menu-featured-cta {
  margin-top: 0;
  flex-shrink: 0;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* Primary direct link (Pricing oben) — etwas prominenter */
.mobile-menu-direct--primary {
  font-size: 1.1rem;
}
.mobile-menu-direct--primary .mobile-menu-direct-title {
  font-weight: 700;
}

/* === Welle 5.7.102/103: Sticky-Bottom-CTA (Thumb-Zone, +11% conversion) ===
   Konstant sichtbar am Bottom während User durch Menu scrollt.
   Welle 5.7.103: Mobile-Menu jetzt 100dvh full-height, CTA echt am Phone-Bottom. */
.mobile-menu--mega .mobile-menu-nav {
  flex: 1 1 auto;  /* takes available space, content scrollable */
  overflow-y: auto;
}
.mobile-menu-sticky-cta {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg,
    rgba(255, 253, 250, 0) 0%,
    rgba(255, 253, 250, 0.85) 30%,
    rgba(255, 253, 250, 0.97) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: #ffffff;
  z-index: 10;
}
.mobile-menu-sticky-cta::before {
  content: "";
  position: absolute;
  inset: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, #1a2540 0%, #2d3a5f 100%);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 4px 16px -2px rgba(26, 37, 64, 0.32),
    0 12px 32px -8px rgba(26, 37, 64, 0.24);
  z-index: -1;
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-menu-sticky-cta:active::before {
  transform: scale(0.98);
}
body.is-dark-bg .mobile-menu-sticky-cta {
  background: linear-gradient(180deg,
    rgba(20, 27, 41, 0) 0%,
    rgba(20, 27, 41, 0.85) 30%,
    rgba(20, 27, 41, 0.97) 100%);
  border-top-color: rgba(255, 255, 255, 0.08);
}
body.is-dark-bg .mobile-menu-sticky-cta::before {
  background: linear-gradient(135deg, #b8895a 0%, #d4a574 100%);
}
.mobile-menu-sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  position: relative;
  padding: 0.5rem 0 0.5rem 0.55rem;
}
.mobile-menu-sticky-cta-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.mobile-menu-sticky-cta-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
}
.mobile-menu-sticky-cta-arrow {
  position: relative;
  margin-right: 0.55rem;
  color: #ffffff;
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-menu-sticky-cta:hover .mobile-menu-sticky-cta-arrow,
.mobile-menu-sticky-cta:active .mobile-menu-sticky-cta-arrow {
  transform: translateX(3px);
}

/* Featured-Card Top-Variant ENTFERNT (war suboptimal — siehe Welle 5.7.102 Recherche) */
.mobile-menu-featured--top { display: none; }
.mobile-menu-featured::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
body.is-dark-bg .mobile-menu-featured {
  background: linear-gradient(135deg,
    rgba(184, 137, 90, 0.18) 0%,
    rgba(184, 137, 90, 0.04) 100%);
  border-color: rgba(184, 137, 90, 0.32);
}
.mobile-menu-featured-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
  letter-spacing: -0.01em;
}
body.is-dark-bg .mobile-menu-featured-title {
  color: rgba(255, 255, 255, 0.92);
}
.mobile-menu-featured-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.62);
  line-height: 1.4;
}
body.is-dark-bg .mobile-menu-featured-desc {
  color: rgba(255, 255, 255, 0.62);
}
.mobile-menu-featured-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  background: #b8895a;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: gap 280ms cubic-bezier(0.32, 0.72, 0, 1), background 240ms ease;
}
.mobile-menu-featured-cta:hover,
.mobile-menu-featured-cta:active {
  gap: 0.65rem;
  background: #a07a4e;
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  .nav-mega,
  .nav-mega-panel,
  .nav-mega-item,
  .nav-clean-indicator,
  .nav-mega-spotlight {
    transition: opacity 100ms ease !important;
    animation: none !important;
  }
  .nav-mega-coming-dot,
  .nav-mega-mini-cal-status--new {
    animation: none !important;
  }
}

