/* Trumpf Schädlingsbekämpfung — statische Site */
:root {
  --green-900: #0d2e22;
  --green-800: #12422f;
  --green-700: #18573e;
  --green-600: #1f7350;
  --green-100: #e7f4ed;
  --lime: #8bc34a;
  --amber: #f6a623;
  --amber-dark: #d4860a;
  --ink: #16201b;
  --muted: #5a6b62;
  --line: #e2e8e4;
  --bg: #ffffff;
  --bg-soft: #f5f8f6;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(13, 46, 34, .28);
  --maxw: 1140px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-600); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .4em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--green-600); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 700; font-size: 1.02rem; text-decoration: none;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-call { background: var(--amber); color: #2a1c00; box-shadow: 0 8px 20px -8px rgba(246,166,35,.7); }
.btn-call:hover { background: var(--amber-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand img { height: 58px; width: auto; }
.brand .brand-city {
  font-size: .8rem; line-height: 1.15; font-weight: 700; color: var(--green-700);
  text-transform: uppercase; letter-spacing: .04em;
  padding-left: 14px; border-left: 2px solid var(--line);
}
.header-phone { display: flex; align-items: center; gap: 14px; }
.header-phone .num { font-weight: 800; font-size: 1.05rem; color: var(--green-800); text-decoration: none; white-space: nowrap; }
.header-phone .num span { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); }

/* Hero */
.hero { position: relative; color: #fff; background: var(--green-800); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,46,34,.94) 0%, rgba(13,46,34,.78) 45%, rgba(13,46,34,.35) 100%);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .wrap { position: relative; z-index: 2; padding: clamp(60px, 9vw, 110px) 22px; max-width: var(--maxw); }
.hero-inner { max-width: 660px; }
.hero h1 { color: #fff; }
.hero h1 .city { color: var(--lime); }
.hero p.lead { font-size: 1.2rem; color: #e6f0ea; margin-bottom: 1.6em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; font-size: .95rem; }
.hero-trust span { display: flex; align-items: center; gap: 8px; color: #d9e8df; }
.hero-trust span::before { content: "✓"; color: var(--lime); font-weight: 900; }

/* Sections */
section { padding: clamp(48px, 7vw, 84px) 0; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-soft { background: var(--bg-soft); }
.bg-green { background: var(--green-800); color: #fff; }
.bg-green h2, .bg-green h3 { color: #fff; }
.bg-green .eyebrow { color: var(--lime); }

/* USP strip */
.usps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.usp { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.usp .ico { width: 42px; height: 42px; border-radius: 10px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 12px; }
.usp h3 { font-size: 1.05rem; margin-bottom: .3em; }
.usp p { font-size: .92rem; color: var(--muted); margin: 0; }

/* Pests grid */
.pests { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pest {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; transition: transform .14s ease, box-shadow .14s ease, border-color .14s;
}
.pest:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-600); }
.pest .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-weight: 800; margin-bottom: 12px; }
.pest h3 { font-size: 1.05rem; margin-bottom: .25em; }
.pest p { font-size: .9rem; color: var(--muted); margin: 0; }

/* Split / image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; max-height: 420px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag { background: var(--green-100); color: var(--green-700); font-weight: 600; font-size: .9rem; padding: .4em .9em; border-radius: 999px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .n { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); color: #2a1c00; font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; font-size: 1.1rem; }
.step h3 { font-size: 1.05rem; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }

/* Region */
.region-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.region-list .tag { background: rgba(255,255,255,.12); color: #eafff2; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; margin-bottom: 12px; background: var(--bg); }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--green-600); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 0 0 16px; }

/* CTA band */
.cta-band { background: var(--green-900); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .phone-big { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--lime); text-decoration: none; display: inline-block; margin: 8px 0 20px; }

/* Footer */
.site-footer { background: #0a2118; color: #b9cabf; font-size: .92rem; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
.site-footer a { color: #cdded4; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem; }

/* Responsive */
@media (max-width: 900px) {
  .usps, .pests, .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split .img-col { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .header-phone .num span { display: none; }
  .header-phone .num { font-size: .95rem; }
  .brand .brand-txt small { display: none; }
  .usps, .pests, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
