* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Warme Pastell-Farbpalette */
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff7ed, #fef3c7, #fce7f3);
  color: #4b3b2a;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7c5e4b;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #8b6f5a;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover {
  color: #5b4636;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.hero-card {
  max-width: 900px;
  width: 100%;
  padding: 50px 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(180, 140, 120, 0.2);
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fde68a;
  color: #6b4f3a;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 500;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #b08968, #d977a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.2rem;
  color: #6b5a4a;
  line-height: 1.7;
  margin-bottom: 35px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 16px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f9a8d4, #fdba74);
  color: #4b3b2a;
  box-shadow: 0 10px 25px rgba(249, 168, 212, 0.35);
}

.btn-secondary {
  background: #ffffff;
  color: #6b5a4a;
  border: 1px solid #f3e8ff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(180, 140, 120, 0.25);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

.feature-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(180, 140, 120, 0.15);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #7c5e4b;
}

.feature-card p {
  color: #6b5a4a;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #8b6f5a;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  .hero-card {
    padding: 35px 20px;
  }

  header {
    padding: 15px 20px;
  }
}
