/* =========================================================================
   Neonmoos Landing v2 — statisches Replikat des Claude-Design-Prototypen
   Palette: Nordisch Klar (Sage / Fjord / Apricot auf Fog White)
   ========================================================================= */

/* Self-hosted fonts (DSGVO: keine Anfrage an Google bei Seitenaufruf).
   Quelle: google-webfonts-helper (Inter v20, JetBrains Mono v20) → assets/fonts/ */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../assets/fonts/inter-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../assets/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('../assets/fonts/inter-800.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/jetbrains-mono-400.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/jetbrains-mono-500.woff2') format('woff2'); }

:root {
  /* Brand */
  --primary: #E8945A;
  --primary-deep: #C4774A;
  --primary-soft: rgba(232, 148, 90, 0.10);
  --secondary: #5B7B8A;
  --accent: #E8945A;

  /* Text */
  --neutral: #2E3440;
  /* 0.62 → 0.72: AA-Kontrast 4.5:1+ für Fließtext auf --bg/--surface-1
     (gleiche Entscheidung wie muted-foreground im Portal). */
  --neutral-soft: rgba(46, 52, 64, 0.72);
  --neutral-muted: rgba(46, 52, 64, 0.45);

  /* Surfaces */
  --bg: #F5F3EF;
  --surface-0: #FAF8F4;
  --surface-1: #FFFFFF;
  --surface-2: #F0EDE6;
  --dark: #1D2B2D;
  --dark-elev: #243636;
  --gold: #E6B450;

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* -------------------------------------------------- Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--neutral);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(232, 148, 90, 0.25); }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* -------------------------------------------------- Primitives */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}
.eyebrow--primary { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.18s var(--ease-out), background 0.18s, filter 0.18s;
  white-space: nowrap;
}
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--md { padding: 12px 20px; font-size: 15px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset,
              0 8px 20px -8px rgba(232, 148, 90, 0.55);
}
.btn--primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn--primary:active { transform: translateY(0) scale(0.97); }
.btn--ghost {
  background: var(--surface-2);
  color: var(--neutral);
}
.btn--ghost:hover { background: rgba(0, 0, 0, 0.04); }
.btn--on-dark {
  background: white;
  color: var(--primary-deep);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.06) inset,
              0 14px 30px -10px rgba(29, 43, 45, 0.45);
}
.btn--on-dark:hover { transform: translateY(-1px); }
.btn--outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.14); }

/* Pulse dot */
.pulse {
  position: relative;
  display: inline-block;
  width: 8px; height: 8px;
}
.pulse::before, .pulse::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--primary);
}
.pulse::before {
  animation: pulseRing 1.6s ease-out infinite;
  opacity: 0.45;
}
.pulse--sm { width: 6px; height: 6px; }
.pulse--md { width: 7px; height: 7px; }
.pulse--white::before, .pulse--white::after { background: white; }

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.45; }
  80%, 100% { transform: scale(2.2); opacity: 0; }
}

/* -------------------------------------------------- Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(245, 243, 239, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  position: relative;
  display: inline-block;
  width: 28px; height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 2px 6px rgba(232, 148, 90, 0.35);
}
.logo-mark::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface-0);
}
.logo-wordmark {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--neutral);
}
.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-soft);
}
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a { transition: color 0.18s; }
.nav__links a:hover { color: var(--neutral); }
.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__signin {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-soft);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav__signin:hover { text-decoration: underline; text-underline-offset: 4px; color: var(--neutral); }
@media (min-width: 640px) { .nav__signin { display: inline; } }

/* -------------------------------------------------- Hero */
.hero {
  position: relative;
  padding: 32px 0 80px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 48px 0 112px; } }
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 60% at 85% 0%, rgba(232, 148, 90, 0.10), transparent 60%),
    radial-gradient(60% 50% at 10% 20%, rgba(91, 123, 138, 0.07), transparent 60%),
    var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-1);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.04);
  margin-bottom: 24px;
  font-size: 11px;
  color: var(--neutral-soft);
}
.hero__title {
  margin: 0;
  font-weight: 700;
  color: var(--neutral);
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.hero__title-accent { color: var(--primary); }
.hero__lede {
  margin: 20px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--neutral-soft);
  text-wrap: pretty;
}
@media (min-width: 768px) { .hero__lede { font-size: 19px; } }
.hero__ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero__fineprint {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--neutral-muted);
}
.hero__trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}
.trust-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trust-stars svg { fill: var(--gold); }
.trust-stars__label {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral);
}
.trust-stars__sub {
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--neutral-muted);
}
.hero__trust-divider {
  height: 32px;
  width: 1px;
  background: rgba(46, 52, 64, 0.08);
}
.hero__channels-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-muted);
  margin-bottom: 6px;
}
.hero__channels {
  display: flex;
  align-items: center;
  gap: 10px;
}
.channel-badge {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(46, 52, 64, 0.08);
}
.channel-badge--ig { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.channel-badge--fb { background: #1877F2; }
.channel-badge--tt { background: #000; }
.channel-badge--yt { background: #FF0000; }
.channel-badge--gm { background: white; }

.hero__phone-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero__phone-wrap { justify-content: flex-end; }
}

/* -------------------------------------------------- Phone Mockup */
.phone-scene { position: relative; perspective: 1400px; }
.phone-scene::before {
  content: '';
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(232, 148, 90, 0.18), transparent 70%);
  filter: blur(6px);
}
.phone {
  position: relative;
  margin: 0 auto;
  width: 340px;
  height: 700px;
  border-radius: 52px;
  padding: 10px;
  background: linear-gradient(160deg, #2a3538 0%, #0f1617 100%);
  box-shadow:
    0 40px 80px -30px rgba(29, 43, 45, 0.45),
    0 20px 40px -20px rgba(29, 43, 45, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
}
.phone__btn { position: absolute; background: #1a2223; }
.phone__btn--l1 { left: -2px; top: 96px; width: 3px; height: 40px; border-radius: 0 0 0 4px; }
.phone__btn--l2 { left: -2px; top: 160px; width: 3px; height: 64px; border-radius: 0 0 0 4px; }
.phone__btn--r1 { right: -2px; top: 128px; width: 3px; height: 80px; border-radius: 0 0 4px 0; }
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 44px;
  background: #17212B;
}
.phone__island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 98px; height: 28px;
  background: #000;
  border-radius: 18px;
  z-index: 20;
}
.phone__statusbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px 0;
  color: white;
  font-size: 13px;
  font-weight: 600;
}
.phone__statusbar-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}
.phone__header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 16px 12px;
  background: #17212B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.phone__back { color: #6EAEEA; }
.phone__bot-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}
.phone__bot-avatar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface-0);
}
.phone__bot-name {
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.phone__bot-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.phone__bot-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4FCB7E;
}
.phone__scroll {
  position: relative;
  z-index: 10;
  padding: 12px;
  overflow-y: auto;
  height: calc(100% - 120px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone__scroll::-webkit-scrollbar { display: none; }

.chat-datestamp {
  align-self: center;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}
.bubble-row { display: flex; }
.bubble-row--right { justify-content: flex-end; }
.bubble-row--left { justify-content: flex-start; }

.bubble-user {
  background: #2B5278;
  border-radius: 16px;
  border-bottom-right-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  max-width: 82%;
}
.bubble-user--photo { padding: 4px; max-width: 78%; }
.bubble-user__photo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 200px; height: 200px;
}
.bubble-user__photo img { width: 100%; height: 100%; object-fit: cover; }
.bubble-user__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 4px 8px 2px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
}

.bubble-voice { padding: 10px 12px; }
.bubble-voice__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bubble-voice__play {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bubble-voice__wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 22px;
}
.bubble-voice__wave span {
  width: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}
.bubble-voice__wave span.is-played { background: white; }
.bubble-voice__time {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.bubble-voice__transcript {
  margin: 8px 0 0;
  padding-top: 8px;
  font-style: italic;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bubble-bot {
  background: #182533;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  border-bottom-left-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 86%;
}
.bubble-bot__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.4);
}
.bubble-bot__tag {
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--primary-soft);
  color: #9BC3A1;
}
.bubble-bot p { margin: 0; }

.post-card {
  width: 258px;
  background: #182533;
  border-radius: 16px;
  border-bottom-left-radius: 6px;
  overflow: hidden;
}
.post-card__tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 10px 0;
}
.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.channel-pill.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}
.post-card__body {
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}
.post-card__body p { margin: 0 0 6px; }
.post-card__body p.sub { color: rgba(255, 255, 255, 0.75); margin-bottom: 8px; }
.post-card__hashtags { font-size: 11px; color: #7FB0D6; }
.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
}
.post-card__meta-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-card__meta-right { color: #9BC3A1; }

.inline-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 86%;
}
.inline-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  transition: filter 0.18s;
}
.inline-action:hover { filter: brightness(1.1); }
.inline-action--primary { background: var(--primary); color: white; }

/* Freigabe-Echo (User tippt „Freigeben") */
.bubble-approve {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 16px;
  border-bottom-right-radius: 6px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
}

/* Veröffentlicht-Bestätigung (Endzustand im Hero-Telefon) */
.post-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(155, 195, 161, 0.13);
  color: #9BC3A1;
  font-size: 11px;
  font-weight: 500;
}
.post-live__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #9BC3A1;
  box-shadow: 0 0 0 0 rgba(155, 195, 161, 0.55);
  animation: postLivePulse 2s var(--ease-out) infinite;
}
@keyframes postLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(155, 195, 161, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(155, 195, 161, 0); }
  100% { box-shadow: 0 0 0 0 rgba(155, 195, 161, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .post-live__dot { animation: none; }
}

.typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 16px;
  border-bottom-left-radius: 6px;
  background: #182533;
}
.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.25;
  animation: typingDot 1.35s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.45s; }
.typing span:nth-child(3) { animation-delay: 0.9s; }
@keyframes typingDot {
  0%, 33%   { opacity: 0.25; }
  34%, 66%  { opacity: 1; }
  67%, 100% { opacity: 1; }
}

.phone__input {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #17212B;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.phone__input-field {
  flex: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.phone__input-send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #5B8AA8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phone-chip {
  display: none;
  align-items: center;
  gap: 10px;
  position: absolute;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--surface-1);
  box-shadow: 0 12px 30px -12px rgba(46, 52, 64, 0.18);
}
@media (min-width: 1024px) { .phone-chip { display: inline-flex; } }
.phone-chip--trust { left: -64px; bottom: -16px; }
.phone-chip__icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-chip__title { font-size: 11px; font-weight: 600; color: var(--neutral); }
.phone-chip__sub { font-size: 10px; color: var(--neutral-muted); }

/* -------------------------------------------------- Logo Strip */
.logostrip {
  padding: 24px 0 56px;
}
.logostrip__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neutral-muted);
  margin: 0 0 28px;
}
.logostrip__track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logostrip__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 8px 0;
  animation: logoSlide 38s linear infinite;
}
.logostrip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--neutral-soft);
  opacity: 0.75;
}
.logostrip__item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral);
  letter-spacing: -0.01em;
}
@keyframes logoSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------------------------------------------------- Stats Strip */
.statsstrip { padding-bottom: 32px; }
.statsstrip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 24px;
  background: var(--surface-1);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.03),
              0 14px 40px -22px rgba(46, 52, 64, 0.15);
  overflow: hidden;
}
@media (min-width: 768px) {
  .statsstrip__grid { grid-template-columns: repeat(4, 1fr); }
}
.statsstrip__cell {
  padding: 28px 24px;
  text-align: center;
}
.statsstrip__grid .statsstrip__cell:not(:last-child) {
  border-right: 1px solid var(--surface-2);
}
@media (max-width: 767px) {
  .statsstrip__grid .statsstrip__cell:nth-child(2n) { border-right: none; }
  .statsstrip__grid .statsstrip__cell:nth-child(-n+2) {
    border-bottom: 1px solid var(--surface-2);
  }
}
.statsstrip__n {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--neutral);
  margin-bottom: 8px;
}
@media (min-width: 768px) { .statsstrip__n { font-size: 38px; } }
.statsstrip__l {
  font-size: 13px;
  color: var(--neutral-soft);
}

/* -------------------------------------------------- Section Heads */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head__copy { max-width: 680px; }
.section-title {
  margin: 12px 0 0;
  font-weight: 700;
  color: var(--neutral);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.section-lede {
  margin: 16px 0 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--neutral-soft);
}
.section-linkarrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.18s var(--ease-out);
}
.section-linkarrow:hover { gap: 10px; }

/* -------------------------------------------------- How It Works */
.hiw {
  padding: 80px 0;
}
@media (min-width: 768px) { .hiw { padding: 112px 0; } }
.hiw__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .hiw__grid { grid-template-columns: repeat(3, 1fr); }
  .hiw__grid::before {
    content: '';
    position: absolute;
    top: 46px;
    left: 16%;
    right: 16%;
    border-top: 2px dashed var(--primary);
    opacity: 0.25;
  }
}
.hiw__card {
  position: relative;
  padding: 28px;
  border-radius: 16px;
  background: var(--surface-1);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.03),
              0 10px 30px -18px rgba(46, 52, 64, 0.15);
}
.hiw__cardtop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hiw__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hiw__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-muted);
}
.hiw__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--neutral);
}
.hiw__body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--neutral-soft);
}

/* -------------------------------------------------- Features */
.features {
  padding: 80px 0;
  background: var(--surface-2);
}
@media (min-width: 768px) { .features { padding: 112px 0; } }
.features__intro {
  max-width: 640px;
  margin-bottom: 56px;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  min-height: 440px;
  background: var(--surface-1);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.03),
              0 14px 40px -22px rgba(46, 52, 64, 0.22);
}
.feature-card__visual {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--surface-0);
}
.feature-card__content {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.feature-card__title {
  margin: 12px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--neutral);
}
.feature-card__body {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--neutral-soft);
}
.feature-card__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--neutral);
}
.feature-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Visual — Auto (photo in, caption out) */
.fv-auto {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-auto__in {
  position: absolute;
  left: 24px; top: 28px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--secondary);
  color: white;
  font-size: 11px;
  font-weight: 500;
  box-shadow: 0 6px 18px -8px rgba(91, 123, 138, 0.5);
}
.fv-auto__out {
  position: absolute;
  right: 24px; bottom: 28px;
  max-width: 170px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--surface-1);
  color: var(--neutral);
  font-size: 11px;
  font-weight: 500;
  box-shadow: 0 6px 18px -8px rgba(46, 52, 64, 0.2);
}
.fv-auto__plus {
  color: var(--primary);
}

/* Visual — Channels (telegram → 5 channels) */
.fv-channels {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 24px;
}
.fv-channels__svg {
  position: absolute; inset: 0;
  pointer-events: none;
  width: 100%; height: 100%;
}
.fv-channels__svg path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fv-channels.is-drawing .fv-channels__svg path,
.fv-channels.is-done .fv-channels__svg path { stroke-dashoffset: 0; }
.fv-channels__svg path:nth-of-type(1) { transition-delay: 0s; }
.fv-channels__svg path:nth-of-type(2) { transition-delay: 0.08s; }
.fv-channels__svg path:nth-of-type(3) { transition-delay: 0.16s; }
.fv-channels__svg path:nth-of-type(4) { transition-delay: 0.24s; }
.fv-channels__svg path:nth-of-type(5) { transition-delay: 0.32s; }
.fv-channels__tg {
  position: relative;
  z-index: 1;
  width: 48px; height: 48px;
  border-radius: 16px;
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(232, 148, 90, 0.55);
  flex-shrink: 0;
}
.fv-channels.is-shaking .fv-channels__tg {
  animation: channelShake 0.6s ease-in-out;
}
.fv-channels.is-shaking .fv-channels__tg::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  animation: channelPulse 0.6s ease-out;
}
@keyframes channelShake {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  15% { transform: translate(-2px, 1px) rotate(-6deg); }
  30% { transform: translate(2px, -1px) rotate(6deg); }
  45% { transform: translate(-2px, 1px) rotate(-4deg); }
  60% { transform: translate(2px, -1px) rotate(4deg); }
  75% { transform: translate(-1px, 0) rotate(-2deg); }
}
@keyframes channelPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 148, 90, 0.5); }
  100% { box-shadow: 0 0 0 14px rgba(232, 148, 90, 0); }
}
.fv-channels__list {
  position: relative;
  z-index: 1;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 4px;
}
.fv-channels__chan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--neutral-soft);
  opacity: 0.25;
  transition: opacity 0.4s ease;
}
.fv-channels.is-drawing .fv-channels__chan,
.fv-channels.is-done .fv-channels__chan { opacity: 1; }
.fv-channels__chan:nth-child(1) { transition-delay: 0.6s; }
.fv-channels__chan:nth-child(2) { transition-delay: 0.68s; }
.fv-channels__chan:nth-child(3) { transition-delay: 0.76s; }
.fv-channels__chan:nth-child(4) { transition-delay: 0.84s; }
.fv-channels__chan:nth-child(5) { transition-delay: 0.92s; }

/* Visual — Map (radar + customer pins) */
.fv-map {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(46, 52, 64, 0.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(46, 52, 64, 0.04) 0 1px, transparent 1px 24px),
    var(--surface-0);
}
.fv-map__streets { position: absolute; inset: 0; }
.fv-map__ring {
  position: absolute;
  left: 50%; top: 50%;
  aspect-ratio: 1;
  height: 220%;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: radial-gradient(circle, rgba(232, 148, 90, 0.22), rgba(232, 148, 90, 0.08) 55%, transparent 75%);
  transform: translate(-50%, -50%) scale(0);
  animation: radarGrow 4s linear infinite;
  pointer-events: none;
}
.fv-map__ring--d1 { animation-delay: 1.33s; }
.fv-map__ring--d2 { animation-delay: 2.66s; }
@keyframes radarGrow {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: 0.75; }
  100% { transform: translate(-50%, -50%) scale(1);   opacity: 0; }
}
.fv-map__pin-customer {
  position: absolute;
  width: 10px; height: 10px;
  transform: translate(-50%, -50%) scale(0.6);
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 2px 6px -1px rgba(46, 52, 64, 0.35), 0 0 0 2px white;
  opacity: 0;
}
.fv-map.is-active .fv-map__pin-customer {
  animation: pinPop 1.2s var(--ease-out) both;
}
@keyframes pinPop {
  0%, 60% { transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
  100%    { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
}
.fv-map__pin-shop {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  width: 18px; height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 6px 14px -3px rgba(46, 52, 64, 0.4), 0 0 0 3px white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-map__pin-shop::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
}
.fv-map__label {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: calc(50% + 15px);
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: 6px;
  background: white;
  color: var(--neutral);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 10px -3px rgba(46, 52, 64, 0.2);
}

/* -------------------------------------------------- Testimonials */
.testimonials {
  padding: 80px 0;
}
@media (min-width: 768px) { .testimonials { padding: 112px 0; } }
.testimonials__intro {
  max-width: 680px;
  margin-bottom: 56px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface-1);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.03),
              0 14px 40px -22px rgba(46, 52, 64, 0.18);
  margin: 0;
}
.testimonial__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.testimonial__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}
.testimonial__stars svg { fill: currentColor; }
.testimonial__metric {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  background: var(--primary-soft);
  color: var(--primary);
  white-space: nowrap;
}
.testimonial__quote {
  margin: 0;
  flex: 1;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--neutral);
  text-wrap: pretty;
}
.testimonial__cap {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral);
}
.testimonial__role {
  font-size: 12px;
  color: var(--neutral-muted);
}
.testimonials__disclaimer {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  color: var(--neutral-muted);
  text-align: center;
}

.testimonials__live {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.testimonials__live-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface-1);
  box-shadow: 0 2px 0 rgba(46, 52, 64, 0.03),
              0 10px 30px -14px rgba(46, 52, 64, 0.18);
  font-size: 13.5px;
  color: var(--neutral);
}

/* -------------------------------------------------- Pricing */
.pricing {
  padding: 80px 0;
  background: var(--surface-2);
}
@media (min-width: 768px) { .pricing { padding: 112px 0; } }
.pricing__intro {
  max-width: 680px;
  margin-bottom: 56px;
}
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: -24px 0 40px;
  padding: 5px;
  border-radius: 999px;
  background: var(--surface-1);
  box-shadow: inset 0 0 0 1px rgba(46, 52, 64, 0.08);
}
.billing-toggle__opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--neutral-soft);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.billing-toggle__opt:hover { color: var(--neutral); }
.billing-toggle__opt.is-active {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 6px 20px -10px rgba(29, 43, 45, 0.6);
}
.billing-toggle__opt:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.billing-toggle__save {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: var(--primary-soft);
  color: var(--primary);
}
.billing-toggle__opt.is-active .billing-toggle__save {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .billing-toggle__opt { transition: none; }
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  background: var(--surface-1);
  color: var(--neutral);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.03),
              0 12px 40px -24px rgba(46, 52, 64, 0.18);
}
.tier--dark {
  background: var(--dark);
  color: white;
  box-shadow: 0 30px 80px -30px rgba(29, 43, 45, 0.55),
              0 0 0 1px rgba(255, 255, 255, 0.04);
}
.tier--dark::before {
  content: '';
  position: absolute;
  top: -96px; right: -96px;
  width: 256px; height: 256px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(232, 148, 90, 0.35), transparent 70%);
}
.tier > * { position: relative; }
.tier__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tier__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-soft);
}
.tier--dark .tier__name { color: rgba(255, 255, 255, 0.55); }
.tier__badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--primary-soft);
  color: var(--primary);
}
.tier__badge--primary { background: var(--primary); color: white; }
.tier__price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tier__price-amount {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier__price-period {
  font-size: 14px;
  color: var(--neutral-muted);
}
.tier--dark .tier__price-period { color: rgba(255, 255, 255, 0.55); }
.tier__price-note {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--neutral-muted);
}
.tier--dark .tier__price-note { color: rgba(255, 255, 255, 0.6); }
.tier__price-note[hidden] { display: none; }
.tier__tagline {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--neutral-soft);
}
.tier--dark .tier__tagline { color: rgba(255, 255, 255, 0.65); }
.tier__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
}
.tier__feature-title { font-weight: 600; }
.tier__feature-sub {
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--neutral-muted);
}
.tier--dark .tier__feature-sub { color: rgba(255, 255, 255, 0.55); }
.tier-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--surface-2);
  color: var(--primary);
}
.tier--dark .tier-check { background: var(--primary); color: white; }
.tier__cta {
  margin-top: 32px;
  padding: 14px 24px;
  width: 100%;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--neutral);
  transition: transform 0.18s var(--ease-out);
}
.tier__cta:hover { transform: translateY(-1px); }
.tier--dark .tier__cta {
  background: var(--primary);
  color: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset,
              0 12px 30px -10px rgba(232, 148, 90, 0.6);
}
.tier__cta-sub {
  margin: 12px 0 0;
  font-size: 12px;
  text-align: center;
  color: var(--neutral-muted);
}
.tier--dark .tier__cta-sub { color: rgba(255, 255, 255, 0.45); }

.pricing__trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 32px;
  font-size: 13px;
  color: var(--neutral-soft);
}
.pricing__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing__trust-item svg { color: var(--primary); }

/* -------------------------------------------------- Channels (Kanäle) */
.channels {
  padding: 80px 0;
}
@media (min-width: 768px) { .channels { padding: 112px 0; } }
.channels__intro {
  max-width: 680px;
  margin-bottom: 56px;
}
.channels__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .channels__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.channel-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 16px;
  background: var(--surface-1);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.03),
              0 10px 30px -18px rgba(46, 52, 64, 0.15);
}
.channel-card__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(91, 123, 138, 0.10);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.channel-card__name {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--neutral);
}
.channel-card__cap {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--neutral-soft);
}
.channels__note {
  margin: 32px auto 0;
  max-width: 640px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--neutral-soft);
  text-align: center;
  text-wrap: pretty;
}

/* -------------------------------------------------- Portal (Cockpit) */
.portal {
  padding: 80px 0;
  background: var(--dark);
}
@media (min-width: 768px) { .portal { padding: 112px 0; } }
.portal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .portal__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
  }
}
.portal .eyebrow { color: var(--primary); }
.portal .section-title { color: white; }
.portal .section-lede { color: rgba(255, 255, 255, 0.72); }
.portal__points {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.portal__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.portal__point-icon {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: rgba(232, 148, 90, 0.14);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.portal__point-title {
  margin: 0 0 3px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: white;
}
.portal__point-body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

/* Browser-Fenster-Mockup (rein dekorativ) — Portal-Preview mit
   Sidebar, Tabs, echtem Beispiel-Post, Kalender und Reglern. */
.pv-browser {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.07);
}
.pv-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: var(--surface-1);
  border-bottom: 1px solid rgba(46, 52, 64, 0.07);
}
.pv-browser__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(46, 52, 64, 0.14);
}
.pv-browser__dot--r { background: #E3A49A; }
.pv-browser__dot--y { background: #E5CD9D; }
.pv-browser__dot--g { background: #ABC8A5; }
.pv-browser__url {
  margin-left: 10px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 10.5px;
  color: var(--neutral-soft);
}

/* App-Layout: schmale Sidebar + Inhaltsbereich.
   min-width: 0 überall, sonst sprengt der Inhalt das Grid auf Mobile. */
.portal__visual,
.portal__copy { min-width: 0; }
.pv-app {
  display: flex;
  align-items: stretch;
}
.pv-side {
  width: 128px;
  flex-shrink: 0;
  padding: 14px 9px;
  background: var(--surface-0);
  border-right: 1px solid rgba(46, 52, 64, 0.07);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pv-side__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--neutral);
}
.pv-side__logo {
  width: 14px; height: 14px;
  border-radius: 5px;
  background: var(--primary);
  flex-shrink: 0;
}
.pv-side__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--neutral-soft);
  white-space: nowrap;
}
.pv-side__item svg { flex-shrink: 0; opacity: 0.75; }
.pv-side__item.is-active {
  background: var(--primary-soft);
  color: var(--neutral);
  font-weight: 600;
}
.pv-side__item.is-active svg { color: var(--primary); opacity: 1; }
.pv-side__badge {
  margin-left: auto;
  min-width: 15px; height: 15px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 8.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pv-main {
  flex: 1;
  min-width: 0;
  padding: 13px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Tabs */
.pv-tabs {
  display: flex;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(46, 52, 64, 0.08);
}
.pv-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--neutral-soft);
}
.pv-tab b {
  padding: 1px 5px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--neutral-soft);
  font-size: 8.5px;
  font-weight: 600;
}
.pv-tab.is-active { color: var(--neutral); font-weight: 600; }
.pv-tab.is-active b { background: var(--primary); color: white; }
.pv-tab.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -9px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}

/* Beispiel-Post-Karte */
.pv-card {
  border-radius: 14px;
  background: var(--surface-1);
  box-shadow: 0 6px 18px -10px rgba(46, 52, 64, 0.18);
}
.pv-post {
  display: flex;
  gap: 12px;
  padding: 12px;
}
.pv-post__photo {
  display: block;
  width: 78px; height: 78px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.pv-post__photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pv-post__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pv-post__caption {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--neutral);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pv-post__tags {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  color: var(--secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv-post__chips { display: flex; gap: 5px; margin-top: 1px; }
.pv-chip {
  padding: 2.5px 7px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--neutral-soft);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pv-post__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 10px;
  padding: 9px 12px;
  border-top: 1px solid rgba(46, 52, 64, 0.07);
}
.pv-post__time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--neutral-soft);
  white-space: nowrap;
  overflow: hidden;
}
.pv-post__actions { display: inline-flex; gap: 6px; flex-shrink: 0; }
.pv-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
}
.pv-btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 16px -6px rgba(232, 148, 90, 0.55);
}
.pv-btn--ghost {
  background: var(--surface-1);
  color: var(--neutral-soft);
  box-shadow: inset 0 0 0 1px rgba(46, 52, 64, 0.14);
}

/* Panel-Reihe: Kalender + Regler */
.pv-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pv-cal,
.pv-sliders {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface-1);
  box-shadow: 0 6px 18px -10px rgba(46, 52, 64, 0.18);
}
.pv-panel__label {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-soft);
}
.pv-cal__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-top: 9px;
}
.pv-cal__week span {
  text-align: center;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--neutral-muted);
}
.pv-cal__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-top: 4px;
}
.pv-cal__day {
  position: relative;
  height: 26px;
  border-radius: 7px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  color: var(--neutral-soft);
}
.pv-cal__day--dot::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 3px;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
}
.pv-cal__day--today {
  background: var(--primary);
  color: white;
  font-weight: 700;
}
.pv-sliders {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv-slider {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pv-slider__name {
  width: 104px;
  flex-shrink: 0;
  font-size: 9.5px;
  color: var(--neutral-soft);
  white-space: nowrap;
}
.pv-slider__track {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--surface-2);
}
.pv-slider__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--p, 50%);
  border-radius: 999px;
  background: rgba(232, 148, 90, 0.45);
}
.pv-slider__thumb {
  position: absolute;
  left: var(--p, 50%);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 2px white, 0 2px 6px -1px rgba(46, 52, 64, 0.35);
}

/* Schmale Screens: Sidebar nur Icons, Panels untereinander */
@media (max-width: 599px) {
  .pv-side { width: auto; padding: 14px 8px; }
  .pv-side__label { display: none; }
  .pv-side__brand { padding-left: 6px; }
  .pv-side__brand { font-size: 0; gap: 0; }
  .pv-side__badge { display: none; }
  .pv-panels { grid-template-columns: 1fr; }
  .pv-post__photo { width: 64px; height: 64px; }
}

/* -------------------------------------------------- FAQ */
.faq {
  padding: 80px 0 24px;
}
@media (min-width: 768px) { .faq { padding: 112px 0 32px; } }
.faq__intro {
  max-width: 680px;
  margin-bottom: 48px;
}
.faq__list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  border-radius: 16px;
  background: var(--surface-1);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.03),
              0 10px 30px -18px rgba(46, 52, 64, 0.15);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--neutral);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ''; }
.faq__q:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.faq__chev {
  flex-shrink: 0;
  color: var(--neutral-muted);
  transition: transform 0.25s var(--ease-out);
}
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a {
  margin: 0;
  padding: 0 22px 20px;
  max-width: 660px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--neutral-soft);
  text-wrap: pretty;
}

/* -------------------------------------------------- Final CTA */
.finalcta {
  padding: 80px 0;
}
@media (min-width: 768px) { .finalcta { padding: 96px 0; } }
.finalcta__card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 64px 32px;
  text-align: center;
  color: white;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-deep) 100%);
}
@media (min-width: 768px) {
  .finalcta__card { padding: 96px 64px; }
}
.finalcta__blob-1 {
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}
.finalcta__blob-2 {
  position: absolute;
  bottom: -128px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(232, 148, 90, 0.35), transparent 70%);
  pointer-events: none;
}
.finalcta__dots {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.finalcta__content { position: relative; }
.finalcta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.finalcta__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}
.finalcta__lede {
  margin: 20px auto 0;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}
@media (min-width: 768px) { .finalcta__lede { font-size: 19px; } }
.finalcta__ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.finalcta__fineprint {
  margin: 20px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* -------------------------------------------------- Footer */
.footer {
  padding: 40px 0 48px;
  background: var(--bg);
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface-1);
  color: var(--neutral);
  box-shadow: 0 1px 0 rgba(46, 52, 64, 0.03),
              0 6px 18px -10px rgba(46, 52, 64, 0.15);
}
.trust-badge svg { color: var(--primary); }
.footer__rule {
  margin: 40px auto;
  max-width: 140px;
  height: 1px;
  background: rgba(46, 52, 64, 0.08);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__brand .logo-mark { width: 24px; height: 24px; border-radius: 7px; }
.footer__brand .logo-mark::after { width: 8px; height: 8px; background: var(--bg); }
.footer__brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral);
}
.footer__copy {
  margin-left: 8px;
  font-size: 13px;
  color: var(--neutral-muted);
}
.footer__links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--neutral-soft);
}
.footer__links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer__tagline {
  font-size: 12px;
  color: var(--neutral-muted);
  text-align: center;
}

/* =========================================================================
   Contact Modal + Legal Modals
   ========================================================================= */
.contact-modal,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease-out);
}
.contact-modal.is-active,
.legal-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.contact-modal[hidden],
.legal-modal[hidden] { display: none; }

.contact-modal__overlay,
.legal-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 43, 45, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.contact-modal__box,
.legal-modal__box {
  position: relative;
  background: var(--surface-1);
  border-radius: 20px;
  box-shadow: 0 30px 80px -20px rgba(29, 43, 45, 0.35),
              0 8px 24px -8px rgba(29, 43, 45, 0.18);
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 32px 28px 28px;
  transform: translateY(14px) scale(0.98);
  transition: transform 240ms var(--ease-out);
}
.contact-modal.is-active .contact-modal__box,
.legal-modal.is-active .legal-modal__box {
  transform: translateY(0) scale(1);
}
.legal-modal__box { max-width: 680px; padding: 36px 32px; }

@media (min-width: 640px) {
  .contact-modal__box { padding: 40px 36px 32px; }
}

.contact-modal__close,
.legal-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  color: var(--neutral-soft);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}
.contact-modal__close:hover,
.legal-modal__close:hover {
  background: var(--surface-2);
  color: var(--neutral);
}

.contact-modal__head { margin-bottom: 20px; }
.contact-modal__title {
  margin: 0 0 6px;
  font-size: clamp(20px, 3.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--neutral);
}
.contact-modal__sub {
  margin: 0;
  font-size: 14px;
  color: var(--neutral-soft);
  line-height: 1.55;
}

/* Legal modal content */
.legal-modal__box h2 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral);
  letter-spacing: -0.01em;
}
.legal-modal__box h3 {
  margin: 18px 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral);
}
.legal-modal__box p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--neutral-soft);
}
.legal-modal__box a {
  color: var(--primary-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal-modal__box a:hover { color: var(--primary); }

.footer__legal-btn {
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  border: 0;
}
.footer__legal-btn:hover { opacity: 0.8; }
.footer__legal-btn[aria-disabled="true"] { cursor: default; opacity: 0.45; }

/* =========================================================================
   Contact Form
   ========================================================================= */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form.is-shaking { animation: form-shake 380ms var(--ease-out); }
@keyframes form-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 520px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-row--high { display: none; }
.contact-form[data-tier="high"] .form-row--high { display: grid; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.form-group .req { color: var(--primary-deep); font-weight: 600; }
.form-group .hint {
  font-size: 11px;
  font-weight: 400;
  color: var(--neutral-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  background: var(--surface-0);
  border: 1px solid rgba(46, 52, 64, 0.14);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 15px;
  font-family: inherit;
  color: var(--neutral);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface-1);
  box-shadow: 0 0 0 3px rgba(232, 148, 90, 0.18);
}
.form-group textarea { resize: vertical; min-height: 72px; }

.form-group.is-invalid input,
.form-group.is-invalid textarea {
  border-color: #D04C3E;
  background: rgba(208, 76, 62, 0.04);
}
.form-group.is-invalid input:focus,
.form-group.is-invalid textarea:focus {
  box-shadow: 0 0 0 3px rgba(208, 76, 62, 0.18);
}
.form-error {
  margin: 0;
  font-size: 12px;
  color: #B53A2D;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 160ms var(--ease-out), max-height 160ms var(--ease-out);
}
.form-error.is-visible { opacity: 1; max-height: 40px; }

.form-micro {
  margin: 0;
  font-size: 12px;
  color: var(--neutral-muted);
  line-height: 1.45;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface-0);
  border: 1px solid rgba(46, 52, 64, 0.10);
  border-radius: 10px;
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out);
}
.form-group--checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}
.form-group--checkbox label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--neutral-soft);
  font-weight: 400;
}
.form-group--checkbox.is-invalid {
  border-color: #D04C3E;
  background: rgba(208, 76, 62, 0.04);
}

.inline-link {
  background: transparent;
  padding: 0;
  font: inherit;
  color: var(--primary-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
}
.inline-link:hover { color: var(--primary); }

.form-submit {
  width: 100%;
  margin-top: 6px;
  position: relative;
}
.form-submit[disabled] { opacity: 0.7; cursor: progress; }
.form-submit__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: form-spin 720ms linear infinite;
}
.form-submit.is-loading .form-submit__spinner { display: inline-block; }
.form-submit.is-loading .form-submit__label { opacity: 0.7; }
@keyframes form-spin { to { transform: rotate(360deg); } }

.form-error-global {
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  color: #B53A2D;
  background: rgba(208, 76, 62, 0.08);
  border-radius: 8px;
}

.form-turnstile { min-height: 0; }
.form-turnstile[data-active] { min-height: 70px; }

/* Lock scroll when any modal open */
body.modal-open { overflow: hidden; }

/* -------------------------------------------------- Scroll Reveal
   JS (main.js) fügt `.reveal-pending` nur hinzu, wenn IntersectionObserver
   verfügbar ist und prefers-reduced-motion NICHT gesetzt ist — ohne JS bleibt
   alles sofort sichtbar. `--reveal-delay` staffelt Karten in Grids. */
.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-pending.is-revealed {
  opacity: 1;
  transform: none;
}

/* -------------------------------------------------- Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .logostrip__track { animation: none; }
  .fv-map__ring { display: none; }
  .pulse::before { display: none; }
  .contact-modal__box,
  .legal-modal__box { transform: none; }
}
