/* ============================================================
   style.css – Mityvo · Visual Redesign
   Niveau: Linear.app / Vercel / Clerk
   Farben: #0a0a0f (BG) · #6c63ff (Akzent) · #a78bfa (Soft)
   ============================================================ */

/* ── Custom Scrollbar ─────────────────────────────────────── */
* { scrollbar-width: thin; scrollbar-color: rgba(108,99,255,0.4) rgba(255,255,255,0.04); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); }
::-webkit-scrollbar-thumb { background: rgba(108,99,255,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(108,99,255,0.65); }

/* ── Design-Tokens ────────────────────────────────────────── */
:root {
  --bg:           #0a0a0f;
  --bg-s:         #0d0c16;          /* leicht hellerer BG für Sections */
  --accent:       #6c63ff;
  --accent-soft:  #a78bfa;
  --accent-dim:   rgba(108,99,255,0.12);
  --accent-glow:  rgba(108,99,255,0.25);
  --card-bg:      rgba(255,255,255,0.03);
  --card-border:  rgba(255,255,255,0.08);
  --card-hover-border: rgba(108,99,255,0.4);
  --text:         #ffffff;
  --text-muted:   #94a3b8;
  --text-dim:     #475569;
  --success:      #22c55e;
  --warning:      #f59e0b;
  --nav-h:        68px;
  --radius:       14px;
  --radius-lg:    18px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 700; }

/* Fokus-Ring in Akzentfarbe */
:focus-visible {
  outline: 2px solid rgba(108,99,255,0.75);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* Gradient-Headline-Akzent: weiß → lila */
.hero-headline-accent {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll-Animationen ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ── Section-Label Pills ──────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.4);
  padding: 4px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── Section Titles & Subs ────────────────────────────────── */
.section-title {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }

/* ── Section Divider: Gradient-Linie ─────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(108,99,255,0.2) 30%,
    rgba(108,99,255,0.2) 70%,
    transparent 100%);
}

/* ── Glassmorphism-Karten ─────────────────────────────────── */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(108,99,255,0.05);
  transition:
    border-color 0.3s var(--ease),
    box-shadow   0.3s var(--ease),
    transform    0.3s var(--ease);
}
.glass-card:hover {
  border-color: var(--card-hover-border);
  box-shadow:
    0 0 0 1px rgba(108,99,255,0.2),
    0 20px 50px rgba(108,99,255,0.12),
    0 0 60px rgba(108,99,255,0.04);
  transform: translateY(-4px);
}

/* ── Icon-Wrappers ────────────────────────────────────────── */
.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(108,99,255,0.12),
              inset 0 1px 0 rgba(255,255,255,0.05);
  flex-shrink: 0;
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.glass-card:hover .icon-wrap {
  background: rgba(108,99,255,0.16);
  box-shadow: 0 0 32px rgba(108,99,255,0.2),
              inset 0 1px 0 rgba(255,255,255,0.07);
}
.icon-wrap-lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Primary: Violett-Gradient mit inset-Glanz */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 1px 3px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 0 2px rgba(108,99,255,0.35),
    0 8px 28px rgba(108,99,255,0.35);
}
.btn-primary:active { transform: translateY(0); filter: brightness(1); }

/* Ghost: nur Border, füllt sich beim Hover */
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(108,99,255,0.1);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(108,99,255,0.4);
}
.btn-ghost:hover::before { opacity: 1; }

/* Größen-Variante */
.btn-lg { padding: 14px 30px; font-size: 15.5px; border-radius: var(--radius-lg); }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.badge-green  { background: rgba(34,197,94,0.1);  color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.badge-yellow { background: rgba(245,158,11,0.1); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.badge-purple { background: rgba(108,99,255,0.1); color: var(--accent-soft); border: 1px solid rgba(108,99,255,0.3); }

/* ════════════════════════════════════════════════════════════
   NAVIGATION – Frosted Glass, immer aktiv
   ════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,10,15,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.elevated { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.navbar .container,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo img { height: 32px; width: auto; display: block; }

/* Desktop-Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
/* Hover-Underline von links nach rechts */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s;
}
.nav-hamburger:hover span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile-Menü */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 0;
  z-index: 899;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
  display: block;
}
.nav-mobile-link:hover { color: var(--text); }
.nav-mobile .btn-primary {
  margin-top: 18px;
  justify-content: center;
  border: none;
  width: 100%;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg);
}

/* Partikel-Canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Subtile Gitter-Overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

/* Großer Radial-Glow hinter der Headline */
.hero-blob {
  position: absolute;
  width: 680px; height: 680px;
  top: 50%; left: 50%;
  transform: translate(-70%, -58%);
  background: radial-gradient(circle, rgba(108,99,255,0.3) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  from { transform: translate(-70%, -58%) scale(1); }
  to   { transform: translate(-65%, -52%) scale(1.06); }
}

/* Hero-Content-Container */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 72px;
  max-width: 820px;
}

/* Eyebrow Badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-soft);
  background: rgba(108,99,255,0.09);
  border: 1px solid rgba(108,99,255,0.35);
  padding: 5px 15px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: heroFadeUp 0.7s var(--ease) both;
  letter-spacing: 0.01em;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
  animation: pulse 2.5s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}

/* Headline: weißer → lila Gradient, sehr eng */
.hero-headline {
  font-size: clamp(40px, 6.8vw, 84px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 18px;
  animation: heroFadeUp 0.8s var(--ease) 0.12s both;
  background: linear-gradient(150deg, #ffffff 45%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Zweite Zeile bekommt stärkeren Gradient */
.hero-headline-accent {
  background: linear-gradient(135deg, #d4ccff 0%, var(--accent-soft) 60%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typing-Animation */
.hero-typing-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 26px;
  letter-spacing: -0.02em;
  animation: heroFadeUp 0.8s var(--ease) 0.22s both;
  min-height: 36px;
}
.hero-typing-prefix { color: var(--text-muted); flex-shrink: 0; }
.hero-typing-text {
  color: var(--accent-soft);
  font-weight: 700;
}
/* Blinkender Cursor */
.hero-cursor {
  display: inline-block;
  width: 2px; height: 1.1em;
  background: var(--accent-soft);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 1px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Subline */
.hero-subline {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 38px;
  animation: heroFadeUp 0.8s var(--ease) 0.32s both;
  font-weight: 400;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: heroFadeUp 0.8s var(--ease) 0.42s both;
}

/* Stat-Badges */
.hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s var(--ease) 0.50s both;
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 6px 13px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.hero-stat svg { flex-shrink: 0; }

/* Einblend-Animation für Hero-Elemente */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   PROBLEM
   ════════════════════════════════════════════════════════════ */
#problem {
  padding: 108px 0;
  background: var(--bg);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 18px;
}
.problem-card { padding: 34px 30px; }
.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 11px;
}
.problem-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.72;
}
.problem-card p em {
  color: var(--accent-soft);
  font-style: normal;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   PRODUKTE
   ════════════════════════════════════════════════════════════ */
#produkte {
  padding: 108px 0;
  background: var(--bg-s);
  position: relative;
}
/* Subtiler Section-Hintergrund-Glow */
#produkte::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(108,99,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.produkte-header { margin-bottom: 52px; }
.produkte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  position: relative;
}

.produkt-card {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
/* Featured-Karte: stärkerer Akzent-Rand + leichter Lila-Schimmer */
.produkt-card.featured {
  border-color: rgba(108,99,255,0.38);
  background: rgba(108,99,255,0.06);
  box-shadow:
    0 0 0 1px rgba(108,99,255,0.15),
    0 0 60px rgba(108,99,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.produkt-card.featured:hover {
  border-color: rgba(108,99,255,0.6);
  box-shadow:
    0 0 0 1px rgba(108,99,255,0.3),
    0 24px 60px rgba(108,99,255,0.18),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.produkt-card.dim { opacity: 0.68; }
.produkt-card.dim:hover { opacity: 0.88; }

.produkt-badge-wrap { margin-bottom: 20px; }

.produkt-card h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 11px;
}
.produkt-card > p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 20px;
}

/* Feature-Liste mit Dot-Separator */
.produkt-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.produkt-features li {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.produkt-features li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(108,99,255,0.6);
}

/* Preis */
.produkt-price {
  margin-top: auto;
  margin-bottom: 20px;
}
.produkt-price-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 3px;
}
.produkt-price-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.produkt-price-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.produkt-price-soon {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════
   INDIVIDUAL-SOFTWARE
   ════════════════════════════════════════════════════════════ */
#individual { padding: 108px 0; background: var(--bg); }

.individual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.individual-left .section-title { margin-bottom: 18px; }
.individual-left > p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 30px;
}

/* Checkliste */
.individual-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}
.individual-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
}
.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(108,99,255,0.14);
  border: 1px solid rgba(108,99,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  flex-shrink: 0;
  margin-top: 1px;
}
.individual-note {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 13px;
  letter-spacing: 0.01em;
}

/* Rechte Spalte – Tag-Cloud-Karte */
.individual-right { padding: 36px 32px; }
.individual-right h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.tag {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 6px 13px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.tag:hover {
  border-color: rgba(108,99,255,0.45);
  color: var(--accent-soft);
  background: rgba(108,99,255,0.07);
}
.tag.tag-cta {
  color: var(--accent-soft);
  border-color: rgba(108,99,255,0.38);
  background: rgba(108,99,255,0.08);
}

/* ════════════════════════════════════════════════════════════
   TRUST
   ════════════════════════════════════════════════════════════ */
#trust { padding: 108px 0; background: var(--bg-s); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card { padding: 30px 22px; text-align: center; }
.trust-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 9px;
}
.trust-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════ */
#cta {
  padding: 128px 0;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(108,99,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(108,99,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 14px;
  margin-top: 8px;
  background: linear-gradient(150deg, #ffffff 45%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 38px;
}
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dim);
}
.cta-badge svg { color: var(--success); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer {
  background: #070710;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 36px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.footer-logo img { height: 30px; width: auto; opacity: 0.8; }
.footer-logo:hover img { opacity: 1; }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13.5px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .individual-inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links, .navbar > .container > .btn-primary { display: none; }
  .navbar .btn-primary { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 56px 0 48px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }

  #problem, #produkte, #individual, #trust, #cta { padding: 80px 0; }

  .produkte-grid { grid-template-columns: 1fr; }
  .individual-right { padding: 26px 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 7px; }
  .cta-badges { flex-direction: column; align-items: center; gap: 12px; }
  .produkt-card { padding: 26px 22px; }
  .problem-card { padding: 26px 22px; }
}
