:root{
  --bg:#0b1220;
  --bg-soft:#10192c;
  --panel:rgba(255,255,255,.05);
  --line:rgba(255,255,255,.12);
  --text:#eef4ff;
  --muted:#aab8d3;
  --accent:#6ee7ff;
  --accent-2:#9f8bff;
  --success:#34d399;
  --shadow:0 22px 56px rgba(0,0,0,.35);
  --radius:22px;
  --radius-sm:16px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 10% -10%, rgba(110,231,255,.18), transparent 60%),
    radial-gradient(800px 400px at 95% 0%, rgba(159,139,255,.14), transparent 55%),
    var(--bg);
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(11,18,32,.72);
  border-bottom:1px solid var(--line);
}

.topbar-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand-mark{
width:48px;
height:48px;

background-image:url("https://www.vollmer-networking.de/photo/images/logo-vonetwork_130_158.png");
background-size:85%;
background-position:center;
background-repeat:no-repeat;

background-color:transparent;
} 

.brand small{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.nav a{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.nav a:hover,
.nav a.active{color:var(--text)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:800;
  transition:transform .16s ease, opacity .16s ease;
}

.btn:hover{
  transform:translateY(-1px);
  opacity:.96;
}

.btn-primary{
  border:0;
  color:#07111c;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:24px;
  align-items:center;
  padding:34px 0 8px;
}

.hero-small{
  padding:34px 0 8px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
}

.eyebrow-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 6px rgba(52,211,153,.14);
  flex:0 0 auto;
}

h1{
  margin:0 0 14px;
  font-size:clamp(2.4rem, 4.4vw, 4.2rem);
  line-height:1.02;
  letter-spacing:-.03em;
}

.gradient-text{
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  margin:0 0 20px;
  color:var(--muted);
  font-size:18px;
  line-height:1.68;
  max-width:62ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}

.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.chip{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
  font-weight:750;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.stat{
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}

.stat strong{
  display:block;
  font-size:24px;
  line-height:1.1;
  margin-bottom:6px;
}

.stat span{
  display:block;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.hero-visual{
  position:relative;
  min-height:540px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--bg-soft);
  box-shadow:var(--shadow);
}

.hero-visual img{
  width:100%;
  height:100%;
  min-height:540px;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,18,32,.08), rgba(11,18,32,.82));
}

.hero-card{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(11,18,32,.62);
  backdrop-filter:blur(12px);
}

.hero-card h3{
  margin:0 0 6px;
  font-size:18px;
}

.hero-card p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}

section{padding:58px 0 0}

.section-head{
  margin-bottom:20px;
}

.section-head h2{
  margin:0 0 10px;
  font-size:clamp(1.75rem, 2.5vw, 2.45rem);
  line-height:1.08;
  letter-spacing:-.02em;
}

.section-head p{
  margin:0;
  max-width:78ch;
  color:var(--muted);
  line-height:1.72;
}

.grid-2,.grid-3,.grid-4{
  display:grid;
  gap:16px;
}

.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.card{
  padding:20px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

.card h3{
  margin:0 0 8px;
  font-size:18px;
}

.card p,
.card li{
  color:var(--muted);
  line-height:1.68;
}

.card p{margin:0}
.card ul{margin:14px 0 0;padding-left:18px}

.step-no,
.icon-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  margin-bottom:12px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  font-weight:800;
  font-size:14px;
}

.platform-card{
  overflow:hidden;
  padding:0;
}

.platform-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}

.platform-body{padding:18px}

.platform-tag{
  display:inline-block;
  margin-bottom:10px;
  padding:7px 10px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#07101b;
  font-size:12px;
  font-weight:900;
}

.split-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:stretch;
}

.media-card,
.copy-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}

.media-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:100%;
}

.copy-card{padding:24px}

.copy-card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.72;
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}

.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.14);
  color:var(--muted);
  font-size:13px;
  font-weight:750;
}

.trust-band,
.cta-band{
  padding:24px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(110,231,255,.12), rgba(159,139,255,.10));
  box-shadow:var(--shadow);
}

.trust-grid{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:24px;
  align-items:center;
}

.big-number{
  text-align:center;
  padding:24px 16px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
}

.big-number strong{
  display:block;
  font-size:64px;
  line-height:.95;
  letter-spacing:-.04em;
}

.big-number span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-weight:700;
}

.trust-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.trust-point{
  padding:16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  line-height:1.6;
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.cta-band h2{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.1;
}

.cta-band p{
  margin:0;
  max-width:68ch;
  color:var(--muted);
  line-height:1.68;
}



.form-grid{
  display:grid;
  gap:14px;
  margin-top:12px;
}

.form-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.input,
.textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  line-height:1.4;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.input::placeholder,
.textarea::placeholder{
  color:#90a0c0;
}

.input:hover,
.textarea:hover{
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.22);
}

.input:focus,
.textarea:focus{
  border-color:rgba(110,231,255,.9);
  background:rgba(255,255,255,.065);
  box-shadow:0 0 0 4px rgba(110,231,255,.12);
}

.textarea{
  min-height:150px;
  resize:vertical;
}

.form-note{
  margin-top:2px;
  font-size:13px;
  color:var(--muted);
  line-height:1.65;
}

.form-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}








footer{
  margin-top:58px;
  padding:20px 0 36px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}


.select{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:14px;
  padding:14px 48px 14px 16px;
  font:inherit;
  line-height:1.4;
  outline:none;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9d6f0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:18px;
}

/* Hover */

.select:hover{
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.22);
}

/* Focus */

.select:focus{
  border-color:rgba(110,231,255,.9);
  background:rgba(255,255,255,.065);
  box-shadow:0 0 0 4px rgba(110,231,255,.12);
}

/* Dropdown Optionen */

.select option{
  background:#16233a;
  color:#eef4ff;
}

/* Disabled Text */

.select option[disabled]{
  color:#8fa1c5;
}

/* Firefox Fix */

select:-moz-focusring{
  color:transparent;
  text-shadow:0 0 0 #eef4ff;
}






@media (max-width:1080px){
  .hero,.split-band,.trust-grid{grid-template-columns:1fr}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .trust-points{grid-template-columns:1fr 1fr}
}

@media (max-width:860px){
  .nav{display:none}
  .grid-2,.grid-3,.grid-4,.hero-stats,.trust-points,.form-row{grid-template-columns:1fr}
  .hero-visual,.hero-visual img{min-height:440px}
  .cta-band{align-items:flex-start}
}

@media (max-width:560px){
  .container{width:min(var(--max), calc(100% - 22px))}
  .topbar-inner{min-height:68px}
  .hero{padding-top:26px}
  h1{font-size:clamp(2rem, 9vw, 3rem)}
  .big-number strong{font-size:52px}
}


.cookie-banner {
position:fixed;
bottom:0;
left:0;
width:100%;
background:#111;
color:#fff;
padding:14px;
z-index:9999;
font-size:14px;
}

.cookie-inner{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.cookie-banner a{
color:#ff6a00;
}

.cookie-banner button{
background:#ff6a00;
border:none;
color:#fff;
padding:8px 16px;
cursor:pointer;
}

