* { box-sizing: border-box; }
:root {
  --bg: #080808;
  --panel: #141414;
  --text: #f6f6f6;
  --muted: #c9c9c9;
  --line: #333;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
.hero {
  min-height: 88vh;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 35%),
    linear-gradient(135deg, #000, #111);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { width: 96px; height: 96px; object-fit: contain; }
.navlinks { display: flex; gap: 22px; color: var(--muted); font-weight: 600; }
.navlinks a { text-decoration: none; }
.navlinks a:hover { color: white; }
.hero-content { max-width: 900px; margin: 110px auto 0; text-align: center; }
.tag {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
}
h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin: 24px 0;
}
h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
h3 { font-size: 23px; margin: 0 0 10px; }
.lead {
  font-size: 22px;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 34px;
}
.buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
}
.primary { background: white; color: black; }
.secondary { border: 1px solid var(--line); color: white; }
main section { max-width: 1180px; margin: 0 auto; padding: 82px 28px; }
.intro { text-align: center; max-width: 850px; }
.intro p, .trust p, .contact p { color: var(--muted); font-size: 19px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards article, .price-grid div, .contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}
.cards p, .price-grid p, li { color: var(--muted); }
.trust { background: #0f0f0f; border-radius: 30px; }
.trust ul { padding-left: 24px; font-size: 19px; }
.prices { text-align: center; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.price { font-size: 28px; color: white !important; font-weight: 900; }
.small { font-size: 14px; color: #aaa; }
.process { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps div {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: var(--panel);
}
.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: black;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.contact { text-align: center; }
.contact-box {
  max-width: 680px;
  margin: 24px auto;
  text-align: center;
  display: grid;
  gap: 14px;
}

.contact-item {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
}

.contact-value {
  display: block;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 46px 20px;
  color: var(--muted);
}
.footer-logo { width: 78px; height: 78px; object-fit: contain; opacity: .9; }
@media (max-width: 850px) {
  .nav { align-items: flex-start; gap: 20px; }
  .navlinks { flex-direction: column; gap: 8px; align-items: flex-end; }
  .hero-content { margin-top: 70px; }
  .cards, .price-grid, .steps { grid-template-columns: 1fr; }
  main section { padding: 58px 22px; }
}


.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 82px 28px;
}

.legal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.legal-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 38px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}


/* Optimierung Datenschutz auf Smartphones */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
}
