body {
  margin: 0;
  padding: 0;
  background: url('/bilder/bg-main.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}

h1 {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 25px;
  letter-spacing: -1px;
}

h2 {
  font-size: 1.1em;
  font-weight: 400;
  margin: 0 0 20px;
  color: #cccccc;
}

h3 {
  margin: 0 0 18px;
  font-size: 1.8em;
  font-weight: 700;
}

.top-title {
  font-size: 38px;
  letter-spacing: 3px;
  margin: 40px 0 20px;
  color: #ffffff;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  margin: 0 0 20px;
}

.vergleich-grid {
  max-width: 1000px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 28px;
  align-items: stretch;
}

.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card h3 {
  margin-bottom: 18px;
  font-size: 1.2em;
}

.card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card li {
  margin: 8px 0;
  line-height: 1.5;
  font-size: 1.08em;
}

.vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
}

.preis {
  margin-top: 22px;
  font-size: 1.8em;
  font-weight: 700;
}

.highlight {
  color: #ffffff;
}

.statement {
  margin: 38px auto 0;
  font-size: 1.35em;
  line-height: 1.5;
}

.cta-block {
  margin: 34px 0 26px;
  text-align: center;
}

.cta {
  display: inline-block;
  min-width: 240px;
  margin: 12px 10px;
  padding: 16px 28px;
  background: rgba(20,20,20,0.78);
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
  background: rgba(40,40,40,0.88);
  border-color: rgba(255,255,255,0.75);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero {
    padding: 50px 18px 40px;
  }

  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .vergleich-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vs {
    font-size: 28px;
    min-height: 50px;
  }

  .cta {
    display: block;
    max-width: 320px;
    min-width: 0;
    margin: 12px auto;
  }
}