/* ============================================================
   Sveov – Webagentur für kleine Unternehmen
   Design-System: dunkel, minimalistisch, große Typografie
   (inspiriert von apple.com & vexity.net)
   ============================================================ */

:root {
  --bg: #050506;
  --bg-elev: #0c0c0f;
  --panel: #111114;
  --panel-2: #16161a;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f5f5f7;
  --text-soft: #c9c9d1;
  --muted: #86868b;
  --accent: #2997ff;
  --accent-soft: #7db4ff;
  --violet: #8b5cf6;
  --gradient: linear-gradient(120deg, #2997ff 0%, #7db4ff 45%, #8b5cf6 100%);
  --gradient-btn: linear-gradient(135deg, #0a84ff, #3b8eff);
  --success: #30d158;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 60px rgba(41, 151, 255, 0.18);
  --font: "Inter", "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --mono: "Geist Mono", "Roboto Mono", "Cascadia Code", Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-soft);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(41, 151, 255, 0.35); color: #fff; }

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.02em; }

p + p { margin-top: 0.9em; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.2em; }

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section.alt { background: var(--bg-elev); }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; font-size: 1.12rem; color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 8px 28px rgba(10, 132, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(10, 132, 255, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.08); }
.btn-light {
  background: #f5f5f7;
  color: #0c0c0f;
}
.btn-light:hover { transform: translateY(-2px); background: #fff; }
.btn-sm { padding: 0.5rem 1.15rem; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 6, 0.65);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(5, 5, 6, 0.82);
  border-color: var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none !important;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  margin-right: 0.6rem;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(10, 132, 255, 0.4);
}
.brand-dot { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.main-nav a:not(.btn) {
  color: rgba(245, 245, 247, 0.75);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.main-nav a:not(.btn):hover { color: #fff; }
.main-nav a.active { color: #fff; font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero (zentriert, Apple-Stil) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 80%;
  background:
    radial-gradient(560px 340px at 50% 0%, rgba(41, 151, 255, 0.16), transparent 65%),
    radial-gradient(800px 420px at 78% 18%, rgba(139, 92, 246, 0.10), transparent 60%),
    radial-gradient(700px 380px at 20% 22%, rgba(10, 132, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.hero > .container { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-soft);
  backdrop-filter: blur(8px);
  margin-bottom: 1.8rem;
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(48, 209, 88, 0.8);
}
.hero h1 { max-width: 17ch; margin-inline: auto; }
.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  margin: 1.4rem auto 0;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  margin-top: 3rem;
}
.hero-stats strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stats span { font-size: 0.86rem; color: var(--muted); }

.hero-visual {
  position: relative;
  max-width: 880px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% -6% -12%;
  background: radial-gradient(60% 60% at 50% 55%, rgba(41, 151, 255, 0.22), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* Browser-Mockup */
.browser {
  position: relative;
  background: #0e0e12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), var(--shadow-glow);
  overflow: hidden;
  text-align: left;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line-soft);
}
.browser-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.browser-bar i:nth-child(1) { background: #ff5f57; }
.browser-bar i:nth-child(2) { background: #febc2e; }
.browser-bar i:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  max-width: 320px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  padding: 0.22rem 0.9rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
.browser-body { padding: 1.4rem; }

/* Hero-Mockup-Inhalt */
.hero-mock .mock-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.hero-mock .mock-logo {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--gradient-btn);
}
.hero-mock .mock-nav span {
  width: 42px; height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-mock .mock-nav span:first-of-type { margin-left: auto; }
.hero-mock .mock-hero {
  border-radius: var(--radius-sm);
  background:
    radial-gradient(300px 140px at 20% 0%, rgba(41, 151, 255, 0.25), transparent 70%),
    radial-gradient(300px 160px at 90% 100%, rgba(139, 92, 246, 0.2), transparent 70%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  padding: 1.6rem;
  margin-bottom: 1.1rem;
}
.hero-mock .mock-hero b {
  display: block;
  width: 55%; height: 13px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.65rem;
}
.hero-mock .mock-hero i {
  display: block;
  width: 38%; height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 1.1rem;
}
.hero-mock .mock-cta {
  display: inline-block;
  width: 88px; height: 26px;
  border-radius: 999px;
  background: var(--gradient-btn);
  box-shadow: 0 6px 18px rgba(10, 132, 255, 0.45);
}
.hero-mock .mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.hero-mock .mock-cards div {
  height: 68px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}
.hero-mock .mock-cards div::before {
  content: "";
  position: absolute;
  inset: 11px 11px auto 11px;
  height: 19px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(41, 151, 255, 0.3), rgba(139, 92, 246, 0.3));
}
.hero-mock .mock-cards div::after {
  content: "";
  position: absolute;
  inset: auto 26px 11px 11px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

/* Schwebende Chips am Hero-Mockup */
.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(22, 22, 26, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.chip-1 { top: -18px; right: 4%; animation-delay: 0s; }
.chip-2 { bottom: -16px; left: 2%; animation-delay: 2.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Karten & Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }

.card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--panel-2);
}
.card h3 { margin: 1.2rem 0 0.5rem; }
.card p { font-size: 0.96rem; color: var(--muted); }

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(41, 151, 255, 0.12);
  border: 1px solid rgba(41, 151, 255, 0.2);
  color: var(--accent-soft);
}
.icon-badge svg { width: 22px; height: 22px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--accent);
}

/* ---------- Checkliste ---------- */
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-soft);
}
.checklist li strong { color: var(--text); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(48, 209, 88, 0.12) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2330d158" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / 11px no-repeat;
  border: 1px solid rgba(48, 209, 88, 0.25);
}

/* ---------- Prozess-Schritte ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.7rem;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 18px rgba(10, 132, 255, 0.35);
}
.step h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.91rem; color: var(--muted); }

/* ---------- Referenzen / Showcase ---------- */
.project-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.18); }

.mock {
  --mock-a: #2997ff;
  --mock-b: #8b5cf6;
  background:
    radial-gradient(120% 100% at 50% 0%, color-mix(in srgb, var(--mock-a) 16%, transparent), transparent 70%),
    var(--bg-elev);
  padding: 1.2rem 1.2rem 0;
}
.mock-frame {
  background: #131317;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.mock-topbar {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line-soft);
}
.mock-topbar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.mock-page { padding: 12px; }
.mock-page .m-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.mock-page .m-logo {
  width: 17px; height: 17px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--mock-a), var(--mock-b));
}
.mock-page .m-nav span { width: 24px; height: 4px; border-radius: 3px; background: rgba(255, 255, 255, 0.14); }
.mock-page .m-nav span:first-of-type { margin-left: auto; }
.mock-page .m-hero {
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mock-a), var(--mock-b));
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.mock-page .m-hero::before {
  content: "";
  position: absolute;
  left: 12px; top: 17px;
  width: 45%; height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
}
.mock-page .m-hero::after {
  content: "";
  position: absolute;
  left: 12px; top: 33px;
  width: 28%; height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
}
.mock-page .m-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-page .m-cols div {
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
}

.project-body { padding: 1.5rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.project-body h3 { margin-bottom: 0.3rem; }
.project-body .project-type {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.project-body p { font-size: 0.93rem; color: var(--muted); }
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.1rem;
}
.tag {
  font-size: 0.74rem;
  font-weight: 500;
  font-family: var(--mono);
  color: var(--accent-soft);
  background: rgba(41, 151, 255, 0.1);
  border: 1px solid rgba(41, 151, 255, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.filter-btn {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.filter-btn.active {
  background: var(--gradient-btn);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(10, 132, 255, 0.35);
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.stars { color: #ffd60a; letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 0.9rem; }
.quote-card blockquote {
  font-size: 0.98rem;
  color: var(--text-soft);
  margin-bottom: 1.3rem;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex: none;
}
.quote-author strong { display: block; color: var(--text); font-size: 0.93rem; }
.quote-author span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Preise ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: rgba(41, 151, 255, 0.5);
  background:
    radial-gradient(400px 220px at 50% 0%, rgba(41, 151, 255, 0.1), transparent 70%),
    var(--panel);
  box-shadow: 0 0 50px rgba(41, 151, 255, 0.12);
}
.price-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(10, 132, 255, 0.4);
}
.price-card h3 { font-size: 1.3rem; }
.price-card .price-sub { font-size: 0.9rem; color: var(--muted); margin: 0.35rem 0 1.4rem; }
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
}
.price small { display: block; margin-top: 0.15rem; font-size: 0.9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-card .checklist { margin-bottom: 2rem; }
.price-card .checklist li { font-size: 0.92rem; margin-bottom: 0.55rem; }
.price-card .btn { margin-top: auto; }

/* ---------- FAQ / Accordion ---------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--line); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s ease;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.25rem; font-size: 0.95rem; color: var(--muted); }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 320px at 50% -10%, rgba(41, 151, 255, 0.22), transparent 70%),
    radial-gradient(500px 280px at 85% 110%, rgba(139, 92, 246, 0.16), transparent 70%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 36rem; margin-inline: auto; color: var(--muted); font-size: 1.08rem; }
.cta-band .btn { margin-top: 2rem; }

/* ---------- Formulare ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.form-field label .req { color: var(--accent); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.78rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  width: 100%;
}
.form-field select option { background: var(--panel-2); color: var(--text); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(134, 134, 139, 0.7); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(41, 151, 255, 0.15);
}
.form-hint { font-size: 0.78rem; color: var(--muted); }
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  grid-column: 1 / -1;
}
.form-consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--accent); }

.form-success {
  display: none;
  background: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.35);
  color: #6ee597;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-weight: 500;
  margin-top: 1.2rem;
}
.form-success.visible { display: block; }

.form-error {
  display: none;
  background: rgba(255, 69, 58, 0.1);
  border: 1px solid rgba(255, 69, 58, 0.35);
  color: #ff8a80;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-weight: 500;
  margin-top: 1.2rem;
}
.form-error.visible { display: block; }
.form-error a { color: #ffb4ab; text-decoration: underline; }

/* ---------- Kontakt ---------- */
.contact-aside .card { margin-bottom: 1.2rem; }
.contact-aside .card h3 { margin-top: 0.9rem; font-size: 1.02rem; }
.contact-aside .card p { font-size: 0.9rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

/* ---------- Über uns ---------- */
.about-figure {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(400px 240px at 20% 0%, rgba(41, 151, 255, 0.25), transparent 70%),
    radial-gradient(400px 240px at 100% 100%, rgba(139, 92, 246, 0.2), transparent 70%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.6rem;
}
.about-figure h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.about-figure p { color: var(--text-soft); }
.about-figure .sig {
  margin-top: 1.8rem;
  font-weight: 600;
  color: var(--text);
}

/* ---------- Rechtstexte ---------- */
.legal-page { max-width: 800px; }
.legal-page h1 { margin-bottom: 2rem; font-size: clamp(2.2rem, 5vw, 3.2rem); }
.legal-page h2 { font-size: 1.4rem; margin: 2.4rem 0 0.8rem; }
.legal-page h3 { font-size: 1.05rem; margin: 1.6rem 0 0.5rem; }
.legal-page p, .legal-page li { font-size: 0.96rem; color: var(--text-soft); }
.legal-page ul { margin: 0.6rem 0; }
.placeholder-note {
  background: rgba(255, 214, 10, 0.07);
  border: 1px solid rgba(255, 214, 10, 0.3);
  color: #ffd60a;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  margin-bottom: 2rem;
}
mark.ph {
  background: rgba(255, 214, 10, 0.16);
  color: #ffd60a;
  border-radius: 4px;
  padding: 0.05em 0.3em;
  font-style: normal;
}

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(41, 151, 255, 0.12), transparent 65%),
    radial-gradient(500px 280px at 90% 30%, rgba(139, 92, 246, 0.08), transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 20ch; }
.page-hero p {
  max-width: 620px;
  margin-top: 1.2rem;
  font-size: 1.12rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.site-footer .brand { margin-bottom: 1rem; }
.site-footer h4 {
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: var(--muted); text-decoration: none; transition: color 0.15s ease; }
.site-footer a:hover { color: var(--text); }
.footer-about { max-width: 300px; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 1.4rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.82rem;
}

/* ---------- WhatsApp-Chat-Button (grüne Version) ---------- */
.whatsapp-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 0.65rem 1.25rem 0.65rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.35), 0 6px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  background: #1fc15c;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45), 0 8px 24px rgba(0, 0, 0, 0.5);
}
.whatsapp-fab svg { width: 26px; height: 26px; flex: none; }

@media (max-width: 700px) {
  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem;
  }
  .whatsapp-fab span { display: none; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.24); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .steps, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 13, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.25rem 1.2rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a:not(.btn) { padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line-soft); }
  .main-nav .btn { margin-top: 1rem; }

  .grid-3, .grid-2, .steps, .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
  .float-chip { display: none; }
}
