*{
  box-sizing:border-box;
}

:root{
  --text:#222;
  --muted:#666;
  --border:#e6e6e6;
  --alt:#fafafa;
  --card:#ffffff;
  --accent:#C31815;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.65;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

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

.narrow{
  max-width:720px;
  margin:0 auto;
}

a{
  color:var(--accent);
  text-decoration:none;
}

a:hover{
  opacity:0.88;
}

.header{
  border-bottom:1px solid var(--border);
  background:#fff;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.logo{
  height:42px;
  width:auto;
}

nav a{
  margin-left:24px;
  color:#333;
  font-size:15px;
  font-weight:500;
}

nav a:hover{
  color:var(--accent);
}

.hero{
  padding:80px 0 60px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 340px;
  gap:56px;
  align-items:start;
}

.hero-copy{
  min-width:0;
}

.kicker{
  margin:0 0 12px 0;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#7a7a7a;
}

.hero h1{
  margin:0 0 16px 0;
  font-size:42px;
  line-height:1.12;
  font-weight:650;
  letter-spacing:-0.01em;
}

.subtitle{
  margin:0 0 22px 0;
  font-size:20px;
  line-height:1.4;
  color:#555;
}

.trustline{
  margin:0 0 4px 0;
  font-size:16px;
  line-height:1.55;
  color:#555;
}

.scenario{
  margin-top:0;
  margin-bottom:26px;
  max-width:620px;
}

.scenario p{
  margin:0 0 12px 0;
  font-size:17px;
  line-height:1.7;
  color:#333;
}

.scenario-highlight{
  font-weight:600;
  color:#222;
  margin-top:6px;
}

.button{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:11px 18px;
  border-radius:10px;
  font-size:15px;
  font-weight:600;
}

.button:hover{
  opacity:0.92;
}

.focus-box{
  background:var(--alt);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  padding:24px 22px;
  box-shadow:0 1px 0 rgba(0,0,0,0.02);
}

.focus-box h3{
  margin:0 0 14px 0;
  font-size:17px;
  font-weight:650;
  color:#333;
}

.focus-box p{
  margin:0 0 16px 0;
  font-size:15px;
  line-height:1.85;
  color:#333;
}

.focus-box p:last-child{
  margin-bottom:0;
}

.focus-box hr{
  border:none;
  border-top:1px solid rgba(0,0,0,0.10);
  margin:18px 0 16px 0;
}

.focus-contact strong{
  display:inline-block;
  margin-bottom:4px;
  color:#222;
}

.section{
  padding:44px 0;
}

.section-alt{
  background:var(--alt);
}

.section h2{
  margin:0 0 14px 0;
  font-size:28px;
  line-height:1.25;
  font-weight:650;
  letter-spacing:-0.01em;
}

.section p{
  margin:0 0 14px 0;
}

.section p:last-child{
  margin-bottom:0;
}

section#erfahrung.section{
  padding-top:22px;
  padding-bottom:18px;
}

section#kontakt.section{
  padding-top:18px;
  padding-bottom:26px;
}

section#erfahrung h2,
section#kontakt h2{
  margin-bottom:10px;
}

section#kontakt p{
  margin:6px 0;
}

#kontakt .contact-note{
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
}

.card{
  background:var(--card);
  border:1px solid #e8e8e8;
  border-radius:12px;
  padding:18px;
  font-size:15px;
}

.card h3{
  margin:0 0 10px 0;
  font-size:16px;
  line-height:1.45;
  font-weight:650;
  color:#2d2d2d;
}

.card p{
  margin:0;
  color:#3a3a3a;
  line-height:1.75;
}

ul{
  margin:0;
  padding-left:22px;
}

li{
  margin:0 0 6px 0;
}

li:last-child{
  margin-bottom:0;
}

footer{
  border-top:1px solid var(--border);
  margin-top:18px;
  padding:16px 0;
  font-size:14px;
  color:var(--muted);
  background:#fff;
}

.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
}

footer a{
  color:var(--muted);
}

footer a:hover{
  color:var(--accent);
}

@media (max-width:900px){

  .hero{
    padding:56px 0 40px 0;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  nav{
    display:none;
  }

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

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

  .trustline,
  .scenario p{
    font-size:16px;
  }

  .section h2{
    font-size:24px;
  }

}

@media (max-width:640px){

  .container{
    padding:0 16px;
  }

  .logo{
    height:36px;
  }

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

  .card{
    padding:16px;
  }

}