/* ======================================================================
   components.css — GLOBAL (für ALLE Seiten)
   High-End Luxury (HELLER, sauber sortiert)
   Inhalt NUR: globale Tokens + Background + Header/Footer + globale Cards/Grids
   WICHTIG: KEIN FAQ, KEIN CTA, KEIN Kontakt-Form, KEIN Konfigurator, KEIN Paket-Vergleich
   ====================================================================== */


/* ======================================================================
   1) GLOBAL THEME TOKENS (GANZE WEBSITE)
   ====================================================================== */
:root{

  /* =========================
     BACKGROUND (HELLERE PREMIUM VERSION)
     ========================= */
  --bg-base: #232838;
  --bg-a: rgba(124,92,255,.16);
  --bg-b: rgba(52,211,255,.12);

  /* =========================
     TEXT
     ========================= */
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted-2: rgba(255,255,255,.58);
  --soft: rgba(255,255,255,.45);

  /* =========================
     ACCENTS
     ========================= */
  --accent: rgb(124,92,255);
  --accent-2: rgb(52,211,255);

  /* =========================
     SURFACES (Boxen / Panels)
     ========================= */
  --surface-premium: rgba(26,28,44,.92);
  --surface-premium-soft: rgba(22,24,36,.86);
  --surface-3: rgba(14,15,22,.92);

  /* =========================
     BORDERS / INPUTS
     ========================= */
  --stroke: rgba(255,255,255,.16);
  --stroke-2: rgba(255,255,255,.24);

  --input: rgba(255,255,255,.05);
  --input-hover: rgba(255,255,255,.075);

  /* =========================
     GLASS / BLUR
     ========================= */
  --blur: blur(18px);

  /* =========================
     HEADER / FOOTER (CHROME)
     ========================= */
  --chrome-bg:
    radial-gradient(900px 700px at 12% 10%, rgba(124,92,255,.12), transparent 60%),
    radial-gradient(900px 700px at 88% 0%, rgba(52,211,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0)),
    rgba(20,22,34,.78);

  --chrome-border: rgba(255,255,255,.20);
  --chrome-blur: blur(18px);
  --chrome-shadow:
    0 18px 55px rgba(0,0,0,.42),
    0 1px 0 rgba(255,255,255,.06) inset;

  --chrome-text: rgba(255,255,255,.92);
  --chrome-muted: rgba(255,255,255,.70);
  --chrome-soft: rgba(255,255,255,.55);

  /* =========================
     NAV ACCENT LINE
     ========================= */
  --nav-accent-a: rgba(124,92,255,.95);
  --nav-accent-b: rgba(52,211,255,.95);
  --nav-glow: rgba(52,211,255,.18);
}


/* ======================================================================
   2) BASE (GANZE WEBSITE)
   ====================================================================== */
body{
  background: var(--bg-base);
  color: var(--text);
  position: relative;
  min-height: 100%;
}

p, li{ color: var(--muted); }
.small, .muted{ color: var(--muted-2); }
strong{ color: rgba(255,255,255,.95); }

/* GLOBAL: ANIMATED PREMIUM BACKGROUND (GLOW) */
body::before{
  content:"";
  position: fixed;
  inset: -35%;
  pointer-events: none;
  z-index: -2;

  background:
    radial-gradient(circle, var(--bg-a) 0%, transparent 60%),
    radial-gradient(circle, var(--bg-b) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);

  background-size:
    1400px 1000px,
    1200px 900px,
    900px 700px;

  background-position:
    12% 25%,
    88% 12%,
    55% 88%;

  background-repeat: no-repeat;

  /* Weniger Blur + nur transform/position tweenen = deutlich weniger Scroll-Jank */
  filter: saturate(128%) blur(11px);
  opacity: .95;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;

  animation: premiumFlowPositions 14s ease-in-out infinite;
}

@keyframes premiumFlowPositions{
  0%{
    background-position: 12% 25%, 88% 12%, 55% 88%;
    transform: translate3d(0, 0, 0) scale(1);
  }
  25%{
    background-position: 20% 18%, 78% 22%, 62% 78%;
    transform: translate3d(0.6%, -0.4%, 0) scale(1.02);
  }
  50%{
    background-position: 28% 30%, 70% 8%, 48% 82%;
    transform: translate3d(-0.5%, 0.5%, 0) scale(1.035);
  }
  75%{
    background-position: 18% 38%, 90% 28%, 58% 72%;
    transform: translate3d(0.4%, 0.3%, 0) scale(1.02);
  }
  100%{
    background-position: 10% 20%, 82% 16%, 62% 90%;
    transform: translate3d(0, 0, 0) scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce){
  body::before{ animation:none; }
}

/* SUBTILES GRID + VIGNETTE */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  transform: translateZ(0);
  backface-visibility: hidden;

  background:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 84px 84px,
    radial-gradient(1000px 700px at 50% 10%, rgba(0,0,0,0), rgba(0,0,0,.45)),
    radial-gradient(900px 700px at 50% 110%, rgba(0,0,0,0), rgba(0,0,0,.55));

  opacity: .14;
  mix-blend-mode: screen;
}
@media (max-width: 1024px) {
  body::after {
    /* Mobile: nur sanfte Vignette, ohne Rasterpunkte */
    background:
      radial-gradient(1000px 700px at 50% 10%, rgba(0,0,0,0), rgba(0,0,0,.24)),
      radial-gradient(900px 700px at 50% 110%, rgba(0,0,0,0), rgba(0,0,0,.30));
    opacity: .042;
  }
}


/* ======================================================================
   3) TOPBAR (GANZE WEBSITE)
   ====================================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0,0,0,.30);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: .65rem 0;
}
.topbar__text {
  font-size: var(--fs-1);
  color: var(--muted);
}
.topbar__text a { text-decoration: underline; text-underline-offset: 4px; }
.topbar__close {
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  transition: transform var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.topbar__close:hover { transform: translateY(-1px); background: rgba(255,255,255,.09); }
.topbar__close:focus-visible { box-shadow: var(--focus); }


/* ======================================================================
   4) HEADER (GANZE WEBSITE)
   ====================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: var(--chrome-bg);
  backdrop-filter: var(--chrome-blur);
  -webkit-backdrop-filter: var(--chrome-blur);

  border-bottom: 1px solid var(--chrome-border);
  box-shadow: var(--chrome-shadow);

  color: var(--chrome-text);

  isolation: isolate;
}

.header::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--nav-accent-a),
    var(--nav-accent-b),
    transparent
  );
  opacity: .70;
  filter: drop-shadow(0 0 12px var(--nav-glow));
  animation: headerLineShift 10s linear infinite;
  background-size: 220% 100%;
  pointer-events:none;
}
@keyframes headerLineShift{
  0%   { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}
@media (prefers-reduced-motion: reduce){
  .header::after{ animation: none; }
}


/* ======================================================================
   HERO — Scroll-Hinweis (alle Seiten mit Cinematic-Hero)
   Dezent, ruhig: eine einzige sanfte Bewegung (Markierung in der Spur)
   ====================================================================== */
.pkgHero__scroll,
.s-hero__scroll,
.srvPageHero__scroll,
.aboutHero__scroll,
.contactHero__scroll {
  position: absolute;
  left: 50%;
  bottom: var(--hero-scroll-bottom);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  z-index: 24;
  pointer-events: none;
  transform: translateX(-50%);
}

.pkgHero__scroll::before,
.s-hero__scroll::before,
.srvPageHero__scroll::before,
.aboutHero__scroll::before,
.contactHero__scroll::before {
  content: "";
  width: 20px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.42;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='14' viewBox='0 0 20 14' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-opacity='0.48' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round' d='M3.5 4.25 10 8.75 16.5 4.25M3.5 9.25 10 13.75 16.5 9.25'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

@keyframes heroScrollCueDrift {
  0% {
    transform: translate3d(-50%, 5px, 0);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(-50%, 30px, 0);
    opacity: 0.88;
  }
}

.pkgHero__scroll-line,
.s-hero__scroll-line,
.srvPageHero__scroll-line,
.aboutHero__scroll-line,
.contactHero__scroll-line {
  position: relative;
  width: 3px;
  height: 74px;
  flex-shrink: 0;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pkgHero__scroll-line::after,
.s-hero__scroll-line::after,
.srvPageHero__scroll-line::after,
.aboutHero__scroll-line::after,
.contactHero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 42%
  );
}

.pkgHero__scroll-line::before,
.s-hero__scroll-line::before,
.srvPageHero__scroll-line::before,
.aboutHero__scroll-line::before,
.contactHero__scroll-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 22px;
  margin-left: -1.5px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(52, 211, 255, 0.55) 45%,
    rgba(124, 92, 255, 0.35) 100%
  );
  box-shadow: 0 0 10px rgba(52, 211, 255, 0.22);
  animation: heroScrollCueDrift 4.2s ease-in-out infinite alternate;
}

.pkgHero__scroll-label,
.s-hero__scroll-label,
.srvPageHero__scroll-label,
.aboutHero__scroll-label,
.contactHero__scroll-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .pkgHero__scroll,
  .s-hero__scroll,
  .srvPageHero__scroll,
  .aboutHero__scroll,
  .contactHero__scroll {
    gap: 9px;
  }

  .pkgHero__scroll-line,
  .s-hero__scroll-line,
  .srvPageHero__scroll-line,
  .aboutHero__scroll-line,
  .contactHero__scroll-line {
    height: 62px;
  }

  .pkgHero__scroll-line::before,
  .s-hero__scroll-line::before,
  .srvPageHero__scroll-line::before,
  .aboutHero__scroll-line::before,
  .contactHero__scroll-line::before {
    height: 18px;
  }

  .pkgHero__scroll-label,
  .s-hero__scroll-label,
  .srvPageHero__scroll-label,
  .aboutHero__scroll-label,
  .contactHero__scroll-label {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 1024px) {
  .pkgHero__scroll,
  .s-hero__scroll,
  .srvPageHero__scroll,
  .aboutHero__scroll,
  .contactHero__scroll {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  /* Mobile-Ausnahme: Auf "Über uns" Scroll-Hinweis wieder zeigen */
  body[data-page="about"] .aboutHero__scroll {
    display: flex !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pkgHero__scroll-line::before,
  .s-hero__scroll-line::before,
  .srvPageHero__scroll-line::before,
  .aboutHero__scroll-line::before,
  .contactHero__scroll-line::before {
    animation: none;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.75;
  }
}

.header.is-scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.06) inset;
}

/* Brand (HEADER) */
.header .brand {
  gap: 0;
}
.header .brand__logo {
  height: clamp(56px, 7.1vw, 84px);
  width: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55))
    drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.12));
}
.header .brand__name { color: rgba(255,255,255,.98); }
.header .brand__tag  { color: var(--chrome-muted); }

/* Navigation (HEADER) */
.header .nav__list {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.header .nav__link {
  color: var(--chrome-muted);
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.header .nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.header .nav__link[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, rgba(124,92,255,.26), rgba(52,211,255,.16));
  border: 1px solid rgba(255,255,255,.18);
}

/* Mobile Colors (HEADER) */
.header .nav__toggle {
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border-color: rgba(255,255,255,.24);
}
.header .nav__menu.is-open {
  background: var(--chrome-bg);
  border-color: var(--chrome-border);
}

/* Header: Ghost-Button (HEADER) */
.header .btn--ghost {
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
  backdrop-filter: var(--chrome-blur);
}
.header .btn--ghost:hover {
  color: #fff;
  border-color: rgba(124,92,255,.55);
  background: linear-gradient(135deg, rgba(124,92,255,.20), rgba(52,211,255,.14));
}


/* ======================================================================
   5) HEADER STRUCTURE (Layout)
   ====================================================================== */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: .64rem 0;
}

.brand {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: .75rem;
}
.brand__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 12px;
  box-shadow: var(--sh-1);
}
.brand__name { font-weight: 750; letter-spacing: -0.02em; }
.brand__tag { font-size: var(--fs-1); }

.nav {
  position: relative;
  z-index: 72; /* Toggle bleibt über dem geöffneten Drawer klickbar */
}
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .62rem;
  min-height: 42px;
  min-width: 104px;
  padding: .52rem .92rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.95);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  z-index: 73;
  background:
    linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.04)),
    linear-gradient(180deg, rgba(124,92,255,.08), rgba(52,211,255,.04)),
    rgba(10,14,28,.92);
  box-shadow:
    0 10px 24px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(13px) saturate(124%);
  -webkit-backdrop-filter: blur(13px) saturate(124%);
  transition:
    transform .2s cubic-bezier(.16,1,.3,1),
    border-color .2s ease,
    box-shadow .2s ease;
}
.nav__toggleIcon {
  position: relative;
  width: 18px;
  height: 14px;
  flex: 0 0 18px;
  color: currentColor;
}
.nav__toggleIcon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  margin-top: -1px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 -5px 0 currentColor,
    0 5px 0 currentColor;
  opacity: .94;
  transition: transform .24s cubic-bezier(.16,1,.3,1), box-shadow .24s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}
.nav__toggleIcon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  margin-top: -1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: rotate(0deg);
  transition: transform .24s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}
.nav__toggleLabel {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  white-space: nowrap;
}
.nav__toggleLabelText { display: inline-block; }
.nav__toggleLabelText--open {
  display: none;
  text-transform: none;
  letter-spacing: .06em;
  font-weight: 680;
  font-size: 12px;
}
.nav__toggle[aria-expanded="true"] .nav__toggleLabelText--closed { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggleLabelText--open { display: inline-block; }
.nav__toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.36);
  box-shadow:
    0 12px 28px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.24);
}
.nav__toggle[aria-expanded="true"] {
  border-color: rgba(124,92,255,.52);
  box-shadow:
    0 14px 34px rgba(9,13,26,.56),
    0 0 20px rgba(124,92,255,.22),
    inset 0 1px 0 rgba(255,255,255,.24);
}
.nav__toggle[aria-expanded="true"] .nav__toggleIcon::before {
  transform: rotate(45deg);
  box-shadow: none;
  opacity: .98;
}
.nav__toggle[aria-expanded="true"] .nav__toggleIcon::after {
  transform: rotate(-45deg);
  opacity: .98;
}
.nav__toggle:focus-visible { box-shadow: var(--focus); }

.nav__menu {
  display: none;
  gap: var(--s-4);
  align-items: center;
}
.nav__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .25rem;
  border-radius: 999px;
}
.nav__link {
  display: inline-flex;
  padding: .42rem .68rem;
  border-radius: 999px;
  transition: background var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out),
              transform var(--dur-2) var(--ease-out);
}
.nav__cta { display: flex; gap: var(--s-3); }

@media (min-width: 1024px) {
  .nav__toggle { display: none; }
  .nav__menu { display: flex; }
}

/* Mobile menu layout */
.nav__menu.is-open {
  --nav-menu-top: calc(var(--hero-pad-top, 74px) + 12px);
  display: grid;
  position: fixed;
  right: 12px;
  left: 12px;
  top: var(--nav-menu-top);
  max-height: calc(100dvh - var(--nav-menu-top) - 16px);
  overflow: auto;
  width: auto;
  padding: .94rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.2);
  background:
    radial-gradient(130% 120% at 8% -18%, rgba(124,92,255,.08), transparent 54%),
    radial-gradient(115% 115% at 100% 120%, rgba(52,211,255,.06), transparent 58%),
    rgba(9, 13, 28, 0.985);
  box-shadow:
    0 28px 64px rgba(0,0,0,.66),
    0 0 0 1px rgba(255,255,255,.045) inset;
  transform-origin: top center;
  animation: navMenuIn .2s cubic-bezier(.16,1,.3,1);
  z-index: 66;
}
.nav__menu.is-open::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  opacity: .6;
  pointer-events: none;
}
.nav__menu.is-open::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
@keyframes navMenuIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.nav__menu.is-open .nav__list {
  border-radius: 13px;
  padding: .5rem;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(20,30,56,.92), rgba(12,20,40,.96));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 24px rgba(0,0,0,.22);
  flex-direction: column;
  align-items: stretch;
  gap: .12rem;
}
.nav__menu.is-open .nav__list > li {
  position: relative;
}
.nav__menu.is-open .nav__list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: .96rem;
  right: .96rem;
  bottom: -.06rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  opacity: .8;
  pointer-events: none;
}
.nav__menu.is-open .nav__link {
  width: 100%;
  padding: .82rem .98rem;
  border-radius: 11px;
  font-size: 15.5px;
  font-weight: 560;
  line-height: 1.28;
  letter-spacing: .004em;
  color: rgba(255,255,255,.95);
  border: 1px solid transparent;
  justify-content: space-between;
  align-items: center;
  text-shadow: 0 1px 10px rgba(0,0,0,.28);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.nav__menu.is-open .nav__link::after {
  content: "›";
  color: rgba(255,255,255,.48);
  font-size: 14px;
  line-height: 1;
  transform: translateX(-2px);
  transition: transform .2s ease, color .2s ease, opacity .2s ease;
  opacity: .62;
}
.nav__menu.is-open .nav__link[aria-current="page"] {
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(135deg, rgba(124,92,255,.36), rgba(52,211,255,.23));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.nav__menu.is-open .nav__link:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.11);
  transform: translateX(2px);
}
.nav__menu.is-open .nav__link:hover::after,
.nav__menu.is-open .nav__link[aria-current="page"]::after {
  color: rgba(255,255,255,.82);
  transform: translateX(0);
  opacity: 1;
}
.nav__menu.is-open .nav__cta {
  margin-top: .72rem;
  padding-top: .62rem;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-direction: column;
  gap: .52rem;
}
.nav__menu.is-open .nav__cta .btn {
  width: 100%;
  min-height: 40px;
  font-weight: 650;
  border-radius: 12px;
}
.nav__menu.is-open .nav__cta .btn--primary {
  box-shadow:
    0 14px 28px rgba(124,92,255,.28),
    inset 0 1px 0 rgba(255,255,255,.2);
}
.nav__menu.is-open .nav__cta .btn--ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}

@media (max-width: 1024px) {
  .header__inner {
    padding: .55rem 0;
  }
  .header .brand__logo {
    height: clamp(42px, 10vw, 58px);
  }
  .header .nav__toggle {
    min-width: 108px;
    min-height: 40px;
  }
  .nav__toggle {
    font-size: 10.5px;
    background:
      linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.025)),
      linear-gradient(180deg, rgba(124,92,255,.08), rgba(52,211,255,.03)),
      #0b1328;
    border-color: rgba(255,255,255,.32);
    box-shadow:
      0 14px 30px rgba(0,0,0,.48),
      0 0 24px rgba(124,92,255,.1),
      inset 0 1px 0 rgba(255,255,255,.16);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__toggleIcon {
    width: 17px;
    flex-basis: 17px;
  }
  .nav__toggleIcon::before,
  .nav__toggleIcon::after {
    width: 17px;
  }
  .nav__menu.is-open {
    /* Header (Logo + Toggle) ist oft höher als --hero-pad-top → Panel klar darunter */
    --nav-menu-top: max(
      calc(var(--hero-pad-top, 74px) + 14px),
      calc(env(safe-area-inset-top, 0px) + 5.125rem)
    );
    left: 10px;
    right: 10px;
    width: auto;
    background:
      radial-gradient(120% 110% at 6% -18%, rgba(124,92,255,.08), transparent 52%),
      radial-gradient(110% 110% at 100% 112%, rgba(52,211,255,.06), transparent 56%),
      #0a1122;
    border-color: rgba(255,255,255,.22);
    box-shadow:
      0 26px 60px rgba(0,0,0,.64),
      0 0 0 1px rgba(255,255,255,.045) inset;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__menu.is-open .nav__list {
    background: linear-gradient(180deg, rgba(20,30,56,.9), rgba(12,20,40,.95));
    border-color: rgba(255,255,255,.14);
  }
  .nav__menu.is-open .nav__link {
    color: rgba(255,255,255,.94);
    font-size: 15.3px;
  }
  .nav__menu.is-open .nav__link:hover {
    background: rgba(255,255,255,.1);
  }
  .nav__menu.is-open .nav__link[aria-current="page"] {
    background: linear-gradient(135deg, rgba(124,92,255,.3), rgba(52,211,255,.18));
  }
}


/* ======================================================================
   6) PREMIUM SURFACE MATERIAL (GANZE WEBSITE)
   -> Nur echte “Wiederverwendbare” Boxen
   ====================================================================== */
.feature-card,
.price-card,
.preview-panel,
.step,
.device,
.info-card,
.service,
.industry-card{
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(900px 420px at 15% -10%, rgba(124,92,255,.12), transparent 60%),
    radial-gradient(900px 420px at 85% -10%, rgba(52,211,255,.10), transparent 60%),
    var(--surface-premium);

  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 62px rgba(0,0,0,.46);
}

/* Premium Highlight Top Line */
.feature-card::before,
.price-card::before,
.preview-panel::before,
.step::before,
.device::before,
.info-card::before,
.service::before,
.industry-card::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.22), transparent);
  opacity:.80;
  pointer-events:none;
}

/* Subtle Edge Glow (nur ausgewählte Boxen) */
.feature-card::after,
.price-card::after,
.preview-panel::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 0 50px rgba(124,92,255,.06);
}


/* ======================================================================
   8) FEATURE GRID (GANZE WEBSITE)
   ====================================================================== */
.feature-grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.feature-card {
  padding: var(--s-6);
  border-radius: var(--r-3);
  transition: transform var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out),
              background var(--dur-2) var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,92,255,.28);
}
.feature-card p { margin-top: var(--s-3); color: var(--muted); }


/* ======================================================================
   9) INDUSTRY STRIP + PREVIEW PANEL (GANZE WEBSITE)
   ====================================================================== */
.industry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: var(--s-7);
}
.preview-panel {
  border-radius: var(--r-3);
  overflow: hidden;
}
.preview-panel__header {
  display: flex;
  gap: .5rem;
  padding: var(--s-5);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.preview-panel__body { padding: var(--s-6); }
.skeleton-list { display: grid; gap: .75rem; margin-bottom: var(--s-4); }
.skeleton-row {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
}


/* ======================================================================
   10) PRICING CARDS (GANZE WEBSITE)
   ====================================================================== */
.pricing-teaser,
.pricing-table__grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 1024px) {
  .pricing-teaser,
  .pricing-table__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.price-card {
  position: relative;
  padding: var(--s-7);
  border-radius: var(--r-3);
  transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(52,211,255,.24); }
.price-card__head { display: grid; gap: .35rem; }
.price-card__price {
  margin-top: var(--s-4);
  font-size: var(--fs-4);
  font-weight: 850;
  letter-spacing: -0.03em;
}
.price-card__actions { margin-top: var(--s-5); display: flex; gap: var(--s-3); flex-wrap: wrap; }

.price-card--featured {
  border-color: rgba(124,92,255,.30);
  box-shadow: 0 22px 70px rgba(124,92,255,.14);
}
.price-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(124,92,255,.16);
  border: 1px solid rgba(124,92,255,.26);
  font-size: var(--fs-1);
  color: var(--text);
}


/* ======================================================================
   CHECKLIST SYSTEM (GANZE WEBSITE)
   - twoline (Hero)
   - included (Pricing Cards)
   - meta (Lieferumfang/Ideal)
   ====================================================================== */
.checklist{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* TWO-LINE CHECKLIST */
.checklist.checklist--twoline{
  display: grid;
  gap: .95rem;
  margin-top: var(--s-6);
}
.checklist.checklist--twoline > li{
  display: grid;
  grid-template-columns: 16px 1fr;
  column-gap: .75rem;
  align-items: start;
  padding: 0 !important;
  margin: 0 !important;
}
.checklist.checklist--twoline > li::before{
  content:"";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.30), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(52,211,255,.95), rgba(124,92,255,.55));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14) inset,
    0 10px 26px rgba(0,0,0,.28),
    0 0 16px rgba(52,211,255,.18);
  place-self: start center;
  margin-top: .25rem;
}
.checklist.checklist--twoline .check-title{
  display: block;
  font-weight: 850;
  color: var(--text);
  line-height: 1.15;
  white-space: nowrap;
}
.checklist.checklist--twoline .check-lines{
  display: grid;
  gap: .14rem;
  margin-top: .28rem;
  color: var(--muted);
  line-height: 1.25;
}
.checklist.checklist--twoline .check-lines > span{
  display: block;
  white-space: nowrap;
}

/* PRICING: INCLUDED */
.price-card .checklist--included{
  list-style: none !important;
  padding: 0 !important;
  margin-top: 1rem;
  display: grid;
  gap: .72rem;
}
.price-card .checklist--included > li::marker{ content: "" !important; }
.price-card .checklist--included > li{
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
  color: var(--muted);

  -webkit-hyphens: none !important;
  hyphens: none !important;

  max-width: none !important;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}
.price-card .checklist--included > li::before{
  content:"";
  position: absolute;
  left: 0;
  top: .46em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.30), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(52,211,255,.95), rgba(124,92,255,.60));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14) inset,
    0 10px 26px rgba(0,0,0,.28),
    0 0 18px rgba(52,211,255,.16);
}
.price-card .checklist--included > li::after{
  content:"";
  position: absolute;
  left: 3px;
  top: calc(.46em + 3px);
  width: 8px;
  height: 8px;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 8px 8px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 8px 8px no-repeat;

  background: rgba(255,255,255,.92);
  filter: drop-shadow(0 0 10px rgba(255,255,255,.14));
}

/* PRICING META LISTS (DOTS) */
.price-card .price-card__meta .checklist{
  display: grid;
  gap: .60rem;
  margin-top: .55rem;
}
.price-card .price-card__meta .checklist > li{
  position: relative;
  padding-left: 18px;
  line-height: 1.40;
  color: var(--muted);

  -webkit-hyphens: none !important;
  hyphens: none !important;

  max-width: none !important;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}
.price-card .price-card__meta .checklist > li::before{
  content:"";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.24), transparent 55%),
    rgba(255,255,255,.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10) inset,
    0 10px 26px rgba(0,0,0,.20);
}
.price-card .price-card__meta .checklist > li::after{
  content: none !important;
}

/* Meta-Grid + Premium Icons */
.price-card__metaGrid{
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.10);
}
@media (min-width: 768px){
  .price-card__metaGrid{
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
  }
}
.price-card__metaTitle{
  margin: 0 0 .55rem 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
  font-size: var(--fs-2);

  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.price-card__metaTitle::before{
  content:"";
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  display: inline-block;
}
.price-card__metaGrid > .price-card__meta:nth-child(1) .price-card__metaTitle::before{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M21 7.5 12 3 3 7.5V16.5L12 21l9-4.5V7.5zm-9 12.2-7-3.5V9.2l7 3.5v7zM12 11 5.4 7.7 12 4.4l6.6 3.3L12 11zm8 5.2-7 3.5v-7l7-3.5v7z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M21 7.5 12 3 3 7.5V16.5L12 21l9-4.5V7.5zm-9 12.2-7-3.5V9.2l7 3.5v7zM12 11 5.4 7.7 12 4.4l6.6 3.3L12 11zm8 5.2-7 3.5v-7l7-3.5v7z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  background: linear-gradient(135deg, rgba(52,211,255,.95), rgba(124,92,255,.72));
  filter: drop-shadow(0 0 14px rgba(52,211,255,.14));
}
.price-card__metaGrid > .price-card__meta:nth-child(2) .price-card__metaTitle::before{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8zm0-14a6 6 0 1 0 6 6 6 6 0 0 0-6-6zm0 10a4 4 0 1 1 4-4 4 4 0 0 1-4 4zm0-6a2 2 0 1 0 2 2 2 2 0 0 0-2-2z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8zm0-14a6 6 0 1 0 6 6 6 6 0 0 0-6-6zm0 10a4 4 0 1 1 4-4 4 4 0 0 1-4 4zm0-6a2 2 0 1 0 2 2 2 2 0 0 0-2-2z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(52,211,255,.62));
  filter: drop-shadow(0 0 14px rgba(255,255,255,.12));
}
.price-card__tags{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}
.price-card__actions{
  margin-top: 1.05rem;
}
.pricing-teaser{ align-items: start; }
.price-card{ min-height: unset; }

.price-card__metaGrid .price-card__meta .checklist > li{
  white-space: nowrap !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  max-width: none !important;
}


/* ======================================================================
   11) STEPS (GANZE WEBSITE)
   ====================================================================== */
.steps {
  list-style: none;
  display: grid;
  gap: var(--s-4);
  counter-reset: step;
}
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.step {
  padding: var(--s-6);
  border-radius: var(--r-3);
}
.step h3 { margin-bottom: var(--s-3); }
.step p { color: var(--muted); }


/* ======================================================================
   14) FOOTER (GANZE WEBSITE) — ruhig, editorial, klare Hierarchie
   ====================================================================== */
.footer.footer--pro {
  position: relative;
  padding: clamp(2.5rem, 4.5vw, 3.5rem) 0 clamp(1.5rem, 2.8vw, 2rem);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(0, 0, 0, 0.12) 100%
  ), var(--chrome-bg);
  backdrop-filter: var(--chrome-blur);
  -webkit-backdrop-filter: var(--chrome-blur);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.07);
  color: var(--chrome-text);
}

.footer.footer--pro::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 92, 255, 0.12) 48%,
    rgba(52, 211, 255, 0.1) 52%,
    transparent 100%
  );
  opacity: 0.35;
  pointer-events: none;
}

.footer.footer--pro > .container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
}

/* Hauptzeile: Marke | schmale Spalte Links + Kontakt */
.footer__main {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .footer__main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.footer__brand {
  max-width: 38rem;
}

.footer__pitch {
  margin: 0.75rem 0 0;
  max-width: 42ch;
  font-size: var(--fs-1);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.44);
  letter-spacing: 0.008em;
}

.footer__ctaRow {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
}

.footer .btn {
  padding: 0.62rem 1rem;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(124, 92, 255, 0.14);
}
.footer .btn--primary:hover {
  transform: translateY(-1px);
}

.footer__ctaGhost {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.42) !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__ctaGhost:hover {
  color: rgba(255,255,255,.82) !important;
  border-bottom-color: rgba(52,211,255,.35);
}

.footer .brand--footer {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.footer .brand--footer .brand__logo {
  height: clamp(40px, 4.2vw, 52px);
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
}
.footer .brand--footer .brand__tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
  line-height: 1.35;
  max-width: 16rem;
}

.footer__side {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 480px) {
  .footer__side {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1.5rem 2.25rem;
    align-items: start;
  }
}

.footer__nav::before,
.footer__contactCol::before {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.26);
  margin-bottom: 0.55rem;
}
.footer__nav::before {
  content: "Menü";
}
.footer__contactCol::before {
  content: "Kontakt";
}

.footer__nav .footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.footer__nav a {
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,.52) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__nav a:hover {
  color: rgba(255,255,255,.92) !important;
}

.footer__contactCol {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__mail {
  font-size: 14px;
  font-weight: 650;
  color: rgba(255,255,255,.78) !important;
  text-decoration: none;
  letter-spacing: 0.01em;
  width: fit-content;
}
.footer__mail:hover {
  color: rgba(52,211,255,.92) !important;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.footer__socialIcon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  opacity: .9;
}

.footer__phones {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.footer__phones a {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255,255,255,.46) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__phones a:hover {
  color: rgba(255,255,255,.88) !important;
}

.footer__metaNote {
  margin: 0.15rem 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.32);
  max-width: 28ch;
}

/* Untere Zeile: Copyright + Rechtliches */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.footer__copyright {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.3);
}

.footer__legalBar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
}
.footer__legalBar a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.38) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legalBar a:hover {
  color: rgba(255, 255, 255, 0.78) !important;
}
.footer__legalBar a + a::before {
  content: "·";
  margin-right: 0.85rem;
  color: rgba(255, 255, 255, 0.16);
  font-weight: 500;
  letter-spacing: 0;
}

.footer.footer--pro a {
  text-decoration: none;
}

/* Legacy / optional */
.footer__trust {
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.footer__trustItem {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-size: var(--fs-1);
  color: var(--chrome-muted);
  backdrop-filter: var(--blur);
}


/* ======================================================================
   15) MODAL (GANZE WEBSITE)
   ====================================================================== */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--s-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out);
  z-index: 80;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.60); }
.modal__panel {
  position: relative;
  width: min(820px, 95vw);
  border-radius: var(--r-4);
  border: 1px solid rgba(255,255,255,.16);
  background: var(--surface-3);
  backdrop-filter: var(--blur);
  box-shadow: var(--sh-3);
  padding: var(--s-8);
}
.modal__close {
  position: absolute;
  right: 14px; top: 14px;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
}
.modal__close:focus-visible { box-shadow: var(--focus); }


/* ======================================================================
   20) OPTIONAL: ANIMATION HOOKS (GANZE WEBSITE)
   ====================================================================== */
[data-animate] {
  transform: translateY(10px);
  opacity: 0;
  transition: transform var(--dur-3) var(--ease-out), opacity var(--dur-3) var(--ease-out);
}

[data-magnetic] {
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}

/* Scroll-Fortschritt (global, außer Kontakt) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.06);
  z-index: 9999;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-p, 0));
  background: linear-gradient(90deg, rgba(124,92,255,.95), rgba(52,211,255,.9));
  border-radius: 0 2px 2px 0;
  will-change: transform;
}
body[data-page="contact"] .scroll-progress { display: none; }

/* ======================================================================
   21) GENERIC "MEHR ERFAHREN" TOGGLE
   ====================================================================== */
.more-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .75rem;
  padding: .34rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.45);
  background: rgba(15,23,42,.85);
  color: rgba(226,232,240,.95);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.more-toggle:hover {
  background: rgba(30,64,175,.85);
  border-color: rgba(129,140,248,.8);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15,23,42,.6);
}

.more-toggle__icon {
  font-size: 13px;
  line-height: 1;
}

.more-content[hidden] {
  display: none;
}

.more-content {
  margin-top: .75rem;
}

/* Shared scroll reveal for [data-animate-section] (alle Seiten) */
[data-animate-section] {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity 900ms cubic-bezier(.16,1,.3,1), transform 900ms cubic-bezier(.16,1,.3,1), filter 900ms cubic-bezier(.16,1,.3,1);
}
[data-animate-section].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.is-inview[data-animate] {
  transform: translateY(0);
  opacity: 1;
}

/* No-JS fail-safe: keep content visible if scripts fail. */
html:not(.js) [data-animate],
html:not(.js) [data-animate-section],
html:not(.js) [data-hero-item],
html:not(.js) [data-hero-line] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Utility */
[hidden] { display: none !important; }
