:root{
  --ink:#0d0f12;
  --muted:#6c7a89;
  --muted2:#8ea0b3;
  --card:#ffffff;
  --border:#e7eef5;
  --soft:#f4f8fc;
  --soft2:#eef5fb;
  --accent:#2449a6;
  --accent2:#1f3f8f;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:#fff;
}

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

.container{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
}

/* Top spacer like the screenshot (huge white header area) */
.top-space{
  height:420px;
}

/* Card row */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  margin-top:-60px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:8px;
  padding:28px 26px;
  text-align:center;
  box-shadow: 0 10px 30px rgba(13,15,18,0.06);
}
.card h3{
  margin:0 0 10px;
  font-size:14px;
  font-weight:800;
}
.card p{
  margin:0 0 14px;
  font-size:11px;
  line-height:1.55;
  color:var(--muted2);
}
.btn{
  display:inline-block;
  padding:10px 16px;
  font-weight:800;
  font-size:11px;
  border-radius:6px;
  border:1px solid rgba(36,73,166,.25);
  background:var(--accent);
  color:#fff;
}
.btn:hover{text-decoration:none; background:var(--accent2);}

.hotline{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  font-size:12px;
}
.hotline .title{
  font-weight:800;
  font-size:12px;
  margin-bottom:2px;
}
.hotline a{
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
}
.hotline a:hover{text-decoration:underline;}

.team-note{
  color:var(--muted2);
  font-size:11px;
  line-height:1.55;
}

/* Leistungen */
.section{
  padding:64px 0;
  background:#fff;
}
.split{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:54px;
  align-items:start;
}
.h2{
  font-size:34px;
  line-height:1.05;
  margin:0 0 14px;
  font-weight:900;
}
.lead{
  margin:0 0 18px;
  font-size:11px;
  line-height:1.7;
  color:var(--muted2);
  max-width:340px;
}
.smallbtn{
  display:inline-block;
  padding:9px 14px;
  font-size:11px;
  font-weight:800;
  color:#fff;
  background:var(--accent);
  border-radius:6px;
}
.smallbtn:hover{background:var(--accent2); text-decoration:none;}

.services{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:54px 64px;
  padding-top:6px;
}
.service{
  text-align:center;
}
.service h4{
  margin:0 0 8px;
  font-size:11px;
  font-weight:900;
}
.service p{
  margin:0;
  font-size:10px;
  line-height:1.6;
  color:var(--muted2);
}

/* Notes */
.notes{
  padding-top:24px;
  max-width:760px;
  margin:0 auto;
  color:#7f8ea0;
  font-size:9.5px;
  line-height:1.65;
}
.notes .title{
  font-weight:900;
  text-align:center;
  margin-bottom:8px;
  color:#6f7f91;
}
.notes ol{
  margin:8px auto 0;
  padding-left:18px;
}

/* Call section */
.call{
  background:var(--soft);
  padding:0;
}
.call .wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:stretch;
}
.call .photo{
  background:url("../images/call.jpg") center/cover no-repeat;
  min-height:330px;
}
.call .panel{
  padding:42px 44px;
  background:var(--soft2);
}
.call h3{
  margin:0 0 8px;
  font-size:28px;
  font-weight:900;
}
.call .phone{
  font-size:14px;
  font-weight:900;
  color:var(--accent);
  margin-bottom:10px;
}
.call p{
  margin:0 0 14px;
  font-size:11px;
  line-height:1.65;
  color:var(--muted2);
  max-width:420px;
}
.call .panel .btn{
  background:var(--accent);
}

/* Footer */
.footer{
  background:#fff;
  padding:36px 0 22px;
  border-top:1px solid var(--border);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:22px;
  color:#7c8ea3;
  font-size:11px;
}
.footer-grid a{color:#7c8ea3;}
.footer-grid a:hover{color:#4d6280;}
.footer .col h5{
  margin:0 0 10px;
  font-size:10px;
  color:#3d4e63;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.footer .links{
  display:grid;
  gap:8px;
}
.footer .contact{
  line-height:1.7;
}
.bottom{
  padding:18px 0 28px;
  font-size:10px;
  color:#9ab0c7;
}
.bottom .line{
  margin-top:10px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .cards{grid-template-columns:1fr; margin-top:-30px;}
  .split{grid-template-columns:1fr;}
  .services{grid-template-columns:1fr; gap:26px;}
  .call .wrap{grid-template-columns:1fr;}
  .call .panel{padding:34px 22px;}
  .footer-grid{grid-template-columns:1fr;}
  .top-space{height:260px;}
}
