:root {
  --navy: #153C4A;
  --navy-deep: #0A1F27;
  --teal: #2E9BA8;
  --teal-light: #DCEEF0;
  --amber: #F2A541;
  --bg: #F4F8F8;
  --gray: #5B6B70;
  --gray-light: #8FA0A5;
  --card: #FFFFFF;
  --radius: 16px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
section { padding: 88px 0; }
h1, h2, h3 { font-weight: 700; margin: 0 0 14px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: 13px;
  font-weight: 600; color: var(--teal); margin-bottom: 10px; display:block;
}
.lead { color: var(--gray); font-size: 17px; max-width: 640px; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
}
.btn-primary { background: var(--amber); color: var(--navy-deep); }
.btn-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }

/* ---------- NAV ---------- */
header.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
header.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navlinks { display: flex; gap: 34px; font-size: 15px; font-weight: 500; color: var(--navy); }
.navlinks a { color: inherit; }
.navlogo img { height: 40px; width: auto; max-width: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden; color: white;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy) 100%);
  border-radius: 28px; margin: 0 20px; padding: 100px 0 140px;
}
.hero .wrap { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { font-size: 46px; line-height: 1.15; }
.hero .lead { color: #CBD9DC; font-size: 18px; max-width: 560px; }
.hero .cta-row { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ghost {
  position: absolute; right: -140px; top: -120px; width: 640px; height: 640px;
  opacity: .07; z-index: 1;
}
.hero-wave { position: absolute; left:0; right:0; bottom:-2px; z-index: 1; }

/* ---------- SERVICES ---------- */
.grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-top: 44px; }
.card {
  background: var(--card); border-radius: var(--radius); padding: 26px 22px;
  box-shadow: 0 2px 18px rgba(21,60,74,.06); border: 1px solid #E7EFEF;
}
.card .num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--teal-light);
  color: var(--teal); font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 15px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; overflow-wrap: break-word; hyphens: auto; }
.card p { font-size: 14.5px; color: var(--gray); margin: 0; }

/* ---------- METHODIK TIMELINE ---------- */
.timeline { display: flex; margin-top: 56px; position: relative; flex-wrap: wrap; }
.timeline::before {
  content: ""; position: absolute; top: 17px; left: 5%; right: 5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal), var(--teal) 6px, transparent 6px, transparent 12px);
}
.tstep { flex: 1; min-width: 160px; text-align: center; position: relative; padding: 0 10px; margin-bottom: 24px; }
.tstep .dot {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy);
  color: white; font-weight: 700; font-size: 14px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px; position: relative; z-index: 2; border: 4px solid var(--bg);
}
.tstep h3 { font-size: 15px; margin-bottom: 6px; }
.tstep p { font-size: 13.5px; color: var(--gray); }

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; margin-top: 44px; }
.price-card {
  background: var(--card); border-radius: var(--radius); padding: 34px 28px;
  border: 1px solid #E7EFEF; box-shadow: 0 2px 18px rgba(21,60,74,.06);
}
.price-card.highlight {
  background: var(--navy); color: white; transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(10,31,39,.28);
}
.price-card.highlight .lead2 { color: #CBD9DC; }
.price-card .tag {
  display: inline-block; background: var(--amber); color: var(--navy-deep); font-size: 12px;
  font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.price-card h3 { font-size: 20px; overflow-wrap: break-word; }
.price-card .price { font-size: 26px; font-weight: 700; margin: 10px 0 18px; }
.price-card ul { padding-left: 18px; font-size: 14px; margin: 0 0 22px; }
.price-card li { margin-bottom: 8px; color: inherit; }
.lead2 { font-size: 14px; color: var(--gray); }
.price-note { margin-top: 28px; font-size: 13.5px; color: var(--gray); max-width: 720px; }

/* ---------- SCENARIOS ---------- */
.scenario-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-top: 40px; }
.scenario { background: var(--teal-light); border-radius: var(--radius); padding: 24px; }
.scenario h3 { font-size: 15.5px; color: var(--navy); }
.scenario p { font-size: 13.5px; color: var(--navy); opacity: .8; margin: 0; }

/* ---------- FAQ ---------- */
details { background: var(--card); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; border: 1px solid #E7EFEF; }
summary { font-weight: 600; cursor: pointer; font-size: 15px; }
details p { color: var(--gray); font-size: 14.5px; margin: 12px 0 2px; }

/* ---------- FOOTER ---------- */
footer.site {
  background: var(--navy-deep); color: #A9BCC0; border-radius: 28px; margin: 0 20px 20px;
  padding: 56px 0 30px;
}
footer.site .cols { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
footer.site h4 { color: white; font-size: 14px; margin-bottom: 14px; }
footer.site .footer-logo { height: 34px; width: auto; max-width: none; margin-bottom: 14px; }
footer.site .col a { display: block; color: #A9BCC0; font-size: 13.5px; margin-bottom: 8px; }
footer.site .bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 12.5px; }
footer.site .bottom a { color: #A9BCC0; }
footer.site .bottom a:hover { color: white; }

/* ---------- CONTACT FORM ---------- */
.contact-form { display: flex; flex-direction: column; gap: 6px; margin-top: 36px; }
.contact-form label { font-size: 14px; font-weight: 600; color: var(--navy); margin-top: 14px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  font-family: inherit; font-size: 15px; color: var(--navy);
  padding: 12px 14px; border-radius: 10px; border: 1.5px solid #D8E3E3;
  background: var(--card); resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--teal);
}
.contact-form .checkbox-label {
  display: flex; align-items: flex-start; gap: 10px; font-weight: 400;
  font-size: 13.5px; color: var(--gray); margin-top: 22px;
}
.contact-form .checkbox-label input { margin-top: 3px; }
.contact-form button { margin-top: 26px; align-self: flex-start; }
.hp-field { position: absolute; left: -9999px; }

/* ---------- SIMPLE PAGES (Impressum/Datenschutz) ---------- */
.simple-page section { padding: 60px 0; }
.simple-page h2 { font-size: 26px; margin-top: 36px; }
.simple-page h2:first-of-type { margin-top: 0; }
.simple-page p, .simple-page li { color: var(--gray); font-size: 15px; }
.simple-page a.inline { color: var(--teal); }

@media (max-width: 760px) {
  header.nav .wrap { flex-wrap: wrap; row-gap: 14px; }
  .navlinks { order: 3; width: 100%; justify-content: center; gap: 22px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .hero { padding: 70px 0 100px; }
  section { padding: 56px 0; }
}
