:root {
  color-scheme: light;
  --ink: #121815;
  --muted: #55625e;
  --line: #ccd7d2;
  --paper: #ffffff;
  --soft: #f6f7f4;
  --teal: #087063;
  --teal-dark: #08483f;
  --mint: #e7f1ed;
  --orange: #b86f1c;
  --orange-soft: #f6eee3;
  --signal: #e3b341;
  --shadow: 0 12px 28px rgba(18, 24, 21, 0.08);
  --container: 1280px;
  --wide-container: 1520px;
  --content-wide: 1420px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 6px;
  --h1-min: 2rem;
  --h1-fluid: calc(1.5rem + 2vw);
  --h1-max: 3.9rem;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 92px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, system-ui, sans-serif;
  line-height: 1.55;
}

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

[hidden] {
  display: none !important;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

a {
  color: inherit;
}

:where(h1, h2, h3, p, li, a, span, strong, small) {
  min-width: 0;
}

:where(#anfrage, #leistungen, #faq, .section, .split-section, .seo-story, .area-directory, .service-hero, .local-hero, .service-content, .local-content, .local-image-story, .content-module, .bento-card) {
  scroll-margin-top: 96px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px var(--pad);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark img {
  width: 18px;
  height: 30px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  overflow: visible;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a,
.nav-group summary {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 8px;
  color: #334640;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.nav-group summary:hover {
  color: var(--teal-dark);
}

.primary-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: transparent;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  font-weight: 800;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  cursor: pointer;
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-group[open] summary {
  color: var(--teal-dark);
  background: var(--soft);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 260px;
  max-height: min(70vh, 640px);
  overflow-y: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(18, 24, 21, 0.1);
}

.nav-menu a {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 4px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  color: #fff;
  background: var(--teal-dark);
  white-space: nowrap;
}

.button svg,
.nav-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button:hover,
.nav-cta:hover {
  transform: none;
}

.button-primary {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: none;
}

.button-primary:hover {
  background: var(--teal);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-muted {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 22, 19, 0.88) 0%, rgba(8, 22, 19, 0.68) 48%, rgba(8, 22, 19, 0.34) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(600px, 700px);
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
  width: min(100%, var(--wide-container));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) var(--pad);
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow,
.form-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero .eyebrow {
  color: #98f0df;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: var(--h1-min);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

@media (min-width: 360px) {
  h1 {
    font-size: var(--h1-fluid);
  }
}

@media (min-width: 1440px) {
  h1 {
    font-size: var(--h1-max);
  }
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.request-card {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(18, 24, 21, 0.08);
  padding: clamp(18px, 3vw, 24px);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  list-style: none;
}

.form-conversion-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.form-conversion-head strong,
.form-conversion-head span {
  display: block;
}

.form-conversion-head strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.form-conversion-head span {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-progress li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 8px;
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  color: #51635d;
  font-size: 0.86rem;
  font-weight: 850;
}

.form-progress li:last-child {
  border-right: 0;
}

.form-progress li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #51635d;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.9rem;
}

.form-progress li.active {
  color: var(--teal-dark);
  background: #edf5f1;
}

.form-progress li.active span {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.step-help {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.form-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 12px;
  margin: 0 0 16px;
  padding: 10px 12px;
  background: #f7faf8;
  border-left: 3px solid var(--teal-dark);
  border-radius: 4px;
}

.form-summary strong {
  grid-row: 1 / span 2;
  color: var(--ink);
  font-size: 0.9rem;
}

.form-summary span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.choice-grid,
.field-grid {
  display: grid;
  gap: 10px;
}

.choice-grid {
  grid-template-columns: 1fr;
}

.choice-grid.single {
  grid-template-columns: 1fr;
}

.choice {
  display: grid;
  grid-template-columns: 22px 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.choice::after {
  display: none;
  content: "";
}

.choice:has(input:checked) {
  background: #f7faf8;
  border-color: var(--teal);
  box-shadow: inset 4px 0 0 var(--teal-dark);
}

.choice:has(input:checked)::after {
  display: none;
  content: "";
}

.choice:has(input:focus-visible) {
  outline: 3px solid rgba(227, 179, 65, 0.45);
  outline-offset: 2px;
}

.choice input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--teal-dark);
}

.choice-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.choice-icon::before {
  display: block;
  width: 23px;
  height: 23px;
  background: currentColor;
  content: "";
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.choice:has(input:checked) .choice-icon {
  color: var(--teal-dark);
  background: #fff;
  border-color: var(--teal-dark);
}

.choice strong,
.choice small {
  display: block;
}

.choice span {
  min-width: 0;
}

.choice strong {
  font-size: 1rem;
  line-height: 1.2;
}

.choice small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

@media (min-width: 1181px) {
  .request-card .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-card .choice-grid.single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-card .choice {
    grid-template-columns: 20px 40px minmax(0, 1fr);
    min-height: 76px;
    padding: 12px;
  }

  .request-card .choice-icon {
    width: 40px;
    height: 40px;
  }

  .request-card .choice strong {
    font-size: 0.98rem;
  }

  .request-card .choice small {
    font-size: 0.84rem;
  }
}

.field-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-step[data-step="2"] .field-grid > label:first-child,
.contact-method {
  grid-column: 1 / -1;
}

.field-grid label {
  display: grid;
  gap: 6px;
  color: #263a34;
  font-size: 0.98rem;
  font-weight: 800;
}

.contact-method {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-method legend {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  color: #263a34;
  font-weight: 800;
  line-height: 1.3;
}

.contact-method legend span,
.contact-method legend small {
  display: block;
}

.contact-method legend small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-label {
  line-height: 1.3;
}

.field-help {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 700;
}

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

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
}

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

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16);
}

.form-error {
  min-height: 22px;
  margin: 12px 0 0;
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 750;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.form-actions .button-primary {
  margin-left: auto;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.form-success {
  margin-top: 16px;
  padding: 12px;
  background: var(--mint);
  border: 1px solid rgba(15, 118, 110, 0.25);
  border-radius: 4px;
}

.form-success p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 22px clamp(18px, 3vw, 34px);
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-icon {
  grid-row: 1 / span 2;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.trust-icon::before {
  display: block;
  width: 24px;
  height: 24px;
  background: currentColor;
  content: "";
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.trust-strip strong {
  margin-bottom: 2px;
  font-size: 0.98rem;
}

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

.trust-strip .trust-icon {
  color: var(--teal-dark);
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(66px, 10vw, 118px) var(--pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.5fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.section-heading.narrow {
  display: block;
  max-width: 820px;
}

.section-heading h2,
.split-copy h2,
.cta-band h2,
.local-hero h1,
.local-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, calc(1.35rem + 1.6vw), 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  hyphens: auto;
}

.section-heading p:last-child,
.split-copy p,
.cta-band p,
.local-hero p,
.local-content p {
  color: var(--muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-width: 0;
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal-dark);
  border-radius: 4px;
}

.bento-card.large {
  grid-column: span 4;
  grid-row: auto;
  min-height: 0;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  border-top-color: var(--teal-dark);
}

.bento-card.accent {
  background: #fffaf4;
  border-top-color: var(--orange);
}

.bento-card:nth-child(n + 4) {
  grid-column: span 3;
}

.service-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-icon::before {
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.icon-office {
  --icon: url("icons/office-cleaning.svg");
}

.icon-stairs {
  --icon: url("icons/stair-cleaning.svg");
}

.icon-window {
  --icon: url("icons/window-cleaning.svg");
}

.icon-practice {
  --icon: url("icons/practice-cleaning.svg");
}

.icon-construction {
  --icon: url("icons/construction-cleaning.svg");
}

.icon-vacation {
  --icon: url("icons/vacation-cleaning.svg");
}

.icon-deep {
  --icon: url("icons/deep-cleaning.svg");
}

.icon-support {
  --icon: url("icons/support-agent.svg");
}

.icon-checklist {
  --icon: url("icons/checklist.svg");
}

.icon-schedule {
  --icon: url("icons/schedule.svg");
}

.icon-location {
  --icon: url("icons/location.svg");
}

.icon-calendar {
  --icon: url("icons/calendar.svg");
}

.icon-repeat {
  --icon: url("icons/repeat.svg");
}

.icon-tune {
  --icon: url("icons/tune.svg");
}

.icon-task {
  --icon: url("icons/task-alt.svg");
}

.icon-verified {
  --icon: url("icons/verified.svg");
}

.icon-groups {
  --icon: url("icons/groups.svg");
}

.icon-key {
  --icon: url("icons/key.svg");
}

.icon-payments {
  --icon: url("icons/payments.svg");
}

.icon-camera {
  --icon: url("icons/photo-camera.svg");
}

.icon-route {
  --icon: url("icons/route.svg");
}

.icon-shield {
  --icon: url("icons/shield.svg");
}

.icon-inventory {
  --icon: url("icons/inventory.svg");
}

.icon-floor {
  --icon: url("icons/floor.svg");
}

.icon-storefront {
  --icon: url("icons/storefront.svg");
}

.icon-timer {
  --icon: url("icons/timer.svg");
}

.icon-water {
  --icon: url("icons/water-drop.svg");
}

.icon-door {
  --icon: url("icons/door-open.svg");
}

.bento-card.large .service-icon {
  color: var(--teal-dark);
  background: transparent;
  border-color: transparent;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: auto;
  height: auto;
  margin-top: 0;
  color: #45514d;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 800;
}

.bento-card.large .card-number {
  color: #45514d;
  border-color: transparent;
}

.bento-card h3 {
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: clamp(1.12rem, calc(1rem + 0.42vw), 1.42rem);
  line-height: 1.16;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.bento-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.bento-card.large p {
  color: var(--muted);
  font-size: 1rem;
}

.bento-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px 14px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.bento-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-height: auto;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.bento-points li::before {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  background: currentColor;
  content: "";
  mask: var(--point-icon) center / contain no-repeat;
  -webkit-mask: var(--point-icon) center / contain no-repeat;
}

.bento-card.large .bento-points li {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}

.point-calendar {
  --point-icon: url("icons/calendar.svg");
}

.point-groups {
  --point-icon: url("icons/groups.svg");
}

.point-door {
  --point-icon: url("icons/door-open.svg");
}

.point-checklist {
  --point-icon: url("icons/checklist.svg");
}

.point-water {
  --point-icon: url("icons/water-drop.svg");
}

.point-storefront {
  --point-icon: url("icons/storefront.svg");
}

.point-shield {
  --point-icon: url("icons/shield.svg");
}

.point-timer {
  --point-icon: url("icons/timer.svg");
}

.point-tool {
  --point-icon: url("icons/construction-cleaning.svg");
}

.point-verified {
  --point-icon: url("icons/verified.svg");
}

.point-key {
  --point-icon: url("icons/key.svg");
}

.point-repeat {
  --point-icon: url("icons/repeat.svg");
}

.point-floor {
  --point-icon: url("icons/floor.svg");
}

.point-task {
  --point-icon: url("icons/task-alt.svg");
}

.bento-card a,
.text-link {
  display: inline-flex;
  align-self: flex-start;
  max-width: 100%;
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.25;
  text-decoration-color: rgba(15, 118, 110, 0.32);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.bento-card.large a {
  color: var(--teal-dark);
  text-decoration-color: rgba(15, 118, 110, 0.32);
}

.split-section {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 9vw, 106px);
  overflow: hidden;
}

.split-section.to-right {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 48vw);
  padding-left: max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
}

.split-section.to-left {
  grid-template-columns: minmax(320px, 48vw) minmax(0, 1fr);
  padding-right: max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
  background: var(--soft);
}

.split-copy {
  max-width: 640px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 8px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #243832;
  font-weight: 720;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 21px;
  height: 21px;
  background: var(--teal-dark);
  content: "";
  mask: url("icons/task-alt.svg") center / contain no-repeat;
  -webkit-mask: url("icons/task-alt.svg") center / contain no-repeat;
}

.split-media {
  height: min(720px, 76vh);
  min-height: 430px;
  overflow: hidden;
}

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

.edge-right {
  border-radius: 6px 0 0 6px;
}

.edge-left {
  border-radius: 0 6px 6px 0;
}

.seo-story,
.area-directory {
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 108px) var(--pad);
}

.seo-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.seo-story.reverse {
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 0.92fr);
  background: var(--soft);
}

.seo-story.reverse .seo-story-copy {
  order: 2;
}

.seo-story-copy {
  max-width: 760px;
}

.seo-story-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.seo-story-copy p + p {
  margin-top: 14px;
}

.seo-story-media {
  min-height: 420px;
  height: min(620px, 62vh);
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.seo-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-directory {
  padding-top: clamp(44px, 8vw, 86px);
}

.area-directory-header {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.52fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: 28px;
}

.area-directory-header p {
  color: var(--muted);
}

.area-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.area-link-grid a {
  display: grid;
  min-height: 76px;
  padding: 16px 16px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal-dark);
  border-radius: 4px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.area-link-grid a::before {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  background: var(--teal-dark);
  content: "";
  mask: url("icons/location.svg") center / contain no-repeat;
  -webkit-mask: url("icons/location.svg") center / contain no-repeat;
}

.area-link-grid a:hover {
  border-color: var(--teal);
}

.faq-section {
  max-width: 1030px;
}

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

.faq-list details {
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-list summary {
  padding: 20px 22px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 2 * var(--pad)), var(--container));
  margin: 0 auto clamp(64px, 9vw, 108px);
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background: var(--teal-dark);
  border-radius: 4px;
}

.cta-band .eyebrow,
.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .button-primary {
  color: var(--teal-dark);
  background: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: clamp(22px, 4vw, 44px);
  padding: 46px var(--pad);
  color: rgba(255, 255, 255, 0.78);
  background: #10201c;
}

.site-footer .brand {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.95rem;
}

.site-footer p {
  max-width: 420px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.mobile-sticky-cta {
  display: none;
}

.mobile-sticky-cta[data-form-gated-cta] {
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
}

body:has(.mobile-sticky-cta:not([data-form-gated-cta])) {
  padding-bottom: 78px;
}

.mobile-sticky-cta:not([data-form-gated-cta]) {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(10, 79, 73, 0.2);
  font-weight: 800;
  text-decoration: none;
}

.local-hero {
  display: grid;
  grid-template-columns: minmax(var(--pad), 1fr) minmax(0, 580px) minmax(380px, 48vw);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: 100%;
  min-height: 70vh;
  margin: 0;
  padding: 0;
}

.local-hero > div {
  grid-column: 2;
  min-width: 0;
  padding-block: clamp(72px, 10vh, 120px);
}

.local-hero .button {
  width: fit-content;
}

.local-card {
  position: relative;
  grid-column: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  height: 70vh;
  max-height: 780px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: var(--teal-dark);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.local-card picture {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

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

.local-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 19, 0.08) 0%, rgba(8, 22, 19, 0.76) 100%);
  content: "";
}

.local-card h2 {
  position: relative;
  z-index: 1;
  margin: auto 28px 12px;
  color: #fff;
  font-size: 1.3rem;
}

.local-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0 28px 28px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.local-content {
  display: block;
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: clamp(46px, 8vw, 90px) var(--pad);
}

.local-content > article {
  max-width: none;
}

.local-aside {
  display: none;
  align-self: start;
  padding: 22px;
  background: var(--orange-soft);
  border: 1px solid #ffd3b3;
  border-radius: 4px;
}

.local-aside h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.local-aside a {
  display: block;
  margin-top: 10px;
  color: var(--teal-dark);
  font-weight: 800;
}

.local-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.local-service-grid article {
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal-dark);
  border-radius: 4px;
}

.local-service-grid article::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  background: var(--teal-dark);
  mask: var(--local-icon) center / contain no-repeat;
  -webkit-mask: var(--local-icon) center / contain no-repeat;
}

.local-service-grid article:nth-child(1) {
  --local-icon: url("icons/office-cleaning.svg");
}

.local-service-grid article:nth-child(2) {
  --local-icon: url("icons/stair-cleaning.svg");
}

.local-service-grid article:nth-child(3) {
  --local-icon: url("icons/window-cleaning.svg");
}

.local-service-grid article:nth-child(4) {
  --local-icon: url("icons/practice-cleaning.svg");
}

.local-service-grid article:nth-child(5) {
  --local-icon: url("icons/construction-cleaning.svg");
}

.local-service-grid article:nth-child(6) {
  --local-icon: url("icons/vacation-cleaning.svg");
}

.local-service-grid article:nth-child(7) {
  --local-icon: url("icons/deep-cleaning.svg");
}

.local-service-grid h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(var(--pad), 1fr) minmax(0, 580px) minmax(380px, 48vw);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  width: 100%;
  min-height: 70vh;
  margin: 0;
  padding: 0;
}

.service-hero-copy {
  grid-column: 2;
  min-width: 0;
  padding-block: clamp(72px, 10vh, 120px);
}

.service-hero-copy h1 {
  color: var(--ink);
}

.service-hero-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-hero-media {
  grid-column: 3;
  align-self: stretch;
  height: 70vh;
  min-height: 520px;
  max-height: 780px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

@media (min-width: 1700px) {
  .service-hero,
  .local-hero {
    grid-template-columns: minmax(var(--pad), 1fr) minmax(0, 640px) minmax(420px, 44vw);
    gap: clamp(84px, 5vw, 112px);
  }

  .service-hero-copy h1,
  .local-hero h1 {
    max-width: 640px;
  }
}

.service-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(calc(100% - 2 * var(--pad)), var(--container));
  margin: 0 auto;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.service-proof div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 18px;
  background: #fff;
}

.service-proof div::before {
  grid-row: 1 / span 2;
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-dark);
  border: 0;
  border-radius: 0;
  content: "";
  mask: var(--proof-icon) center / contain no-repeat;
  -webkit-mask: var(--proof-icon) center / contain no-repeat;
}

.service-proof div:nth-child(1) {
  --proof-icon: url("icons/task-alt.svg");
}

.service-proof div:nth-child(2) {
  --proof-icon: url("icons/verified.svg");
}

.service-proof div:nth-child(3) {
  --proof-icon: url("icons/schedule.svg");
}

.service-proof strong,
.service-proof span {
  display: block;
  grid-column: 2;
}

.service-proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-content {
  display: block;
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) var(--pad);
}

.service-main {
  max-width: none;
}

.service-main h2,
.service-aside h2 {
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  text-wrap: balance;
  hyphens: auto;
}

.service-main p {
  color: var(--muted);
}

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

.service-grid article {
  min-width: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal-dark);
  border-radius: 4px;
}

.service-grid article::before {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  background: var(--teal-dark);
  content: "";
  mask: var(--service-grid-icon, url("icons/checklist.svg")) center / contain no-repeat;
  -webkit-mask: var(--service-grid-icon, url("icons/checklist.svg")) center / contain no-repeat;
}

.service-grid article:nth-child(1) {
  --service-grid-icon: url("icons/checklist.svg");
}

.service-grid article:nth-child(2) {
  --service-grid-icon: url("icons/schedule.svg");
}

.service-grid article:nth-child(3) {
  --service-grid-icon: url("icons/floor.svg");
}

.service-grid article:nth-child(4) {
  --service-grid-icon: url("icons/verified.svg");
}

.service-grid h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.content-module {
  margin: 34px 0;
}

.content-module > h2 {
  max-width: 940px;
  overflow-wrap: anywhere;
  text-wrap: balance;
  hyphens: auto;
}

.module-intro {
  max-width: 820px;
  margin-bottom: 18px;
}

.scope-matrix,
.factor-grid,
.zone-map,
.handover-check,
.material-guide,
.local-scenarios {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.scope-matrix,
.factor-grid,
.local-scenarios {
  grid-template-columns: repeat(3, 1fr);
}

.zone-map,
.handover-check,
.material-guide {
  grid-template-columns: repeat(2, 1fr);
}

.scope-matrix article,
.factor-grid article,
.zone-map article,
.handover-check article,
.material-guide article,
.local-scenarios article,
.turnover-flow li,
.process-timeline li,
.mini-table li,
.note-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal-dark);
  border-radius: 4px;
}

.scope-matrix article,
.factor-grid article,
.zone-map article,
.handover-check article,
.material-guide article,
.local-scenarios article {
  min-width: 0;
  padding: 18px;
}

.scope-matrix h3,
.factor-grid h3,
.zone-map h3,
.handover-check h3,
.material-guide h3,
.local-scenarios h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.scope-matrix article::before,
.factor-grid article::before,
.zone-map article::before,
.handover-check article::before,
.material-guide article::before,
.local-scenarios article::before {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  background: var(--teal-dark);
  content: "";
  mask: var(--card-icon, url("icons/task-alt.svg")) center / contain no-repeat;
  -webkit-mask: var(--card-icon, url("icons/task-alt.svg")) center / contain no-repeat;
}

.scope-matrix article:nth-child(1),
.factor-grid article:nth-child(1),
.zone-map article:nth-child(1),
.handover-check article:nth-child(1),
.material-guide article:nth-child(1),
.local-scenarios article:nth-child(1) {
  --card-icon: url("icons/checklist.svg");
}

.scope-matrix article:nth-child(2),
.factor-grid article:nth-child(2),
.zone-map article:nth-child(2),
.handover-check article:nth-child(2),
.material-guide article:nth-child(2),
.local-scenarios article:nth-child(2) {
  --card-icon: url("icons/verified.svg");
}

.scope-matrix article:nth-child(3),
.factor-grid article:nth-child(3),
.zone-map article:nth-child(3),
.handover-check article:nth-child(3),
.material-guide article:nth-child(3),
.local-scenarios article:nth-child(3) {
  --card-icon: url("icons/location.svg");
}

.scope-matrix article:nth-child(4),
.factor-grid article:nth-child(4),
.zone-map article:nth-child(4),
.handover-check article:nth-child(4),
.material-guide article:nth-child(4),
.local-scenarios article:nth-child(4) {
  --card-icon: url("icons/schedule.svg");
}

.scope-matrix article:nth-child(5),
.factor-grid article:nth-child(5),
.zone-map article:nth-child(5),
.handover-check article:nth-child(5),
.material-guide article:nth-child(5),
.local-scenarios article:nth-child(5) {
  --card-icon: url("icons/groups.svg");
}

.scope-matrix article:nth-child(6),
.factor-grid article:nth-child(6),
.zone-map article:nth-child(6),
.handover-check article:nth-child(6),
.material-guide article:nth-child(6),
.local-scenarios article:nth-child(6) {
  --card-icon: url("icons/repeat.svg");
}

.process-timeline,
.turnover-flow,
.mini-table {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.process-timeline {
  counter-reset: process-step;
}

.process-timeline li {
  position: relative;
  padding: 18px 18px 18px 62px;
}

.process-timeline li::before {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-grid;
  width: 28px;
  height: 28px;
  background: var(--teal-dark);
  border-radius: 0;
  counter-increment: process-step;
  content: "";
  mask: var(--timeline-icon, url("icons/checklist.svg")) center / contain no-repeat;
  -webkit-mask: var(--timeline-icon, url("icons/checklist.svg")) center / contain no-repeat;
}

.process-timeline li:nth-child(1) {
  --timeline-icon: url("icons/checklist.svg");
}

.process-timeline li:nth-child(2) {
  --timeline-icon: url("icons/schedule.svg");
}

.process-timeline li:nth-child(3) {
  --timeline-icon: url("icons/verified.svg");
}

.process-timeline li:nth-child(4) {
  --timeline-icon: url("icons/repeat.svg");
}

.turnover-flow {
  grid-template-columns: repeat(4, 1fr);
}

.turnover-flow li,
.mini-table li {
  padding: 16px;
}

.turnover-flow li::before,
.mini-table li::before {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  background: var(--teal-dark);
  content: "";
  mask: var(--list-icon, url("icons/task-alt.svg")) center / contain no-repeat;
  -webkit-mask: var(--list-icon, url("icons/task-alt.svg")) center / contain no-repeat;
}

.turnover-flow li:nth-child(1),
.mini-table li:nth-child(1) {
  --list-icon: url("icons/key.svg");
}

.turnover-flow li:nth-child(2),
.mini-table li:nth-child(2) {
  --list-icon: url("icons/schedule.svg");
}

.turnover-flow li:nth-child(3),
.mini-table li:nth-child(3) {
  --list-icon: url("icons/checklist.svg");
}

.turnover-flow li:nth-child(4),
.mini-table li:nth-child(4) {
  --list-icon: url("icons/verified.svg");
}

.turnover-flow strong,
.mini-table strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.note-panel {
  position: relative;
  margin-top: 24px;
  padding: 20px 20px 20px 64px;
  background: #fff;
}

.note-panel::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 28px;
  height: 28px;
  background: var(--teal-dark);
  content: "";
  mask: url("icons/photo-camera.svg") center / contain no-repeat;
  -webkit-mask: url("icons/photo-camera.svg") center / contain no-repeat;
}

.note-panel strong {
  display: block;
  margin-bottom: 6px;
}

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

.layout-offset {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(240px, 0.45fr);
  gap: 18px;
  align-items: start;
}

.local-route-note {
  margin-top: 28px;
  padding: 22px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 4px;
}

.local-route-note p {
  color: rgba(255, 255, 255, 0.82);
}

.local-image-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin: 34px 0;
  padding: clamp(22px, 4vw, 36px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.local-image-story.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
}

.local-image-story.reverse .local-story-media {
  order: 2;
}

.local-story-media {
  min-height: 320px;
  height: min(440px, 48vh);
  overflow: hidden;
  border-radius: 4px;
}

.local-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-story-copy p {
  color: var(--muted);
}

.legal-page {
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 88px) var(--pad);
}

.legal-hero {
  max-width: 880px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.legal-hero h1 {
  color: var(--ink);
}

.legal-hero p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.18rem, calc(1rem + 0.5vw), 1.5rem);
  line-height: 1.2;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 800;
}

.legal-note {
  margin-top: 34px;
  padding: 16px;
  background: #fffaf4;
  border-left: 3px solid var(--orange);
  border-radius: 4px;
}

.service-aside {
  display: none;
  align-self: start;
  padding: 22px;
  background: var(--orange-soft);
  border: 1px solid #ffd3b3;
  border-radius: 4px;
}

.service-aside .button {
  width: 100%;
  margin-top: 12px;
}

.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.related-services a {
  display: inline-flex;
  padding: 8px 10px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .nav-cta {
    margin-left: auto;
  }

  .phone-link {
    display: none;
  }

  .hero-inner,
  .local-content,
  .service-content {
    grid-template-columns: 1fr;
  }

  .request-card {
    max-width: 760px;
  }

  .request-card .choice-grid,
  .request-card .choice-grid.single {
    grid-template-columns: 1fr;
  }

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

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

  .bento-card {
    grid-column: auto;
  }

  .bento-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .bento-card.large {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .request-card {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 68px;
  }

  :where(#anfrage, #leistungen, #faq, .section, .split-section, .seo-story, .area-directory, .service-hero, .local-hero, .service-content, .local-content, .local-image-story, .content-module, .bento-card) {
    scroll-margin-top: 76px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
  }

  .brand-copy small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .primary-nav {
    display: none;
  }

  .nav-cta {
    justify-self: end;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    width: 100%;
    gap: 20px;
    padding: 34px 14px 42px;
  }

  .hero-shade {
    background: rgba(8, 22, 19, 0.72);
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-bottom: 16px;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .request-card {
    width: 100%;
    max-width: none;
    padding: 16px;
  }

  .form-conversion-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .choice {
    min-height: 66px;
    padding: 12px;
  }

  .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  h1,
  h2,
  h3,
  p,
  strong,
  small,
  span,
  a {
    overflow-wrap: break-word;
  }

  h1,
  h2,
  h3,
  .form-progress strong {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .choice-grid,
  .field-grid,
  .contact-method-grid,
  .section-heading,
  .seo-story,
  .seo-story.reverse,
  .area-directory-header,
  .area-link-grid,
  .local-service-grid,
  .local-image-story,
  .local-image-story.reverse,
  .service-grid,
  .scope-matrix,
  .factor-grid,
  .zone-map,
  .handover-check,
  .material-guide,
  .local-scenarios,
  .turnover-flow,
  .mini-table,
  .layout-offset,
  .service-proof,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card.large,
  .bento-card:nth-child(n + 4) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }

  .section,
  .local-content,
  .service-content {
    padding-inline: 18px;
  }

  .local-hero,
  .service-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 34px 18px 42px;
  }

  .local-hero > div,
  .service-hero-copy {
    grid-column: 1;
    padding-block: 0;
  }

  .local-card,
  .service-hero-media {
    grid-column: 1;
    min-height: 0;
    height: auto;
    max-height: none;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .local-card {
    min-height: 420px;
  }

  .service-hero-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .split-section.to-right,
  .split-section.to-left {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .seo-story,
  .area-directory {
    padding-inline: 18px;
  }

  .seo-story.reverse .seo-story-copy,
  .local-image-story.reverse .local-story-media {
    order: initial;
  }

  .seo-story-media,
  .local-story-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .split-section.to-left .split-copy {
    order: -1;
  }

  .split-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .edge-right,
  .edge-left {
    border-radius: 4px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .cta-band {
    width: calc(100% - 36px);
  }

  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 16px;
    color: #fff;
    background: var(--teal-dark);
    border-radius: 4px;
    box-shadow: 0 10px 22px rgba(10, 79, 73, 0.2);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-sticky-cta:not([data-form-gated-cta]) {
    pointer-events: none;
    opacity: 0;
    transform: translateY(14px);
  }

  .mobile-sticky-cta:not([data-form-gated-cta]).is-visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-sticky-cta[data-form-gated-cta].is-visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(1.9rem, calc(1.35rem + 1.7vw), 2.35rem);
    line-height: 1.08;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-band h2,
  .local-hero h1,
  .local-content h2 {
    font-size: clamp(1.55rem, calc(1.25rem + 1.25vw), 2rem);
    line-height: 1.12;
  }

  .brand-copy strong {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    width: auto;
    padding-inline: 10px;
    font-size: 0.8rem;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .hero-lead {
    display: none;
  }

  .form-step h2 {
    margin-bottom: 12px;
    font-size: 1.18rem;
  }

  .form-summary {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-progress li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    min-height: 58px;
    padding: 8px 4px;
    text-align: center;
  }

  .form-progress li span {
    width: 30px;
    height: 30px;
  }

  .form-progress strong {
    font-size: 0.72rem;
    line-height: 1.1;
    overflow-wrap: normal;
    hyphens: manual;
  }

  .choice {
    grid-template-columns: 22px 42px minmax(0, 1fr);
    min-height: 70px;
    align-items: center;
  }

  .choice::after {
    display: none;
    content: "";
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button-primary {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
