:root{
  --walter:#7a7256;
  --black:#000000;
  --text:#101010;
  --muted:#5c5c5c;
  --border: rgba(0,0,0,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.16);
  --radius: 22px;
  --max: 980px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:#0b0b0b;
  overflow-x:hidden;
}

/* Subtle background */
.bg{
  position:fixed;
  inset:-40%;
  background:
    radial-gradient(800px 450px at 20% 15%, rgba(122,114,86,.25), transparent 60%),
    radial-gradient(700px 400px at 85% 5%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(600px 350px at 70% 70%, rgba(122,114,86,.15), transparent 60%);
  filter: blur(10px);
  opacity: .9;
  z-index:-1;
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top:0;
  z-index:10;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brandtext{
  display:flex;
  gap:8px;
  letter-spacing:.08em;
  font-weight:900;
  user-select:none;
}
.brandtext__walter{ color: var(--walter); }
.brandtext__logistik{ color:#fff; }

.topbar__links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.88);
  font-weight:700;
  font-size:14px;
}
.topbar__links a{ color:inherit; text-decoration:none; }
.topbar__links a:hover{ opacity:.9; }
.sep{ opacity:.5; }

main{
  min-height: calc(100vh - 64px);
  display:grid;
  place-items:center;
  padding: 34px 0 54px;
}

.card{
  width:100%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.logoWrap{
  display:flex;
  justify-content:center;
  margin-bottom: 16px;
}
.logo{
  max-width: 220px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.15));
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(122,114,86,.12);
  border: 1px solid rgba(122,114,86,.22);
  color: var(--walter);
  font-weight: 900;
  margin: 0 0 12px;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.lead{
  margin: 0 0 18px;
  color: rgba(0,0,0,.72);
  font-weight: 650;
  line-height: 1.6;
  font-size: 17px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 18px;
}

.infoBox{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}
.infoBox__title{
  font-weight: 950;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.infoBox__link{
  display:block;
  text-decoration:none;
  color: var(--black);
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 10px;
}
.infoBox__link:hover{
  border-color: rgba(122,114,86,.35);
  box-shadow: 0 0 0 4px rgba(122,114,86,.10);
}

.list{
  margin:0;
  padding-left: 18px;
  color: rgba(0,0,0,.72);
  font-weight: 650;
  line-height: 1.7;
}

.ctaRow{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 8px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--black);
  color:#fff;
  border: 1px solid var(--black);
  text-decoration:none;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.btn:hover{ opacity:.92; }

.btn--ghost{
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,.14);
  box-shadow:none;
}

.footer{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
  color: rgba(0,0,0,.7);
  font-weight: 800;
}

.dot{
  width:8px;
  height:8px;
  border-radius: 999px;
  background: var(--walter);
  display:inline-block;
}

.muted{ color: rgba(0,0,0,.55); }

/* Responsive */
@media (max-width: 820px){
  .grid{ grid-template-columns: 1fr; }
  .card{ padding: 20px; }
}
