:root{
  --bg:#070A12;
  --card:#0B1220;
  --card2:#0E1629;
  --text:#EAF0FF;
  --muted:#A9B6D6;
  --line:rgba(255,255,255,.10);
  --brand:#3BC6FF;
  --brand2:#58F3C7;
  --shadow: 0 12px 28px rgba(0,0,0,.35);
  --radius:18px;
  --max:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(59,198,255,.18), transparent 60%),
    radial-gradient(1000px 500px at 90% 0%, rgba(88,243,199,.12), transparent 60%),
    var(--bg);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:18px; width:auto; height:auto; padding:10px 12px; background:#111; border:1px solid var(--line); border-radius:12px; z-index:9999}

header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,10,18,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; gap:10px; align-items:center; text-decoration:none;
}
.brand img{height:34px; width:auto}
.brand strong{font-size:14px; letter-spacing:.2px}
.brand span{display:block; font-size:12px; color:var(--muted)}

.menuBtn{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  font-weight:650;
}
.menuBtn svg{width:18px; height:18px}
nav ul{
  list-style:none; margin:0; padding:0;
  display:none;
}
nav a{
  text-decoration:none;
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  font-weight:650;
}
nav a:hover, nav a[aria-current="page"]{background:rgba(255,255,255,.06); color:var(--text)}
nav.open ul{
  display:block;
  padding:10px 0 16px;
}
nav.open a{margin:2px 0}

@media (min-width: 900px){
  .menuBtn{display:none}
  nav ul{display:flex; gap:6px}
  nav a{padding:10px 10px}
  nav.open ul{display:flex; padding:0}
}

.hero{
  padding:36px 0 18px;
}
.heroGrid{
  display:grid;
  gap:18px;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}
.kicker i{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(59,198,255,.12);
}
h1{margin:12px 0 10px; font-size:34px; line-height:1.12; letter-spacing:-.6px}
.lead{margin:0 0 16px; color:var(--muted); font-size:16px; max-width:62ch}
.ctaRow{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 0}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:750;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.btnPrimary{
  background: linear-gradient(135deg, rgba(59,198,255,.95), rgba(88,243,199,.92));
  color:#051018;
  border:0;
}
.btnSmall{padding:10px 12px; font-weight:700}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.heroMedia{
  position:relative;
  overflow:hidden;
  min-height: 260px;
}
.heroMedia img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
}
.heroMedia::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(800px 280px at 10% 0%, rgba(59,198,255,.20), transparent 60%),
              linear-gradient(180deg, rgba(7,10,18,.15), rgba(7,10,18,.75));
}
.heroBadge{
  position:absolute; left:14px; bottom:14px; right:14px;
  padding:12px 12px;
  background: rgba(7,10,18,.70);
  border:1px solid var(--line);
  border-radius:14px;
  z-index:2;
}
.heroBadge strong{display:block; font-size:14px}
.heroBadge span{display:block; color:var(--muted); font-size:12px; margin-top:2px}

@media (min-width: 900px){
  .hero{padding:52px 0 22px}
  .heroGrid{grid-template-columns: 1.05fr .95fr; align-items:stretch}
  h1{font-size:46px}
  .heroMedia{min-height: 420px}
}

.section{padding:22px 0}
.section h2{margin:0 0 10px; font-size:24px; letter-spacing:-.3px}
.section p{margin:0 0 14px; color:var(--muted)}
.grid{
  display:grid; gap:12px;
}
@media(min-width:760px){ .grid.cols2{grid-template-columns:1fr 1fr} }
@media(min-width:1000px){ .grid.cols3{grid-template-columns:1fr 1fr 1fr} }

.feature{
  padding:16px;
}
.feature h3{margin:8px 0 6px; font-size:18px}
.feature p{margin:0; color:var(--muted); font-size:14px}
.icon{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
}
.icon svg{width:18px; height:18px; opacity:.95}

.media{
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
.media img{width:100%; height:auto; display:block}
.media.cover{height:220px}
.media.cover img{height:100%; object-fit:cover}
.caption{padding:10px 12px; color:var(--muted); font-size:12px; line-height:1.5}

.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius: 14px;
  border:1px solid var(--line);
}
.table th,.table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.table th{color:var(--muted); font-weight:800; background: rgba(255,255,255,.03)}
.table tr:last-child td{border-bottom:0}

.footer{
  padding:28px 0 38px;
  color:var(--muted);
  border-top:1px solid var(--line);
  margin-top:26px;
}
.footer a{color:var(--muted)}
.footer .cols{display:grid; gap:14px}
@media(min-width:900px){ .footer .cols{grid-template-columns: 1.2fr .8fr .8fr} }
.small{font-size:12px; color:rgba(169,182,214,.85)}
hr.sep{border:0; border-top:1px solid var(--line); margin:16px 0}
.notice{padding:12px 14px; border-radius:14px; border:1px dashed rgba(255,255,255,.18); color:var(--muted); background: rgba(255,255,255,.03)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
}
label{display:block; margin:10px 0 6px; color:var(--muted); font-weight:700; font-size:13px}
form .row{display:grid; gap:12px}
@media(min-width:760px){ form .row{grid-template-columns:1fr 1fr} }


/* Brand logo (Easy Tec GmbH) */
.brand-logo{
  height: 34px;
  width: auto;
  display: block;
}
@media (min-width: 768px){
  .brand-logo{ height: 38px; }
}
