:root{
  /* Aus Logo abgeleitete Markenfarben */
  --brand-blue:#118CB8;
  --brand-cyan:#1CB5CC;
  --brand-teal:#188380;
  --brand-green:#3FB27D;
  --brand-orange:#D37024;

  /* UI */
  --bg0:#070A10;
  --bg1:#0A1220;
  --bg2:#0B162A;
  --stroke: rgba(255,255,255,.10);
  --text:#EAF2FF;
  --muted:#A9B6D3;
  --shadow: 0 18px 70px rgba(0,0,0,.40);
  --radius: 18px;
  --container: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 12% 10%, rgba(28,181,204,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 15%, rgba(63,178,125,.16), transparent 55%),
    radial-gradient(900px 500px at 40% 92%, rgba(17,140,184,.14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg2));
}

a{color:inherit}
a:hover{opacity:.92}

.container{max-width:var(--container); margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-999px; top:-999px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip:focus{left:16px; top:16px; z-index:9999}

.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,16,.55);
  border-bottom:1px solid var(--stroke);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand__logo{
  height:30px; width:auto;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
}
.brand__domain{
  font-weight:800; letter-spacing:.2px; opacity:.95;
}

.nav{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:750;
}
.nav a:hover{color:var(--text)}

.navbtn{
  display:none;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding:10px 10px;
  cursor:pointer;
}
.navbtn__bar{
  display:block;
  width:22px; height:2px;
  background: rgba(255,255,255,.75);
  margin:4px 0;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
  text-decoration:none;
  box-shadow:none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); text-decoration:none}
.btn--ghost{background: transparent}
.btn--primary{
  border-color: rgba(28,181,204,.35);
  background: linear-gradient(180deg, rgba(28,181,204,.25), rgba(63,178,125,.14));
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.badge{
  display:inline-flex;
  padding:7px 10px;
  border:1px solid var(--stroke);
  border-radius: 999px;
  color:var(--muted);
  background: rgba(255,255,255,.04);
  font-weight:850;
  margin:0 0 12px;
}

/* Hero */
.hero{padding:56px 0 26px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
}

h1{
  font-size: clamp(34px, 4.6vw, 54px);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.7px;
}

.accent{color:var(--brand-cyan)}
.accent2{color:var(--brand-green)}
.lead{font-size:1.08rem; color:var(--muted); line-height:1.65; margin:0 0 18px}

.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin: 0 0 16px}

.hero__bullets{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin: 0 0 14px;
}
.bullet{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding:12px;
}
.bullet__kicker{display:block; color:rgba(255,255,255,.65); font-weight:900; font-size:.85rem}
.bullet__text{display:block; color:var(--text); font-weight:800; margin-top:4px}

.trustline{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:8px;
}
.pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color:rgba(255,255,255,.82);
  font-weight:800;
  font-size:.92rem;
}

/* Visual card */
.visualcard{
  border:1px solid rgba(28,181,204,.22);
  background:
    radial-gradient(700px 240px at 10% 12%, rgba(28,181,204,.18), transparent 60%),
    radial-gradient(700px 240px at 80% 16%, rgba(63,178,125,.14), transparent 60%),
    rgba(255,255,255,.02);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow:hidden;
  height:100%;
}
.visualcard__top{
  display:flex; align-items:center; gap:7px;
  padding:14px;
  border-bottom:1px solid var(--stroke);
}
.dot{width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,.18)}
.visualcard__label{margin-left:8px; color:rgba(255,255,255,.70); font-weight:850; font-size:.92rem}

.visualcard__body{padding:16px}
.heroimg{width:100%; height:auto; border-radius: 14px; border:1px solid var(--stroke); background: rgba(0,0,0,.12)}
.microgrid{
  display:grid; grid-template-columns: repeat(2, 1fr);
  gap:10px;
  margin-top:12px;
}
.micro{
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.14);
  border-radius: 14px;
  padding:10px;
}
.micro__title{display:block; font-weight:900}
.micro__text{display:block; color:var(--muted); margin-top:2px}
.note{color:var(--muted); line-height:1.6; margin:12px 0 0; font-size:.95rem}

/* Sections */
.section{padding:44px 0}
.section--muted{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}
.section__head h2{margin:0 0 6px; font-size:1.7rem}
.section__head p{margin:0 0 18px; color:var(--muted); line-height:1.65}

.grid{display:grid; gap:14px}

.tri{grid-template-columns: repeat(3, 1fr)}
.cards{grid-template-columns: repeat(3, 1fr)}
.solutions{grid-template-columns: repeat(4, 1fr)}
.security{grid-template-columns: repeat(3, 1fr)}

.card{
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:16px;
  background: rgba(255,255,255,.03);
}
.card--soft{background: rgba(255,255,255,.02)}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.75}

.card__icon{
  width:42px; height:42px;
  border-radius: 14px;
  border:1px solid rgba(28,181,204,.28);
  background: linear-gradient(180deg, rgba(28,181,204,.18), rgba(63,178,125,.10));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
}
.card__icon svg{
  width:22px; height:22px;
  fill:none;
  stroke: rgba(255,255,255,.86);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:.95;
}

.ill{
  width:100%;
  height:auto;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.10);
  margin-bottom:12px;
}

/* Callout */
.callout{
  margin-top:14px;
  border:1px solid rgba(63,178,125,.22);
  background: rgba(63,178,125,.08);
  border-radius: 16px;
  padding:14px;
  color: rgba(255,255,255,.88);
  line-height:1.6;
}

/* Steps */
.steps{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.steps li{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding:14px;
  display:flex;
  gap:12px;
}
.step__nr{
  width:34px; height:34px;
  border-radius: 12px;
  border:1px solid rgba(28,181,204,.28);
  background: rgba(28,181,204,.12);
  display:flex; align-items:center; justify-content:center;
  font-weight:950;
}
.steps h3{margin:0 0 6px}
.steps p{margin:0; color:var(--muted); line-height:1.6}

/* CTA */
.cta{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  border:1px solid rgba(28,181,204,.22);
  background:
    radial-gradient(900px 260px at 10% 10%, rgba(28,181,204,.18), transparent 55%),
    radial-gradient(900px 260px at 80% 20%, rgba(63,178,125,.14), transparent 55%),
    rgba(255,255,255,.02);
  border-radius: calc(var(--radius) + 6px);
  padding:18px;
}
.cta__copy h2{margin:0 0 8px}
.cta__copy p{margin:0; color:var(--muted); line-height:1.65}
.ctablocks{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}

.cta__form{display:grid; gap:10px; align-content:start}
.cta__form input{
  width:100%;
  padding:12px 14px;
  border-radius: 12px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
.cta__form input:focus{border-color: rgba(28,181,204,.55)}
.hint{margin:0; color:var(--muted); font-size:.92rem; line-height:1.5}
.formmsg{margin:0; font-size:.95rem}
.smallprint{color:var(--muted); font-size:.92rem; line-height:1.6}

/* FAQ */
.faq details{
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  padding:14px 16px;
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:900}
.faq p{color:var(--muted); line-height:1.6; margin:10px 0 0}

/* Contact & footer */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contact__list{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.75}
.contact__box{
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:16px;
  background: rgba(255,255,255,.02);
}

.footer{
  border-top:1px solid var(--stroke);
  padding:20px 0;
  color:var(--muted);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.footer__links{display:flex; gap:12px}

/* Mobile */
@media (max-width: 1040px){
  .hero__grid{grid-template-columns: 1fr}
}
@media (max-width: 980px){
  .hero__bullets{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .tri{grid-template-columns: 1fr}
  .solutions{grid-template-columns: 1fr}
  .security{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .cta{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}

  .navbtn{display:inline-block}
  .nav{
    position: fixed;
    top:64px; left:14px; right:14px;
    background: rgba(7,10,16,.92);
    border:1px solid var(--stroke);
    border-radius: 16px;
    padding:14px;
    display:none;
    flex-direction:column;
    gap:10px;
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
}


/* Conversion + Trust additions (v4) */
.fj-badges{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:flex-start}
.fj-badge{
  display:inline-flex;align-items:center;gap:.35rem;
  padding:.45rem .65rem;
  border-radius: 999px;
  border:1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.70);
  color: var(--fj-ink);
  font-size: .85rem;
  white-space: nowrap;
}
.fj-compare-icon{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(2,6,23,.10);
  background: radial-gradient(120px 60px at 30% 20%, rgba(34,211,238,.25), transparent 70%),
              rgba(255,255,255,.75);
  color: var(--fj-ink);
}
.fj-compare:hover{transform: translateY(-2px);transition: transform .15s ease}

