/* ============================================================
   ecommaze.de — Globales Stylesheet
   Ergänzt Tailwind CSS um Custom-Komponenten:
   - Glassmorphism-Karten
   - Glow-Effekte
   - Pills, Buttons, Reveal-Animationen
   - Header-Glas, Phasen-Nummern, Pricing
   ============================================================ */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hidden-Attribut muss immer gewinnen (Tailwind CDN hatte !important) */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  background: #000;
  color: #F5F5F7;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -2;
  /* GPU-Beschleunigung erzwingen: Safari rendert filter:blur sonst auf der CPU */
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
body::before {
  width: 34rem;
  height: 34rem;
  top: 6rem;
  left: -10rem;
  background: rgba(79, 77, 255, 0.22);
}
body::after {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: 42vh;
  background: rgba(123, 45, 255, 0.14);
}

.detail-page::before {
  width: 42rem;
  height: 42rem;
  top: 2rem;
  left: -12rem;
  background: rgba(79, 77, 255, 0.28);
}

.detail-page::after {
  width: 34rem;
  height: 34rem;
  top: 48vh;
  right: -10rem;
  background: rgba(79, 77, 255, 0.16);
}

/* Glow-Hintergründe */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.glow-red    { background: #FF3B5C; }
.glow-purple { background: #7B2DFF; }
.glow-blue   { background: #4F4DFF; }

/* Glassmorphism-Karten */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.028) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass:hover {
  background: linear-gradient(180deg, rgba(79, 77, 255, 0.1) 0%, rgba(79, 77, 255, 0.03) 100%);
  border-color: rgba(79, 77, 255, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.5), 0 0 64px rgba(79, 77, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-featured {
  background: linear-gradient(180deg, rgba(79, 77, 255, 0.12) 0%, rgba(79, 77, 255, 0.035) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(79, 77, 255, 0.3);
  box-shadow: 0 12px 52px rgba(79, 77, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 64px rgba(79, 77, 255, 0.25);
}

/* Pill (kleines Badge oben in Sektionen) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B4B4BD;
}
.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4F4DFF;
  box-shadow: 0 0 12px #4F4DFF;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 32px;
  border-radius: 999px;
  background: #4F4DFF;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(79, 77, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(79, 77, 255, 0.6);
  background: #5E5CFF;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Headlines */
h1, h2, h3, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* FAQ */
details summary {
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-icon {
  transition: transform 0.3s ease;
}

section[class*="py-24"] {
  padding-top: clamp(4.5rem, 7vw, 6rem) !important;
  padding-bottom: clamp(4.5rem, 7vw, 6rem) !important;
}

section[class*="py-16"] {
  padding-top: clamp(3.5rem, 6vw, 4.75rem) !important;
  padding-bottom: clamp(3.5rem, 6vw, 4.75rem) !important;
}

.detail-page nav[aria-label="Breadcrumb"] {
  padding-top: 7rem !important;
  padding-bottom: 0.85rem !important;
}

.detail-page nav[aria-label="Breadcrumb"] + section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem) !important;
  padding-bottom: clamp(3rem, 4.5vw, 4rem) !important;
}

.detail-page section[class*="py-24"] {
  padding-top: clamp(3.4rem, 5vw, 4.75rem) !important;
  padding-bottom: clamp(3.4rem, 5vw, 4.75rem) !important;
}

.detail-page section[class*="py-16"] {
  padding-top: clamp(2.6rem, 4vw, 3.5rem) !important;
  padding-bottom: clamp(2.6rem, 4vw, 3.5rem) !important;
}

.detail-page section {
  overflow: hidden;
}

.detail-page section::before {
  content: '';
  position: absolute;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.detail-page section:nth-of-type(odd)::before {
  top: -10rem;
  left: -10rem;
  background: rgba(79, 77, 255, 0.12);
}

.detail-page section:nth-of-type(even)::before {
  right: -10rem;
  bottom: -12rem;
  background: rgba(123, 45, 255, 0.08);
}

.detail-page section > * {
  position: relative;
  z-index: 1;
}

.detail-page section .mb-16 {
  margin-bottom: clamp(1.75rem, 3vw, 2.8rem) !important;
}

.detail-page section .mb-12 {
  margin-bottom: clamp(1.25rem, 2vw, 2rem) !important;
}

.detail-page section .mb-10 {
  margin-bottom: clamp(1rem, 1.8vw, 1.6rem) !important;
}

.detail-page .max-w-7xl,
.detail-page .max-w-6xl,
.detail-page .max-w-5xl {
  max-width: 72rem;
}

.detail-page section ul.space-y-3.text-gray-300 {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.detail-page details.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.detail-page h1 em,
.detail-page h2 em {
  color: #b9b8d4 !important;
}

/* Reveal-on-Scroll
   Content stays visible by default so pages don't break
   if JS or IntersectionObserver fail on mobile/in-app browsers. */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  animation: reveal-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.header-glass {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.header-glass.scrolled {
  background: rgba(0, 0, 0, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

[data-mobile-menu-toggle] {
  position: relative;
  z-index: 80;
  touch-action: manipulation;
  cursor: pointer;
}

#mobile-menu {
  position: fixed;
  top: 4.65rem;
  left: 0;
  right: 0;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, max-height 0.22s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

#mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  max-height: calc(100vh - 4.65rem);
}

body.menu-open {
  overflow: hidden;
}

body.cookie-modal-open {
  overflow: hidden;
}

/* Services Navigation */
.nav-services {
  position: relative;
}

.nav-services__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-services__caret {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.24s ease;
}

.nav-services.is-open .nav-services__caret {
  transform: rotate(180deg);
}

.nav-services__panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  width: min(33rem, 76vw);
  padding: 0.9rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.94) 0%, rgba(4, 5, 10, 0.97) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(79, 77, 255, 0.08);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-services.is-open .nav-services__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.nav-service-link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.nav-service-link:hover,
.nav-service-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 77, 255, 0.28);
  background: linear-gradient(180deg, rgba(79, 77, 255, 0.12) 0%, rgba(79, 77, 255, 0.045) 100%);
  box-shadow: 0 14px 32px rgba(79, 77, 255, 0.08);
  outline: none;
}

.nav-service-link.is-current {
  border-color: rgba(79, 77, 255, 0.36);
  background: linear-gradient(180deg, rgba(79, 77, 255, 0.14) 0%, rgba(79, 77, 255, 0.055) 100%);
}

.nav-service-link__title {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.2;
}

.nav-service-link__meta {
  color: rgba(196, 198, 214, 0.72);
  font-size: 0.78rem;
  line-height: 1.42;
}

.mobile-services {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
  overflow: hidden;
}

.mobile-services__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.95rem;
  border: 0;
  background: transparent;
  color: #d1d5db;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.mobile-services__trigger-label {
  font-size: 1rem;
}

.mobile-services__trigger svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.22s ease;
}

.mobile-services.is-open .mobile-services__trigger {
  color: #fff;
}

.mobile-services.is-open .mobile-services__trigger svg {
  transform: rotate(180deg);
}

.mobile-services__panel {
  display: grid;
  gap: 0.35rem;
  padding: 0 0.8rem 0.85rem;
}

.mobile-service-link {
  display: block;
  padding: 0.8rem 0.85rem;
  border-radius: 0.95rem;
  color: #b6bac8;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.mobile-service-link:hover,
.mobile-service-link:focus-visible,
.mobile-service-link.is-current {
  color: #fff;
  background: rgba(79, 77, 255, 0.11);
  border-color: rgba(79, 77, 255, 0.26);
  outline: none;
}

/* Logo */
.site-brand {
  display: inline-flex;
  align-items: center;
  width: clamp(10.5rem, 14vw, 13rem);
}

.site-brand--footer {
  width: clamp(11.5rem, 16vw, 14rem);
}

.site-brand__logo {
  display: block;
  width: 100%;
  height: auto;
}

.portrait-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%),
    radial-gradient(circle at top left, rgba(79, 77, 255, 0.12), transparent 42%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.portrait-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(79, 77, 255, 0.22), transparent 30%),
    radial-gradient(circle at 84% 88%, rgba(123, 45, 255, 0.16), transparent 28%);
  pointer-events: none;
  z-index: 2;
}

.portrait-media {
  position: relative;
  isolation: isolate;
}

.portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.8) contrast(1.06) brightness(0.9) hue-rotate(-12deg);
  transform: scale(1.015);
}

.portrait-photo--home {
  object-position: center 20%;
}

.portrait-photo--about {
  object-position: center 22%;
}

.portrait-photo--contact {
  object-position: center 18%;
}

.portrait-tone {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 12, 0.04) 0%, rgba(5, 6, 12, 0.16) 36%, rgba(5, 6, 12, 0.6) 100%),
    radial-gradient(circle at 18% 18%, rgba(79, 77, 255, 0.22), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(123, 45, 255, 0.16), transparent 24%);
  pointer-events: none;
  z-index: 1;
}

.portrait-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  padding: 1.15rem 1.2rem;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.44) 0%, rgba(8, 10, 18, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.portrait-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(190, 188, 255, 0.9);
}

.portrait-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
}

.portrait-copy {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(214, 216, 227, 0.86);
}

.cookie-fab {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(10, 12, 22, 0.94) 0%, rgba(5, 6, 12, 0.98) 100%);
  color: #f3f4fb;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(79, 77, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cookie-fab:hover,
.cookie-fab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 77, 255, 0.24);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(79, 77, 255, 0.12);
  outline: none;
}

.cookie-fab svg {
  width: 1rem;
  height: 1rem;
}

.accessibility-fab {
  position: fixed;
  left: 1.2rem;
  bottom: 4.65rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(115, 114, 255, 0.42);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(79, 77, 255, 0.95) 0%, rgba(49, 43, 220, 0.98) 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(34, 32, 180, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.accessibility-fab:hover,
.accessibility-fab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(202, 203, 255, 0.72);
  box-shadow: 0 22px 52px rgba(34, 32, 180, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.12);
  outline: none;
}

.accessibility-fab svg {
  width: 1.25rem;
  height: 1.25rem;
}

.accessibility-panel {
  position: fixed;
  left: 1.2rem;
  bottom: 8.25rem;
  z-index: 98;
  width: min(23rem, calc(100vw - 2.4rem));
  padding: 1.1rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(11, 12, 20, 0.98) 0%, rgba(5, 6, 12, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(79, 77, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transform-origin: left bottom;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.accessibility-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.accessibility-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.accessibility-panel__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(198, 200, 255, 0.78);
}

.accessibility-panel__title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
}

.accessibility-close {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.accessibility-close:hover,
.accessibility-close:focus-visible {
  border-color: rgba(79, 77, 255, 0.28);
  background: rgba(79, 77, 255, 0.1);
  outline: none;
}

.accessibility-options {
  display: grid;
  gap: 0.65rem;
}

.accessibility-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.88rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.accessibility-option:hover,
.accessibility-option:focus-visible,
.accessibility-option[aria-pressed="true"] {
  border-color: rgba(79, 77, 255, 0.34);
  background: rgba(79, 77, 255, 0.12);
  outline: none;
}

.accessibility-option strong,
.accessibility-option small {
  display: block;
}

.accessibility-option strong {
  margin-bottom: 0.16rem;
  font-size: 0.95rem;
}

.accessibility-option small {
  color: rgba(207, 211, 229, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.accessibility-switch {
  position: relative;
  flex-shrink: 0;
  width: 2.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.accessibility-switch::after {
  content: '';
  position: absolute;
  top: 0.16rem;
  left: 0.17rem;
  width: 0.93rem;
  height: 0.93rem;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s ease;
}

.accessibility-option[aria-pressed="true"] .accessibility-switch {
  background: #4F4DFF;
  border-color: rgba(196, 198, 255, 0.35);
}

.accessibility-option[aria-pressed="true"] .accessibility-switch::after {
  transform: translateX(0.98rem);
}

.accessibility-panel__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.accessibility-panel__actions .cookie-btn-ghost {
  padding: 0.75rem 0.95rem;
  font-size: 0.86rem;
}

.accessibility-panel__link {
  color: #c6c8ff;
  font-size: 0.86rem;
  white-space: nowrap;
}

html.a11y-large-text {
  font-size: 112.5%;
}

html.a11y-high-contrast body {
  color: #fff;
}

html.a11y-high-contrast .glass,
html.a11y-high-contrast .glass-featured,
html.a11y-high-contrast .cookie-banner__panel,
html.a11y-high-contrast .cookie-modal,
html.a11y-high-contrast .accessibility-panel {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 64px rgba(0, 0, 0, 0.55);
}

html.a11y-high-contrast .text-gray-300,
html.a11y-high-contrast .text-gray-400,
html.a11y-high-contrast .text-gray-500 {
  color: rgba(255, 255, 255, 0.88) !important;
}

html.a11y-underline-links a:not(.btn-primary):not(.btn-secondary):not(.site-brand) {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

html.a11y-reduce-motion {
  scroll-behavior: auto;
}

html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
}

html.a11y-reduce-motion .reveal {
  opacity: 1;
  transform: none;
}

.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 96;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.cookie-banner__panel {
  width: min(34rem, 100%);
  padding: 1.25rem;
  border-radius: 1.65rem;
  background: linear-gradient(180deg, rgba(11, 12, 20, 0.96) 0%, rgba(5, 6, 12, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(79, 77, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.cookie-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(182, 184, 203, 0.82);
}

.cookie-banner__eyebrow::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #4F4DFF;
  box-shadow: 0 0 12px rgba(79, 77, 255, 0.7);
}

.cookie-banner__title {
  margin: 0 0 0.55rem;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
}

.cookie-banner__copy {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(211, 214, 228, 0.78);
}

.cookie-banner__links {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  color: rgba(190, 193, 210, 0.68);
}

.cookie-banner__links a {
  color: #c6c8ff;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #f3f4fb;
  font-size: 0.94rem;
  font-weight: 500;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.cookie-btn-ghost:hover,
.cookie-btn-ghost:focus-visible {
  background: rgba(79, 77, 255, 0.1);
  border-color: rgba(79, 77, 255, 0.26);
  transform: translateY(-1px);
  outline: none;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 97;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(2, 3, 7, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cookie-modal {
  width: min(42rem, 100%);
  max-height: min(90vh, 52rem);
  overflow: auto;
  padding: 1.4rem;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(11, 12, 20, 0.97) 0%, rgba(5, 6, 12, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(79, 77, 255, 0.08);
}

.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-modal__title {
  margin: 0.1rem 0 0.35rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.cookie-modal__copy {
  margin: 0;
  color: rgba(211, 214, 228, 0.78);
  line-height: 1.58;
}

.cookie-close {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.cookie-close:hover,
.cookie-close:focus-visible {
  border-color: rgba(79, 77, 255, 0.24);
  background: rgba(79, 77, 255, 0.08);
  outline: none;
}

.cookie-categories {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.05rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.cookie-category strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 0.98rem;
}

.cookie-category p {
  margin: 0;
  color: rgba(204, 208, 224, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-check {
  position: relative;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
}

.cookie-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cookie-check input:checked {
  background: #4F4DFF;
  border-color: rgba(110, 108, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(79, 77, 255, 0.14);
}

.cookie-check input:checked::after {
  content: '';
  position: absolute;
  left: 0.34rem;
  top: 0.16rem;
  width: 0.34rem;
  height: 0.66rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cookie-check input:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.logo-spiral {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin: 0 1px;
}

/* Vergleichs-/Tabellen-Hover */
.compare-row {
  transition: background 0.3s ease;
}
.compare-row:hover {
  background: rgba(79, 77, 255, 0.05);
}

/* Phasen-Nummern (große, gradient) */
.phase-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  background: linear-gradient(180deg, #4F4DFF 0%, #7B2DFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Pricing-Nummer */
.price-num {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 64px;
  background: linear-gradient(180deg, #FFFFFF 0%, #B4B4BD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Empfehlungs-Badge auf Pricing-Card */
.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4F4DFF;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(79, 77, 255, 0.5);
}

/* Service Icon Box (replaces emoji icons) */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 77, 255, 0.15) 0%, rgba(123, 45, 255, 0.08) 100%);
  border: 1px solid rgba(79, 77, 255, 0.2);
  flex-shrink: 0;
}
.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #4F4DFF;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.glass-featured .icon-box {
  background: linear-gradient(135deg, rgba(79, 77, 255, 0.25) 0%, rgba(123, 45, 255, 0.12) 100%);
  border-color: rgba(79, 77, 255, 0.35);
}

/* Inline contact icon (phone/mail in CTA) */
.contact-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
.contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Trust-Logo-Bar (Kundenlogos in Grayscale, on hover farbig) */
.trust-logo {
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.trust-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Trust bar — text-based logos */
.trust-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.4s ease;
  white-space: nowrap;
}
.trust-name:hover {
  color: rgba(255, 255, 255, 0.7);
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.trust-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: trust-marquee 34s linear infinite;
}

.trust-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  flex-shrink: 0;
}

.trust-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  height: 4.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.018) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.trust-logo-image {
  display: block;
  width: auto;
  max-width: 13rem;
  max-height: 2rem;
  opacity: 0.88;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.trust-logo-chip--mono .trust-logo-image {
  opacity: 0.8;
}

.trust-logo-chip:hover .trust-logo-image {
  opacity: 1;
  transform: translateY(-1px);
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.contact-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.contact-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(79, 77, 255, 0.15);
  border: 1px solid rgba(79, 77, 255, 0.35);
  color: #4F4DFF;
  font-size: 1.5rem;
}

.contact-success h3 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.contact-success p {
  color: rgba(209, 213, 219, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 26rem;
  margin: 0 auto;
}

footer {
  background:
    radial-gradient(circle at 15% 10%, rgba(79, 77, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.footer-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 1rem;
}

.footer-proof-card {
  position: relative;
  overflow: hidden;
  min-height: 8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 77, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  box-shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.28);
}

.footer-proof-card--map {
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) minmax(12rem, 1fr);
}

.footer-proof-card--reviews {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

.footer-proof-card__copy {
  position: relative;
  z-index: 1;
  padding: 0.75rem;
}

.footer-proof-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-proof-card h4 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 500;
  line-height: 1.1;
}

.footer-proof-card p {
  margin: 0;
  color: rgba(209, 213, 219, 0.78);
  font-size: 0.7rem;
  line-height: 1.45;
}

.footer-map-embed {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(79, 77, 255, 0.18), rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
}

.footer-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 8rem;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.95) saturate(0.75);
}

.consent-embed-placeholder {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.consent-embed-placeholder strong {
  color: #fff;
  font-size: 0.85rem;
}

.consent-embed-placeholder span {
  font-size: 0.75rem;
  line-height: 1.45;
}

.consent-embed-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.footer-consent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0.9rem 1.8rem rgba(79, 77, 255, 0.24);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-consent-button:hover,
.footer-consent-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 1rem 2.1rem rgba(79, 77, 255, 0.34);
  outline: none;
}

.consent-embed-actions a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.consent-embed-actions a:hover,
.consent-embed-actions a:focus-visible {
  color: #fff;
}

.consent-embed-placeholder a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.consent-embed-placeholder a:hover,
.consent-embed-placeholder a:focus-visible {
  color: #fff;
}

.provenexpert-seal {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.3rem;
  background: rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.provenexpert-seal:hover,
.provenexpert-seal:focus-visible {
  border-color: rgba(79, 77, 255, 0.48);
  transform: translateY(-1px);
  outline: none;
}

.provenexpert-seal > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.provenexpert-seal > a:focus-visible {
  outline: 2px solid rgba(79, 77, 255, 0.8);
  outline-offset: 0.35rem;
  border-radius: 0.85rem;
}

.provenexpert-seal img {
  width: 5.5rem;
  height: auto;
  border: 0;
  border-radius: 0.7rem;
}

.consent-embed-placeholder--seal {
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  text-align: center;
}

@media (max-width: 1023px) {
  .footer-proof-grid,
  .footer-proof-card--map {
    grid-template-columns: 1fr;
  }

  .footer-proof-card {
    min-height: auto;
  }

  .footer-proof-card--map {
    min-height: auto;
  }

  .footer-map-embed {
    border-radius: 0 0 1.6rem 1.6rem;
    overflow: hidden;
  }

  .footer-map-embed iframe,
  .footer-map-embed {
    min-height: 12rem;
  }

  .provenexpert-seal {
    min-height: 6rem;
  }
}

@media (max-width: 767px) {
  body::before {
    width: 24rem;
    height: 24rem;
    left: -8rem;
    top: 5rem;
    opacity: 0.95;
  }

  body::after {
    width: 18rem;
    height: 18rem;
    right: -6rem;
    top: 58vh;
  }

  .detail-page::before {
    width: 26rem;
    height: 26rem;
    left: -8rem;
    top: 3rem;
  }

  .detail-page::after {
    width: 20rem;
    height: 20rem;
    right: -7rem;
    top: 62vh;
  }

  .logo-text {
    font-size: 22px;
  }

  .site-brand {
    width: 10rem;
  }

  .site-brand--footer {
    width: 11.25rem;
  }

  .footer-proof-grid {
    margin-bottom: 2rem;
  }

  .footer-proof-card {
    min-height: auto;
    border-radius: 1.35rem;
  }

  .footer-proof-card__copy,
  .consent-embed-placeholder {
    padding: 0.75rem;
  }

  .footer-map-embed iframe,
  .footer-map-embed {
    min-height: 10rem;
  }

  .provenexpert-seal {
    min-height: 5rem;
  }

  .cookie-fab {
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.72rem 0.9rem;
  }

  .cookie-fab span {
    display: none;
  }

  .accessibility-fab {
    left: 0.9rem;
    bottom: 4.2rem;
    width: 2.65rem;
    height: 2.65rem;
  }

  .accessibility-panel {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 7.6rem;
    width: auto;
    max-height: calc(100vh - 9rem);
    overflow: auto;
    padding: 1rem;
    border-radius: 1.3rem;
  }

  .accessibility-panel__title {
    font-size: 1.65rem;
  }

  .accessibility-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .accessibility-panel__actions > * {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-banner__panel,
  .cookie-modal {
    padding: 1rem;
    border-radius: 1.3rem;
  }

  .cookie-banner__title {
    font-size: 1.75rem;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    flex-direction: column;
  }

  .cookie-banner__actions > *,
  .cookie-modal__actions > * {
    width: 100%;
  }

  .cookie-modal-backdrop {
    padding: 0.9rem;
    align-items: flex-end;
  }

  .cookie-modal {
    max-height: 86vh;
  }

  .cookie-category {
    padding: 0.9rem;
  }

  .portrait-showcase {
    border-radius: 1.6rem;
  }

  .portrait-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .portrait-title {
    font-size: 1.55rem;
  }

  .portrait-copy {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  #mobile-menu {
    top: 4.25rem;
  }

  #mobile-menu.is-open {
    max-height: calc(100vh - 4.25rem);
  }

  .logo-spiral {
    width: 22px;
    height: 22px;
  }

  .phase-num {
    font-size: 36px;
  }

  .price-num {
    font-size: 48px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 15px;
  }

  nav[aria-label="Breadcrumb"] {
    padding-top: 5.8rem !important;
    padding-bottom: 0.9rem !important;
  }

  nav[aria-label="Breadcrumb"] ol {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
  }

  nav[aria-label="Breadcrumb"] ol::-webkit-scrollbar {
    display: none;
  }

  nav[aria-label="Breadcrumb"] + section[class*="py-16"],
  nav[aria-label="Breadcrumb"] + section[class*="py-24"] {
    padding-top: 2rem !important;
    padding-bottom: 3.5rem !important;
  }

  .detail-page nav[aria-label="Breadcrumb"] + section[class*="py-16"],
  .detail-page nav[aria-label="Breadcrumb"] + section[class*="py-24"] {
    padding-top: 1.75rem !important;
    padding-bottom: 2.4rem !important;
  }

  section[class*="py-24"] {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  section[class*="py-16"] {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  section .mb-16 {
    margin-bottom: 1.85rem !important;
  }

  section .mb-12 {
    margin-bottom: 1.4rem !important;
  }

  section .mb-10 {
    margin-bottom: 1rem !important;
  }

  section .mb-8 {
    margin-bottom: 0.85rem !important;
  }

  h1.text-5xl {
    font-size: 2.6rem !important;
    line-height: 0.98 !important;
    letter-spacing: -0.04em !important;
  }

  h2.text-4xl,
  h2.text-5xl {
    font-size: 2.15rem !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
  }

  .text-lg {
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .glass,
  .glass-featured {
    border-radius: 1.5rem;
  }

  .glass.rounded-3xl,
  .glass-featured.rounded-3xl {
    padding: 1.35rem !important;
  }

  .detail-page section ul.space-y-3.text-gray-300 {
    padding: 1.15rem;
    border-radius: 1.25rem;
  }

  .trust-track {
    animation-duration: 30s;
  }

  .trust-group {
    gap: 0.75rem;
    padding-right: 0.75rem;
  }

  .trust-logo-chip {
    min-width: 8rem;
    height: 3.5rem;
    padding: 0 1rem;
  }

  .trust-logo-image {
    max-width: 9.5rem;
    max-height: 1.45rem;
  }

  details.glass {
    padding: 1.15rem !important;
  }

  details summary {
    font-size: 1rem;
    line-height: 1.4;
  }

  footer {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}

/* ============================================================
   Mobile Performance: ALLE Blur-Effekte aus für Mobile Safari
   Grund: Safari rendert filter:blur auf der CPU statt GPU
   → 140px Blur auf body::before/after = Hauptursache für Lag
   ============================================================ */
@media (max-width: 1023px) {
  /* Body-Hintergrund-Glows: 140px Blur deaktivieren */
  body::before,
  body::after {
    filter: none !important;
    opacity: 0.18;
  }

  /* Detail-Page Section Glows: 120px Blur deaktivieren */
  .detail-page section::before {
    filter: none !important;
    opacity: 0.2;
  }

  .bg-glow {
    filter: none !important;
    opacity: 0.12;
    background: transparent !important;
  }

  .glass,
  .glass-card,
  .glass-featured {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(15, 16, 28, 0.92) !important;
  }

  .pill,
  .btn-secondary {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .portrait-caption,
  .cookie-fab,
  .accessibility-fab,
  .accessibility-panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header-glass {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.95) !important;
  }

  .cookie-banner,
  .cookie-banner__panel,
  .cookie-modal {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .cookie-modal-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(2, 3, 7, 0.88);
  }
}

/* Accessibility: "Transparenz reduzieren"-Nutzer → alle Blur aus */
@media (prefers-reduced-transparency: reduce) {
  body::before,
  body::after,
  .bg-glow,
  .detail-page section::before {
    filter: none !important;
    opacity: 0.18;
  }
  .glass,
  .glass-card,
  .glass-featured,
  .header-glass,
  .pill,
  .btn-secondary,
  .portrait-caption,
  .cookie-fab,
  .accessibility-fab,
  .accessibility-panel,
  .cookie-banner,
  .cookie-banner__panel,
  .cookie-modal,
  .cookie-modal-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }
}
