/* ============================================================
   BAUSTELLENBEWACHUNG MÜNCHEN – styles.css
   ============================================================ */

:root {
  --navy:     #0d2137;
  --navy2:    #0a1a2e;
  --navy-mid: #153452;
  --green:    #1a7a3c;
  --green-dk: #155f2e;
  --green-lt: #a8d5b5;
  --amber:    #f5a623;
  --white:    #ffffff;
  --off:      #f7f6f3;
  --border:   #dde3ea;
  --text:     #1a1a1a;
  --muted:    #5a6474;
  --light:    #8a94a2;
  --radius:   4px;
  --shadow:   0 2px 16px rgba(0,0,0,.09);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-top {
  background: var(--navy2);
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-top-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem;
  font-size: .75rem; color: rgba(255,255,255,.5);
}
.header-top-inner a { color: rgba(255,255,255,.6); font-size: .75rem; }
.header-top-inner a:hover { color: var(--green-lt); text-decoration: none; }
.header-main {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem; font-weight: 700;
  color: #fff; text-decoration: none; letter-spacing: .01em;
}
.nav-logo span { color: var(--green-lt); }
.nav-center { display: flex; align-items: center; gap: 1.75rem; }
.nav-center a {
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.75); transition: color .15s;
}
.nav-center a:hover { color: #fff; text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-tel {
  font-size: .95rem; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: .4rem;
}
.nav-tel::before { content: '☏'; font-size: .85rem; color: var(--green-lt); }
.btn-primary {
  background: var(--green); color: #fff;
  padding: .55rem 1.25rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 600; white-space: nowrap;
  transition: background .15s; display: inline-block;
}
.btn-primary:hover { background: var(--green-dk); text-decoration: none; }
.btn-secondary {
  background: transparent; color: #fff;
  padding: .55rem 1.25rem; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.3);
  font-size: .82rem; font-weight: 500;
  transition: border-color .15s; display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.7); text-decoration: none; }
.btn-large {
  padding: .85rem 2rem; font-size: .95rem;
}
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: #e09b1f; text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0 0;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1rem; margin-bottom: .75rem; display: block; }
.footer-brand p { line-height: 1.75; margin-bottom: .5rem; }
.footer-brand a { color: rgba(255,255,255,.5); }
.footer-brand a:hover { color: #fff; }
.footer-col h4 {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: .85rem;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 2rem;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .5rem; font-size: .75rem; color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--off); }
.section-dark { background: var(--navy); color: #fff; }
.section-navy2 { background: var(--navy2); color: #fff; }
.s-tag {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); margin-bottom: .6rem;
}
.section-dark .s-tag, .section-navy2 .s-tag { color: var(--green-lt); }
.s-h2 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.15; color: var(--navy);
  margin-bottom: .75rem;
}
.section-dark .s-h2, .section-navy2 .s-h2 { color: #fff; }
.s-intro { font-size: 1rem; color: var(--muted); max-width: 600px; line-height: 1.75; margin-bottom: 2.5rem; }
.section-dark .s-intro { color: rgba(255,255,255,.65); }
.text-center { text-align: center; }
.text-center .s-intro { margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 4.5rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(26,122,60,.04) 18px, rgba(26,122,60,.04) 20px);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: .3rem .85rem; border-radius: 2px;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 1.5rem; width: fit-content;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-lt); animation: blink 1.8s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700; line-height: 1.1; color: #fff;
  margin-bottom: 1.25rem; letter-spacing: -.01em;
}
.hero h1 em { font-style: normal; color: var(--green-lt); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 540px; line-height: 1.75; margin-bottom: 1.75rem;
}
.hero-pain {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem;
}
.pain-tag {
  display: flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: .3rem .75rem; border-radius: 2px;
  font-size: .78rem; color: rgba(255,255,255,.6);
}
.pain-tag .x { color: #e24b4b; font-weight: 600; }
.hero-cta { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-stat { }
.hero-stat strong {
  display: block; font-family: 'Source Serif 4', serif;
  font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1;
}
.hero-stat span { font-size: .7rem; color: rgba(255,255,255,.4); letter-spacing: .06em; }
.hero-divider { width: 1px; background: rgba(255,255,255,.12); }

/* FORM CARD */
.form-card {
  background: #fff; border-radius: 6px;
  overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.form-head {
  background: var(--green); padding: 1.25rem 1.5rem; color: #fff;
}
.form-head h3 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem; font-weight: 700; margin-bottom: .2rem;
}
.form-head p { font-size: .78rem; opacity: .85; }
.form-body { padding: 1.5rem; }
.f-row { margin-bottom: .85rem; }
.f-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
label { display: block; font-size: .7rem; font-weight: 500; color: var(--muted); letter-spacing: .07em; text-transform: uppercase; margin-bottom: .3rem; }
input, select, textarea {
  width: 100%; padding: .6rem .85rem;
  border: 1.5px solid var(--border); border-radius: 3px;
  font-family: inherit; font-size: .9rem; color: var(--text);
  background: #fff; outline: none; transition: border-color .18s;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; min-height: 70px; }
.form-submit {
  width: 100%; padding: .85rem; background: var(--navy); color: #fff;
  border: none; border-radius: 3px; font-family: inherit;
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: background .15s; margin-top: .25rem;
}
.form-submit:hover { background: var(--navy-mid); }
.form-note { font-size: .68rem; color: var(--light); text-align: center; margin-top: .5rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .85rem 0;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.trust-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem; color: rgba(255,255,255,.6);
}
.trust-check { color: var(--green-lt); font-weight: 600; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; padding: 1.75rem;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow); border-color: #c5cfd8; }
.card-dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.card-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.card-num {
  font-family: 'Source Serif 4', serif;
  font-size: .75rem; font-weight: 700; color: var(--green);
  letter-spacing: .12em; margin-bottom: .75rem;
}
.card-dark .card-num { color: var(--green-lt); }
.card-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.card-dark h3 { color: #fff; }
.card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.card-dark p { color: rgba(255,255,255,.55); }
.card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .82rem; font-weight: 500; color: var(--green);
  margin-top: .75rem;
}
.card-dark .card-link { color: var(--green-lt); }

/* ============================================================
   RISK SECTION
   ============================================================ */
.risk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.risk-item { background: #fff; padding: 1.5rem; }
.section-alt .risk-item { background: var(--off); }
.risk-item:hover { background: #fff; }
.risk-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.risk-item h4 { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.risk-item p { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item { display: flex; gap: .85rem; align-items: flex-start; }
.check-box {
  width: 22px; height: 22px; border-radius: 3px; flex-shrink: 0;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; margin-top: 1px;
}
.section-dark .check-box { background: var(--green); }
.check-title { font-size: .93rem; font-weight: 600; color: var(--navy); margin-bottom: .15rem; }
.section-dark .check-title { color: #fff; }
.check-text { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.section-dark .check-text { color: rgba(255,255,255,.55); }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.price-table { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.price-head { background: var(--navy); color: #fff; padding: 1rem 1.5rem; font-family: 'Source Serif 4', serif; font-size: 1rem; font-weight: 600; }
.price-body { background: #fff; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: .9rem 1.5rem; border-bottom: 1px solid var(--border); font-size: .9rem; }
.price-row:last-child { border-bottom: none; }
.price-label { color: var(--muted); }
.price-val { font-weight: 600; color: var(--navy); }
.price-note { font-size: .72rem; color: var(--light); padding: .75rem 1.5rem; border-top: 1px solid var(--border); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 0; cursor: pointer; user-select: none;
  font-size: .95rem; font-weight: 500; color: var(--navy); gap: 1rem;
}
.section-dark .faq-q { color: #fff; border-bottom-color: rgba(255,255,255,.1); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--green); transition: transform .2s;
}
.section-dark .faq-icon { border-color: rgba(255,255,255,.2); color: var(--green-lt); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: .87rem; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.section-dark .faq-a { color: rgba(255,255,255,.55); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.15rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--off); border-bottom: 1px solid var(--border);
  padding: .6rem 0; font-size: .78rem;
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; color: var(--light); }
.breadcrumb-inner a { color: var(--light); }
.breadcrumb-inner a:hover { color: var(--navy); }
.breadcrumb-inner span { color: var(--muted); margin: 0 .35rem; }

/* ============================================================
   PAGE HERO (für Unterseiten)
   ============================================================ */
.page-hero {
  background: var(--navy); padding: 3.5rem 0; border-bottom: 3px solid var(--green);
}
.page-hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: #fff; margin-bottom: .75rem;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 580px; line-height: 1.75; margin-bottom: 1.5rem; }
.page-hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--green); padding: 3rem 0;
}
.cta-band-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #fff;
}
.cta-band p { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .3rem; }
.cta-band-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--green); padding: .85rem 1.75rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; transition: background .15s; }
.btn-white:hover { background: var(--off); text-decoration: none; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); padding: .85rem 1.75rem; border-radius: var(--radius); font-size: .9rem; font-weight: 500; transition: border-color .15s; }
.btn-outline-white:hover { border-color: #fff; text-decoration: none; }

/* ============================================================
   EINSATZGEBIET
   ============================================================ */
.gebiet-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.gebiet-tag {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: .4rem 1rem; border-radius: 2px;
  font-size: .8rem; color: rgba(255,255,255,.7);
  text-decoration: none; transition: background .15s, color .15s;
}
.gebiet-tag:hover { background: rgba(255,255,255,.14); color: #fff; text-decoration: none; }
.gebiet-tag.featured { border-color: var(--green-lt); color: var(--green-lt); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
.legal-page h1 { font-family: 'Source Serif 4', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.legal-page .meta { font-size: .8rem; color: var(--light); margin-bottom: 2rem; }
.legal-page h2 { font-family: 'Source Serif 4', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 2rem 0 .75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.legal-page h2:first-of-type { border-top: none; padding-top: 0; }
.legal-page h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 1.25rem 0 .4rem; }
.legal-page p, .legal-page li { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: .6rem; }
.legal-page ul, .legal-page ol { padding-left: 1.25rem; margin-bottom: .75rem; }
.legal-page a { color: var(--green); }
.info-box { background: var(--off); border: 1px solid var(--border); border-radius: 4px; padding: 1.25rem 1.5rem; margin: 1rem 0; }
.info-box p { margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 380px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-center { display: none; }
  .header-top { display: none; }
  .header-main { padding: 0 1.25rem; }
  .nav-tel { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .form-card { margin-top: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; padding: 0 1.25rem; }
  .footer-bottom { padding: 1rem 1.25rem; flex-direction: column; align-items: flex-start; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .trust-bar-inner { gap: .5rem; }
  .trust-item { font-size: .72rem; }
  .cta-band-inner { flex-direction: column; }
  .legal-page { padding: 2.5rem 1.25rem; }
  .page-hero { padding: 2.5rem 0; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 0 3.5rem; }
  .hero-meta { flex-direction: column; gap: 1rem; }
  .hero-divider { display: none; }
  .f-grid2 { grid-template-columns: 1fr; }
}
