/* ============================================
   FindScout Landing Page – style.css
   ============================================ */

:root {
  --navy:      #0B1120;
  --navy-2:    #111827;
  --indigo:    #4F46E5;
  --indigo-h:  #4338CA;
  --indigo-l:  #EEF2FF;
  --cyan:      #06B6D4;
  --white:     #FFFFFF;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-300:  #D1D5DB;
  --gray-500:  #6B7280;
  --gray-700:  #374151;
  --gray-900:  #111827;
  --green:     #10B981;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--gray-900); background: #050a18; line-height: 1.6; overflow-x: hidden; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--gray-500); }

/* ── UTILITIES ── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section    { padding: 96px 0; }
.tag {
  display: inline-block;
  background: rgba(79,70,229,.15);
  color: #a5b4fc;
  border: 1px solid rgba(79,70,229,.3);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #2b308b 0%, #1a9fb2 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 0 15px rgba(26,159,178,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(26,159,178,.6);
}
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; margin-top: auto; }
.btn-indigo-outline { background: transparent; color: var(--indigo); border: 2px solid var(--indigo); }
.btn-indigo-outline:hover { background: var(--indigo); color: white; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1200px;

  /* Glassmorphism – sehr transparent, Mesh scheint durch */
  background: rgba(5, 10, 24, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  /* Pill-Form */
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 0 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  transition: background .4s, box-shadow .4s, border-color .4s;
}
nav.scrolled {
  background: rgba(5, 10, 24, 0.72);
  border-color: rgba(255,255,255,.13);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #4F46E5, #6366f1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(79,70,229,.45);
}
.nav-logo-icon .ti { display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.nav-logo-text { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.nav-logo-text span { color: #60A5FA; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: color .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Nav-spezifische Buttons */
.btn-nav-outline {
  padding: 8px 18px;
  font-size: .88rem;
  background: rgba(255,255,255,.05);
  color: white;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
}
.btn-nav-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.4);
}
.btn-nav-primary {
  padding: 8px 22px;
  font-size: .88rem;
  background: linear-gradient(135deg, #2b308b 0%, #1a9fb2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(26,159,178,.35);
}
.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26,159,178,.55);
}

/* ── HERO ── */
.hero {
  background-color: #050a18;
  background-image:
    radial-gradient(at 15% 20%, rgba(43,48,139,.28) 0px, transparent 50%),
    radial-gradient(at 85% 15%, rgba(26,159,178,.16) 0px, transparent 45%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
}
/* Hero: weiches Ausblenden nach unten → nahtlos zu Features */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #050a18);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 5%; right: 10%;
  width: 680px; height: 580px;
  background: radial-gradient(ellipse, rgba(79,70,229,.2) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-grid { position: relative; z-index: 1; }

/* ── HERO BUTTONS ── */
.btn-glow {
  box-shadow: 0 0 20px rgba(79,70,229,.5), 0 4px 24px rgba(79,70,229,.3);
}
.btn-glow:hover {
  box-shadow: 0 0 32px rgba(79,70,229,.7), 0 8px 32px rgba(79,70,229,.4);
}
.btn-glass {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-1px);
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 48px;
  width: 100%;
}
.hero-stat {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 18px 26px;
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 28px rgba(26,159,178,.18),
    0 0 60px rgba(26,159,178,.08),
    inset 0 1px 0 rgba(255,255,255,.18);
}
/* Lichtkante oben */
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  pointer-events: none;
}
.hero-stat-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: -.02em;
  text-shadow: 0 0 18px rgba(255,255,255,.45), 0 0 40px rgba(26,159,178,.3);
}
.hero-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.hero-stat-label .ti {
  font-size: .85rem;
  color: rgba(26,159,178,.9);
}

/* ── Wave Connector ── */
.wave-connector {
  flex: 0 0 72px;
  height: 44px;
  align-self: center;
  position: relative;
}
.wave-connector svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ── FLOATING CARDS – farbige Glows ── */

/* ── SPARKLE ── */
.hero-sparkle {
  position: absolute;
  bottom: 36px; right: 48px;
  width: 28px; height: 28px;
  z-index: 2;
  animation: sparkle-spin 6s linear infinite;
}
@keyframes sparkle-spin { to { transform: rotate(360deg); } }

/* ── FLOATING CARDS ── */
.float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: float-anim 4s ease-in-out infinite;
}
.float-card i { font-size: 1.4rem; }
.float-card:nth-child(1) { width:58px;height:58px; top:14%; right:18%; animation-delay:0s;   --fc-color:#6366f1; box-shadow: 0 0 20px rgba(99,102,241,.25); }
.float-card:nth-child(2) { width:52px;height:52px; top:22%; right:8%;  animation-delay:.8s;  --fc-color:#06b6d4; box-shadow: 0 0 20px rgba(6,182,212,.25); }
.float-card:nth-child(3) { width:64px;height:64px; top:42%; right:22%; animation-delay:1.4s; --fc-color:#8b5cf6; box-shadow: 0 0 24px rgba(139,92,246,.3); }
.float-card:nth-child(4) { width:50px;height:50px; top:62%; right:6%;  animation-delay:.4s;  --fc-color:#f59e0b; box-shadow: 0 0 20px rgba(245,158,11,.2); }
.float-card:nth-child(5) { width:54px;height:54px; top:75%; right:26%; animation-delay:2s;   --fc-color:#10b981; box-shadow: 0 0 20px rgba(16,185,129,.2); }
.float-card i { color: var(--fc-color); font-size: 1.5rem; }
@keyframes float-anim {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(2deg); }
  66%      { transform: translateY(-4px) rotate(-1deg); }
}
.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-tag {
  background: rgba(79,70,229,.15);
  color: #A5B4FC;
  border: 1px solid rgba(79,70,229,.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--cyan); }
.hero p { color: rgba(255,255,255,.6); font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO MOCKUP ── */
.hero-mockup { position: relative; z-index: 1; }
.mockup-window {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,.37), 0 0 40px rgba(26,159,178,.1);
}
.mockup-bar {
  background: #0F1729;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin-left: 8px;
}
.mockup-body { padding: 20px; }
.mockup-search {
  background: rgba(79,70,229,.08);
  border: 1.5px solid rgba(79,70,229,.5);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  box-shadow: 0 0 18px rgba(79,70,229,.2), inset 0 0 16px rgba(79,70,229,.04);
}
.mockup-search-icon { color: var(--indigo); }
.mockup-search-text { color: rgba(255,255,255,.5); font-size: .9rem; }
.mockup-search-cursor {
  display: inline-block;
  width: 2px; height: 16px;
  background: var(--indigo);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }
.mockup-results { display: flex; flex-direction: column; gap: 10px; }
.mockup-result {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.mockup-result-img { width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.mockup-result-info { flex: 1; }
.mockup-result-name { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 500; margin-bottom: 2px; }
.mockup-result-price { font-size: .82rem; color: var(--cyan); font-weight: 600; }
.mockup-result-badge { font-size: .68rem; padding: 2px 8px; border-radius: 100px; font-weight: 600; }
.badge-green { background: rgba(16,185,129,.15); color: #34D399; }
.mockup-result-cart {
  background: var(--indigo);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .78rem;
  cursor: pointer;
  font-weight: 600;
}

/* ── TRUST BADGES ── */
.trust-badges {
  background: transparent;
  padding: 28px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.trust-badges-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.trust-badge i { font-size: 1.1rem; color: #1a9fb2; }

/* ── FEATURES ── */
.features { background: #050a18; }
.features-intro { max-width: 640px; margin: 0 auto 64px; }
.features-intro h2 { color: var(--white); margin-bottom: 12px; }
.features-intro p  { color: rgba(255,255,255,.55); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26,159,178,.8), rgba(99,102,241,.8), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.feature-card:hover {
  box-shadow: 0 0 30px rgba(26,159,178,.12), 0 12px 40px rgba(0,0,0,.4);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.15);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(79,70,229,.18);
  border: 1px solid rgba(79,70,229,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #a5b4fc;
  margin-bottom: 14px;
  box-shadow: 0 0 14px rgba(79,70,229,.2);
}
.feature-icon i { font-size: 1.15rem; }
.feature-card h3 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.feature-card p  { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.55; }

.feature-neon-img {
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  object-fit: contain;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: .9;
}

/* ── COMPARISON ── */
.comparison {
  background: #050a18;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.comparison::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.comparison-intro { max-width: 640px; margin: 0 auto 64px; position: relative; z-index: 1; }
.comparison-intro h2 { color: var(--white); margin-bottom: 12px; }
.comparison-intro p  { color: rgba(255,255,255,.5); }

/* 3-spaltig: Labels | Andere | FindScout */
.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 220px 220px;
  gap: 0 12px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Spalten-Header ── */
.cmp-col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  border-radius: 20px 20px 0 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cmp-col-header.col-labels { align-items: flex-start; }
.cmp-col-header.col-other {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: none;
  color: rgba(255,255,255,.35);
}
.cmp-col-header.col-us {
  background: rgba(79,70,229,.12);
  border: 1px solid rgba(79,70,229,.4);
  border-bottom: none;
  color: white;
  position: relative;
}
.cmp-col-header.col-us::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(180deg, rgba(79,70,229,.5) 0%, transparent 100%);
  z-index: -1;
  filter: blur(12px);
}

/* Price row */
.cmp-price-row {
  display: contents;
}
.cmp-price-cell {
  padding: 16px 20px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
}
.cmp-price-cell.col-labels { text-align: left; padding-left: 0; }
.cmp-price-cell.col-other {
  background: rgba(255,255,255,.04);
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.3);
  text-decoration: line-through;
}
.cmp-price-cell.col-us {
  background: rgba(79,70,229,.1);
  border-left: 1px solid rgba(79,70,229,.4);
  border-right: 1px solid rgba(79,70,229,.4);
  color: white;
  font-size: 1.15rem;
}

/* Feature rows */
.cmp-row {
  display: contents;
}
.cmp-cell {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
}
.cmp-cell.col-labels {
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding-left: 0;
}
.cmp-cell.col-labels i { color: rgba(255,255,255,.35); font-size: 1rem; width: 20px; flex-shrink: 0; }
.cmp-cell.col-other {
  background: rgba(255,255,255,.03);
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  justify-content: center;
}
.cmp-cell.col-us {
  background: rgba(79,70,229,.07);
  border-left: 1px solid rgba(79,70,229,.35);
  border-right: 1px solid rgba(79,70,229,.35);
  justify-content: center;
}

/* Last row rounded bottom */
.cmp-row:last-of-type .cmp-cell.col-other {
  border-radius: 0 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cmp-row:last-of-type .cmp-cell.col-us {
  border-radius: 0 0 20px 20px;
  border-bottom: 1px solid rgba(79,70,229,.4);
}

/* FindScout column glow */
.cmp-cell.col-us, .cmp-price-cell.col-us, .cmp-col-header.col-us {
  box-shadow: 4px 0 20px rgba(79,70,229,.15), -4px 0 20px rgba(79,70,229,.15);
}

/* Icons */
.cmp-yes  { color: #34D399; font-size: 1.3rem; }
.cmp-no   { color: #F87171; font-size: 1.3rem; }
.cmp-part { color: rgba(255,255,255,.2); font-size: 1.3rem; }

/* CTA under table */
.cmp-cta { text-align: center; margin-top: 48px; position: relative; z-index: 1; }

/* ── DEMO ── */
.demo { background: #050a18; }
.demo h2 { color: var(--white); margin-bottom: 12px; }
.demo p.mt-4 { color: rgba(255,255,255,.55); }
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.demo-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.demo-feature { display: flex; gap: 14px; align-items: flex-start; }
.demo-feature-icon {
  width: 36px; height: 36px;
  background: rgba(79,70,229,.2);
  border: 1px solid rgba(79,70,229,.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #a5b4fc;
  box-shadow: 0 0 12px rgba(79,70,229,.2);
}
.demo-feature-icon i { font-size: 1rem; }
.demo-feature-text h4 { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.demo-feature-text p { font-size: .875rem; color: rgba(255,255,255,.5); }
.demo-visual { background: var(--navy); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-lg); }
.demo-filter-section { margin-bottom: 20px; }
.demo-filter-title { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.demo-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.demo-chip { padding: 5px 12px; border-radius: 100px; font-size: .78rem; font-weight: 500; cursor: pointer; transition: all .2s; }
.chip-active { background: var(--indigo); color: white; }
.chip-inactive { background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.1); }
.demo-avail { display: flex; align-items: center; gap: 8px; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #10B981; }
.dot-red   { background: #EF4444; }
.demo-avail-label { font-size: .82rem; color: rgba(255,255,255,.6); }
.slider-track { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; position: relative; margin: 12px 0; }
.slider-fill { position: absolute; left: 10%; right: 30%; height: 100%; background: linear-gradient(90deg, var(--indigo), var(--cyan)); border-radius: 2px; }
.slider-labels { display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.35); }

/* ── PRICING ── */
.pricing { background: #050a18; }
.pricing .container { max-width: 1260px; }
.pricing h2 { color: var(--white); margin-bottom: 12px; }
.pricing p.mt-4 { color: rgba(255,255,255,.55); }

/* ── 4-col default (≥993px) — Free | Starter | Plus | Pro ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: 0 0 30px rgba(26,159,178,.12), 0 12px 40px rgba(0,0,0,.4);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.15);
}
.pricing-card.popular {
  border: 2px solid rgba(79,70,229,.7);
  background: rgba(79,70,229,.10);
  box-shadow: 0 0 60px rgba(79,70,229,.22), 0 0 120px rgba(79,70,229,.07);
  transform: translateY(-6px);
}
.pricing-card.popular:hover {
  box-shadow: 0 0 80px rgba(79,70,229,.30), 0 0 140px rgba(79,70,229,.10), 0 12px 40px rgba(0,0,0,.4);
  transform: translateY(-9px);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4F46E5, #1a9fb2);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(79,70,229,.4);
}
.pricing-name { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.pricing-price { font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 1.1rem; vertical-align: super; }
.pricing-period { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.pricing-desc { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 22px; min-height: 44px; }
.pricing-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 22px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.4; }
.pricing-features li i { color: #1a9fb2; font-size: .95rem; flex-shrink: 0; margin-top: 1px; }
.pricing-card .btn-full { margin-top: auto; }

/* Feature-Vererbungs-Separator
   ─ KEIN border-top: der .pricing-divider direkt davor ist bereits der Trenner.
     Zwei Linien hintereinander (22px Abstand) sahen abgeschnitten aus.
   ─ border-bottom stattdessen: trennt logisch "enthält alles aus X" von den neuen Features darunter.
*/
.pricing-feature-inherit {
  align-items: center !important;
  gap: 7px !important;
  font-size: .62rem !important;
  font-weight: 700;
  color: rgba(255,255,255,.2) !important;
  text-transform: uppercase;
  letter-spacing: .13em;
  padding: 2px 0 11px !important;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-top: 0 !important;
  margin-bottom: 3px !important;
}
.pricing-feature-inherit i {
  color: rgba(255,255,255,.16) !important;
  font-size: .64rem !important;
  margin-top: 0 !important;
  line-height: 1;
  flex-shrink: 0;
}

/* ── PRICING TOGGLE ── */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.pricing-toggle-label {
  font-size: .925rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.pricing-toggle-label.active { color: var(--white); }
.pricing-save-badge {
  background: rgba(16,185,129,.15);
  color: #34d399;
  border: 1px solid rgba(16,185,129,.25);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--indigo);
  border-radius: 100px;
  transition: background .2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 4px; top: 4px;
  background: white;
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

/* ── PRICING BREAKPOINT: 4 → 2 Spalten (≤992px) ist inline im 992px-Block ── */

/* ── ENTERPRISE PANEL ── */
.enterprise-panel {
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.enterprise-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(79,70,229,.07) 0%, transparent 60%);
  pointer-events: none;
}
.enterprise-panel__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.enterprise-panel__tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: #a5b4fc;
  background: rgba(79,70,229,.14);
  border: 1px solid rgba(79,70,229,.22);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.enterprise-panel__title {
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px; line-height: 1.3;
}
.enterprise-panel__desc {
  font-size: .9rem; color: rgba(255,255,255,.45);
  margin-bottom: 20px; max-width: 460px; line-height: 1.65;
}
.enterprise-panel__features {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px 28px;
}
.enterprise-panel__features li {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.enterprise-panel__features li i { color: #1a9fb2; font-size: .85rem; flex-shrink: 0; }
.enterprise-panel__right {
  text-align: center;
  min-width: 210px;
}
.enterprise-panel__cta-note {
  font-size: .85rem; color: rgba(255,255,255,.38);
  margin-bottom: 18px; line-height: 1.55; max-width: 210px; margin-left: auto; margin-right: auto;
}
.enterprise-panel__cta { padding: 14px 28px; font-size: 1rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.enterprise-panel__sub { font-size: .72rem; color: rgba(255,255,255,.22); margin-top: 12px; }

/* ── DSGVO SECTION ── */
.dsgvo-section {
  background: #050a18;
  padding: 72px 0;
}
.dsgvo-section h2 { color: var(--white); margin-bottom: 12px; }
.dsgvo-section p.mt-4 { color: rgba(255,255,255,.55); }
.dsgvo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dsgvo-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.dsgvo-badge-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .25s;
}
.dsgvo-badge-card:hover { border-color: rgba(255,255,255,.15); }
.dsgvo-badge-icon {
  width: 40px; height: 40px;
  background: rgba(79,70,229,.18);
  border: 1px solid rgba(79,70,229,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  font-size: 1.1rem;
  box-shadow: 0 0 12px rgba(79,70,229,.15);
}
.dsgvo-badge-card h4 { font-size: .9rem; font-weight: 700; color: var(--white); }
.dsgvo-badge-card p  { font-size: .8rem; color: rgba(255,255,255,.45); margin: 0; }
.dsgvo-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 0 40px rgba(26,159,178,.06), 0 12px 40px rgba(0,0,0,.3);
}
.dsgvo-visual-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dsgvo-visual-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #4F46E5, #1a9fb2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(79,70,229,.35);
}
.dsgvo-visual-title { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.dsgvo-visual-sub { font-size: .8rem; color: rgba(255,255,255,.4); }
.dsgvo-check-list { display: flex; flex-direction: column; gap: 12px; }
.dsgvo-check-item { display: flex; align-items: flex-start; gap: 10px; }
.dsgvo-check-item i { color: #34d399; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.dsgvo-check-item span { font-size: .875rem; color: rgba(255,255,255,.65); }

/* ── FAQ ── */
.faq { background: #050a18; }
.faq-intro { max-width: 640px; margin: 0 auto 56px; }
.faq-intro h2 { color: var(--white); margin-bottom: 12px; }
.faq-intro p  { color: rgba(255,255,255,.55); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover { box-shadow: 0 0 20px rgba(26,159,178,.08); border-color: rgba(255,255,255,.14); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: .975rem;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  font-family: 'Inter', sans-serif;
}
.faq-question i { color: #1a9fb2; transition: transform .3s; flex-shrink: 0; font-size: 1.1rem; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-item.open { border-color: rgba(26,159,178,.2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-answer p { font-size: .9rem; color: rgba(255,255,255,.5); padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: #050a18;
  padding: 100px 24px 140px;
  text-align: center;
  position: relative;
  overflow: visible;
}
/* Atmosphärischer Indigo-Glow – ragt nach oben in FAQ-Sektion */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 1400px; height: 800px;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(99,102,241,.28) 0%,
      rgba(79,70,229,.10) 50%,
      transparent 75%);
  pointer-events: none;
  z-index: 0;
}
/* Unterer Fade – dämpft den Indigo-Glow zum Footer hin */
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(5,10,24,.55) 50%,
    #050a18 100%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow:
    0 0 30px rgba(99,102,241,.6),
    0 0 80px rgba(99,102,241,.25);
}
.cta-banner p  { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   HORIZON GLOW
══════════════════════════════════════ */
.horizon-glow {
  position: relative;
  height: 84px;
  background: transparent;
  line-height: 0;
  font-size: 0;
  overflow: visible;
  pointer-events: none;
}

/* Breathing-Animation */
.hg-main, .hg-ridge, .hg-peak {
  animation: hg-breathe 4s ease-in-out infinite;
}
.hg-ridge { animation-delay: .15s; }
.hg-peak  { animation-delay: .1s;  }

@keyframes hg-breathe {
  0%, 100% { opacity: .75; }
  50%       { opacity: 1;   }
}

/* ══════════════════════════════════════
   PREMIUM FOOTER
══════════════════════════════════════ */
.pf {
  background: #050a18;
  background-image:
    radial-gradient(ellipse at 15% 75%, rgba(43,48,139,.28) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(26,159,178,.10) 0%, transparent 45%);
  position: relative;
  overflow: hidden;
  padding: 70px 24px 0;
  color: #fff;
}

.pf-inner {
  position: relative;
  z-index: 3;
}

/* Canvas Partikel-Netz */
.pf-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.pf-bg-glow-left {
  position: absolute;
  top: 20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,.12) 0%, transparent 65%);
  pointer-events: none;
}
.pf-bg-glow-right {
  position: absolute;
  bottom: 10%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,159,178,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Floating Glass Icons */
.pf-icon {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
  animation: pf-float 5s ease-in-out infinite;
}
.pf-icon .ti { font-size: inherit; line-height: 1; }

.pf-icon-link {
  width: 72px; height: 72px; font-size: 2rem;
  top: 60px; right: 120px;
  background: rgba(236,72,153,.1);
  border: 1px solid rgba(236,72,153,.3);
  color: #f472b6;
  box-shadow: 0 0 30px rgba(236,72,153,.25), inset 0 1px 0 rgba(255,255,255,.1);
  animation-duration: 4.5s;
}
.pf-icon-sliders {
  width: 80px; height: 80px; font-size: 2.2rem;
  bottom: 100px; left: 300px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.3);
  color: #818cf8;
  box-shadow: 0 0 30px rgba(99,102,241,.25), inset 0 1px 0 rgba(255,255,255,.1);
  animation-duration: 6s; animation-direction: reverse;
}
.pf-icon-globe {
  width: 68px; height: 68px; font-size: 1.9rem;
  bottom: 80px; right: 380px;
  background: rgba(26,159,178,.1);
  border: 1px solid rgba(26,159,178,.3);
  color: #22d3ee;
  box-shadow: 0 0 30px rgba(26,159,178,.25), inset 0 1px 0 rgba(255,255,255,.1);
  animation-duration: 5.5s;
}
@keyframes pf-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Glints */
.pf-glint {
  position: absolute;
  pointer-events: none;
  animation: pf-glint-pulse 3s ease-in-out infinite;
}
.pf-glint-1 { width: 22px; height: 22px; bottom: 60px; right: 60px; animation-delay: 0s; }
.pf-glint-2 { width: 14px; height: 14px; bottom: 90px; right: 95px; animation-delay: 1.5s; }
@keyframes pf-glint-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.2); }
}

/* Inner Layout */
.pf-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 2;
}

/* Brand */
.pf-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 260px;
}
.pf-logo-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.pf-logo-text {
  font-size: 1.2rem; font-weight: 700;
  color: #fff; letter-spacing: -.02em;
}
.pf-logo-text span { color: #22d3ee; }

/* Columns */
.pf-col h4 {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.pf-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pf-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .25s, padding-left .25s;
  display: inline-block;
}
.pf-col a:hover {
  color: #22d3ee;
  padding-left: 5px;
}
.pf-link-glow {
  color: rgba(26,159,178,.8) !important;
}
.pf-link-glow:hover {
  color: #22d3ee !important;
  text-shadow: 0 0 10px rgba(26,159,178,.5);
}

/* Bottom Bar */
.pf-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 12px;
  position: relative; z-index: 2;
}
.pf-bottom strong { color: rgba(255,255,255,.5); font-weight: 600; }

/* Made in Germany */
.pf-mig {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 7px 14px;
  backdrop-filter: blur(6px);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.pf-flag {
  width: 26px; height: 18px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,.5);
  display: flex; flex-direction: column;
}
.pf-flag div { flex: 1; }
.pf-flag div:nth-child(1) { background: #000; }
.pf-flag div:nth-child(2) { background: #DD0000; }
.pf-flag div:nth-child(3) { background: #FFCE00; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 120px 24px 96px;
  min-height: 80vh;
}
.legal-page .legal-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 48px 56px;
}
.legal-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.legal-page .legal-meta {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.legal-page h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 10px;
  padding-left: 14px;
  border-left: 3px solid #1a9fb2;
}
.legal-page p {
  font-size: .925rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
  line-height: 1.75;
}
.legal-page ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.legal-page ul li {
  font-size: .925rem;
  color: rgba(255,255,255,.55);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.legal-page ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #1a9fb2;
}
.legal-page a { color: #22d3ee; text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-page .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 10px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
}
.legal-page .legal-back:hover {
  background: rgba(255,255,255,.09);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .legal-page { padding: 90px 16px 64px; }
  .legal-page .legal-wrap { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .legal-page .legal-wrap { padding: 20px 16px; border-radius: 14px; }
}

/* ══════════════════════════════════════
   HAMBURGER NAV
══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.nav-hamburger:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: all .28s ease;
  transform-origin: center;
}
/* X-Animation beim Öffnen */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Dropdown ── */
.nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  background: rgba(5,10,24,.98);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 8px 12px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  z-index: 99;
}
.nav-mobile.open {
  display: block;
  animation: mobile-menu-in .22s ease forwards;
}
@keyframes mobile-menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile ul { list-style: none; display: flex; flex-direction: column; }
.nav-mobile ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .18s, color .18s;
}
.nav-mobile ul li:last-child a { border-bottom: none; }
.nav-mobile ul li a:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
/* Icons in Mobile Links */
.nav-mobile ul li a .ti {
  font-size: 1rem;
  color: #1a9fb2;
  flex-shrink: 0;
}
/* CTA-Button im Mobile Menü */
.nav-mobile ul li a.btn-nav-primary {
  margin-top: 8px;
  justify-content: center;
  border-bottom: none;
  border-radius: 10px;
  padding: 12px;
}
.nav-mobile ul li a.btn-nav-primary .ti {
  color: white;
}

/* ══════════════════════════════════════
   RESPONSIVE — 992px (Tablets Landscape)
   Medium devices: landscape tablets
══════════════════════════════════════ */
@media (max-width: 992px) {

  /* Features: 3 → 2 Spalten */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Pricing: 4 → 2 Spalten (Free|Starter // Plus|Pro) */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pricing-card { padding: 28px 22px; }
  /* Popular-Card: Tablet-Anhebung reduzieren — -6px wirkt im 2er-Grid asymmetrisch */
  .pricing-card.popular { transform: translateY(-3px); }
  .pricing-card.popular:hover { transform: translateY(-5px); }

  /* Enterprise Panel: schmalere Gap */
  .enterprise-panel { padding: 36px 40px; }
  .enterprise-panel__inner { gap: 36px; }

  /* DSGVO: 2 → 1 Spalte */
  .dsgvo-inner  { grid-template-columns: 1fr; gap: 40px; }
  .dsgvo-badges { grid-template-columns: 1fr 1fr; }

  /* Footer: 4 → 3 Spalten */
  .pf-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px 32px; }
  .pf-brand { grid-column: 1 / -1; }

  /* Floating Footer-Icons ausblenden */
  .pf-icon { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 768px (Tablets Portrait / große Phones)
   Small devices: portrait tablets and large phones
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav – Hamburger */
  .nav-links     { display: none; }
  .nav-cta       { display: none; }
  .nav-hamburger { display: flex; }

  /* Nav – kompakter auf Mobile */
  nav {
    top: 10px;
    width: calc(100% - 32px);
    border-radius: 14px;
    padding: 0 16px;
  }
  .nav-inner { height: 56px; }

  /* Float-Cards & Sparkle auf Mobile ausblenden */
  .float-cards  { display: none; }
  .hero-sparkle { display: none; }

  /* Hero kein right-overflow */
  .hero::before { right: -5%; width: 300px; height: 250px; }

  /* Section spacing */
  .section { padding: 64px 0; }

  /* Hero */
  .hero { padding: 110px 20px 60px; text-align: center; overflow: hidden; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; max-width: 100%; }
  .hero-mockup { display: none; }
  .hero-btns { justify-content: center; }
  .hero-tag { margin: 0 auto 16px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero p { font-size: 1rem; max-width: 100%; }

  /* Hero Stats – Wave Connectors weg, Stats nebeneinander */
  .hero-stats { justify-content: center; gap: 10px; flex-wrap: wrap; }
  .wave-connector { display: none; }
  .hero-stat { flex: 1 1 120px; min-width: 100px; max-width: 160px; padding: 14px 12px; }
  .hero-stat-num { font-size: 1.25rem; }
  .hero-stat-label { font-size: .65rem; }

  /* Trust Badges */
  .trust-badges-inner { gap: 12px 20px; justify-content: flex-start; padding: 0 20px; }
  .trust-badge { font-size: .82rem; }

  /* Features: 2 Spalten */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Comparison – Label-Spalte weg, nur 2 Spalten */
  .cmp-grid { grid-template-columns: 1fr 1fr; gap: 0 8px; max-width: 100%; }
  .col-labels { display: none !important; }
  .cmp-col-header, .cmp-price-cell, .cmp-cell { font-size: .82rem; padding: 12px 14px; }

  /* Demo */
  .demo-inner { grid-template-columns: 1fr; gap: 40px; }
  .demo-visual { max-width: 100%; }

  /* Pricing: 1 Spalte — Pro zuerst, dann Free, Starter, Plus */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 40px auto 0; }
  .pricing-card.popular { grid-column: auto; max-width: none; margin: 0; transform: none; }
  .pricing-card.popular:hover { transform: translateY(-3px); }
  .plan-pro     { order: 1; }
  .plan-free    { order: 2; }
  .plan-starter { order: 3; }
  .plan-plus    { order: 4; }

  /* Enterprise Panel: vertikal */
  .enterprise-panel { padding: 28px 24px; margin-top: 24px; }
  .enterprise-panel__inner { grid-template-columns: 1fr; gap: 28px; }
  .enterprise-panel__right { text-align: left; }
  .enterprise-panel__cta-note { margin-left: 0; margin-right: 0; max-width: none; }
  .enterprise-panel__cta { width: 100%; justify-content: center; }
  .enterprise-panel__features { gap: 8px 20px; }
  .enterprise-panel__desc { max-width: none; }

  /* DSGVO */
  .dsgvo-section { padding: 56px 0; }

  /* CTA */
  .cta-banner { padding: 80px 20px 110px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .pf { padding: 50px 20px 0; }
  .pf-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .pf-brand { grid-column: 1 / -1; }
  .pf-glint { display: none; }
  .pf-canvas { display: none; }
  .pf-bg-glow-left, .pf-bg-glow-right { display: none; }
  .pf-bottom { flex-direction: column; text-align: center; gap: 12px; padding: 20px 0 28px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 600px (Kleine Phones)
   Extra small devices: phones 600px and down
══════════════════════════════════════ */
@media (max-width: 600px) {

  /* Hero */
  .hero { padding: 100px 16px 50px; }
  .hero-stats { gap: 8px; }
  .hero-stat { flex: 1 1 calc(50% - 8px); max-width: none; padding: 12px 10px; }
  .hero-stat-num { font-size: 1.1rem; }

  /* Features: 1 Spalte */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px 18px; }

  /* Trust Badges */
  .trust-badge { font-size: .78rem; }
  .trust-badges-inner { gap: 10px 16px; }

  /* Comparison */
  .cmp-grid { gap: 0 6px; }
  .cmp-col-header { font-size: .7rem; padding: 12px 8px; }
  .cmp-price-cell { font-size: .78rem; padding: 10px 8px; }
  .cmp-cell { padding: 9px 8px; }
  .cmp-yes, .cmp-no, .cmp-part { font-size: 1.1rem; }

  /* Demo */
  .demo-visual { padding: 18px 16px; }
  .demo-chip { font-size: .72rem; padding: 4px 10px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 22px 18px; }
  .pricing-price { font-size: 2rem; }

  /* Enterprise Panel */
  .enterprise-panel { padding: 24px 18px; }
  .enterprise-panel__title { font-size: 1.15rem; }
  .enterprise-panel__features { gap: 6px 16px; }
  .enterprise-panel__features li { font-size: .82rem; }

  /* DSGVO */
  .dsgvo-badges { grid-template-columns: 1fr; }
  .dsgvo-visual { padding: 24px 20px; }

  /* FAQ */
  .faq-question { font-size: .9rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }

  /* CTA */
  .cta-banner { padding: 64px 16px 90px; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Footer */
  .pf-inner { grid-template-columns: 1fr; }
  .pf-col h4 { margin-bottom: 12px; }
  .pf-bottom { font-size: .75rem; }
  .pf-mig { font-size: .75rem; }
}

/* ══════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════ */
#fs-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 820px;
  z-index: 9999;
  background: rgba(8, 14, 32, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow:
    0 24px 64px rgba(0,0,0,.6),
    0 0 0 1px rgba(26,159,178,.08),
    inset 0 1px 0 rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 20px;
  animation: cookie-slide-up .35s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes cookie-slide-up {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#fs-cookie-banner.fs-cookie-hide {
  animation: cookie-slide-down .25s ease forwards;
}
@keyframes cookie-slide-down {
  to { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.fs-cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  opacity: .85;
}
.fs-cookie-text {
  flex: 1;
  min-width: 0;
}
.fs-cookie-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.fs-cookie-text p {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin: 0;
}
.fs-cookie-text a {
  color: #22d3ee;
  text-decoration: none;
}
.fs-cookie-text a:hover { text-decoration: underline; }

.fs-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.fs-cookie-btn {
  padding: 9px 20px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}
.fs-cookie-accept {
  background: linear-gradient(135deg, #2b308b, #1a9fb2);
  color: #fff;
  box-shadow: 0 0 16px rgba(26,159,178,.3);
}
.fs-cookie-accept:hover {
  box-shadow: 0 0 24px rgba(26,159,178,.5);
  transform: translateY(-1px);
}
.fs-cookie-decline {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.1);
}
.fs-cookie-decline:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

@media (max-width: 600px) {
  #fs-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
  .fs-cookie-actions { width: 100%; }
  .fs-cookie-btn { flex: 1; text-align: center; }
  .fs-cookie-icon { display: none; }
}

/* ══════════════════════════════════════
   ICON FONT UTILS
══════════════════════════════════════ */
.ti { font-size: inherit; line-height: inherit; }

/* ══════════════════════════════════════
   HORIZON GLOW – SVG fix
══════════════════════════════════════ */
.horizon-glow svg { width: 100%; height: 100%; display: block; }

/* ══════════════════════════════════════
   404 PAGE
══════════════════════════════════════ */
.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: #050a18;
  position: relative;
  overflow: hidden;
}
.error-bg-glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at 50% 50%, rgba(79,70,229,.2) 0%, transparent 70%);
  pointer-events: none;
}
.error-content { position: relative; z-index: 1; max-width: 560px; }
.error-number {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #4F46E5, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}
.error-tag { margin-bottom: 24px; }
.error-title { color: #fff; font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 16px; }
.error-text { color: rgba(255,255,255,.5); font-size: 1rem; margin-bottom: 40px; line-height: 1.7; }
.error-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.error-quicklinks { margin-top: 56px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.error-quicklink {
  padding: 7px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .85rem;
  transition: all .2s;
}
.error-quicklink:hover { color: #fff; background: rgba(255,255,255,.09); }

/* ══════════════════════════════════════
   INDEX PAGE UTILITIES
══════════════════════════════════════ */
.mockup-result-img--indigo { background: linear-gradient(135deg,#6366f1,#8b5cf6); }
.mockup-result-img--cyan   { background: linear-gradient(135deg,#06b6d4,#3b82f6); }
.mockup-result-img--amber  { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.tag--indigo { background: rgba(79,70,229,.2); color: #A5B4FC; border: 1px solid rgba(79,70,229,.3); }
.icon-danger { color: #F87171; margin-right: 6px; }
.pricing-yearly-note { display: none; font-size: .8rem; color: var(--green); font-weight: 600; margin-bottom: 8px; }
.pricing-price--enquiry { font-size: 2rem; }
.link-cyan { color: #22d3ee; }
.cta-inner { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   LEGAL PAGE UTILITIES
══════════════════════════════════════ */
.container--narrow { max-width: 800px; }
.text-white-em { color: #fff; }
.text-semi { color: rgba(255,255,255,.7); }
