:root {
  --ink: #22282b;
  --ink-soft: #343b3d;
  --graphite: #5b6263;
  --steel: #b7bab6;
  --line: #e2e4e1;
  --mist: #f6f7f5;
  --soft-panel: #ecefed;
  --soft-panel-2: #f2f3f1;
  --deep-soft: #2f3638;
  --white: #ffffff;
  --red: #df2e2e;
  --red-dark: #b91f24;
  --green: #71885f;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --shadow: 0 20px 54px rgba(2, 6, 10, 0.12);
  --radius: 8px;
  --container: 100%;
  --page-gutter: clamp(18px, 3vw, 54px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8f6 46%, #f3f4f2 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  right: -120px;
  bottom: 4vh;
  z-index: 0;
  width: min(48vw, 620px);
  aspect-ratio: 3 / 4;
  background: url("../assets/bug-watermark.svg") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.site-header,
main,
.footer,
.toast {
  position: relative;
  z-index: 1;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(2, 6, 10, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.top-strip {
  background: #33393b;
  color: var(--white);
  font-size: 0.82rem;
}

.top-strip__inner,
.nav-shell,
.container {
  width: min(var(--container), calc(100% - var(--page-gutter) * 2));
  margin: 0 auto;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  min-height: 36px;
  flex-wrap: wrap;
}

.top-strip a {
  color: var(--white);
  opacity: 0.9;
}

.top-strip span {
  position: relative;
  padding-left: 18px;
  white-space: nowrap;
}

.top-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.category-rail {
  border-top: 1px solid rgba(2, 6, 10, 0.06);
  background: #f5f6f4;
}

.category-rail .container {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
}

.category-rail a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 6px;
  padding: 0 13px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 780;
  white-space: nowrap;
}

.category-rail a:hover {
  color: var(--white);
  background: var(--deep-soft);
}

.store-hero {
  padding: 28px 0 0;
  background: var(--white);
}

.store-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.store-tile {
  min-height: clamp(390px, 46vw, 640px);
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(2, 6, 10, 0.06), rgba(2, 6, 10, 0.72)),
    url("../assets/hero-insektenschutz.png") center / cover;
  box-shadow: 0 16px 42px rgba(2, 6, 10, 0.1);
}

.store-tile::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.store-tile--dark {
  background:
    linear-gradient(180deg, rgba(47, 54, 56, 0.1), rgba(47, 54, 56, 0.74)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    #737a78;
  background-size: auto, 14px 14px, 14px 14px, auto;
}

.store-tile span,
.store-tile h1,
.store-tile h2,
.store-tile p,
.store-tile strong {
  position: relative;
}

.store-tile span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-tile h1,
.store-tile h2 {
  max-width: 590px;
  margin: 10px 0 10px;
  font-size: 2.65rem;
  line-height: 1;
  letter-spacing: 0;
}

.store-tile p {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
}

.store-tile strong {
  width: fit-content;
  border-radius: 6px;
  background: var(--red);
  padding: 11px 14px;
}

.benefit-strip {
  padding: 20px 0;
  background: var(--white);
}

.benefit-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-strip__grid div {
  min-height: 96px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.benefit-strip strong {
  display: block;
}

.benefit-strip span {
  color: var(--graphite);
  font-size: 0.9rem;
}

.proof-band {
  padding: 22px 0;
  background: linear-gradient(135deg, #eef0ed, #dfe3df);
  color: var(--ink);
}

.proof-band__grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(150px, 0.22fr));
  gap: 16px;
  align-items: center;
}

.proof-band h2 {
  margin: 8px 0 0;
  max-width: 760px;
  font-size: 2rem;
  line-height: 1.08;
}

.proof-stat {
  min-height: 112px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(34, 40, 43, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.proof-stat strong {
  display: block;
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
}

.proof-stat span {
  color: var(--graphite);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 126px;
}

.brand img {
  width: 116px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--graphite);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--mist);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.3rem;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 16px;
  font-weight: 780;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(223, 46, 46, 0.22);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--dark {
  color: var(--white);
  background: var(--deep-soft);
}

.btn--light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(2, 6, 10, 0.16);
}

.btn--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn--whatsapp {
  color: var(--white);
  background: var(--whatsapp-dark);
  box-shadow: 0 14px 28px rgba(18, 140, 74, 0.2);
}

.btn--whatsapp:hover {
  background: #0f7a40;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #596160;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 32%, rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0.02) 100%);
}

.hero__content {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--red);
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  margin: 18px 0 18px;
  font-size: 4.2rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 610px;
  margin: 0;
  color: var(--graphite);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 42px;
}

.metric {
  border-left: 5px solid var(--red);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(2, 6, 10, 0.08);
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.metric span {
  color: var(--graphite);
  font-size: 0.88rem;
}

.section {
  padding: 84px 0;
}

.section--soft {
  background: var(--mist);
}

.section--dark {
  color: var(--white);
  background: linear-gradient(135deg, #3f4648, #596160);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section__head h2,
.split h2,
.quote-panel h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section__head p {
  max-width: 520px;
  margin: 0;
  color: var(--graphite);
}

.section--dark .section__head p,
.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.product-grid,
.reference-grid,
.service-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card,
.reference-card,
.service-card,
.feature-card,
.quote-panel,
.admin-panel,
.table-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card,
.service-card,
.feature-card {
  min-height: 245px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.product-card::after,
.service-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 132px;
  height: 132px;
  border: 18px solid rgba(223, 46, 46, 0.09);
  border-radius: 50%;
}

.product-card__icon,
.service-card__icon,
.feature-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--red);
  background: #fff2f2;
  font-weight: 900;
}

.product-card h3,
.service-card h3,
.feature-card h3 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
}

.product-card p,
.service-card p,
.feature-card p {
  margin: 0;
  color: var(--graphite);
}

.product-card ul,
.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--graphite);
  font-size: 0.94rem;
}

.product-card li,
.service-card li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 44px;
  align-items: center;
}

.split p {
  color: var(--graphite);
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.process-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--deep-soft);
  font-weight: 840;
}

.process-item h3 {
  margin: 0 0 4px;
}

.process-item p {
  margin: 0;
}

.mesh-demo {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(2, 6, 10, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(2, 6, 10, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, #eef0ed);
  background-size: 13px 13px, 13px 13px, auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mesh-demo::before,
.mesh-demo::after {
  content: "";
  position: absolute;
  inset: 44px;
  border: 18px solid var(--deep-soft);
}

.mesh-demo::after {
  inset: 86px 70px;
  border-color: rgba(223, 46, 46, 0.88);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
  opacity: 0.92;
}

.configurator {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.quote-panel {
  padding: 26px;
  box-shadow: 0 14px 32px rgba(2, 6, 10, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 740;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 10px 12px;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(223, 46, 46, 0.12);
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--graphite);
  font-size: 0.88rem;
  line-height: 1.45;
}

.privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.privacy-consent a {
  color: var(--red-dark);
  font-weight: 820;
  text-decoration: underline;
}

.estimate-box {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px;
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(236,239,237,0.96)),
    var(--soft-panel);
  border: 1px solid rgba(34, 40, 43, 0.1);
}

.estimate-box__whatsapp {
  width: 100%;
}

.estimate-box__total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(34, 40, 43, 0.12);
  padding-top: 22px;
}

.estimate-box strong {
  font-size: 2.1rem;
  line-height: 1;
}

.estimate-box p {
  margin: 0;
  color: var(--graphite);
}

.measurement-preview {
  display: grid;
  gap: 12px;
  margin: 12px 0;
  border: 1px solid rgba(34, 40, 43, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(34, 40, 43, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(34, 40, 43, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.58);
  background-size: 22px 22px, 22px 22px, auto;
  padding: 14px;
}

.measurement-preview__head,
.measurement-preview__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.measurement-preview__head span {
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.measurement-preview__head strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 6px;
  background: var(--red);
  padding: 0 10px;
  color: var(--white);
  font-size: 0.86rem;
}

.measurement-svg {
  width: 100%;
  height: auto;
  min-height: 250px;
  display: block;
  overflow: visible;
}

.measurement-preview__meta {
  border-top: 1px solid rgba(34, 40, 43, 0.12);
  padding-top: 12px;
  color: var(--graphite);
  font-size: 0.88rem;
}

.swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.swatch {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(34, 40, 43, 0.14);
  border-radius: 6px;
}

.swatch[data-color="black"] {
  background: #0b0d0f;
}

.swatch[data-color="gray"] {
  background: #a9aca8;
}

.swatch[data-color="white"] {
  background: #ffffff;
}

.swatch[data-color="red"] {
  background: var(--red);
}

.reference-card {
  overflow: hidden;
  background: var(--white);
}

.reference-card__visual {
  height: 170px;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(2, 6, 10, 0.13) 1px, transparent 1px),
    linear-gradient(135deg, #f9faf8, #dfe2df);
  background-size: 12px 12px, 12px 12px, auto;
  border-bottom: 8px solid #69706e;
  position: relative;
}

.reference-card__visual::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 8px;
  background: var(--red);
}

.reference-card__body {
  padding: 20px;
}

.image-panel {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft-panel);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.recommend-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.recommend-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.recommend-card__visual {
  height: 210px;
  margin: -16px -16px 16px;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(2, 6, 10, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, #e8ebe7);
  background-size: 12px 12px, 12px 12px, auto;
  border-bottom: 8px solid #69706e;
}

.recommend-card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.recommend-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.recommend-card p {
  margin: 0;
  color: var(--red);
  font-weight: 840;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reviews-section {
  background: var(--white);
}

.review-summary {
  min-width: 210px;
  display: grid;
  justify-items: end;
  gap: 2px;
}

.review-summary strong {
  font-size: 2.2rem;
  line-height: 1;
}

.review-summary small {
  color: var(--graphite);
  font-weight: 720;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--red);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.review-stars .is-muted {
  color: var(--steel);
}

.review-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(34, 40, 43, 0.06);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.review-card__verified {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 840;
  text-transform: uppercase;
}

.review-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.review-card p {
  margin: 0 0 20px;
  color: var(--graphite);
}

.review-card footer {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-card footer span {
  color: var(--graphite);
  font-size: 0.84rem;
}

.review-empty {
  min-height: 280px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border: 1px dashed var(--steel);
  border-radius: var(--radius);
  background: var(--mist);
  padding: 34px;
}

.review-empty__stars {
  color: var(--red);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.review-empty h3 {
  margin: 12px 0 6px;
  font-size: 1.5rem;
}

.review-empty p {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--graphite);
}

.family-band {
  color: var(--white);
  background: var(--deep-soft);
  padding: 48px 0;
}

.family-band .eyebrow {
  color: #ff6c6c;
}

.family-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px 44px;
  align-items: end;
}

.family-band h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.02;
}

.family-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.family-band__points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}

.family-band__points span {
  position: relative;
  padding-left: 18px;
  font-weight: 820;
}

.family-band__points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.video-showcase {
  overflow: hidden;
}

.work-video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.work-video-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
  text-align: left;
  box-shadow: 0 14px 32px rgba(34, 40, 43, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.work-video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 46, 46, 0.42);
  box-shadow: 0 22px 48px rgba(34, 40, 43, 0.12);
}

.work-video-card:focus-visible {
  outline: 3px solid rgba(223, 46, 46, 0.34);
  outline-offset: 4px;
}

.work-video-card__media {
  position: relative;
  min-height: 168px;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34, 40, 43, 0.05), rgba(34, 40, 43, 0.58)),
    url("../assets/hero-insektenschutz.png") var(--video-pos, 50%) center / cover;
}

.work-video-card__media::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.work-video-card__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--red);
}

.work-video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(223, 46, 46, 0.92);
  box-shadow: 0 16px 34px rgba(223, 46, 46, 0.28);
  transform: translate(-50%, -50%);
}

.work-video-card__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
}

.work-video-card__body {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.work-video-card__body strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.15;
}

.work-video-card__body small {
  color: var(--graphite);
  font-weight: 760;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.video-modal.is-open {
  display: grid;
  place-items: center;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 40, 43, 0.72);
  backdrop-filter: blur(8px);
}

.video-modal__panel {
  position: relative;
  width: min(980px, calc(100% - 28px));
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(34, 40, 43, 0.28);
}

.video-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: var(--white);
  background: rgba(34, 40, 43, 0.68);
  font-weight: 900;
}

.video-modal__media {
  aspect-ratio: 16 / 9;
  background: var(--deep-soft);
}

.video-modal__media video,
.video-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal__caption {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
}

.video-modal__caption span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-modal__caption strong {
  font-size: 1.25rem;
}

.service-promise {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.service-promise h2 {
  margin: 12px 0;
  font-size: 2.1rem;
  line-height: 1.08;
}

.service-promise p {
  color: var(--graphite);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 840;
}

.faq-list p {
  margin: 12px 0 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--whatsapp-dark);
  padding: 0 18px;
  font-weight: 860;
  box-shadow: 0 16px 42px rgba(18, 140, 74, 0.34);
}

.floating-whatsapp:hover {
  background: #0f7a40;
  transform: translateY(-1px);
}

.reference-card h3 {
  margin: 0 0 6px;
}

.reference-card p {
  margin: 0;
  color: var(--graphite);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  border-top: 7px solid var(--red);
  padding: 34px 0 0;
}

.cta-band h2 {
  margin: 0 0 8px;
}

.cta-band p {
  margin: 0;
}

.footer {
  background: #3b4243;
  color: var(--white);
  padding: 52px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3,
.footer h4 {
  margin: 0 0 12px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
  overflow-wrap: anywhere;
}

.footer a {
  display: block;
  padding: 4px 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.page-hero {
  padding: 76px 0 58px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    url("assets/hero-insektenschutz.png") center / cover;
}

.legal-layout {
  max-width: 980px;
}

.legal-panel {
  display: grid;
  gap: 10px;
}

.legal-panel h2 {
  margin: 14px 0 0;
  font-size: 1.18rem;
}

.legal-panel p {
  margin: 0;
  color: var(--graphite);
}

.legal-panel a {
  color: var(--red-dark);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.legal-version {
  margin-top: 20px !important;
  font-weight: 820;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 10px 13px;
  color: var(--graphite);
  font-weight: 740;
}

.filter-chip.active,
.filter-chip:hover {
  color: var(--white);
  background: var(--deep-soft);
  border-color: var(--deep-soft);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}

.comparison th,
.comparison td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison th {
  color: var(--white);
  background: var(--deep-soft);
}

.comparison tr:nth-child(even) td {
  background: var(--mist);
}

.admin-body {
  min-height: 100vh;
  background: #f4f5f3;
}

.admin-shell {
  display: grid;
  grid-template-columns: 278px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 24px;
  color: var(--white);
  background: #3a4142;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-brand img {
  width: 104px;
  height: 54px;
  object-fit: contain;
  background: #3a4142;
  border-radius: 6px;
}

.admin-brand strong {
  display: block;
}

.admin-brand span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.admin-nav {
  display: grid;
  gap: 6px;
}

.admin-nav button,
.admin-nav a {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  text-align: left;
  padding: 0 12px;
  font-weight: 740;
}

.admin-nav button:hover,
.admin-nav button.active,
.admin-nav a:hover,
.admin-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.table-panel select,
.filter-bar select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 7px 10px;
  color: var(--ink);
}

.admin-sidebar__footer {
  margin-top: auto;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.admin-main {
  min-width: 0;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.admin-topbar > div:first-child {
  display: grid;
  gap: 2px;
}

.admin-topbar > div:first-child span {
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-topbar > div:first-child strong {
  font-size: 1.08rem;
}

.admin-search {
  width: min(430px, 100%);
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 13px;
  background: var(--white);
}

.admin-content {
  padding: 28px;
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

.admin-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-section__head h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.admin-section__head p {
  margin: 6px 0 0;
  color: var(--graphite);
}

.admin-command {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(2, 6, 10, 0.04);
}

.admin-command h2 {
  margin: 8px 0;
  font-size: 1.8rem;
  line-height: 1.08;
}

.admin-command p {
  margin: 0;
  color: var(--graphite);
}

.admin-command__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.kpi {
  min-height: 128px;
  border-radius: var(--radius);
  padding: 18px;
  color: var(--white);
  background: #58605f;
  position: relative;
  overflow: hidden;
}

.kpi:nth-child(2) {
  background: var(--graphite);
}

.kpi:nth-child(3) {
  background: var(--red);
}

.kpi:nth-child(4) {
  background: var(--green);
}

.kpi:nth-child(5) {
  background: #707775;
}

.kpi span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.kpi strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.admin-panel,
.table-panel {
  padding: 20px;
  box-shadow: 0 12px 28px rgba(2, 6, 10, 0.04);
}

.admin-panel h2,
.table-panel h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.status-list {
  display: grid;
  gap: 10px;
}

.pipeline-list {
  display: grid;
  gap: 10px;
}

.pipeline-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px;
  background: var(--mist);
}

.pipeline-item:hover {
  border-color: var(--red);
  background: #fff7f7;
}

.pipeline-item span {
  color: var(--graphite);
  font-weight: 780;
}

.pipeline-item strong {
  font-size: 1.2rem;
}

.status-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.status-item strong {
  display: block;
}

.status-item span {
  color: var(--graphite);
  font-size: 0.86rem;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 9px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--mist);
  white-space: nowrap;
}

.badge--red {
  color: var(--white);
  background: var(--red);
}

.badge--dark {
  color: var(--white);
  background: var(--deep-soft);
}

.badge--green {
  color: var(--white);
  background: var(--green);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.data-table th {
  color: var(--graphite);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.row-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.mini-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--whatsapp-dark);
  font-size: 0.82rem;
  font-weight: 840;
}

.lead-workspace {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lead-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(2, 6, 10, 0.04);
}

.lead-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.lead-card__head strong {
  display: block;
  font-size: 1.08rem;
}

.lead-card__head span:not(.badge) {
  color: var(--graphite);
}

.lead-card__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.lead-card__body div {
  min-height: 76px;
  display: grid;
  align-content: center;
  border-radius: 6px;
  background: var(--mist);
  padding: 12px;
}

.lead-card__body span {
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.lead-card__body strong {
  font-size: 0.94rem;
}

.lead-card__note {
  margin: 0;
  border-left: 4px solid var(--red);
  padding: 8px 0 8px 12px;
  color: var(--graphite);
}

.lead-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lead-card__actions form {
  margin: 0;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
}

.check-field {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 740;
}

.check-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.review-create-panel {
  margin-bottom: 18px;
}

.review-create-panel > div:first-child {
  margin-bottom: 16px;
}

.review-create-panel h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}

.review-admin-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.review-admin-form .field--wide {
  grid-column: span 2;
}

.review-admin-list {
  display: grid;
  gap: 16px;
}

.review-admin-card {
  display: grid;
  gap: 14px;
}

.review-admin-card__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.content-preview {
  display: grid;
  gap: 12px;
}

.content-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.chart-wrap {
  height: 290px;
}

.chart-wrap canvas {
  width: 100%;
  height: 100%;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: 340px;
  border-radius: 6px;
  color: var(--white);
  background: var(--deep-soft);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links,
  .header-actions .btn--primary {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links.open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 116px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: 650px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .section__head,
  .split,
  .configurator,
  .admin-grid,
  .store-hero__grid,
  .proof-band__grid,
  .service-promise,
  .admin-command,
  .family-band__grid {
    grid-template-columns: 1fr;
  }

  .section__head {
    display: grid;
  }

  .product-grid,
  .reference-grid,
  .service-grid,
  .feature-grid,
  .kpi-grid,
  .benefit-strip__grid,
  .recommendation-grid,
  .review-grid,
  .work-video-grid,
  .lead-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-command__actions {
    justify-content: flex-start;
  }

  .family-band__points {
    grid-column: auto;
  }

  .review-admin-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-card__body {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .admin-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .top-strip__inner,
  .nav-shell,
  .container,
  .hero__content {
    width: min(100% - 28px, var(--container));
  }

  .top-strip__inner,
  .cta-band,
  .footer__bottom,
  .admin-topbar,
  .admin-section__head {
    align-items: start;
    flex-direction: column;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .top-strip__inner {
    justify-content: center;
    padding: 8px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 88px;
  }

  .brand__sub {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 58%, rgba(255, 255, 255, 0.3) 100%);
  }

  .hero__content {
    padding: 72px 0 92px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.3rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero__metrics,
  .product-grid,
  .reference-grid,
  .service-grid,
  .feature-grid,
  .kpi-grid,
  .form-grid,
  .footer__grid,
  .benefit-strip__grid,
  .recommendation-grid,
  .review-grid,
  .work-video-grid,
  .lead-card-grid,
  .lead-card__body {
    grid-template-columns: 1fr;
  }

  .family-band__points,
  .review-admin-form {
    grid-template-columns: 1fr;
  }

  .review-admin-form .field--wide {
    grid-column: auto;
  }

  .review-summary {
    justify-items: start;
  }

  .review-admin-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .work-video-card__media {
    min-height: 210px;
  }

  .video-modal__panel {
    width: calc(100% - 20px);
  }

  .top-strip span:nth-child(n+3) {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .btn--whatsapp {
    min-height: 42px;
    padding: 0 11px;
    font-size: 0.86rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .proof-band h2,
  .service-promise h2 {
    font-size: 1.65rem;
  }

  .lead-card__actions {
    align-items: stretch;
  }

  .lead-card__actions .btn,
  .lead-card__actions form,
  .lead-card__actions select {
    width: 100%;
  }

  .store-tile {
    min-height: 330px;
    padding: 24px;
  }

  .store-tile h1,
  .store-tile h2 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .content-row {
    grid-template-columns: 1fr;
  }

  .table-panel {
    overflow-x: auto;
  }

  .admin-content,
  .admin-topbar {
    padding-left: 16px;
    padding-right: 16px;
  }
}
