:root{
  /* Mockup-Style: helles UI + blaues Hero */
  --text:#0f172a;
  --muted:#475569;
  --line:#e6edf6;
  --bg:#ffffff;

  --blue1:#1f67d6;   /* Hero/Primary */
  --blue2:#1b57bf;
  --blue3:#2a7be8;   /* Buttons/Accents */

  --btnBlue:#2f7df6;
  --btnBlueDark:#2566d4;

  --ctaBlue:#0f5dbf;
  --success:#24a35a;
  --successDark:#1f8b4d;

  --shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  --shadowSoft: 0 8px 18px rgba(15, 23, 42, 0.10);

  --r12:12px;
  --r16:16px;
  --r18:18px;

  --max: 1160px;
}

html {
  scroll-behavior: smooth;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------------- HEADER (weiß, clean, wie Mockup) ---------------- */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  height: 78px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.brand__logo{ width: 40px; height: 40px; object-fit: contain; }
.brand__name{
  font-weight: 800;
  letter-spacing: .06em;
  color: #1e293b;
}

.nav{
  display:flex;
  align-items:center;
  gap: 26px;
  font-weight: 600;
  color: #334155;
}

.nav a{
  padding: 10px 8px;
  border-radius: 10px;
}
.nav a:hover{
  background: #f1f5f9;
}

/* Mobile menu */
.navToggle{
  display:none;
  width:44px;
  height:44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:#ffffff;
  cursor:pointer;
}
.navToggle span{
  display:block;
  width:18px;
  height:2px;
  background:#334155;
  margin: 5px auto;
  border-radius: 2px;
}

.navMobile{
  display:none;
  padding: 12px 0 18px;
}
.navMobile a{
  display:block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color:#334155;
  font-weight:600;
}
.navMobile.open{ display:block; }

/* ---------------- BUTTONS (genau Mockup-Feeling) ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 16px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--btnBlue);
  color:#fff;
  box-shadow: 0 10px 20px rgba(47,125,246,.22);
}
.btn--primary:hover{
  background: var(--btnBlueDark);
  box-shadow: 0 12px 22px rgba(47,125,246,.26);
}

.btn--outline{
  background: transparent;
  color:#ffffff;
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover{
  background: rgba(255,255,255,.12);
}

.btn--lg{ padding: 13px 20px; border-radius: 12px; }

.btn--success{
  background: linear-gradient(180deg, var(--success), var(--successDark));
  color:#fff;
  box-shadow: 0 14px 26px rgba(36,163,90,.22);
}
.btn--success:hover{ filter: brightness(.98); }

.btn--xl{
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
}

.btn--full{ width:100%; margin-top: 12px; }

/* ---------------- HERO (blaues Gradient + Wellenkante wie Mockup) ---------------- */
.hero{
  position: relative;
  padding: 64px 0 90px;
  background: linear-gradient(90deg, #0f4ea8 0%, #1771d6 50%, #1a86e6 100%);
  overflow:hidden;
}

/* leichte Wolken-/Glow-Highlights */
.hero::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height: 520px;
  background:
    radial-gradient(220px 160px at 18% 55%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(260px 180px at 38% 35%, rgba(255,255,255,.14), transparent 65%),
    radial-gradient(320px 220px at 72% 40%, rgba(255,255,255,.14), transparent 70%),
    radial-gradient(260px 200px at 86% 60%, rgba(255,255,255,.10), transparent 70%);
  pointer-events:none;
}

.hero__inner{
  position: relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap: 28px;
  
}

.hero__left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__title{
  margin:0 0 10px;
  color:#fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.06;
}

.hero__subtitle{
  margin:0 0 22px;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 500;
}

.hero__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* rechte Seite: Illustration wie Mockup */
.heroArt{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.heroArt__img{
  width: min(560px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.22));
  transform: translateY(75px);   /* Wert anpassen */
}

/* Wave bottom */
.hero__wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  width:100%;
  height:120px;
  overflow:hidden;
  line-height:0;
}

.hero__wave svg{
  display:block;
  width:100%;
  height:100%;
}

.hero__wave path{
  fill:#ffffff;
}

/* ---------------- FEATURES: 3 Cards direkt unter Hero ---------------- */
.section{ 
  padding: 46px 0 64px; 
  background:#fff; 
  scroll-margin-top: 90px; /* Höhe deines Headers */
}

.section--lift{
  margin-top: -54px; /* Cards „heben“ wie im Mockup */
}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}




/* FEATURE CARD LAYOUT – exakt wie Mockup */

.card--feature {
  padding: 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 25px rgba(15,23,42,.10);
  min-height: 150px;
}

/* obere Reihe: Icon links + Titel rechts */
.card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

/* größerer Icon-Kreis */
.card__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #eaf3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Icon selbst größer */
.card__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* Überschrift rechts neben Icon */
.card--feature h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
}

/* Beschreibung darunter */
.card--feature p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}


/* ---------------- HOW IT WORKS ---------------- */
.section--how{
  padding-top: 34px;
}

.howHead{
  text-align:center;
  margin-bottom: 26px;
}
.howHead h2{
  margin: 0 0 6px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color:#0f172a;
}
.howHead p{
  margin:0;
  color: #334155;
  font-weight: 600;
}

.how3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.howCard{
  background:#fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow: var(--shadowSoft);
  overflow:hidden;
}

.howCard__img{
  position: relative;
  height: 170px;
  background: #f1f7ff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.howCard__img img{
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.step{
  position:absolute;
  left: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #2f7df6;
  color:#fff;
  font-weight: 800;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 22px rgba(47,125,246,.22);
}

.howCard h3{
  margin: 14px 16px 6px;
  font-size: 18px;
  color:#0f172a;
}
.howCard p{
  margin: 0 16px 18px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------------- CTA BAND (blau, großer Text + grüner Button) ---------------- */
.ctaBand{
  background: linear-gradient(90deg, #0f4ea8 0%, #1771d6 50%, #1a86e6 100%);
  padding: 42px 0;
  margin-top: 10px;
}
.ctaBand__inner{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 16px;
  text-align:center;
}
.ctaBand h2{
  margin:0;
  color:#fff;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ---------- Section Head ---------- */
.sectionHead{
  margin-bottom: 22px;
}
.sectionHead.center{ text-align:center; }
.sectionHead h2{
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.sectionHead p{
  margin:0;
  color:#475569;
  font-weight: 500;
}

/* ---------- Pricing ---------- */
.pricing3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.priceCard{
  background:#fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15,23,42,.10);
  padding: 22px;
  position:relative;
}
.priceCard__top h3{
  margin:0;
  font-size: 18px;
  color:#0f172a;
}
.priceCard__hint{
  display:block;
  margin-top: 6px;
  color:#64748b;
  font-size: 13px;
  font-weight: 600;
}
.price{
  display:flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 14px;
}
.price__amount{
  font-size: 40px;
  font-weight: 800;
  letter-spacing:-0.03em;
  color:#0f172a;
}
.price__per{
  color:#64748b;
  font-weight: 600;
}
.priceList{
  list-style:none;
  padding:0;
  margin: 0 0 16px;
  display:grid;
  gap: 10px;
}
.priceList li{
  position:relative;
  padding-left: 22px;
  color:#334155;
  font-weight: 600;
}
.priceList li:before{
  content:"";
  position:absolute;
  left:0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background:#2f7df6;
  opacity:.9;
}

/* Featured middle plan */
.priceCard--featured{
  border-color: rgba(47,125,246,.35);
  box-shadow: 0 18px 34px rgba(47,125,246,.18);
  transform: translateY(-6px);
}
.badge{
  position:absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47,125,246,.12);
  border: 1px solid rgba(47,125,246,.25);
  color:#1d4ed8;
  font-weight: 800;
  font-size: 12px;
}

/* Outline button on white background */
.btn--outlineBlue{
  background: #ffffff;
  border-color: #cfe0ff;
  color: #1d4ed8;
}
.btn--outlineBlue:hover{
  background: #f3f7ff;
}

/* ---------- About ---------- */
.section--soft{
  background: #f6f9ff;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}
.aboutGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start;
}
.aboutText h2{
  margin:0 0 10px;
  font-size: 34px;
  letter-spacing:-0.02em;
}
.lead{
  margin: 0 0 18px;
  color:#334155;
  line-height: 1.65;
  font-weight: 500;
}

.aboutPoints{
  display:grid;
  gap: 14px;
}
.aboutPoint{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  background: rgba(255,255,255,.75);
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.aboutPoint h4{
  margin: 0 0 4px;
  font-size: 15px;
  color:#0f172a;
}
.aboutPoint p{
  margin:0;
  color:#475569;
  line-height:1.5;
}
.dotIcon{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1d4ed8;
  margin-top: 6px;
  flex-shrink: 0;
}
.dotIcon--blue{ background:#2f7df6; }
.dotIcon--green{ background:#22c55e; }

.aboutCard{
  background:#fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15,23,42,.10);
  padding: 18px;
}
.aboutCard__box{
  display:grid;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(47,125,246,.10), rgba(255,255,255,1));
  border: 1px solid rgba(47,125,246,.15);
}
.aboutStat{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(15,23,42,.10);
  padding-bottom: 8px;
}
.aboutStat:last-child{ border-bottom: none; padding-bottom:0; }
.kpi{
  font-size: 22px;
  font-weight: 800;
  color:#0f172a;
}
.lbl{
  font-size: 13px;
  font-weight: 700;
  color:#64748b;
}
.aboutCard__note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background:#f8fafc;
  border: 1px solid #eef2f7;
  color:#334155;
}

/* ---------- Contact ---------- */
.contactGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
.contactForm{
  background:#fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15,23,42,.10);
  padding: 22px;
}
.fieldRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{
  display:grid;
  gap: 8px;
  margin-bottom: 12px;
}
label{
  font-weight: 700;
  font-size: 13px;
  color:#334155;
}
input, textarea{
  width:100%;
  border: 1px solid #e5edf7;
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  outline: none;
  background:#fff;
}
input:focus, textarea:focus{
  border-color: rgba(47,125,246,.55);
  box-shadow: 0 0 0 4px rgba(47,125,246,.12);
}

.contactInfo{
  display:grid;
  gap: 12px;
}
.infoCard{
  background:#fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15,23,42,.10);
  padding: 18px;
}
.infoCard h3{
  margin:0 0 6px;
  font-size: 16px;
}
.muted2{
  margin:0 0 10px;
  color:#64748b;
  line-height:1.6;
}
.infoLink{
  font-weight: 800;
  color:#1d4ed8;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .pricing3, .contactGrid, .aboutGrid{ grid-template-columns: 1fr; }
  .priceCard--featured{ transform:none; }
  .fieldRow{ grid-template-columns: 1fr; }
}

/* ---------------- FOOTER ---------------- */
.footer{
  background:#ffffff;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer__inner{
  color:#64748b;
  font-size: 14px;
  text-align:center;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .heroArt{ justify-content:center; margin-top: 14px; }
  .cards3, .how3{ grid-template-columns: 1fr; }
  .section--lift{ margin-top: -34px; }
}

@media (max-width: 820px){
  .nav{ display:none; }
  .navToggle{ display:inline-block; }
}

/* Dark Footer */
.footer--dark{
  background: #0f172a; /* dunkles Blau-Grau */
  color: #ffffff;
  padding: 22px 0;
}

.footer--dark .footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
}

.footer--dark a {
  color: #ffffff;
  opacity: .85;
  font-weight: 500;
  transition: opacity .15s ease;
}

.footer--dark a.privacy {
  margin-left: 24px;
}

.footer--dark a:hover{
  opacity: 1;
}

.footer__left{
  font-size: 14px;
}

.footer__right{
  display:flex;
  align-items:center;
}

/* Responsive */
@media (max-width: 768px){
  .footer--dark .footer__inner{
    flex-direction: column;
    align-items:flex-start;
    gap: 12px;
  }

  .footer__right{
    gap: 18px;
  }

  .footer--dark a{
    margin-left: 0;
  }
}


/* --------- Legal Pages (Impressum/Datenschutz) --------- */
.pageHero{
  background: linear-gradient(90deg, #0f4ea8 0%, #1771d6 50%, #1a86e6 100%);
  padding: 44px 0 34px;
  position: relative;
  overflow:hidden;
}

.pageHero::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height: 300px;
  background:
    radial-gradient(220px 160px at 18% 55%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(260px 180px at 55% 35%, rgba(255,255,255,.14), transparent 65%),
    radial-gradient(260px 200px at 86% 60%, rgba(255,255,255,.10), transparent 70%);
  pointer-events:none;
}

.pageHero__inner{
  position:relative;
  color:#fff;
}

.pageHero__title{
  margin:0 0 6px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pageHero__subtitle{
  margin:0;
  font-size: 16px;
  font-weight: 500;
  opacity: .92;
}

.pageSection{
  padding: 42px 0 70px;
  background:#fff;
}

.legalCard{
  background:#fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);
  padding: 28px;
  max-width: 900px;
  margin: auto;
}

.legalCard h2{
  margin: 18px 0 10px;
  font-size: 18px;
  color:#0f172a;
}

.legalCard p{
  margin: 0 0 12px;
  color:#475569;
  line-height: 1.65;
}

.legalCard a{
  color:#2566d4;
  font-weight: 600;
}

.legalDivider{
  border:0;
  border-top:1px solid #eef2f7;
  margin: 22px 0;
}

.legalNote{
  margin-top: 18px;
  font-size: 13px;
  color:#64748b;
}

/* Scroll To Top */
.scrollTop{
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(180deg, #2f7df6, #2566d4);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(47,125,246,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .25s ease;
  z-index: 999;
}

.scrollTop:hover{
  transform: translateY(0) scale(1.05);
}

.scrollTop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.vcenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

