:root{
  --hks-43: #0b63ce;   /* dein Blau */
  --hks-8:  #f97316;   /* dein Orange */
  --ink: #0f172a;
  --muted: #475569;
  --bg: #f8fafc;
  --card: #ffffff;
  --skeleton: #e5e7eb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2, 6, 23, .06);
}

*{ box-sizing:border-box; margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1200px,92vw); margin:0 auto; }

/* ===== Header & Navigation ===== */
.site-header{
  background: var(--hks-43);
  color:#fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}

header nav ul{
  list-style:none;
  display:flex;
  gap: clamp(14px,2vw,28px);
  font-weight:600;
}
header nav a{
  display:inline-block;
  padding:8px 2px;
  white-space:nowrap;
  border-radius:8px;
  transition: transform .08s ease, opacity .2s ease;
  opacity:.95;
}
header nav a:hover{
  opacity:1;
  transform:translateY(-1px);
  color: var(--hks-8);
}

/* Logo */
.corner-logo{
  position:absolute;
  right:20px;
  top:8px;
}
.corner-logo img{
  display:block;
  height:80px;
  width:auto;
  object-fit:contain;
}
@media(max-width:768px){
  .corner-logo img{ height:60px; }
}

/* ===== Hero ===== */
.hero{
  background: linear-gradient(180deg,#ffffff 0%,#f1f5f9 100%);
  padding: clamp(26px,4vw,40px) 0 clamp(10px,2vw,20px);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap: clamp(24px,4vw,48px);
  align-items:center;
}
.eyebrow{ font-size:14px; font-weight:700; color:var(--hks-43); }
h1{ font-size:clamp(34px,4.3vw,44px); line-height:1.1; margin:6px 0 14px; }
.lead{ color:var(--muted); font-size:17px; max-width:62ch; }

/* Buttons */
.cta{ margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }
.btn{
  border: 0;
  cursor: pointer;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-primary,
.btn-ghost {
  background: none;
  color: var(--hks-43);
  border: 2px solid var(--hks-43);
}
.btn-primary:hover,
.btn-ghost:hover {
  color: var(--hks-8);
  border-color: var(--hks-8);
}

/* Artboard Platzhalter */
.artboard{
  height: clamp(200px,28vw,300px);
  border-radius:20px;
  background:linear-gradient(135deg,#0ea5e9 0%,#2563eb 40%,#fb923c 85%,#f97316 100%);
  box-shadow: var(--shadow);
  position:relative;
}
.skeleton-line{
  position:absolute;
  left:20px;
  height:20px;
  border-radius:10px;
  background:rgba(255,255,255,.55);
}
.artboard .l1{ top:32px; width:38%; }
.artboard .l2{ top:78px; width:58%; }
.artboard .l3{ top:124px; width:34%; height:18px; }
.artboard .l4{ top:168px; width:48%; height:18px; }

/* ===== Sortiment ===== */
section{ padding: clamp(28px,5vw,54px) 0; }
.section-head{ margin-bottom:12px; }
.section-head p{ color:var(--muted); margin-top:6px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.card{ background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow); padding:16px; }
.ph{ height:120px; border-radius:12px; background:var(--skeleton); display:block; margin-bottom:14px; }
.card h3{ font-size:16px; margin-bottom:6px; }
.card h3 a{ color: var(--hks-43); text-decoration:none; }
.card h3 a:hover,
.card h3 a:focus{ color: var(--hks-8); }
.card p{ color:var(--muted); font-size:14px; }

/* ===== Warum wir ===== */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.pill{
  background:none;
  border:none;
  padding:0;
  border-radius:0;
  color:inherit;
  font-weight:700;
  font-size:14px;
  margin-bottom:8px;
  display:inline-block;
}

/* ===== Footer ===== */
footer{
  background: var(--hks-43);
  color:#e6f0ff;
  margin-top:30px;
  padding:24px 0 16px;
}
.footer-bar{ display:flex; align-items:center; gap:14px; margin-bottom:12px; }
.footer-logo{ height:40px; width:auto; display:block; }
.footer-name{ font-weight:800; color:#fff; font-size:14px; }
.footer-meta{ font-size:14px; color:#dbeafe; }
.footer-links{ margin-top:8px; font-size:14px; }
.footer-links a{ color:#fff; }
.footer-links a:hover{ text-decoration:underline; }

/* Responsive Layout */
@media(max-width:1020px){ .hero-grid{ grid-template-columns:1fr; } }
@media(max-width:900px){ .grid-4{ grid-template-columns:repeat(2,1fr);} .grid-3{ grid-template-columns:1fr;} }