:root {
  --red: #e30613;
  --red2: #ff2431;
  --dark: #06080b;
  --dark2: #10161d;
  --white: #ffffff;
  --soft: #f6f7f9;
  --text: #111827;
  --muted: #5f6b7a;
  --line: #e4e7ec;
  --green: #25d366;
  --shadow: 0 22px 60px rgba(9,14,23,.16);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(5,7,10,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display:flex; align-items:center; gap:15px; }
.brand img { width:62px; filter: drop-shadow(0 12px 28px rgba(227,6,19,.28)); }
.brand strong { display:block; font-size:22px; line-height:1.05; }
.brand span span { display:block; margin-top:5px; color:#d8dce4; font-size:12px; }
.menu { display:flex; align-items:center; gap:25px; font-weight:800; }
.menu a { color:#fff; opacity:.94; padding:30px 0; border-bottom:3px solid transparent; }
.menu a:hover,.menu a.active { opacity:1; color:#fff; border-bottom-color:var(--red); }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 22px;
  border-radius:10px;
  background:var(--red);
  color:#fff !important;
  border:0;
  font-weight:900;
  box-shadow:0 15px 32px rgba(227,6,19,.28);
  cursor:pointer;
}
.btn:hover { background:#c90410; transform: translateY(-1px); }
.btn.ghost { background:transparent; border:1px solid rgba(255,255,255,.36); box-shadow:none; }
.btn.white { background:#fff; color:#111 !important; box-shadow:none; }

.hero {
  color:#fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.70) 42%, rgba(0,0,0,.10) 100%),
    url('schichtplaner-hero.jpg') center center / cover no-repeat;
  min-height: 650px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.hero::after {
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:90px;
  background:linear-gradient(0deg, rgba(0,0,0,.42), transparent);
}
.hero-content { position:relative; z-index:2; max-width:640px; padding:80px 0; }
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--red2);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:20px;
}
.eyebrow::before {
  content:"";
  width:24px;
  height:24px;
  border:2px solid var(--red);
  border-radius:8px;
  box-shadow:inset 0 0 0 5px rgba(227,6,19,.14);
}
.hero h1 {
  margin:0 0 22px;
  font-size:clamp(46px,5.3vw,78px);
  line-height:.98;
  letter-spacing:-2px;
}
.hero h1 span { color:var(--red2); }
.hero p { font-size:20px; color:#edf1f7; max-width:580px; margin:0 0 28px; }
.checks {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 22px;
  list-style:none;
  margin:0 0 30px;
  padding:0;
}
.checks li {
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#f8fafc;
  font-weight:800;
}
.checks li::before {
  content:"✓";
  width:22px; height:22px;
  flex:0 0 22px;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:900;
  margin-top:2px;
}
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:28px; }
.hero-note { color:#d8dee8; display:grid; gap:8px; font-size:15px; }

.section { padding:76px 0; }
.section.light { background:#f6f7f9; }
.section.dark { background:linear-gradient(135deg,#07090c,#151d26); color:#fff; }
.section h2 { margin:0 0 18px; font-size:clamp(34px,4vw,54px); line-height:1.06; letter-spacing:-1.2px; }
.lead { color:var(--muted); font-size:18px; max-width:820px; margin:0 0 36px; }
.dark .lead { color:#cbd3de; }

.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.feature-card {
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
}
.feature-card img {
  width:100%;
  height:185px;
  object-fit:cover;
}
.feature-body { padding:22px; }
.feature-body h3 { margin:0 0 10px; font-size:22px; }
.feature-body p { color:#445064; margin:0; }
.more { display:inline-flex; margin-top:16px; color:var(--red); font-weight:900; }

.icon-strip {
  margin-top:26px;
  overflow:hidden;
  border-radius:22px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}
.icon-strip img { width:100%; }

.product-band {
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:38px;
  align-items:center;
}
.product-panel {
  background:linear-gradient(135deg,#090d12,#151d26);
  color:#fff;
  border-radius:28px;
  padding:42px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}
.product-panel p { color:#cfd7e3; }
.product-list { list-style:none; padding:0; margin:26px 0 0; display:grid; gap:10px; }
.product-list li { display:flex; gap:10px; align-items:flex-start; font-weight:800; }
.product-list li::before {
  content:"✓";
  width:22px; height:22px;
  flex:0 0 22px;
  border-radius:50%;
  background:var(--red);
  display:inline-flex;
  justify-content:center;
  align-items:center;
}
.product-visual {
  background:#fff;
  border-radius:24px;
  padding:14px;
  box-shadow:var(--shadow);
}
.product-visual img { border-radius:16px; width:100%; object-fit:cover; }

.video-band {
  display:grid;
  grid-template-columns:.35fr 1fr;
  gap:26px;
  align-items:center;
  background:#090d12;
  color:#fff;
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow);
}
.video-teaser {
  display:flex;
  align-items:center;
  gap:18px;
}
.play {
  width:78px; height:58px;
  border-radius:15px;
  background:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  box-shadow:0 16px 35px rgba(227,6,19,.26);
}
.video-band img { border-radius:16px; width:100%; }

.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.trust-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 35px rgba(10,15,25,.08);
}
.trust-card strong { display:block; font-size:18px; margin-bottom:8px; }
.trust-card p { color:#4d596b; margin:0; }

.cta {
  background:
    linear-gradient(135deg, rgba(227,6,19,.98), rgba(124,0,8,.98)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.22), transparent 28%);
  color:#fff;
  padding:56px 0;
}
.cta-grid {
  display:grid;
  grid-template-columns:1fr .72fr 180px;
  gap:34px;
  align-items:center;
}
.cta h2 { font-size:42px; line-height:1.08; margin:0 0 12px; }
.cta p { margin:0; color:#ffe5e7; font-size:18px; }
.contact-list { display:grid; gap:12px; font-size:20px; font-weight:900; }
.qr { background:#fff; padding:12px; border-radius:16px; box-shadow:0 18px 40px rgba(0,0,0,.20); }
.qr-label { font-family:"Comic Sans MS","Segoe Print",cursive; font-size:22px; transform:rotate(-7deg); text-align:center; margin-bottom:7px; }

.footer {
  background:#07090c;
  color:#cfd6e1;
  padding:52px 0 24px;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr .9fr;
  gap:34px;
  align-items:start;
}
.footer h3 { margin:0 0 16px; color:#fff; font-size:18px; }
.footer p { color:#aeb7c5; margin:0; }
.footer-links { display:grid; gap:10px; }
.footer-links a { color:#fff; font-weight:800; }
.status-list { display:grid; gap:9px; }
.status-item {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:#0d1218;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  padding:9px 11px;
}
.status-left { display:flex; align-items:center; gap:9px; }
.ampel { width:12px; height:12px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px rgba(39,209,88,.12); }
.ampel.yellow { background:#ffbf2e; box-shadow:0 0 0 4px rgba(255,191,46,.12); }
.status-online { color:#8effa9; font-weight:900; font-size:13px; }
.status-prep { color:#ffe18a; font-weight:900; font-size:13px; }
.socials { display:flex; gap:10px; }
.socials a {
  width:44px; height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#131922;
  color:#fff;
  font-weight:900;
  font-size:20px;
  border:1px solid rgba(255,255,255,.08);
}
.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:38px;
  padding-top:22px;
  color:#8994a6;
  font-size:14px;
}
.footer-bottom a { color:#fff; }

@media(max-width:1100px) {
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .product-band,.cta-grid,.video-band { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:780px) {
  .container { width:min(100% - 30px, 1180px); }
  .nav { height:auto; padding:18px 0; flex-direction:column; align-items:flex-start; }
  .menu { gap:14px; flex-wrap:wrap; }
  .menu a { padding:4px 0; }
  .hero { min-height:auto; }
  .hero-content { padding:58px 0; }
  .checks,.feature-grid,.trust-grid,.footer-grid { grid-template-columns:1fr; }
  .hero h1 { font-size:44px; }
  .cta-grid { gap:22px; }
}