* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: roboto, sans-serif;
font-size: 16px;
text-decoration: none;
color: #333;
border: none;
background: none;
}

img {
vertical-align: bottom;
}

a {
display: inline-block;
border-radius: 5px;
}

#header .container {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: auto;
}

#header img {
  width: 100%;
  max-width: 100px;
  padding: 15px 0;
}

#header ul {
  list-style-type: none;
  margin-left: auto;
}

#header ul li {
  display: inline-block;
  margin-right: 25px;
  height: 50px;
  line-height: 50px;
}

#header ul li:last-child {
  margin: 0;
}

#header .cta {
  background: black;
  padding: 6px 12px;
  color: white;
  font-size: 14px;
}

#welcome {
  padding: 0;
}

.welcome .container {
  width: 100%;
  max-width: 1000px; 
  margin: auto;
  background: url(bg01.svg) no-repeat;
  background-position: 100% 50%;
  background-size: 400px;
  padding: 150px 20px;
}

.welcome .title {
  font-size: 50px;
  font-weight: 900;
  max-width: 500px;
}

.welcome .description {
  font-size: 18px;
  max-width: 500px;
  line-height: 1.6;
  margin-top: 15px;
}

.welcome .cta-light {
  padding: 12px 24px;
  background: black;
  color: white;
  margin-top: 15px;
}

.functions {
  background: #F2F5FF;
}

.functions .container {
  padding: 150px 20px; 
  width: 100%;
  max-width: 1000px; 
  margin: auto;
}

.functions .headline {
  font-size: 16px;
  margin-bottom: 10px;
}

.functions h1 {
  font-size: 35px;
  line-height: 1.4;
  margin-bottom: 40px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 16px;
  line-height: 1.4;
}

.prices {
  padding: 100px 20px;
  background: #fff;
}

.prices .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.prices .section-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  text-align: center;
  color: #666;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.price-card {
  background: #fff;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 300px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.price-card .price {
  font-size: 30px;
  margin-bottom: 15px;
}

.price-card .subline {
	font-size: 15px;
	margin-top: -10px;
	margin-bottom: 10px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.price-card li {
  margin: 8px 0;
}

.price-card .cta-black {
  background: black;
  color: white;
  padding: 10px 20px;
  font-weight: 700;
}

/* Badge für empfohlene Karte */
.price-card.recommended {
  border: 2px solid black;
}