:root {
  --bg: #081120;
  --bg-soft: #0f1b2f;
  --surface: #ffffff;
  --surface-soft: #f2f5fa;
  --text: #0f172a;
  --muted: #5b6475;
  --light: #e7eef8;
  --primary: #2563eb;
  --primary-dark: #173d91;
  --accent: #facc15;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 17, 32, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.brand-logo {
  width: 150px;
  height: auto;
}
.brand-title { font-size: 1.1rem; font-weight: 700; }
.brand-subtitle { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: #a9b7cd; }
.nav { display: flex; gap: 18px; color: #d8e0ef; font-size: 0.95rem; }
.nav a:hover, .footer-links a:hover { color: #fff; }
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: url('assets/hero-camera.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,6,23,0.88), rgba(15,23,42,0.74)),
              radial-gradient(circle at top right, rgba(37,99,235,0.35), transparent 28%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 72px 0;
}
.section-label {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ec0ff;
}
.hero h1, .section h2 { line-height: 1.12; margin: 0 0 16px; }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 3.5rem); max-width: 17ch; }
.hero-copy { color: #dde7f7; max-width: 720px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px; border-radius: 16px; font-weight: 700; border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #1d4ed8; }
.btn-secondary { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); }
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: center;
}
.hero-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(8px);
}
.hero-card span { display: block; color: #a9b7cd; font-size: 0.9rem; }
.hero-card strong { display: block; margin-top: 6px; color: #fff; font-size: 1.05rem; }
.section { padding: 86px 0; }
.section-light { background: var(--surface-soft); }
.section-dark { background: var(--bg); color: #fff; }
.section-dark .section-label { color: #9ec0ff; }
.section-dark p, .section-dark a { color: #dbe6f6; }
.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature-card { background: var(--surface-soft); }
.card h3, .feature-card h3 { margin-top: 0; margin-bottom: 10px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.two-col-balance { align-items: center; }
.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.area-list span {
  background: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.contact-list p { margin: 0 0 10px; }
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.22);
}
.contact-form label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #fff;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(2,6,23,0.4);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-note {
  margin-top: 12px;
  font-size: 0.88rem;
  color: #a9b7cd !important;
}
.hidden-botcheck { display: none !important; }
.site-footer {
  background: #060d19;
  color: #a9b7cd;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
}
.footer-links { display: flex; gap: 18px; }
.legal-page { padding-top: 48px; }
.legal-page h1 { margin-top: 0; }
@media (max-width: 980px) {
  .hero-content,
  .split,
  .three-up,
  .four-up { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .brand-logo { width: 82px; }
  .hero { min-height: auto; }
  .hero-content { padding: 48px 0; }
  .hero-card-grid, .area-list { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; text-align: center; }
}


.menu-dropdown {
  position: relative;
}
.menu-toggle {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.menu-toggle:hover {
  background: rgba(255,255,255,0.14);
}
.menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  background: rgba(8, 17, 32, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.28);
  padding: 10px;
  display: none;
}
.menu-panel.open {
  display: block;
}
.menu-panel a {
  display: block;
  color: #d8e0ef;
  padding: 12px 14px;
  border-radius: 12px;
}
.menu-panel a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-whatsapp {
  background: #25d366;
  color: #081120;
}
.btn-whatsapp:hover {
  background: #1fbe5c;
}
.map-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}
.map-card iframe {
  display: block;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: #25d366;
  color: #081120;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
}
.whatsapp-float:hover {
  background: #1fbe5c;
}
@media (max-width: 640px) {
  .brand-logo { width: 120px; }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }
}



.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: rgba(8, 17, 32, 0.98);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.28);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 760px;
}
.cookie-banner__content span {
  color: #d8e0ef;
  font-size: 0.95rem;
}
.cookie-banner__content a {
  color: #9ec0ff;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cookie-btn-primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.cookie-btn-primary:hover {
  background: #1d4ed8;
}
.cookie-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.cookie-btn-secondary:hover {
  background: rgba(255,255,255,0.14);
}
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.cookie-modal__box {
  width: min(560px, 100%);
  background: #fff;
  color: #0f172a;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.28);
}
.cookie-modal__box h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
}
.cookie-option p {
  margin: 6px 0 0;
  color: #475569;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.map-placeholder {
  min-height: 420px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: #f8fafc;
  color: #0f172a;
}
.map-placeholder p {
  margin: 10px 0 16px;
  color: #475569;
}
@media (max-width: 900px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1 1 auto;
  }
}


@media (max-width: 1180px) {
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


#einbruch-statistik .card {
  background: #fff5f5;
  font-size: 1.05rem;
}

#einbruch-statistik strong {
  color: #b91c1c;
}


.alarm-section {
  position: relative;
  overflow: visible;
}
.alarm-card {
  background: #fff5f5;
  border-left: 6px solid #dc2626;
  font-size: 1.05rem;
  position: relative;
}
.alarm-card p {
  margin: 0 0 12px;
}
.alarm-highlight {
  margin-top: 18px !important;
}
.alarm-section::before,
.alarm-section::after {
  content: "!";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 76px;
  height: 76px;
  background: #dc2626;
  color: #ffffff;
  font-weight: 900;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
  z-index: 2;
}
.alarm-section::before {
  left: 18px;
}
.alarm-section::after {
  right: 18px;
}
@media (max-width: 900px) {
  .alarm-section::before,
  .alarm-section::after {
    display: none;
  }
}
