
:root{
  --bg: #e9edf4;
  --text:#111827;
  --muted: rgba(17,24,39,0.72);
  --muted2: rgba(17,24,39,0.60);

  --a2:#2563eb;
  --a3:#7c3aed;
  --a4:#f59e0b;

  --card: rgba(255,255,255,0.96);
  --card2: rgba(255,255,255,0.92);

  --shadow: 0 10px 28px rgba(0,0,0,0.10);
  --shadow2: 0 8px 18px rgba(0,0,0,0.08);

  --r2: 22px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(245,158,11,0.10), transparent 60%),
    radial-gradient(900px 520px at 85% -5%, rgba(37,99,235,0.10), transparent 60%),
    radial-gradient(700px 420px at 50% 0%, rgba(124,58,237,0.07), transparent 55%),
    linear-gradient(180deg, #f6f7fb, var(--bg));
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }
a{ color: inherit; text-decoration:none; }
p{ margin:0; }

:focus-visible{
  outline: 3px solid rgba(245,158,11,0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip{
  position: absolute;
  top: 10px; left: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,0.14);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow2);
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 9999;
}
.skip:focus{ transform: translateY(0); }

/* ================= HEADER ================= */
.header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(17,24,39,0.08);
  transition: box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.header--scrolled{
  background: rgba(255,255,255,0.97);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  border-bottom-color: rgba(17,24,39,0.10);
}
.header__in{
  height: 74px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.brand__dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: conic-gradient(from 220deg, var(--a4), var(--a3), var(--a2), var(--a4));
  box-shadow: 0 0 0 6px rgba(245,158,11,0.14);
}
.brand__name{ font-size: 18px; }
.brand__name span{
  background: linear-gradient(90deg, var(--a2), var(--a4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Nav bleibt */
.nav{
  display:flex;
  gap: 8px;
  font-weight: 900;
  font-size: 14px;
  color: rgba(17,24,39,0.76);
}
.nav a{
  padding: 10px 12px;
  border-radius: 999px;
  transition: 160ms ease;
}
.nav a:hover{ background: rgba(17,24,39,0.06); }
.nav a.is-active{
  background: rgba(245,158,11,0.14);
  color: rgba(17,24,39,0.92);
}
.nav__cta{
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(37,99,235,0.10));
  border: 1px solid rgba(17,24,39,0.10);
}

.header__actions{ display:flex; align-items:center; gap: 10px; }

.btn{
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  font-size: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
  overflow:hidden;
}
.btn::after{ display:none; }

.btn--primary{
  color: #0b1020;
  background: linear-gradient(135deg, var(--a4), rgba(245,158,11,0.80));
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}
.btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 34px rgba(0,0,0,0.14); }

.btn--ghost{
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.10));
  border-color: rgba(37,99,235,0.20);
  color: rgba(17,24,39,0.92);
  box-shadow: 0 10px 22px rgba(37,99,235,0.10);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(37,99,235,0.16), rgba(124,58,237,0.12));
  box-shadow: 0 14px 28px rgba(37,99,235,0.14);
}

.btn--soft{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17,24,39,0.12);
  color: rgba(17,24,39,0.92);
}
.btn--soft:hover{
  border-color: rgba(37,99,235,0.18);
  box-shadow: 0 12px 24px rgba(37,99,235,0.08);
}

.btn--wide{ width: 100%; }

.burger{
  display:none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,0.14);
  background: rgba(255,255,255,0.85);
}
.burger span{
  display:block;
  width: 18px; height:2px;
  background: rgba(17,24,39,0.70);
  margin: 4px auto;
  border-radius: 10px;
}

.mobileNav{
  border-top: 1px solid rgba(17,24,39,0.10);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}
.mobileNav__in{
  padding: 14px 0 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.mobileNav__in a{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(17,24,39,0.04);
  border: 1px solid rgba(17,24,39,0.10);
  font-weight: 950;
  color: rgba(17,24,39,0.86);
}
.mobileNav__in a:hover{
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.20);
}
.mobileNav__in a.is-active{
  background: rgba(245,158,11,0.14);
  border-color: rgba(245,158,11,0.22);
}
.mobileNav__cta{
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(37,99,235,0.12)) !important;
}
.mobileNav[hidden]{ display:none !important; }

/* ================= HERO ================= */
.hero{
  position: relative;
  min-height: 100vh;
  display:grid;
  place-items: center;
  padding-top: 74px;
  overflow: hidden;
}
.hero__bg{ position:absolute; inset:0; z-index: -2; }
.hero__svg{ width:100%; height:100%; display:block; opacity: 0.92; }
.hero__fade{
  position:absolute; left:0; right:0; bottom:0;
  height: 260px;
  background: linear-gradient(180deg, transparent, rgba(233,237,244,0.75), rgba(233,237,244,1));
  z-index:-1;
}
.hero__in{ padding: 52px 0 44px; }

.hero__center{
  max-width: 920px;
  text-align:center;
  padding: 28px 22px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow);
  position: relative;
}
.hero__center::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,158,11,0.30),
    rgba(37,99,235,0.18),
    rgba(124,58,237,0.16),
    rgba(245,158,11,0.22)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity: 0.50;
}

.hero__kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(17,24,39,0.04);
  border: 1px solid rgba(17,24,39,0.10);
  font-weight: 950;
  font-size: 12px;
  color: rgba(17,24,39,0.74);
}
.kickerDot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a4), var(--a2));
  box-shadow: 0 0 0 6px rgba(245,158,11,0.14);
}

.hero__title{
  margin: 16px 0 10px;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.grad{
  background: linear-gradient(90deg, var(--a2), var(--a4), var(--a3));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.hero__sub{
  margin: 0 auto;
  max-width: 78ch;
  line-height: 1.85;
  font-weight: 600;
  color: var(--muted);
}
.hero__cta{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__badges{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
}
.badge{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,24,39,0.10);
  font-weight: 900;
  font-size: 13px;
  color: rgba(17,24,39,0.80);
}

/* ================= SECTIONS ================= */
.section{ padding: 86px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.50));
  border-top: 1px solid rgba(17,24,39,0.08);
  border-bottom: 1px solid rgba(17,24,39,0.08);
}

.sectionHead{ margin-bottom: 22px; max-width: 76ch; }
.sectionHead h2{ margin:0 0 8px; font-size: 30px; letter-spacing: -0.02em; }
.sectionHead p{ color: var(--muted); line-height: 1.8; font-weight: 600; }

/* rows */
.rows{ display:grid; gap: 12px; max-width: 860px; }
.row{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 16px 16px;
  border-radius: var(--r2);
  background: var(--card2);
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow2);
}
.row__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(245,158,11,0.10));
  border: 1px solid rgba(17,24,39,0.10);
}
.row__title{ font-weight: 900; }
.row__text{ margin-top: 4px; color: var(--muted); font-weight: 600; line-height: 1.7; }

/* Ablauf Flow */
.flow{
  position: relative;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.flow__line{
  position:absolute;
  left: 10px; right: 10px;
  top: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37,99,235,0.25), rgba(245,158,11,0.25));
  border-radius: 999px;
  pointer-events:none;
}
.flowCard{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow2);
  position: relative;
  overflow:hidden;
}
.flowCard::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(500px 200px at 20% 0%, rgba(37,99,235,0.08), transparent 60%),
    radial-gradient(420px 200px at 90% 20%, rgba(245,158,11,0.08), transparent 60%);
  pointer-events:none;
}
.flowCard__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.flowBadge{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17,24,39,0.05);
  border: 1px solid rgba(17,24,39,0.10);
  font-weight: 950;
  font-size: 12px;
  color: rgba(17,24,39,0.78);
}
.flowIcon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(245,158,11,0.16));
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}
.flowTitle{
  margin: 12px 0 6px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.01em;
  position: relative;
}
.flowText{
  margin: 0;
  color: rgba(17,24,39,0.74);
  font-weight: 650;
  line-height: 1.75;
  position: relative;
}

/* ================= PRICING (NEU) ================= */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pricing--new .plan{
  padding: 22px;
  min-height: 420px;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan{
  border-radius: var(--r2);
  background: var(--card2);
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow2);
}

.plan__top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.plan__name{ font-weight: 950; font-size: 18px; }
.plan__tag{ margin-top: 6px; color: var(--muted); font-weight: 800; }

.planPill{
  display:inline-flex;
  align-items:center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  border: 1px solid rgba(17,24,39,0.12);
  background: rgba(255,255,255,0.70);
  color: rgba(17,24,39,0.78);
  white-space: nowrap;
}
.planPill--accent{
  border-color: rgba(245,158,11,0.30);
  background: rgba(245,158,11,0.14);
  color: rgba(17,24,39,0.86);
}
.planPill--neutral{
  border-color: rgba(37,99,235,0.22);
  background: rgba(37,99,235,0.10);
}
.planPill--pro{
  border-color: rgba(124,58,237,0.22);
  background: rgba(124,58,237,0.10);
}

.plan__desc{
  margin-top: 10px;
  color: rgba(17,24,39,0.78);
  font-weight: 650;
  line-height: 1.7;
}

.plan__list{
  margin: 14px 0 18px;
  padding-left: 18px;
  color: rgba(17,24,39,0.80);
  font-weight: 650;
  line-height: 1.9;
}

.plan__cta{
  margin-top: 6px;
}

.plan--highlight{
  border-color: rgba(245,158,11,0.30);
  background: linear-gradient(180deg, rgba(245,158,11,0.14), rgba(255,255,255,0.90));
  box-shadow: 0 16px 36px rgba(245,158,11,0.14);
  transform: translateY(-2px);
}

.pricingNote{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(17,24,39,0.10);
  color: rgba(17,24,39,0.74);
  font-weight: 650;
  max-width: 980px;
}
.pricingNote__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a4), var(--a2));
  box-shadow: 0 0 0 6px rgba(245,158,11,0.10);
}

/* timeline */
.timeline{ display:grid; gap: 12px; max-width: 860px; }
.tItem{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 16px;
  border-radius: var(--r2);
  background: var(--card2);
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow2);
}
.tDot{
  width: 12px; height: 12px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--a2), var(--a3));
  box-shadow: 0 0 0 6px rgba(37,99,235,0.10);
}
.tDot--ok{
  background: linear-gradient(135deg, var(--a4), rgba(245,158,11,0.75));
  box-shadow: 0 0 0 6px rgba(245,158,11,0.10);
}
.tTitle{ font-weight: 900; }
.tText{ margin-top: 4px; color: var(--muted); font-weight: 600; line-height: 1.7; }

/* FAQ */
.faq{ display:grid; gap: 10px; max-width: 860px; }
.qa{
  padding: 14px 16px;
  border-radius: var(--r2);
  background: var(--card2);
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow2);
}
.qa summary{
  cursor:pointer;
  font-weight: 950;
  list-style:none;
  position: relative;
  padding-right: 34px;
}
.qa summary::-webkit-details-marker{ display:none; }
.qa summary::after{
  content:"+";
  position:absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(17,24,39,0.06);
  border: 1px solid rgba(17,24,39,0.10);
  color: rgba(17,24,39,0.70);
}
.qa[open] summary::after{ content:"–"; }
.qa p{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 600;
}

/* ================= KONTAKT SOLO ================= */
.contactSolo{
  display:grid;
  gap: 14px;
  justify-items: center;
}

.contactSolo__panel{
  width: min(900px, 100%);
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.contactSolo__top{
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(245,158,11,0.10));
  border-bottom: 1px solid rgba(17,24,39,0.10);
}
.contactSolo__title{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 16px;
}

/* Form */
.formNew{
  padding: 20px;
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 12px;
}
label > span{
  font-weight: 900;
  font-size: 13px;
  color: rgba(17,24,39,0.85);
}

input, textarea, select{
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,0.14);
  background: rgba(255,255,255,0.98);
  padding: 13px 14px;
  color: var(--text);
  font: inherit;
  outline:none;
  transition: box-shadow .15s ease, border-color .15s ease;
}
select{ height: 48px; }
textarea{ resize: vertical; min-height: 120px; }

input:focus, textarea:focus, select:focus{
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.12);
}
input.is-bad, textarea.is-bad{
  border-color: rgba(220,38,38,0.55);
  box-shadow: 0 0 0 6px rgba(220,38,38,0.12);
}
.err{
  min-height: 16px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(220,38,38,0.85);
}

.formNew__bottom{
  display:grid;
  gap: 12px;
  margin-top: 6px;
}

.formOk{ margin-top: 10px; color: rgba(22,163,74,0.95); font-weight: 900; }
.formHint{ margin-top: 10px; color: var(--muted2); font-weight: 700; font-size: 12px; line-height: 1.7; }

/* toTop */
.toTop{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,0.12);
  background: rgba(255,255,255,0.92);
  color: rgba(17,24,39,0.84);
  font-weight: 900;
}
.toTop:hover{ background: rgba(255,255,255,1); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }

/* footer */
.footer{
  padding: 22px 0 28px;
  border-top: 1px solid rgba(17,24,39,0.10);
  background: rgba(255,255,255,0.92);
}
.footer__in{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__fine{
  margin-top: 8px;
  font-weight: 700;
  color: var(--muted2);
  font-size: 12px;
}
.footer__right{
  display:flex;
  gap: 12px;
  font-weight: 800;
  color: rgba(17,24,39,0.68);
}
.footer__right a:hover{ text-decoration: underline; }

/* ================= REVEAL ================= */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
  will-change: opacity, transform;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* hover polish */
@media (hover:hover){
  .row, .flowCard, .plan, .tItem, .qa, .contactSolo__panel, .hero__center{
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  }
  .row:hover, .flowCard:hover, .plan:hover, .tItem:hover, .qa:hover{
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
    border-color: rgba(17,24,39,0.14);
    background: rgba(255,255,255,0.96);
  }
  .hero__center:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  }
}

/* responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }

  .flow{ grid-template-columns: 1fr; }
  .flow__line{ display:none; }

  .pricing{ grid-template-columns: 1fr; }
  .pricing--new .plan{ min-height: unset; }

  .grid2{ grid-template-columns: 1fr; }
}
