body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f7f5f2;
  color: #1e1e24;
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
}

.narrow {
  max-width: 750px;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  background: url("img/1920x1080_walk.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 420px;
  max-width: 40%;
  z-index: 3;
}

.hero h1 {
  font-size: 48px;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 30px;
}

/* BUTTON */

.btn-primary {
  background: #8b1e3f;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #a0446e;
}

/* SECTIONS */

.problem {
  text-align: center;
}

.problem .emphasis {
  font-weight: 600;
  margin-top: 20px;
}

.leistungen {
  background: #ffffff;
  text-align: center;
}

.card {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  max-width: 600px;
  margin: 60px auto 0 auto;
}

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

.card li {
  margin: 18px 0;
  font-size: 18px;
  font-weight: 500;
}

.landingpage-offer {
  background: #111827;
  color: #ffffff;
}

.landingpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.landingpage-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.landingpage-text .subheadline {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 30px;
}

.landingpage-text p {
  margin-bottom: 20px;
}

.landingpage-text .statement {
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0;
}

.landingpage-benefits {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 12px;
}

.landingpage-benefits .benefits-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.landingpage-benefits ul {
  list-style: none;
  padding: 0;
}

.landingpage-benefits li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.landingpage-benefits li::before {
  content: "–";
  position: absolute;
  left: 0;
  opacity: 0.6;
}

.landingpage-benefits .closing {
  margin-top: 30px;
  font-weight: 600;
  font-size: 18px;
}

/* Responsive */

@media (max-width: 900px) {
  .landingpage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landingpage-benefits {
    padding: 30px;
  }
}

.zielgruppe {
  background: #f7f5f2;
  text-align: center;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  margin: 15px 0;
  font-weight: 500;
}

/* PORTRAIT */

.portrait-section {
  background: #eceae6;
}

.portrait-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.portrait-text h2 {
  margin-bottom: 20px;
}

.portrait-text p {
  margin-bottom: 20px;
  max-width: 500px;
}

.portrait-image img {
  width: 100%;
  border-radius: 12px;
}
/* CTA */

.cta {
  background: #0f172a;
  color: white;
  text-align: center;
}

/* KONTAKT */

.kontakt {
  text-align: center;
}

.kontakt form {
  max-width: 600px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  background: #8b1e3f;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #a0446e;
}

/* FOOTER */

footer {
  background: #1e1e24;
  color: white;
  text-align: center;
  padding: 30px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .portrait-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-logo {
    width: 200px;
    left: 20px;
  }
}
