:root{
  --bg:#050711;
  --text:#eef2ff;
  --muted:#b1bad3;
  --muted2:#95a0bf;
  --line:rgba(255,255,255,.10);

  --a1:#7c5cff;
  --a2:#2de2e6;

  --radius:18px;
  --radius2:26px;
  --shadow:0 24px 90px rgba(0,0,0,.55);
  --max:1120px;
}

*{box-sizing:border-box}
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 600px at 15% 10%, rgba(124,92,255,.20), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(45,226,230,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), #04050f 70%);
  line-height:1.5;
}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto;}
a{color:inherit; text-decoration:none}
p{margin:0; color:var(--muted)}
strong{color:var(--text)}
h1,h2,h3{letter-spacing:-0.02em}
.grad{
  background:linear-gradient(135deg, var(--a1), var(--a2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text); font-weight:800; font-size:14px;
  cursor:pointer; transition:.2s ease;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.06)}
.btn--primary{
  border-color:rgba(124,92,255,.55);
  background:linear-gradient(135deg, rgba(124,92,255,.35), rgba(45,226,230,.18));
}
.btn--dark{
  border-color:rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
}
.btn--ghost{background:transparent; border-color:rgba(255,255,255,.12)}
.btn--full{width:100%}
.btn--small{padding:10px 14px; font-size:13px}

/* Chips */
.chip{
  display:inline-flex; align-items:center;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px; transition:.2s ease;
}
.chip:hover{color:var(--text); background:rgba(255,255,255,.06)}
.chip--accent{
  border-color:rgba(45,226,230,.35);
  background:rgba(45,226,230,.10);
  color:var(--text);
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:60;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(8,10,18,.55);
  backdrop-filter:blur(12px);
}
.topbar__inner{display:flex; justify-content:space-between; align-items:center; gap:12px; padding:10px 0;}
.topbar__left{display:flex; align-items:center; gap:10px; color:var(--muted); font-size:13px;}
.topbar__right{display:flex; gap:10px; flex-wrap:wrap;}

.pulse{
  width:10px; height:10px; border-radius:999px;
  background:linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow:0 0 22px rgba(124,92,255,.40);
  animation:pulse 2.2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.25);opacity:.75}}

/* Header */
.header{
  position:sticky; top:44px; z-index:55;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(8,10,18,.38);
  backdrop-filter:blur(14px);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0;}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(124,92,255,.95), rgba(45,226,230,.70));
  color:#060913; font-weight:900;
}
.brand__mark--small{width:36px;height:36px;border-radius:14px}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:900}
.brand__tag{color:var(--muted2); font-size:12px}

.nav{display:flex; gap:10px; align-items:center}
.nav__link{
  padding:10px 12px; border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:.2s ease; font-size:14px;
}
.nav__link:hover{color:var(--text); border-color:rgba(255,255,255,.10); background:rgba(255,255,255,.03)}
.nav__link--btn{color:var(--text); border-color:rgba(124,92,255,.35); background:rgba(124,92,255,.14)}

.nav-toggle{
  display:none;
  width:46px;height:46px;border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  cursor:pointer;
}
.nav-toggle span{display:block;width:18px;height:2px;margin:4px auto;background:var(--text);border-radius:10px}

/* Sticky CTA */
.sticky-cta{position:fixed; left:0; right:0; bottom:14px; z-index:70; pointer-events:none;}
.sticky-cta__inner{
  pointer-events:auto;
  width:min(760px, calc(100% - 28px));
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,14,26,.72);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}
.sticky-cta__text{display:flex; flex-direction:column; gap:2px; font-size:13px; color:var(--muted)}

/* Hero */
.hero{padding:46px 0 18px}
.hero__grid{display:grid; grid-template-columns:1.1fr .9fr; gap:26px; align-items:start;}
.eyebrow{font-size:13px; color:var(--muted2); margin:0 0 10px;}
h1{margin:0 0 14px; font-size:44px; line-height:1.04;}
.lead{font-size:16px; margin:0 0 18px; max-width:60ch;}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:12px 0 14px;}

.trustgrid{display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:14px;}
.trustgrid__item{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.trustgrid__icon{width:22px;height:22px;display:grid;place-items:center}
.trustgrid__item span{display:block; color:var(--muted); font-size:12px; margin-top:2px}

.riskbox{
  margin-top:14px; padding:14px;
  border-radius:var(--radius2);
  border:1px solid rgba(45,226,230,.22);
  background:rgba(45,226,230,.08);
}
.riskbox__badge{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(45,226,230,.32);
  background:rgba(45,226,230,.12);
  font-size:12px; color:var(--text); margin-bottom:8px;
}

/* Preview mock */
.preview{
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.preview__top{
  display:flex; align-items:center; gap:8px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  color:var(--muted2); font-size:12px;
}
.dot{width:10px;height:10px;border-radius:999px;background:rgba(255,255,255,.18)}
.preview__url{margin-left:10px}
.preview__body{padding:16px}
.preview__card{
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,12,22,.62);
}
.preview__pill{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(124,92,255,.28);
  background:rgba(124,92,255,.12);
  font-size:12px; margin-bottom:10px;
}
.preview__card h3{margin:0 0 6px; font-size:18px; color:var(--text)}
.preview__card p{margin:0; font-size:13px}
.preview__btns{display:flex; gap:10px; margin-top:12px}
.preview__btn{height:34px;width:120px;border-radius:999px;border:1px solid rgba(124,92,255,.35);background:rgba(124,92,255,.22)}
.preview__btn--ghost{width:96px;border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.03)}
.preview__stats{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:12px}
.miniStat{padding:12px;border-radius:18px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.03)}
.miniStat span{display:block;color:var(--muted);font-size:12px;margin-top:3px}

.note{
  margin-top:12px; padding:14px;
  border-radius:var(--radius);
  border:1px solid rgba(124,92,255,.20);
  background:rgba(124,92,255,.10);
  color:var(--muted);
}
.note strong{display:block; margin-bottom:4px}

.logos{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap; padding:12px 0; color:var(--muted2);}
.logos span{padding:8px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.02);font-size:13px}

/* Sections */
.section{padding:64px 0}
.section--alt{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.section__head{max-width:70ch; margin-bottom:18px}
.section__head h2{margin:0 0 10px; font-size:30px; color:var(--text)}

/* Feature cards */
.features{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:12px}
.card{
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.card h3{margin:0 0 8px; color:var(--text)}
.card p{font-size:13px}

/* Split */
.split{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:16px}
.panel{
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.panel--accent{border-color:rgba(45,226,230,.20); background:rgba(45,226,230,.06)}
.panel h3{margin:0 0 10px; color:var(--text)}
.list{margin:0; padding-left:18px}
.list li{margin:10px 0; color:var(--muted)}

/* About */
.about{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:16px;
  align-items:center;
}
.about__media{
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,.20);
}
.about__img{
  display:block;
  width:100%;
  height:100%;
  max-height:420px;
  object-fit:cover;
}
.about__card{
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.about__text{color:var(--muted); margin:0 0 12px}
.about__bullets{margin:0 0 14px; padding-left:18px}
.about__bullets li{margin:8px 0; color:var(--muted)}
.about__cta{display:flex; gap:10px; flex-wrap:wrap}

/* Portfolio v2 */
.portfolio2{display:grid; grid-template-columns:1fr; gap:16px;}

.case{
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.case__header{margin-bottom:14px}
.case__header h3{margin:0 0 6px; color:var(--text); font-size:18px;}
.case__sub{margin:0; font-size:13px; color:var(--muted);}

.deviceRow{
  display:grid;
  grid-template-columns: 1fr 180px;
  gap:14px;
  align-items:end;
}

.device{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
}

.device__bar{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  color:var(--muted2);
  font-size:12px;
}
.device__url{margin-left:10px; opacity:.9}

.device__screen{background:rgba(0,0,0,.18);}
.device__screen img{display:block; width:100%; height:auto;}

/* Laptop */
.device--laptop .device__screen{aspect-ratio: 16 / 10;}
.device--laptop .device__screen img{height:100%; object-fit:cover;}

/* Phone */
.device--phone{
  border-radius:28px;
  padding:10px;
  background:rgba(255,255,255,.02);
}
.device--phone .device__screen{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  aspect-ratio: 9 / 19.5;
}
.device--phone .device__screen img{height:100%; object-fit:cover;}

.case__bullets{margin:14px 0 0; padding-left:18px;}
.case__bullets li{margin:8px 0; color:var(--muted); font-size:13px;}

.case--placeholder{border-color:rgba(124,92,255,.18); background:rgba(124,92,255,.06);}

/* Placeholder box */
.placeholderBox{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,12,22,.35);
}
.placeholderBox__icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  border:1px solid rgba(45,226,230,.18);
  background:rgba(45,226,230,.10);
}
.placeholderBox__text{display:flex; flex-direction:column; gap:2px;}
.placeholderBox__text span{color:var(--muted); font-size:13px}

/* Pricing (custom) */
.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.pricing--two{grid-template-columns:repeat(2,1fr);}

.price{
  position:relative;
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:0 18px 60px rgba(0,0,0,.20);
}
.price__head h3{margin:0 0 6px;color:var(--text)}
.price__head p{font-size:13px}
.price__val{display:flex;align-items:baseline;gap:6px;margin:14px 0 10px}
.euro{color:var(--muted2)}
.num{font-size:34px;font-weight:900;color:var(--text)}
.note{color:var(--muted2);font-size:12px}
.bullets{margin:10px 0 14px;padding-left:18px}
.bullets li{margin:8px 0;color:var(--muted)}

.price--featured{
  border-color:rgba(124,92,255,.22);
  background:linear-gradient(180deg, rgba(124,92,255,.12), rgba(255,255,255,.03));
}
.pill{
  position:absolute; top:14px; right:14px;
  font-size:12px; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(45,226,230,.22);
  background:rgba(45,226,230,.10);
}

/* Maintenance */
.maintenance{
  margin-top:14px;
  padding:16px;
  border-radius:var(--radius2);
  border:1px solid rgba(45,226,230,.18);
  background:rgba(45,226,230,.08);
}
.maintenance__badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(45,226,230,.28);
  background:rgba(45,226,230,.12);
  font-size:12px;
  margin-bottom:8px;
}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.step{
  padding:16px;border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  display:flex;gap:12px;align-items:flex-start;
}
.step__n{
  width:42px;height:42px;border-radius:16px;
  display:grid;place-items:center;font-weight:900;
  border:1px solid rgba(124,92,255,.28);
  background:rgba(124,92,255,.12);
}
.step__b{display:flex;flex-direction:column;gap:3px}
.step__b span{color:var(--muted);font-size:12px}

.guarantee{
  margin-top:14px;
  padding:16px;border-radius:var(--radius2);
  border:1px solid rgba(45,226,230,.18);
  background:rgba(45,226,230,.08);
  display:flex;gap:12px;align-items:flex-start;
}
.guarantee__icon{font-size:20px}
.guarantee__text{display:flex;flex-direction:column;gap:3px}
.guarantee__text span{color:var(--muted);font-size:13px}

/* FAQ */
.faq{display:grid;gap:10px}
.faq__q{
  width:100%;text-align:left;
  padding:14px 16px;border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  font-weight:900;
}
.faq__icon{
  width:28px;height:28px;border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  display:grid;place-items:center;
}
.faq__a{display:none;padding:0 16px 14px 16px}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  padding: 18px;
}
.contact p{ color: var(--muted); line-height: 1.6; }

.contact-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
}
.contact-card{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
}
.contact-title{
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-card a{
  font-weight: 800;
  color: rgba(255,255,255,0.90);
}
.contact-value{
  color: rgba(255,255,255,0.90);
  font-weight: 800;
}

.contact-cta{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  display:grid;
  gap: 12px;
}

.contact-list{
  margin: 12px 0 18px;
  padding-left: 18px;
  color: rgba(255,255,255,0.85);
}
.contact-list li{ margin: 7px 0; }

.tiny{color: var(--muted); font-size: 13px;}

.footer{
  padding:26px 0 86px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer__inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.footer__brand{display:flex;align-items:center;gap:12px}
.footer__links{display:flex;gap:12px;align-items:center}
.fine{color:var(--muted2);font-size:12px;margin:10px 0 0}

/* reveal */
.reveal{opacity:0;transform:translateY(10px);transition:.45s ease}
.reveal.is-in{opacity:1;transform:translateY(0)}

/* responsive */
@media (max-width:980px){
  h1{font-size:38px}
  .hero__grid,.contact,.about{grid-template-columns:1fr}
  .features,.pricing,.steps{grid-template-columns:1fr}
  .pricing--two{grid-template-columns:1fr}
  .preview__stats{grid-template-columns:1fr}
  .deviceRow{grid-template-columns:1fr}
  .device--phone{max-width:260px}
}
@media (max-width:720px){
  .nav-toggle{display:inline-block}
  .nav{
    position:fixed;
    inset:118px 20px auto 20px;
    display:none;
    flex-direction:column;
    padding:14px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(8,10,18,.92);
    backdrop-filter:blur(14px);
  }
  .nav.is-open{display:flex}
  .nav__link{width:100%}
  .sticky-cta__text span{display:none}
  .contact-cards{grid-template-columns:1fr}
  .placeholderBox{flex-direction:column; align-items:flex-start}
}



/* Footer Legal Buttons */
.legal-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--muted2);
  font-size:12px;
  line-height:1;
  transition:.2s ease;
}

.legal-btn:hover{
  color:var(--text);
  border-color:rgba(124,92,255,.35);
  background:rgba(124,92,255,.12);
}

/* wenn es am Handy zu eng wird */
@media (max-width:520px){
  .footer__links{flex-wrap:wrap; justify-content:flex-start}
}

/* Legal pages (Impressum / Datenschutz) */
.legal{
  padding:84px 0 60px;
  min-height:100vh;
}

.legal__inner{
  max-width:760px;
}

.legal h1{
  margin:0 0 18px;
  font-size:34px;
  line-height:1.1;
  color:var(--text);
}

.legal h3{
  margin:26px 0 10px;
  color:var(--text);
  font-size:16px;
}

.legal p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.65;
}