@font-face {
  font-family: "Roboto";
  src: url("/fonts/roboto-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #080d14;
  --navy: #061f48;
  --night: #081321;
  --blue: #064cff;
  --ice: #54c6f5;
  --text: #222b36;
  --muted: #55647a;
  --line: #d6dde6;
  --dark-line: #2b3748;
  --surface: #fbfcfe;
  --soft: #f1f4f8;
  --white: #fff;
  --dark-copy: #afc0da;
  --container: 1240px;
  --section-space: clamp(4.75rem, 8vw, 7.5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-control: 10px;
  --radius-card: 14px;
  --radius-frame: 16px;
  --radius-pill: 999px;
  --z-sticky: 30;
  --z-menu: 40;
  --z-floating: 50;
  --z-consent: 60;
  --z-consent-modal: 70;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  border-radius: 8px;
}

button,
summary {
  cursor: pointer;
}

p,
ul,
ol {
  margin-block: 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 6.1vw, 5.5rem);
}

h2 {
  font-size: clamp(2.25rem, 4.1vw, 3.7rem);
}

h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.accent {
  color: var(--blue);
}

.container {
  width: min(100% - 4.75rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--dark {
  background: var(--night);
  color: var(--dark-copy);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

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

.grid-surface {
  background-color: var(--surface);
  background-image:
    radial-gradient(circle at 92% 34%, rgb(6 31 72 / 5%), transparent 31%),
    linear-gradient(rgb(6 31 72 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(6 31 72 / 7%) 1px, transparent 1px);
  background-position: center, center top, center top;
  background-size: auto, 88px 88px, 88px 88px;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: calc(var(--z-menu) + 1);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--ice);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: var(--z-sticky);
  min-height: 100px;
  background: var(--white);
  border-bottom: 1px solid #e4e8ee;
}

.site-header__inner {
  width: min(100% - 4.75rem, 1240px);
  min-height: 100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 3rem);
}

.brand {
  position: relative;
  width: 330px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  clip-path: inset(0 0 0 17.5%);
}

.brand::before,
.footer-brand > a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 17.5%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 571.43% auto;
  pointer-events: none;
  transform: scale(1.05);
  transform-origin: left center;
}

.brand::before {
  background-color: var(--white);
  background-image: url("/images/logo-header.webp");
}

.main-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 1.8rem);
}

.main-navigation a,
.footer-nav a {
  text-decoration: none;
}

.main-navigation a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #202937;
  font-size: 0.82rem;
  font-weight: 600;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  min-height: 46px;
  padding: 0.75rem 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 260ms var(--ease-out), color 260ms var(--ease-out), border-color 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.button__label {
  white-space: nowrap;
}

.button--primary {
  background: var(--blue);
  color: var(--white);
}

.button--primary:hover {
  background: #003fde;
}

.button--dark {
  background: var(--navy);
  color: var(--white);
}

.button--dark:hover {
  background: #0a2d63;
}

.button--outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.button--outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.button--outline-light {
  border-color: var(--blue);
  color: var(--white);
}

.button--outline-light:hover {
  background: var(--blue);
}

.button--text {
  min-height: 44px;
  padding-inline: 0;
  color: var(--blue);
}

.button--text:hover {
  transform: none;
  color: var(--navy);
}

.eyebrow,
.signal,
.breadcrumb {
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.2rem;
}

/* Accent blue fails contrast on dark backgrounds; swap to the lighter existing accent tone there. */
.section--dark .eyebrow,
.section--dark .signal,
.trust-band .eyebrow,
.stats-band .eyebrow,
.valuation .eyebrow,
.reviews .eyebrow,
.contact .eyebrow,
.orientation .eyebrow,
.city-trust .eyebrow,
.city-cta .eyebrow,
.area-stat .eyebrow,
.trust-band .feature__number,
.section--dark .feature__number,
.orientation .feature__number,
.reviews .stars {
  color: var(--ice);
}

.signal {
  width: max-content;
  max-width: 100%;
  margin-bottom: 2rem;
  padding: 0.65rem 0.9rem;
  background: rgb(255 255 255 / 72%);
  border: 1px solid rgb(6 31 72 / 26%);
  color: var(--navy);
}

.breadcrumb {
  margin-bottom: 4.25rem;
  color: var(--muted);
  font-size: 0.64rem;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: color-mix(in srgb, var(--muted), transparent 40%);
}

.breadcrumb a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--navy);
  text-decoration-color: currentColor;
}

.section-heading {
  max-width: 620px;
}

.section-heading h2 {
  margin-bottom: 1.75rem;
}

.section-heading--center {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.section-copy,
.section-heading > .section-copy {
  max-width: 68ch;
  color: var(--muted);
}

.section--dark .section-copy,
.section--dark .section-heading > .section-copy,
.trust-band .section-copy,
.stats-band .section-copy,
.valuation .section-copy,
.reviews .section-copy,
.contact .section-copy,
.orientation .section-copy,
.city-trust .section-copy,
.city-cta .section-copy,
.section--dark .section-heading > .section-copy,
.trust-band .section-heading > .section-copy,
.stats-band .section-heading > .section-copy,
.valuation .section-heading > .section-copy,
.reviews .section-heading > .section-copy,
.contact .section-heading > .section-copy,
.orientation .section-heading > .section-copy,
.city-trust .section-heading > .section-copy,
.city-cta .section-heading > .section-copy {
  color: var(--dark-copy);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.home-hero {
  min-height: 922px;
  padding-block: 92px 30px;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.hero-copy {
  width: 456px;
  padding-left: 20px;
  transform: translateY(7px);
}

.hero-copy h1 {
  margin-bottom: 1.55rem;
  font-size: clamp(4rem, 6.15vw, 5.5rem);
  line-height: 0.92;
}

.hero-rule {
  width: 96px;
  height: 4px;
  margin-bottom: 1.7rem;
  background: var(--ink);
}

.hero-intro {
  max-width: 430px;
  margin-bottom: 1.9rem;
  color: #455269;
  font-size: 1.02rem;
}

.hero-visual {
  position: relative;
  padding: 1.25rem 31px 1.4rem 37px;
  isolation: isolate;
  transform: translateY(132px);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 128px;
  height: 128px;
}

.hero-visual::before {
  top: 0;
  left: 0;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
}

.hero-visual::after {
  right: 0;
  bottom: 0;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-label {
  position: absolute;
  bottom: -1.25rem;
  left: 2.5rem;
  min-width: 220px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-label strong {
  color: var(--ink);
}

.trust-band {
  min-height: 277px;
  padding-block: 0;
  display: flex;
  align-items: center;
  background: var(--night);
}

.trust-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid .feature {
  min-height: 160px;
  padding-inline: 2.7rem;
  border-right: 1px solid var(--dark-line);
}

.trust-grid .feature:first-child {
  padding-left: 0;
}

.trust-grid .feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid .feature__number {
  color: var(--ice);
}

.trust-grid h2,
.trust-grid h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1.45rem;
}

.trust-grid .feature div {
  color: var(--dark-copy);
  font-size: 0.91rem;
}

.feature__number {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 5rem;
  margin-bottom: 1rem;
}

.services-intro .section-heading h2 {
  margin-bottom: 0;
}

#leistungen {
  padding-block: 90px 110px;
}

.services-list {
  border-top: 1px solid var(--dark-line);
}

.service-row {
  border-bottom: 1px solid var(--dark-line);
}

.service-row summary {
  min-height: 96px;
  padding-inline: 0.75rem;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto 32px;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  color: var(--white);
  transition: background-color 260ms var(--ease-out);
}

.service-row summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.service-row summary:hover {
  background: #0e1827;
}

.service-row__number,
.service-row__label {
  color: #8ea1ba;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-row summary strong {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.service-row__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #3151a6;
  color: var(--blue);
  font-size: 1.2rem;
  transform: rotate(0);
  transition: transform 300ms var(--ease-out), background-color 260ms var(--ease-out), color 260ms var(--ease-out);
}

.service-row[open] .service-row__icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.service-row.is-closing .service-row__icon {
  background: transparent;
  color: var(--blue);
  transform: rotate(0);
}

.service-row__body {
  padding: 0.25rem 0.75rem 2.25rem 5.65rem;
  display: grid;
  grid-template-columns: minmax(0, 650px) auto;
  align-items: start;
  justify-content: space-between;
  gap: 2.5rem;
  color: var(--dark-copy);
}

.service-row__body p {
  max-width: 65ch;
  margin: 0;
}

.split--evidence {
  min-height: 902px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 75px;
}

.evidence {
  min-height: 902px;
  padding-block: 0;
}

.evidence > .container,
.stats-band > .container,
#ablauf > .container,
.valuation > .container,
.contact > .container {
  max-width: 1176px;
}

.evidence-visual,
.valuation-visual {
  position: relative;
}

.evidence-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.evidence-badge {
  position: absolute;
  top: 3.4rem;
  right: -2rem;
  width: 170px;
  min-height: 170px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--blue);
  color: var(--white);
  text-transform: uppercase;
}

.evidence-badge strong {
  font-size: 3.5rem;
  line-height: 1;
}

.evidence-badge span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.evidence-copy > p:not(.eyebrow),
.evidence-copy > div {
  max-width: 60ch;
  color: var(--muted);
}

.evidence-copy h2 {
  margin-bottom: 1.75rem;
}

.evidence-copy .place-list {
  margin-block: 1.6rem 2rem;
  display: block;
}

.evidence-copy .place-list li {
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.stats-band {
  min-height: 390px;
  padding-block: 72px;
  display: flex;
  align-items: center;
  background: var(--night);
}

.stats-grid {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #111c2b;
  border: 1px solid #1f2e40;
  border-radius: 12px;
}

.stat {
  min-height: 224px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #1f2e40;
  text-align: center;
}

.stat::before {
  content: "";
  width: 29px;
  height: 2px;
  margin: 0 auto 26px;
  background: var(--blue);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--white);
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
}

.stat span {
  margin-top: 0.85rem;
  color: var(--dark-copy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-grid,
.process-grid {
  margin-top: 3.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

#ablauf {
  min-height: 737px;
}

.feature-grid .feature {
  min-height: 245px;
  padding: 2rem;
  background: var(--white);
}

.feature-grid .feature h3 {
  margin-bottom: 1rem;
}

.feature-grid .feature div {
  color: var(--muted);
  font-size: 0.93rem;
}

.valuation {
  min-height: 745px;
  padding-block: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--dark-copy);
}

.valuation::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: calc(50% - 570px);
  width: 120px;
  height: 90px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
}

.split--valuation {
  min-height: 745px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 75px;
}

.valuation-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.valuation h2 {
  margin-bottom: 1.75rem;
  color: var(--white);
}

.valuation-copy > p:not(.eyebrow),
.valuation-copy > div {
  max-width: 55ch;
}

.inline-points {
  margin-block: 1.7rem 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}

.inline-points li {
  padding-inline: 0.65rem;
  border-right: 1px solid #45618e;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-points li:first-child {
  padding-left: 0;
}

.inline-points li:last-child {
  border-right: 0;
}

.proof-header,
.reviews-header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.55fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3rem;
}

.proof {
  min-height: 825px;
  padding-block: 56px 96px;
}

.proof-badge {
  justify-self: end;
  min-width: 260px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
}

.proof-badge strong {
  grid-row: 1 / 3;
  color: var(--ink);
  font-size: 3.3rem;
  line-height: 1;
}

.proof-badge span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-badge small {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.proof-card {
  padding: 1.9rem;
  border: 1px solid var(--line);
}

.proof-card h3 {
  margin-bottom: 1rem;
}

.proof-card > p,
.proof-card > div:not(.proof-card__meta) {
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-card__meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reviews {
  background: var(--ink);
  color: var(--dark-copy);
}

.reviews h2,
.reviews h3 {
  color: var(--white);
}

.reviews-header > div:last-child {
  max-width: 390px;
  justify-self: end;
}

.stars {
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.review-featured {
  min-height: 330px;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0e1b2c;
  border: 1px solid #33445a;
  border-radius: 12px;
}

.review-featured > p:not(.stars) {
  max-width: 32ch;
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 650;
  line-height: 1.45;
}

.review-mini {
  min-height: 155px;
  padding: 1.2rem 0;
  border-top: 1px solid var(--dark-line);
}

.review-mini:first-child {
  border-top: 1px solid var(--dark-line);
}

.review-mini p:not(.stars) {
  margin-bottom: 0.65rem;
}

.review-meta {
  color: #7e91aa;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-meta span {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.review-cta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--dark-line);
  color: var(--white);
}

.review-cta .button {
  min-width: 275px;
  min-height: 61px;
}

.faq-layout,
.city-faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq {
  min-height: 925px;
  padding-block: 96px 84px;
}

.faq .faq-layout {
  grid-template-columns: 425px 625px;
  justify-content: space-between;
  gap: 0;
  padding-inline: 32px 46px;
  transform: translateY(9px);
}

.faq-intro,
.faq-layout > div:last-child {
  padding-inline: 10px;
}

.faq h2 {
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: -0.022em;
}

.faq-intro .button {
  margin-top: 2.5rem;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  min-height: 66px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.faq-item summary span {
  color: var(--blue);
  font-size: 1.4rem;
  transition: transform 220ms var(--ease-out);
}

.faq-item[open] summary span {
  font-size: 0;
  transform: none;
}

.faq-item[open] summary span::before {
  content: "−";
  font-size: 1.4rem;
}

.faq-item.is-closing summary span {
  font-size: 1.4rem;
}

.faq-item.is-closing summary span::before {
  content: none;
}

.faq-item > div {
  max-width: 65ch;
  padding: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.faq-item[open] > div {
  border-top: 1px solid var(--line);
}

.faq-item > div p {
  margin: 0;
}

.locations .section-heading {
  max-width: 760px;
  margin-bottom: 30px;
  text-align: left;
}

.locations {
  padding-block: 92px 96px;
  background: #f3f5f8;
}

.locations .section-heading h2 {
  font-size: 50px;
  line-height: 1.02;
}

.locations .section-heading .section-copy {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(407px, auto));
  gap: 20px;
}

.regions-grid .region {
  min-width: 0;
  padding: 28px 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.regions-grid .region:hover {
  border-color: #9eb8dc;
  transform: translateY(-3px);
}

.regions-grid .region > .eyebrow {
  margin-bottom: 1.2rem;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.22em;
}

.regions-grid .region > h3 {
  min-height: 2.04em;
  margin-bottom: 1rem;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.regions-grid .region > h3 + p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.regions-grid .place-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 14px;
}

.regions-grid .place-list li {
  min-height: 20px;
  padding: 0;
  background: transparent;
  color: #0b3ea8;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.regions-grid .place-list li > a {
  min-height: 20px;
  margin: 0;
  padding: 0.35rem 0;
}

.place-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.55rem;
  list-style: none;
}

.place-list li,
.place-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.place-list li {
  min-height: 34px;
  padding: 0.35rem 0.65rem;
  background: var(--white);
  color: #425167;
  font-size: 0.72rem;
  font-weight: 600;
}

.place-list a {
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

/* Extend the link's hit area to cover the full visual pill (the li's own padding), not just the text. */
.place-list li > a {
  margin: -0.35rem -0.65rem;
  padding: 0.35rem 0.65rem;
}

.place-list li:hover {
  color: var(--blue);
}

.list-text {
  min-width: 0;
}

.list-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  padding: 0;
  fill: none;
  stroke: currentColor;
  background: transparent;
}

.place-list .list-icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
  transition: transform 220ms var(--ease-out);
}

.place-list.place-list--checks {
  display: block;
  border-top: 1px solid var(--line);
}

.place-list.place-list--checks li {
  width: 100%;
  padding: 0.875rem 0;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.place-list--checks .list-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.centered-action {
  margin-top: 20px;
  text-align: left;
}

.contact {
  min-height: 764px;
  padding-block: 70px;
  background-color: #0c1421;
  background-image: linear-gradient(rgba(142,161,186,.075) 1px, transparent 1px), linear-gradient(90deg, rgba(142,161,186,.075) 1px, transparent 1px);
  background-size: 88px 88px;
  border-bottom: 1px solid var(--blue);
  color: #fff;
}

.contact h2 {
  margin-bottom: 1.6rem;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-grid > div:first-child > p:not(.eyebrow):not(.contact-direct) {
  max-width: 58ch;
}

.contact-points {
  margin-block: 1.7rem;
  padding: 0;
  list-style: none;
}

.contact-points li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.87rem;
}

.contact-points .list-icon {
  margin-top: 1px;
  color: var(--ice);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-direct a {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #0b192a;
  border: 1px solid #243448;
  box-shadow: 0 6px 8px rgb(0 0 0 / 18%);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 8px rgb(0 0 0 / 22%);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  margin-top: 0.45rem;
  padding: 0.8rem 0.9rem;
  background: #0a1523;
  border: 1px solid #34445a;
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  transition:
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #a9b7ca;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: #0d1c2e;
  border-color: var(--blue);
  outline: 2px solid rgb(6 76 255 / 35%);
  outline-offset: 0;
  box-shadow: 0 0 0 3px rgb(6 76 255 / 14%);
}

.form-span {
  grid-column: 1 / -1;
}

.check {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--dark-copy) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.check input {
  width: 20px;
  min-height: 20px;
  margin: 0.1rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.form-status {
  margin: 0;
  color: var(--white);
  font-size: 0.85rem;
}

.form-status.is-error {
  color: #ffb7b7;
}

.form-submit .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-footer {
  padding-block: 4.75rem 1.25rem;
  background: #050a11;
  color: #9faec2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.85fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.footer-brand img {
  width: 330px;
  height: auto;
  margin-bottom: 1.5rem;
  clip-path: inset(0 0 0 17.5%);
}

.footer-brand > a {
  position: relative;
}

.footer-brand > a::before {
  bottom: 1.5rem;
  background-image: url("/images/logo-footer.webp");
}

.footer-brand p,
.footer-contact p {
  max-width: 47ch;
  font-size: 0.84rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav h2,
.footer-contact h2 {
  margin-bottom: 1.15rem;
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.footer-nav a {
  min-height: 30px;
  color: #aebbd0;
  font-size: 0.82rem;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.footer-nav a:hover,
.footer-contact > a:not(.button):hover,
.footer-contact__links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-contact > a:not(.button) {
  display: block;
  margin-block: 1rem 1.4rem;
  color: var(--white);
  font-weight: 700;
}

.footer-contact__links {
  margin-block: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact__links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #172130;
  color: #758399;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  text-decoration: none;
}

.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 0.65rem;
  z-index: var(--z-floating);
  width: 202px;
  min-height: 64px;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #25d366;
  border: 6px solid #07552f;
  border-radius: 999px;
  color: #082717;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 2px 0 #03170d;
}

.whatsapp > span {
  width: 1.3rem;
  height: 1.3rem;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  font-size: 0;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23082717' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 11.5a8.1 8.1 0 0 1-8.2 8 8.3 8.3 0 0 1-3.8-.9L4 20l1.4-3.7a8 8 0 1 1 14.6-4.8Z'/%3E%3Cpath d='M8.8 8.5c.2-.4.4-.4.7-.4h.5c.2 0 .4.1.5.4l.7 1.7c.1.2.1.4-.1.6l-.5.6c.5.9 1.2 1.5 2.2 2l.6-.5c.2-.2.4-.2.6-.1l1.7.8c.3.1.4.3.3.6-.2.8-.7 1.3-1.4 1.4-2 .2-5.9-2.9-6.1-5.7 0-.5.1-1 .3-1.4Z'/%3E%3C/svg%3E");
}

.whatsapp > span::before {
  content: none;
}

/* City pages */
.city-hero,
.area-hero {
  padding-block: 4rem 5.5rem;
}

.city-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.city-hero__copy h1,
.area-hero h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.5rem, 5.2vw, 4rem);
}

.city-hero__copy > p:not(.eyebrow),
.city-hero__copy > div:not(.button-row) {
  max-width: 64ch;
  color: var(--muted);
}

.city-hero__copy .button-row,
.area-hero .button-row,
.legal-hero .button-row {
  margin-top: 1.8rem;
}

.orientation {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--night);
  color: var(--dark-copy);
  box-shadow: 16px 16px 0 #dbe3f7;
  border-radius: 12px;
}

.orientation::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
}

.orientation h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.orientation-list .feature {
  padding-block: 1.45rem;
  display: grid;
  grid-template-columns: 42px 1fr;
  border-bottom: 1px solid var(--dark-line);
}

.orientation-list .feature:last-child {
  border-bottom: 0;
}

.orientation-list .feature__number {
  grid-row: 1 / 3;
}

.orientation-list h3 {
  margin-bottom: 0.65rem;
  color: var(--white);
  font-size: 1rem;
}

.orientation-list .feature div {
  color: var(--dark-copy);
  font-size: 0.84rem;
}

.city-services .section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5rem;
}

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

.city-services .section-heading .section-copy {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.city-services .feature-grid .feature {
  background: transparent;
  border: 1px solid var(--dark-line);
}

.city-services .feature-grid .feature div {
  color: var(--dark-copy);
}

.city-process .section-heading {
  max-width: 680px;
}

.process-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.process-grid--four .feature {
  min-width: 0;
  min-height: 100%;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  background: var(--white);
  border: 1px solid #c5cfdd;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.process-grid--four .feature__number {
  width: fit-content;
  min-width: 2rem;
  min-height: 2rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf2ff;
  line-height: 1;
  transition:
    color 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .process-grid--four .feature:hover {
    transform: translateY(-4px);
    border-color: #8ca8f4;
    box-shadow: 0 6px 8px rgb(6 31 72 / 10%);
  }

  .process-grid--four .feature:hover .feature__number {
    background: var(--blue);
    color: var(--white);
  }
}

.process-grid--four h3 {
  margin-bottom: 1rem;
}

.process-grid--four .feature div {
  color: var(--muted);
  font-size: 0.9rem;
}

.process-grid--four .feature div p:last-child {
  margin-bottom: 0;
}

.city-local .split {
  align-items: start;
}

.related-places {
  max-width: 65ch;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.related-places a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.documents {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.documents h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.documents ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.documents li {
  min-height: 58px;
  padding-block: 0.85rem;
  display: grid;
  grid-template-columns: 45px 1fr;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.documents li span {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 800;
}

.documents li p {
  margin: 0;
}

.city-trust,
.city-cta {
  background: var(--navy);
  color: var(--dark-copy);
}

.city-trust h2,
.city-trust h3,
.city-cta h2 {
  color: var(--white);
}

.city-trust__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.city-trust .button {
  margin-top: 1.5rem;
}

.city-trust__items article {
  padding: 1.6rem 0;
  border-top: 1px solid #315074;
}

.city-trust__items article:first-child {
  padding-top: 0;
}

.city-trust__items h3 {
  margin-bottom: 1rem;
}

.city-trust__items p {
  margin: 0;
}

.city-faq-item {
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
}

.city-faq-item h3 {
  margin-bottom: 1rem;
}

.city-faq-item p {
  margin: 0;
  color: var(--muted);
}

.city-cta {
  border-bottom: 1px solid var(--blue);
}

.city-cta__inner {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.city-cta__inner > div {
  max-width: 780px;
}

.city-cta h2 {
  margin-bottom: 1rem;
}

/* Area overview */
.area-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: center;
  gap: 6rem;
}

.area-hero__grid > div > p:not(.eyebrow) {
  max-width: 65ch;
  color: var(--muted);
}

.area-stat {
  padding: 2.5rem;
  background: var(--night);
  color: var(--dark-copy);
  border-top: 3px solid var(--blue);
}

.area-stat strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
}

.area-explainer .split {
  align-items: start;
}

.area-list .section-heading {
  margin-bottom: 3.5rem;
}

.area-regions {
  border-top: 1px solid var(--line);
}

.area-region {
  padding-block: 2.75rem;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  gap: 4rem;
  border-bottom: 1px solid var(--line);
}

.area-region h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.area-region > div > p:last-child {
  color: var(--muted);
}

/* Legal */
.legal-hero {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.legal-hero .container {
  max-width: 1160px;
}

.legal-hero h1 {
  margin-bottom: 1.4rem;
}

.legal-hero .container > p:not(.eyebrow) {
  max-width: 65ch;
  color: var(--muted);
}

.legal-content {
  padding-block: var(--section-space);
}

.legal-layout {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.legal-notice {
  position: sticky;
  top: 2rem;
  padding: 2rem;
  background: var(--soft);
  border-top: 3px solid var(--blue);
}

.legal-notice h2 {
  margin-bottom: 1.2rem;
  font-size: 1.55rem;
}

.legal-notice p {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-notice .button {
  margin-top: 1rem;
}

.legal-section {
  padding-block: 2.25rem;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.15;
}

.legal-section > div {
  max-width: 72ch;
  color: #445269;
}

.legal-section a {
  color: var(--blue);
}

@media (max-width: 1199px) {
  .grid-surface {
    background-size: auto, 68px 68px, 68px 68px;
  }

  .container,
  .site-header__inner {
    width: min(100% - 3.5rem, 1024px);
  }

  .main-navigation {
    gap: 1rem;
  }

  .main-navigation a {
    font-size: 0.75rem;
  }

  .home-hero {
    min-height: 1280px;
    padding-block: 72px 64px;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 7vw, 4.8rem);
  }

  .hero-visual img,
  .evidence-visual img,
  .valuation-visual img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .valuation::after {
    left: 3rem;
  }

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

  #ablauf {
    min-height: 0;
  }
}

@media (max-width: 1199px) {
  .site-header,
  .site-header__inner {
    min-height: 62px;
  }

  .brand {
    width: 170px;
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 11px 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--navy);
    border: 0;
    border-radius: 6px;
    transition: background-color 220ms var(--ease-out), transform 220ms var(--ease-out);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: #0a2d63;
  }

  .menu-toggle:active {
    transform: scale(0.94);
  }

  .menu-toggle > span:not(.sr-only) {
    width: 25px;
    height: 3px;
    margin-inline: auto;
    display: block;
    background: var(--white);
    transition: transform 220ms var(--ease-out), opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    top: 63px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-menu);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 280ms var(--ease-out), visibility 0s linear 280ms;
  }

  .main-navigation.is-open {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .main-navigation a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-call {
    display: none;
  }

  .city-hero__grid,
  .area-hero__grid,
  .split,
  .services-intro,
  .proof-header,
  .reviews-header,
  .reviews-grid,
  .faq-layout,
  .contact-grid,
  .city-trust__grid,
  .city-faq__grid,
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Keep the hero/evidence/valuation image-paired sections side-by-side down to tablet width. */
  .home-hero__grid,
  .split--evidence,
  .split--valuation {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .evidence-badge {
    right: 0;
  }

  .home-hero__grid {
    gap: 4rem;
  }

  .trust-grid__inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .trust-grid .feature {
    min-height: auto;
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .trust-grid .feature:last-child {
    border-bottom: 0;
  }

  .services-intro,
  .proof-header,
  .reviews-header {
    gap: 1.5rem;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid #1f2e40;
  }

  .proof-badge,
  .reviews-header > div:last-child {
    justify-self: start;
  }

  .review-featured {
    min-height: 280px;
  }

  .city-services .section-heading {
    display: block;
  }

  .city-services .section-heading .section-copy {
    margin-top: 1.5rem;
  }

  .city-hero__grid {
    gap: 4rem;
  }

  .area-region {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
  }

  .legal-notice {
    position: static;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }

  body {
    font-size: 17px;
  }

  .hero-copy {
    width: 422px;
    max-width: 100%;
  }

  .hero-copy h1 {
    width: 402px;
    max-width: 100%;
    font-size: 68px;
  }

  .hero-visual {
    width: 100%;
    padding-inline: 34px;
    transform: none;
  }

  .trust-band {
    min-height: 0;
    padding-block: 52px 42px;
  }

  .stats-band {
    min-height: 0;
    padding-block: 60px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 10px 75px;
  }

  .stat,
  .stat:nth-child(2),
  .stat:nth-child(-n + 2),
  .stat:last-child {
    min-height: 250px;
    border: 1px solid #2d3d55;
  }

  #leistungen {
    min-height: 972px;
    padding-block: 72px 78px;
  }

  .evidence {
    min-height: 0;
    padding-block: 72px 76px;
  }

  .split--evidence,
  .split--valuation {
    min-height: 0;
  }

  .evidence-visual {
    width: 100%;
  }

  #ablauf {
    padding-block: 72px 78px;
  }

  #ablauf .feature-grid .feature {
    min-height: 278px;
  }

  .valuation {
    min-height: 0;
    padding-block: 72px 78px;
  }

  .valuation-visual {
    width: 100%;
  }

  .proof {
    min-height: 1402px;
    padding-block: 76px;
  }

  .reviews {
    padding-block: 76px 78px;
  }

  .review-featured {
    min-height: 217px;
  }

  .faq {
    min-height: 0;
    padding-block: 80px 72px;
  }

  .faq .faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding-inline: 10px;
    transform: none;
  }

  .faq-intro,
  .faq-layout > div:last-child {
    padding-inline: 0;
  }

  .faq h2 {
    font-size: 44px;
  }

  .faq .section-heading h2 {
    margin-bottom: 20px;
  }

  .faq .section-copy p {
    margin-bottom: 0;
  }

  .faq-intro .button {
    margin-top: 20px;
  }

  .faq-item summary {
    min-height: 0;
    padding: 24px 0 21px;
    font-size: 20px;
  }

  .faq-item > div {
    padding: 0 28px 28px 0;
    font-size: 16px;
  }

  .locations {
    min-height: 0;
    padding-block: 72px 76px;
  }

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

  .regions-grid .region {
    display: block;
    min-height: 0;
  }

  .contact {
    min-height: 0;
    padding-block: 80px;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-form {
    padding: 38px;
  }

  .form-grid {
    gap: 10px;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    min-height: 44px;
    margin-top: 4px;
  }

  .footer-brand img {
    width: 230px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .reviews .section-heading,
  .reviews-header > div:last-child,
  .review-featured > p:not(.stars) {
    width: 100%;
    max-width: none;
  }

  .reviews-grid {
    gap: 30px;
  }

  .reviews-header {
    margin-bottom: 33px;
  }

  .reviews-header .stars {
    margin-bottom: 20px;
  }

  .review-featured {
    height: 241px;
    min-height: 241px;
    padding: 40px 42px;
  }

  .review-featured > p:not(.stars) {
    font-size: 28px;
    line-height: 1.3;
  }

  .reviews-grid > div {
    padding-inline: 10px;
  }

  .review-mini:first-child {
    min-height: 218px;
  }

  .review-mini:last-child {
    min-height: 213px;
  }

  .review-cta {
    padding-top: 31px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-space: 4.5rem;
  }

  body {
    font-size: 16px;
  }

  .home-hero__grid,
  .split--evidence,
  .split--valuation {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .site-header,
  .site-header__inner {
    min-height: 57px;
  }

  .brand {
    width: 132px;
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .main-navigation {
    top: 58px;
  }

  .container,
  .site-header__inner {
    width: min(100% - 2.5rem, 767px);
  }

  .grid-surface {
    background-size: auto, 44px 44px, 44px 44px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .home-hero {
    min-height: 1080px;
    padding-block: 58px 54px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    width: 100%;
    font-size: clamp(2.3rem, 13vw, 3.125rem);
    white-space: nowrap;
  }

  .signal {
    margin-bottom: 1.6rem;
    font-size: 0.58rem;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .hero-visual {
    width: 100%;
    padding: 0.8rem 22px;
    transform: none;
  }

  .hero-visual::before,
  .hero-visual::after {
    width: 82px;
    height: 82px;
    border-width: 2px;
  }

  .hero-visual img,
  .evidence-visual img,
  .valuation-visual img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .image-label {
    bottom: -1rem;
    left: 1.5rem;
    min-width: 170px;
    padding: 0.85rem 1rem;
    font-size: 0.6rem;
  }

  .trust-band {
    min-height: 0;
    padding-block: 42px 26px;
  }

  #leistungen {
    min-height: 859px;
    padding-block: 58px 64px;
  }

  .evidence {
    min-height: 1159px;
    padding-block: 58px 64px;
  }

  .evidence-visual,
  .valuation-visual {
    width: 100%;
  }

  .stats-band {
    min-height: 0;
    padding-block: 44px;
  }

  .service-row summary {
    min-height: 80px;
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    gap: 0.75rem;
  }

  .service-row__label {
    display: none;
  }

  .service-row__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
  }

  .service-row__body {
    padding: 0 0.75rem 2.2rem 4.9rem;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.4rem;
  }

  .evidence-badge {
    top: 1.5rem;
    right: -0.5rem;
    width: 125px;
    min-height: 125px;
    padding: 1rem;
  }

  .evidence-badge strong {
    font-size: 2.6rem;
  }

  .stats-grid {
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
  }

  .stat,
  .stat:nth-child(2),
  .stat:nth-child(-n + 2),
  .stat:last-child {
    width: 220px;
    min-height: 212.5px;
    padding: 24px 16px;
    border: 1px solid #2d3d55;
  }

  .stat strong {
    font-size: 64px;
  }

  .stat span {
    font-size: 13px;
  }

  .feature-grid,
  .process-grid {
    margin-top: 2.25rem;
  }

  .feature-grid,
  .proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #ablauf {
    min-height: 0;
    padding-block: 58px 64px;
  }

  #ablauf .feature-grid .feature {
    min-height: 290px;
  }

  .feature-grid .feature {
    min-height: auto;
    padding: 1.6rem;
  }

  .valuation::after {
    display: none;
  }

  .valuation {
    min-height: 1112px;
    padding-block: 58px 64px;
  }

  .split--valuation .valuation-copy {
    order: 1;
  }

  .split--valuation .valuation-visual {
    order: 2;
  }

  .inline-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .inline-points li {
    padding: 0.45rem 0;
    border-right: 0;
  }

  .proof-badge {
    min-width: 0;
    width: 100%;
  }

  .proof {
    min-height: 1505px;
    padding-block: 62px;
  }

  .reviews {
    min-height: 1373px;
    padding-block: 64px 66px;
  }

  .review-featured {
    min-height: 313px;
  }

  .proof-card {
    padding: 1.6rem;
  }

  .review-cta,
  .city-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-cta > *,
  .city-cta__inner > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .review-cta .button,
  .city-cta__inner .button {
    width: 100%;
  }

  .faq-layout,
  .city-faq__grid {
    gap: 2rem;
  }

  .faq {
    min-height: 1225px;
    padding-block: 64px 60px;
  }

  .faq h2 {
    font-size: 35px;
  }

  .locations {
    min-height: 2808px;
    padding-block: 58px 64px;
  }

  .regions-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
  }

  .regions-grid .region {
    display: block;
    min-height: 0;
  }

  .regions-grid .place-list {
    display: grid;
  }

  .place-list li {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-form {
    padding: 24px;
  }

  .contact {
    padding-block: 20px;
  }

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

  .form-span {
    grid-column: auto;
  }

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

  .form-submit .button {
    width: 100%;
  }

  .city-hero,
  .area-hero {
    padding-block: 2.5rem 4rem;
  }

  .breadcrumb {
    margin-bottom: 2.75rem;
    overflow-wrap: anywhere;
  }

  .city-hero__copy h1,
  .area-hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.55rem);
  }

  .city-page--long-title .city-hero__copy h1 {
    font-size: clamp(2.2rem, 9.8vw, 2.4rem);
  }

  .city-hero__copy h1 .accent {
    overflow-wrap: anywhere;
  }

  .orientation {
    padding: 1.75rem 1.4rem;
    box-shadow: 8px 8px 0 #dbe3f7;
  }

  .process-grid--four {
    grid-template-columns: minmax(0, 1fr);
  }

  .documents {
    padding: 1.5rem;
  }

  .city-cta__inner {
    min-height: auto;
  }

  .area-region {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .area-region .place-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-notice {
    padding: 1.5rem;
  }

  .legal-section h2 {
    overflow-wrap: anywhere;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }

  .footer-brand img {
    width: 208px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
  }

}

.signal,
.image-label,
.service-row,
.evidence-badge,
.stat,
.feature-grid .feature,
.proof-badge,
.proof-card,
.review-featured,
.contact-form,
.regions-grid .region,
.documents,
.orientation,
.legal-notice {
  border-radius: 10px;
}

.service-row {
  overflow: hidden;
}

.service-row__icon {
  border-radius: 50%;
}

@media (max-width: 767px) {
  .service-row__icon {
    border-radius: 50%;
  }
}

/* Homepage parity with the production design. */
.home-page .site-header__inner {
  gap: 0;
}

.home-page .main-navigation {
  margin-left: 110px;
  gap: 0;
}

.home-page .main-navigation a {
  min-height: 43px;
  padding: 14px 11px;
  font-size: 16px;
  line-height: 0.96;
}

.home-page .header-call {
  width: 189px;
  min-height: 51px;
  margin-left: auto;
  padding: 15px 30px;
  justify-content: space-between;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.home-page .home-hero__grid {
  min-height: 800px;
}

.home-page .hero-copy {
  width: 100%;
  transform: none;
}

.home-page .signal {
  width: 348px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 0;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

.home-page .hero-copy h1 {
  margin-bottom: 20px;
}

.home-page .hero-rule {
  margin-bottom: 20px;
}

.home-page .hero-intro {
  width: 410px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  font-size: 18px;
  line-height: 1.68;
}

.home-page .hero-intro p {
  margin-bottom: 0;
}

.home-page .home-hero .button-row {
  width: 266px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.home-page .home-hero .button-row .button {
  min-height: 80px;
  padding: 20px 24px;
  border-radius: 6px;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.home-page .home-hero .button-row .button:first-child {
  width: 236px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.home-page .home-hero .button-row .button:last-child {
  width: 266px;
}

.home-page .hero-visual {
  width: 100%;
  margin-left: 0;
  padding: 20px 22px 22px;
  transform: translateY(35px);
}

.home-page .hero-visual img {
  border-radius: 10px;
  object-fit: cover;
}

.home-page .image-label {
  bottom: -21px;
  left: 269px;
  width: 224px;
  min-width: 224px;
  min-height: 79px;
  padding: 17px 20px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
}

.home-page .trust-grid {
  max-width: 1160px;
}

.home-page .trust-grid__inner {
  min-height: 277px;
  padding: 80px 0 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-page .trust-band {
  align-items: stretch;
}

.home-page .trust-grid .feature {
  min-height: 173px;
  padding-inline: 43px;
}

.home-page .trust-grid .feature:last-child {
  padding-left: 44px;
  padding-right: 0;
}

.home-page .trust-grid .feature:first-child {
  padding-left: 0;
}

.home-page .trust-grid .feature div p {
  margin-bottom: 14px;
}

.home-page .trust-grid .feature__number {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
}

.home-page .trust-grid h2,
.home-page .trust-grid h3 {
  margin-bottom: 20px;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.home-page .trust-grid .feature div {
  font-size: 16px;
  line-height: 1.28;
}

.home-page #leistungen .container {
  max-width: 1160px;
}

.home-page #leistungen {
  min-height: 948px;
}

.home-page .eyebrow {
  line-height: 1;
}

.home-page .services-intro h2 {
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.home-page .services-intro .section-copy {
  font-size: 18px;
  line-height: 1.6;
}

.home-page .service-row {
  border-radius: 0;
}

.home-page .service-row summary strong {
  font-size: 25px;
  line-height: 1.05;
}

.home-page .evidence-copy {
  width: 100%;
  transform: translateY(-8px);
}

.home-page .evidence-copy .eyebrow {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 24px;
}

.home-page .evidence-visual {
  transform: translateY(4px);
}

.home-page .evidence-copy h2,
.home-page #ablauf h2,
.home-page .valuation-copy h2,
.home-page .proof-header h2 {
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.home-page .evidence-badge {
  top: -4px;
  right: -2px;
  width: 158px;
  min-height: 158px;
  border-radius: 0;
}

.home-page .stats-band {
  background: #0a111b;
}

.home-page .stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-page .stat,
.home-page .stat:last-child {
  min-height: 224px;
  padding: 28px 22px;
  border: 0;
  border-radius: 0;
  background: #111c2b;
}

.home-page #ablauf {
  padding-block: 61px 0;
  background: #f3f5f8;
}

.home-page #ablauf .section-heading {
  max-width: 1176px;
}

.home-page #ablauf .section-heading h2 {
  margin-bottom: 20px;
}

.home-page #ablauf .feature-grid {
  margin-top: 89px;
  grid-template-columns: repeat(3, 368px);
}

.home-page #ablauf .feature-grid .feature {
  height: 313px;
  min-height: 313px;
  padding: 40px 32px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.home-page #ablauf .feature__number {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  padding-block: 13px;
  color: var(--white);
  background: var(--blue);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}

.home-page #ablauf .feature-grid .feature {
  position: relative;
  isolation: isolate;
}

.home-page #ablauf .feature-grid .feature::after {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: -1;
  color: #edf1f7;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.home-page #ablauf .feature-grid .feature:nth-child(1)::after {
  content: "01";
}

.home-page #ablauf .feature-grid .feature:nth-child(2)::after {
  content: "02";
}

.home-page #ablauf .feature-grid .feature:nth-child(3)::after {
  content: "03";
}

.home-page #ablauf .feature-grid .feature h3 {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.home-page #ablauf .feature-grid .feature div {
  font-size: 16px;
  line-height: 1.7;
}

.home-page .proof-header {
  grid-template-columns: 645px 375px;
  align-items: center;
  gap: 170px;
  margin-bottom: 50px;
}

.home-page .proof {
  padding-top: 58px;
}

.home-page .proof-header .section-heading {
  width: 633px;
  max-width: 633px;
  padding: 20px 0 0 60px;
}

.home-page .proof-header h2 {
  margin-bottom: 0;
}

.home-page .proof-badge {
  width: 375px;
  min-width: 375px;
  min-height: 121px;
  padding: 24px 26px;
  border-radius: 12px;
  transform: translateY(9px);
}

.home-page .proof-grid {
  width: 1140px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-page .proof-card {
  min-height: 403px;
  padding: 32px 30px 24px;
  border-radius: 12px;
}

.home-page .proof-card h3 {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.home-page .proof-card .eyebrow {
  margin-bottom: 24px;
}

.home-page .reviews {
  height: 1049px;
  min-height: 1049px;
  padding-block: 106px 0;
}

.home-page .reviews-header {
  grid-template-columns: 732px 434px;
  gap: 74px;
  margin-bottom: 65px;
}

.home-page .reviews-header .section-heading,
.home-page .reviews-header > div:last-child {
  padding-inline: 10px;
}

.home-page .reviews-header h2 {
  width: 712px;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin-bottom: 0;
}

.home-page .reviews-grid {
  grid-template-columns: 769px 451px;
  gap: 20px;
}

.home-page .review-featured {
  min-height: 438px;
  padding: 40px 42px 36px;
  border-radius: 12px;
}

.home-page .review-featured > p:not(.stars) {
  max-width: none;
  font-size: 24px;
  line-height: 1.5;
}

.home-page .review-cta {
  margin-top: 64px;
}

.home-page .faq-list {
  border-radius: 10px;
}

.home-page .faq-item summary {
  min-height: 68px;
  padding: 20px;
}

.home-page .faq-item > div {
  padding: 10px;
}

.home-page .faq-item > div p {
  margin-bottom: 14px;
}

.home-page .faq .faq-layout {
  transform: translateY(10px);
}

.home-page .locations > .container > .section-heading > .eyebrow {
  font-size: 12px;
  line-height: 1.4;
}

.home-page .locations .section-heading h2 {
  letter-spacing: -0.015em;
}

.home-page .locations .section-heading {
  margin-bottom: 27px;
}

.home-page .regions-grid .region {
  border-radius: 12px;
}

.home-page .contact {
  padding-block: 0;
  display: flex;
  align-items: center;
}

.home-page .contact > .container {
  width: min(100% - 4.75rem, 1160px);
}

.home-page .contact-grid {
  grid-template-columns: 526px 604px;
  align-items: stretch;
  gap: 20px;
}

.home-page .contact-grid > div:first-child {
  padding: 10px 20px;
}

.home-page .contact-grid > div:first-child > .eyebrow {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1;
}

.home-page .contact h2 {
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.home-page .contact-form {
  min-height: 536px;
  padding: 38px;
  border-radius: 12px;
  background: #111a28;
}

.home-page .contact-form .form-grid {
  gap: 10px;
}

.home-page .contact-form .form-grid input,
.home-page .contact-form .form-grid select,
.home-page .contact-form .form-grid textarea {
  min-height: 59px;
  padding: 7px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.home-page .contact-form .form-grid textarea {
  height: 106px;
  min-height: 106px;
}

.home-page .contact-form .check input {
  width: 13px;
  min-height: 13px;
}

.home-page .contact-form .form-submit .button {
  width: 100%;
  min-height: 59px;
  padding: 20px 40px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.2;
}

.home-page .site-footer {
  min-height: 452px;
  padding-block: 78px 14px;
}

.home-page .footer-grid {
  grid-template-columns: 496px 108px 397px;
  column-gap: 119.5px;
}

.home-page .footer-nav h2 {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.home-page .footer-contact h2 {
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.home-page .whatsapp {
  right: 35px;
  bottom: 33px;
  width: 211px;
  min-height: 61px;
  padding: 20px 40px;
  border: 0;
  font-size: 16px;
  line-height: 1.2;
  box-shadow: 0 0 0 7px rgb(37 211 102 / 16%);
}

@media (max-width: 1199px) {
  .home-page .main-navigation {
    margin-left: 0;
  }

  .home-page .home-hero__grid {
    min-height: 0;
  }

  .home-page .hero-copy {
    padding-left: 20px;
  }

  .home-page .hero-visual {
    width: 100%;
    margin-left: 0;
    padding: 20px 0 0 20px;
    transform: none;
  }

  .home-page .image-label {
    left: auto;
    right: 0;
  }

  .home-page .trust-grid__inner {
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .home-page .trust-grid .feature,
  .home-page .trust-grid .feature:last-child {
    padding-inline: 0;
  }

  .home-page #leistungen .container {
    max-width: none;
  }

  .home-page .evidence-copy {
    width: auto;
    transform: none;
  }

  .home-page .evidence-copy .eyebrow {
    margin-bottom: 19.2px;
  }

  .home-page .evidence-visual {
    transform: none;
  }

  .home-page #ablauf {
    padding-block: 72px 78px;
  }

  .home-page #ablauf .feature-grid {
    margin-top: 52px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page #ablauf .feature-grid .feature {
    height: auto;
    min-height: 286px;
    padding: 32px 26px;
  }

  .home-page .proof-header,
  .home-page .reviews-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .home-page .proof-header .section-heading {
    width: auto;
    max-width: 620px;
    padding: 0;
  }

  .home-page .proof-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .proof-badge,
  .home-page .reviews-header h2,
  .home-page .reviews-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .reviews {
    height: auto;
    min-height: 0;
    padding-block: 76px 78px;
  }

  .home-page .reviews-header h2 {
    margin-bottom: 28px;
  }

  .home-page .review-cta {
    margin-top: 40px;
  }

  .home-page .reviews-header .section-heading,
  .home-page .reviews-header > div:last-child {
    padding-inline: 0;
  }

  .home-page .review-featured {
    min-height: 241px;
  }

  .home-page .contact {
    padding-block: 80px;
  }

  .home-page .contact > .container {
    width: min(100% - 3.5rem, 1024px);
  }

  .home-page .contact-grid,
  .home-page .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .contact-grid > div:first-child {
    padding: 0;
  }

  .home-page .contact-form {
    min-height: 0;
  }

  .home-page .whatsapp {
    right: 20px;
    bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .home-page .contact-grid {
    transform: translateY(1px);
  }

  .home-page .review-cta {
    margin-top: 57px;
    padding-top: 30px;
  }

  .home-page .site-footer {
    padding-top: 76px;
    padding-bottom: 0;
    border-top: 2px solid var(--blue);
  }

  .home-page .footer-grid {
    height: 255px;
  }

  .home-page .footer-bottom {
    width: 100%;
    max-width: none;
    height: 61px;
    margin: 58px 0 0;
    padding-inline: 100px;
  }
}

@media (max-width: 767px) {
  .home-page {
    overflow-x: hidden;
  }

  .home-page .site-header,
  .home-page .site-header__inner {
    min-height: 57px;
  }

  .home-page .site-header__inner {
    width: calc(100% - 40px);
  }

  .home-page .home-hero {
    min-height: 1107px;
    padding-block: 58px 54px;
  }

  .home-page .home-hero__grid {
    gap: 42px;
  }

  .home-page .hero-copy {
    width: 100%;
    max-width: 296px;
    margin-top: 20px;
    padding-left: 20px;
  }

  .home-page .hero-copy h1 {
    width: 100%;
    max-width: 296px;
  }

  .home-page .signal {
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 10px;
  }

  .home-page .hero-intro {
    width: 100%;
    max-width: 310px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .home-page .hero-intro p {
    margin-bottom: 0;
  }

  .home-page .home-hero .button-row {
    width: 100%;
    max-width: 308px;
  }

  .home-page .home-hero .button-row .button {
    height: 61px;
    min-height: 59px;
    padding: 20px 24px;
    flex: 0 0 61px;
  }

  .home-page .home-hero .button-row .button:first-child {
    width: 100%;
    max-width: 274px;
  }

  .home-page .home-hero .button-row .button:last-child {
    width: 100%;
    max-width: 308px;
  }

  .home-page .hero-visual {
    width: 100%;
    margin-left: 0;
    padding: 12px;
  }

  .home-page .hero-visual img {
    object-fit: cover;
  }

  .home-page .image-label {
    right: auto;
    bottom: -49px;
    left: 76px;
    width: 190px;
    min-width: 190px;
    min-height: 79px;
    padding: 17px 20px;
    border-radius: 12px;
    font-size: 12px;
  }

  .home-page .trust-grid h2,
  .home-page .trust-grid h3 {
    font-size: 26px;
  }

  .home-page .trust-band {
    min-height: 755px;
    padding-block: 42px 34px;
  }

  .home-page .trust-grid__inner {
    min-height: 679px;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .home-page .trust-grid .feature,
  .home-page .trust-grid .feature:first-child,
  .home-page .trust-grid .feature:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .home-page .trust-grid .feature:first-child {
    padding-top: 0;
  }

  .home-page .trust-grid .feature:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .home-page .trust-grid .feature:first-child {
    height: 185px;
  }

  .home-page .trust-grid .feature:nth-child(2) {
    height: 242px;
  }

  .home-page .trust-grid .feature:nth-child(3) {
    height: 211px;
    transform: translateY(1px);
  }

  .home-page #leistungen {
    min-height: 887px;
    padding-block: 58px 62px;
  }

  .home-page .service-row summary strong {
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .home-page .services-intro h2,
  .home-page .evidence-copy h2 {
    font-size: 40px;
  }

  .home-page .evidence {
    min-height: 0;
    padding-block: 58px 64px;
  }

  .home-page .stats-band {
    min-height: 1080px;
    padding-block: 44px;
  }

  .home-page #ablauf {
    min-height: 1332px;
    padding-block: 58px 64px;
  }

  .home-page #ablauf .feature-grid {
    margin-top: 81px;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page #ablauf .feature-grid .feature:first-child {
    height: 300px;
    min-height: 300px;
  }

  .home-page #ablauf .feature-grid .feature:nth-child(2) {
    height: 300px;
    min-height: 300px;
  }

  .home-page #ablauf .feature-grid .feature:nth-child(3) {
    height: 286px;
    min-height: 286px;
  }

  .home-page #ablauf h2 {
    font-size: 39px;
  }

  .home-page .valuation-copy h2 {
    font-size: 41px;
  }

  .home-page .valuation {
    min-height: 1179px;
    padding-block: 58px 64px;
  }

  .home-page .proof-header h2 {
    font-size: 35px;
  }

  .home-page .proof {
    min-height: 1680px;
    padding-block: 62px;
    padding-top: 72px;
  }

  .home-page .proof-header {
    margin-bottom: 31px;
    padding-inline: 10px;
  }

  .home-page .proof-header .section-heading {
    width: 100%;
    max-width: 330px;
    min-height: 153px;
  }

  .home-page .proof-badge {
    width: 100%;
    min-width: 0;
    max-width: 330px;
    min-height: 182px;
    transform: translateY(1px);
  }

  .home-page .proof-grid {
    padding: 10px;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .proof-card:first-child {
    height: 357px;
    min-height: 357px;
  }

  .home-page .proof-card:nth-child(2) {
    height: 360px;
    min-height: 360px;
  }

  .home-page .proof-card:nth-child(3) {
    height: 383px;
    min-height: 383px;
  }

  .home-page .reviews-header h2 {
    font-size: 36px;
  }

  .home-page .reviews {
    min-height: 1532px;
    padding-block: 64px 66px;
  }

  .home-page .reviews-header {
    height: 329px;
    margin-bottom: 37px;
  }

  .home-page .review-featured {
    height: 335px;
    min-height: 335px;
    padding: 26px;
  }

  .home-page .review-featured > p:not(.stars) {
    font-size: 20px;
    line-height: 1.45;
  }

  .home-page .reviews-grid > div {
    height: 484px;
    padding: 10px;
    display: grid;
    gap: 20px;
  }

  .home-page .review-mini:first-child,
  .home-page .review-mini:last-child {
    height: 222px;
    min-height: 222px;
    padding-block: 24px;
  }

  .home-page .review-cta {
    min-height: 161px;
    margin-top: 36px;
  }

  .home-page #ablauf .feature__number {
    font-size: 20px;
  }

  .home-page #ablauf .feature-grid .feature::after {
    top: 14px;
    right: 18px;
    font-size: 68px;
  }

  .home-page .regions-grid .place-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .faq {
    min-height: 1472px;
    padding-block: 64px 60px;
  }

  .home-page .locations {
    min-height: 0;
    padding-block: 58px 64px;
  }

  .home-page .contact {
    min-height: 1181px;
    padding-block: 20px;
    border-bottom: 0;
  }

  .home-page .contact > .container {
    width: calc(100% - 40px);
  }

  .home-page .contact-grid {
    min-height: 1141px;
    gap: 20px;
  }

  .home-page .contact-grid > div:first-child {
    height: 387px;
  }

  .home-page .contact-form {
    height: 734px;
    min-height: 734px;
    padding: 24px;
  }

  .home-page .contact h2 {
    font-size: 43px;
  }

  .home-page .site-footer {
    height: 919px;
    min-height: 919px;
    padding: 54px 0 0;
    border-top: 2px solid var(--blue);
  }

  .home-page .footer-grid {
    height: 744px;
    column-gap: 0;
    row-gap: 20px;
  }

  .home-page .footer-brand {
    height: 212px;
  }

  .home-page .footer-brand img {
    margin-bottom: 20px;
  }

  .home-page .footer-brand p,
  .home-page .footer-contact p {
    font-size: 16px;
    line-height: 1.7;
  }

  .home-page .footer-nav {
    height: 218px;
  }

  .home-page .footer-nav h2 {
    margin-bottom: 20px;
  }

  .home-page .footer-nav a {
    min-height: 26px;
    font-size: 16px;
    line-height: 1.6;
  }

  .home-page .footer-contact {
    height: 274px;
  }

  .home-page .footer-contact h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.02;
  }

  .home-page .footer-contact p {
    margin-bottom: 20px;
  }

  .home-page .footer-bottom {
    width: 100%;
    max-width: none;
    height: 69px;
    margin: 50px 0 0;
    padding: 18px 20px;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .home-page .whatsapp {
    right: 21px;
    bottom: 24px;
    width: 211px;
    min-height: 61px;
    padding: 20px 40px;
    font-size: 16px;
  }
}

/* Rounded-corner polish: preserve the established palette and typography. */
.button,
.header-call,
.menu-toggle,
button,
input,
select,
textarea {
  border-radius: var(--radius-control);
}

.home-page .button,
.home-page .header-call,
.home-page .menu-toggle,
.home-page .home-hero .button-row .button,
.home-page .contact-form .form-submit .button {
  border-radius: var(--radius-control);
}

.home-page .home-hero .button-row .button:first-child {
  clip-path: none;
}

.signal,
.home-page .signal {
  border-radius: var(--radius-control);
}

.hero-visual img,
.home-page .hero-visual img,
.evidence-visual img,
.valuation-visual img {
  border-radius: var(--radius-card);
}

.hero-visual::before {
  border-radius: var(--radius-card) 0 0;
}

.hero-visual::after {
  border-radius: 0 0 var(--radius-card);
}

.image-label,
.home-page .image-label,
.evidence-badge,
.home-page .evidence-badge,
.proof-badge,
.home-page .proof-badge {
  border-radius: var(--radius-card);
}

/* Keep the proof badge faithful to the supplied reference while remaining rounded. */
.home-page .proof-badge {
  border-radius: 12px;
}

.services-list {
  display: grid;
  gap: 8px;
  border-top: 0;
}

.service-row,
.home-page .service-row {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: inset 0 0 0 1px var(--dark-line);
}

.service-row[open] {
  box-shadow: inset 0 0 0 1px var(--blue);
}

.service-row summary {
  min-height: 88px;
}

.service-row__icon,
.home-page .service-row__icon {
  border-radius: var(--radius-pill);
}

.stats-grid {
  overflow: hidden;
  border-radius: var(--radius-frame);
}

.stat,
.home-page .stat,
.feature-grid .feature,
.process-grid .feature,
.home-page #ablauf .feature-grid .feature,
.proof-card,
.home-page .proof-card,
.review-featured,
.home-page .review-featured,
.regions-grid .region,
.home-page .regions-grid .region,
.orientation,
.documents,
.area-stat,
.legal-notice,
.contact-form,
.home-page .contact-form {
  border-radius: var(--radius-card);
}

/* The reference proof cards use a slightly tighter radius than the shared cards. */
.home-page .proof-card {
  border-radius: 12px;
}

.feature__number,
.home-page #ablauf .feature__number {
  border-radius: 8px;
}

.home-page .contact-form .form-grid input,
.home-page .contact-form .form-grid select,
.home-page .contact-form .form-grid textarea {
  border-radius: var(--radius-control);
}

.faq-list,
.home-page .faq-list {
  border-radius: var(--radius-frame);
}

.orientation,
.documents,
.area-stat,
.legal-notice,
.contact-form,
.review-featured,
.service-row,
.faq-list {
  overflow: hidden;
}

.button,
.header-call {
  isolation: isolate;
}

.header-call {
  transition: background-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.header-call:hover,
.header-call:focus-visible {
  background: #0a2d63;
  transform: translateY(-2px);
}

.button span[aria-hidden="true"],
.header-call span[aria-hidden="true"] {
  transition: transform 220ms var(--ease-out);
}

.button:hover span[aria-hidden="true"],
.button:focus-visible span[aria-hidden="true"],
.header-call:hover span[aria-hidden="true"],
.header-call:focus-visible span[aria-hidden="true"] {
  transform: translateX(3px);
}

.button:active,
.header-call:active {
  transform: translateY(0) scale(0.98);
}

.faq-item summary {
  transition: background-color 220ms var(--ease-out);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: var(--soft);
}

.service-row summary:focus-visible {
  outline-offset: -3px;
  background: #0e1827;
}

.faq-item summary:focus-visible {
  outline-offset: -3px;
}

/* Shared card hover treatment: subtle lift + soft elevation, no color changes. */
.feature-grid .feature,
.proof-card,
.review-featured,
.documents,
.area-stat,
.orientation {
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.feature-grid .feature:hover,
.proof-card:hover,
.review-featured:hover,
.documents:hover,
.area-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 8px rgb(8 13 20 / 16%);
}

.proof-card:hover,
.documents:hover {
  border-color: #9eb8dc;
}

.review-featured:hover {
  border-color: #45618e;
}

.orientation:hover {
  transform: translate(4px, 4px);
  box-shadow: 12px 12px 0 #dbe3f7;
}

@media (max-width: 767px) {
  .orientation:hover {
    box-shadow: 8px 8px 0 #dbe3f7;
  }
}

.brand,
.footer-brand > a {
  transition: opacity 200ms var(--ease-out);
}

.brand:hover,
.brand:focus-visible,
.footer-brand > a:hover,
.footer-brand > a:focus-visible {
  opacity: 0.82;
}

.whatsapp {
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    opacity 180ms var(--ease-out),
    visibility 0s linear 180ms;
}

.whatsapp:hover,
.whatsapp:focus-visible {
  background: #1ebe5b;
  transform: translateY(-2px);
}

.whatsapp:active {
  transform: translateY(0) scale(0.98);
}

/* Valuation section parity: mirror the reference hierarchy and geometry. */
.home-page .valuation-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.home-page .valuation-copy > .eyebrow,
.home-page .valuation-copy > h2,
.home-page .valuation-copy > p,
.home-page .valuation-copy > .inline-points {
  margin: 0;
}

.home-page .valuation-copy > .eyebrow {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
}

.home-page .valuation-copy > p:not(.eyebrow) {
  margin-bottom: 14px;
  color: var(--dark-copy);
  font-size: 17px;
  line-height: 1.7;
}

.home-page .inline-points {
  width: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 4px;
}

.home-page .inline-points li {
  min-width: 0;
  padding: 1px 0 0 17px;
  border-right: 0;
  border-left: 1px solid var(--blue);
  color: var(--white);
  line-height: 1;
}

.home-page .inline-points li:nth-child(1),
.home-page .inline-points li:nth-child(3) {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .inline-points li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.home-page .inline-points li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.home-page .inline-points li:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.home-page .inline-points li:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.home-page .inline-points li:nth-child(2),
.home-page .inline-points li:nth-child(4) {
  padding-top: 1px;
  color: var(--dark-copy);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.home-page .valuation .button {
  width: 264px;
  min-height: 56px;
  padding: 0 27px;
  justify-content: space-between;
  gap: 18px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-page .valuation-visual img {
  border-radius: 10px;
}

.home-page .valuation::after {
  border-bottom-left-radius: 12px;
}

@media (min-width: 1200px) {
  .home-page .inline-points {
    width: 400px;
    grid-template-columns: repeat(2, 190px);
  }

  .home-page .valuation::after {
    bottom: 108px;
    left: calc(50% - 161px);
  }
}

@media (max-width: 767px) {
  .service-row summary {
    min-height: 72px;
  }

  .home-page .split--valuation {
    width: calc(100% - 80px);
    gap: 52px;
  }

  .home-page .valuation-visual {
    width: 100%;
  }

  .home-page .inline-points {
    min-height: 100px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 18px 22px 20px 18px 22px;
  }

  .home-page .valuation-copy {
    gap: 0;
  }

  .home-page .valuation-copy > .eyebrow {
    font-size: 11px;
    line-height: 1;
  }

  .home-page .valuation-copy > h2 {
    margin-top: 43px;
  }

  .home-page .valuation-copy > p:not(.eyebrow) {
    margin-top: 46px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
  }

  .home-page .valuation-copy > .inline-points {
    margin-top: 46px;
  }

  .home-page .inline-points li {
    padding-left: 13px;
  }

  .home-page .inline-points li:nth-child(1),
  .home-page .inline-points li:nth-child(3) {
    font-size: 14px;
    line-height: 1;
  }

  .home-page .inline-points li:nth-child(2),
  .home-page .inline-points li:nth-child(4) {
    font-size: 12px;
    line-height: 1.2;
  }

  .home-page .inline-points li:nth-child(1),
  .home-page .inline-points li:nth-child(2),
  .home-page .inline-points li:nth-child(3),
  .home-page .inline-points li:nth-child(4) {
    grid-column: 1;
  }

  .home-page .inline-points li:nth-child(1) {
    grid-row: 1;
  }

  .home-page .inline-points li:nth-child(2) {
    grid-row: 2;
  }

  .home-page .inline-points li:nth-child(3) {
    grid-row: 4;
  }

  .home-page .inline-points li:nth-child(4) {
    grid-row: 5;
  }

  .home-page .valuation .button {
    width: 100%;
    margin-top: 50px;
  }
}

/* Compact proof cards at every width; the tallest card sets the row height. */
.home-page .proof {
  min-height: 0;
  padding-bottom: 64px;
}

.home-page .proof-grid {
  align-items: stretch;
}

.home-page .proof-card,
.home-page .proof-card:first-child,
.home-page .proof-card:nth-child(2),
.home-page .proof-card:nth-child(3) {
  height: auto;
  min-height: 0;
  padding-bottom: 16px;
}

.home-page .proof-card__meta p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .home-page .proof {
    padding-bottom: 56px;
  }
}

/* Whole-site responsive and accessibility refinement. */
p,
li {
  text-wrap: pretty;
}

.skip-link {
  border-radius: var(--radius-control);
}

.footer-brand > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

body.menu-open .whatsapp,
.whatsapp.is-footer-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

/* Scale the hero image label from its image instead of the viewport. */
.home-page .hero-visual {
  container-type: inline-size;
}

.home-page .image-label {
  width: clamp(148px, 50cqi, 224px);
  min-width: 0;
  min-height: clamp(60px, 17cqi, 79px);
  padding: clamp(12px, 4cqi, 20px);
  gap: clamp(10px, 3cqi, 20px);
  font-size: clamp(0.65rem, 2.5cqi, 0.75rem);
}

@media (max-width: 1199px) {
  .home-page .image-label {
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, calc(100% + 8px));
  }
}

@media (max-width: 767px) {
  .home-page .home-hero {
    padding-bottom: 96px;
  }
}

/* Scale the evidence badge from the image and protect the photographed subject. */
.home-page .evidence-visual {
  container-type: inline-size;
}

.home-page .evidence-badge {
  width: clamp(112px, 28cqi, 158px);
  min-height: 0;
  aspect-ratio: 1;
  padding: clamp(12px, 4cqi, 24px);
}

.home-page .evidence-badge strong {
  font-size: clamp(2.5rem, 12cqi, 3.5rem);
}

.home-page .evidence-badge span {
  font-size: clamp(0.56rem, 2.1cqi, 0.67rem);
  letter-spacing: 0.06em;
}

@media (max-width: 1199px) {
  .home-page .evidence-badge {
    top: clamp(12px, 4cqi, 24px);
    right: auto;
    left: clamp(12px, 4cqi, 24px);
  }
}

/* Keep the desktop composition fluid before the navigation collapses. */
@media (min-width: 1200px) and (max-width: 1279px) {
  .home-page .main-navigation {
    margin-left: clamp(1.25rem, 4vw, 3.25rem);
  }

  .home-page .main-navigation a {
    padding-inline: 8px;
    font-size: 14px;
  }

  .home-page .header-call {
    width: 174px;
    padding-inline: 22px;
    font-size: 14px;
  }

  .home-page .split--evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  .home-page .split--valuation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  .home-page #ablauf .feature-grid,
  .home-page .proof-grid,
  .home-page .reviews-grid,
  .home-page .contact-grid,
  .home-page .footer-grid {
    width: 100%;
    min-width: 0;
  }

  .home-page .proof-grid {
    width: min(100%, 1140px);
  }

  .home-page #ablauf .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .proof-header {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 72px;
  }

  .home-page .proof-header .section-heading {
    width: auto;
    max-width: 620px;
    padding-left: 36px;
  }

  .home-page .proof-badge {
    width: 340px;
    min-width: 0;
  }

  .home-page .reviews-header {
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.9fr);
    gap: 42px;
  }

  .home-page .reviews-header h2 {
    width: auto;
    font-size: clamp(48px, 4.35vw, 56px);
  }

  .home-page .reviews-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, 1fr);
  }

  .home-page .faq .faq-layout {
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    gap: 40px;
    padding-inline: 0;
  }

  .home-page .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .home-page .footer-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(108px, 0.38fr) minmax(300px, 1fr);
    column-gap: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-header__inner,
  .home-page .site-header__inner {
    width: calc(100% - 60px);
    max-width: none;
  }

  .brand {
    width: 170px;
  }

  .menu-toggle,
  .home-page .menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 12px;
    gap: 4px;
    isolation: isolate;
    background: transparent;
  }

  .menu-toggle::before,
  .home-page .menu-toggle::before {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: -1;
    border-radius: 6px;
    background: var(--navy);
    transition: background-color 220ms var(--ease-out), transform 220ms var(--ease-out);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .home-page .menu-toggle:hover,
  .home-page .menu-toggle:focus-visible {
    background: transparent;
  }

  .menu-toggle:hover::before,
  .menu-toggle:focus-visible::before,
  .home-page .menu-toggle:hover::before,
  .home-page .menu-toggle:focus-visible::before {
    background: #0a2d63;
  }

  .menu-toggle:active,
  .home-page .menu-toggle:active {
    transform: none;
  }

  .menu-toggle:active::before,
  .home-page .menu-toggle:active::before {
    transform: scale(0.94);
  }

  .menu-toggle > span:not(.sr-only),
  .home-page .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
  }

  .home-page .home-hero {
    min-height: 0;
    padding-block: 72px 112px;
  }

  .home-page .home-hero__grid {
    align-items: center;
  }

  .home-page .hero-copy {
    padding-left: 0;
  }

  .area-hero__grid {
    gap: 4rem;
  }

  .place-list li,
  .place-list li > a,
  .footer-nav a,
  .footer-contact > a:not(.button),
  .footer-bottom a {
    min-height: 44px;
  }

  .home-page .regions-grid .place-list li,
  .home-page .regions-grid .place-list li > a,
  .area-page .area-region .place-list li,
  .area-page .area-region .place-list li > a,
  .home-page .footer-nav a,
  .footer-brand > a {
    min-height: 44px;
  }

  .footer-contact > a:not(.button),
  .footer-bottom a {
    display: inline-flex;
    align-items: center;
  }

  .related-places a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Keep the valuation story balanced on portrait tablets. */
@media (min-width: 768px) and (max-width: 1023px) {
  .home-page .split--valuation {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto;
    column-gap: clamp(3rem, 8vw, 4.75rem);
    row-gap: 0;
    align-items: start;
  }

  .home-page .valuation-copy {
    display: contents;
  }

  .home-page .valuation-copy > .eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .home-page .valuation-copy > h2 {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .home-page .valuation-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .home-page .valuation-copy > p:not(.eyebrow) {
    width: 100%;
    max-width: 68ch;
    margin-top: 2rem;
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .home-page .valuation-copy > .inline-points {
    width: min(100%, 620px);
    margin-top: 1.75rem;
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .home-page .valuation-copy > .button {
    margin-top: 1.25rem;
    grid-column: 1;
    grid-row: 5;
  }
}

/* Anchor the valuation corner frame to its image at every breakpoint. */
.home-page .valuation::after {
  content: none;
  display: none;
}

.home-page .valuation-visual::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 90px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  border-bottom-left-radius: 12px;
  pointer-events: none;
}

@media (max-width: 767px) {
  :root {
    --section-space: clamp(3.75rem, 15vw, 4.25rem);
  }

  .brand,
  .home-page .brand {
    width: 154px;
  }

  .breadcrumb,
  .eyebrow,
  .home-page .eyebrow {
    font-size: 12px;
  }

  .breadcrumb {
    margin-bottom: 2rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .city-page .button,
  .area-page .button,
  .legal-page .button {
    font-size: 13px;
  }

  .city-hero__grid {
    gap: 3rem;
  }

  .area-hero__grid {
    gap: 3rem;
  }

  .city-page--long-title .city-hero__copy h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.2rem);
    letter-spacing: -0.02em;
  }

  .city-page--long-title .city-hero__copy h1 .accent {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .related-places a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .city-cta h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.2rem);
    overflow-wrap: anywhere;
  }

  .home-page .home-hero {
    min-height: 0;
    padding-block: 58px 112px;
  }

  .home-page .home-hero__grid {
    gap: 36px;
  }

  .home-page .hero-copy {
    width: 100%;
    max-width: none;
    margin-top: 20px;
    padding-left: 0;
  }

  .home-page .hero-copy h1,
  .home-page .hero-intro,
  .home-page .home-hero .button-row {
    width: 100%;
    max-width: none;
  }

  .home-page .signal {
    font-size: 11px;
  }

  .home-page .home-hero .button-row .button:first-child,
  .home-page .home-hero .button-row .button:last-child {
    width: 100%;
    max-width: none;
  }

  .home-page .trust-band,
  .home-page .trust-grid__inner {
    height: auto;
    min-height: 0;
  }

  .home-page .trust-grid .feature:first-child,
  .home-page .trust-grid .feature:nth-child(2),
  .home-page .trust-grid .feature:nth-child(3) {
    height: auto;
    min-height: 0;
  }

  .home-page .stats-band {
    min-height: 0;
    padding-block: 40px;
    margin-bottom: 12px;
  }

  .home-page .stats-grid {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
  }

  .home-page .stat,
  .home-page .stat:nth-child(2),
  .home-page .stat:nth-child(-n + 2),
  .home-page .stat:last-child {
    width: auto;
    height: auto;
    min-height: 152px;
    padding: 22px 12px;
  }

  .home-page .stat::before {
    margin-bottom: 18px;
  }

  .home-page .stat strong {
    font-size: 52px;
  }

  .home-page #ablauf {
    min-height: 0;
  }

  .home-page #ablauf .feature-grid {
    margin-top: 48px;
    gap: 16px;
  }

  .home-page #ablauf .feature-grid .feature,
  .home-page #ablauf .feature-grid .feature:first-child,
  .home-page #ablauf .feature-grid .feature:nth-child(2),
  .home-page #ablauf .feature-grid .feature:nth-child(3) {
    height: auto;
    min-height: 0;
    padding: 28px 26px;
  }

  .home-page .valuation {
    min-height: 0;
  }

  .home-page .reviews,
  .home-page .faq,
  .home-page .contact,
  .home-page .site-footer {
    height: auto;
    min-height: 0;
  }

  .home-page .reviews-header {
    height: auto;
    min-height: 0;
  }

  .home-page .reviews-grid > div {
    height: auto;
    min-height: 0;
  }

  .home-page .review-mini:first-child,
  .home-page .review-mini:last-child {
    height: auto;
    min-height: 0;
  }

  .home-page .review-cta {
    min-height: 0;
  }

  .home-page .regions-grid .place-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 10px;
  }

  .place-list li,
  .place-list li > a,
  .regions-grid .place-list li,
  .regions-grid .place-list li > a,
  .area-region .place-list li,
  .area-region .place-list li > a {
    min-height: 44px;
  }

  .home-page .regions-grid .place-list li,
  .home-page .regions-grid .place-list li > a,
  .area-page .area-region .place-list li,
  .area-page .area-region .place-list li > a {
    min-height: 44px;
  }

  .home-page .contact {
    padding-block: 64px;
  }

  .home-page .contact-grid {
    min-height: 0;
    gap: 40px;
  }

  .home-page .contact-grid > div:first-child,
  .home-page .contact-form {
    height: auto;
    min-height: 0;
  }

  .home-page .contact-form .check input {
    width: 22px;
    min-height: 22px;
  }

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

  .footer-nav h2 {
    grid-column: 1 / -1;
  }

  .footer-nav a,
  .footer-contact > a:not(.button),
  .footer-bottom a {
    min-height: 44px;
  }

  .home-page .footer-nav a,
  .footer-brand > a {
    min-height: 44px;
  }

  .footer-nav a,
  .footer-contact > a:not(.button),
  .footer-bottom a {
    display: inline-flex;
    align-items: center;
  }

  .footer-brand p,
  .footer-contact p {
    font-size: 14px;
  }

  .home-page .site-footer {
    padding: 56px 0 24px;
  }

  .home-page .footer-grid,
  .home-page .footer-brand,
  .home-page .footer-nav,
  .home-page .footer-contact,
  .home-page .footer-bottom {
    height: auto;
    min-height: 0;
  }

  .home-page .footer-grid {
    row-gap: 36px;
  }

  .home-page .footer-bottom {
    height: auto;
    min-height: 68px;
    margin-top: 40px;
  }

  .whatsapp,
  .home-page .whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    gap: 0;
    border-width: 4px;
    font-size: 0;
    letter-spacing: 0;
  }

  .home-page .whatsapp {
    border: 0;
  }

  .whatsapp > span,
  .home-page .whatsapp > span {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 359px) {
  .home-page .regions-grid .place-list,
  .area-region .place-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .city-page--long-title .city-hero__copy h1 {
    font-size: clamp(1.7rem, 8.5vw, 1.9rem);
  }
}

@media (max-width: 520px) {
  .home-page .service-row summary strong {
    font-size: clamp(17px, 4.8vw, 19px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .service-row__body {
    padding: 0 12px 24px 58px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 16px;
  }

  .service-row__body .button {
    width: 100%;
    justify-content: space-between;
  }
}

/* Reviews: a clearer testimonial hierarchy with a compact responsive rhythm. */
.home-page .reviews {
  height: auto;
  min-height: 0;
  padding-block: clamp(76px, 7.4vw, 106px) clamp(76px, 6.5vw, 92px);
}

.home-page .reviews-header {
  align-items: end;
  margin-bottom: clamp(42px, 4.5vw, 64px);
}

.home-page .reviews-header > div:last-child {
  padding: 4px 0 4px 28px;
  border-left: 2px solid var(--blue);
}

.home-page .reviews-header > div:last-child > p:last-child {
  margin-bottom: 0;
  line-height: 1.7;
  text-wrap: pretty;
}

.home-page .reviews-header .stars {
  margin-bottom: 16px;
  font-size: 1rem;
}

.home-page .reviews-grid {
  align-items: stretch;
  gap: 20px;
}

.home-page .review-featured,
.home-page .review-mini {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0e1b2c;
  border: 1px solid #33445a;
  border-radius: var(--radius-card);
}

.home-page .review-featured {
  height: auto;
  min-height: 438px;
  padding: 40px 42px 36px;
}

.home-page .review-featured::before,
.home-page .review-mini::before {
  content: "“";
  position: absolute;
  z-index: 0;
  color: var(--blue);
  font-weight: 800;
  line-height: 1;
  opacity: 0.16;
  pointer-events: none;
}

.home-page .review-featured::before {
  top: 8px;
  right: 28px;
  font-size: 164px;
}

.home-page .review-mini::before {
  top: 8px;
  right: 20px;
  font-size: 88px;
}

.home-page .review-featured > *,
.home-page .review-mini > * {
  position: relative;
  z-index: 1;
}

.home-page .review-featured > p:not(.stars) {
  max-width: 30ch;
  margin-block: 24px;
  font-size: clamp(24px, 2vw, 29px);
  line-height: 1.42;
  text-wrap: pretty;
}

.home-page .review-featured .stars,
.home-page .review-mini .stars {
  margin-bottom: 16px;
}

.home-page .review-meta {
  padding-top: 14px;
  border-top: 1px solid var(--dark-line);
}

.home-page .review-meta p {
  margin-bottom: 0;
}

.home-page .reviews-grid > div {
  min-width: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-page .review-mini,
.home-page .review-mini:first-child,
.home-page .review-mini:last-child {
  height: auto;
  min-height: 0;
  padding: 28px 30px 24px;
  display: flex;
  flex-direction: column;
}

.home-page .review-mini > p:not(.stars) {
  flex: 1;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.home-page .review-cta {
  min-height: 0;
  margin-top: clamp(36px, 4vw, 56px);
  padding: 24px 28px;
  border: 1px solid #33445a;
  border-radius: var(--radius-card);
  background: #0e1b2c;
}

.home-page .review-cta strong {
  max-width: none;
  font-size: 18px;
  line-height: 1.4;
}

.home-page .review-featured,
.home-page .review-mini {
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .home-page .review-featured:hover,
  .home-page .review-mini:hover {
    transform: translateY(-3px);
    border-color: #45618e;
    box-shadow: 0 6px 8px rgb(8 13 20 / 16%);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-page .reviews {
    padding-block: 72px 76px;
  }

  .home-page .reviews-header {
    margin-bottom: 42px;
  }

  .home-page .review-featured {
    height: auto;
    min-height: 270px;
    padding: 36px 38px 32px;
  }

  .home-page .review-featured > p:not(.stars) {
    max-width: 31ch;
    font-size: clamp(24px, 3.2vw, 28px);
  }

  .home-page .reviews-grid > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
  }

  .home-page .review-mini,
  .home-page .review-mini:first-child,
  .home-page .review-mini:last-child {
    min-height: 230px;
    padding: 26px;
  }

  .home-page .review-cta {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .home-page .reviews {
    padding-block: 64px 66px;
  }

  .home-page .reviews-header {
    margin-bottom: 36px;
  }

  .home-page .reviews-header h2 {
    font-size: clamp(32px, 9.2vw, 36px);
    line-height: 1.02;
  }

  .home-page .reviews-header > div:last-child {
    padding: 2px 0 2px 18px;
  }

  .home-page .review-featured {
    height: auto;
    min-height: 315px;
    padding: 26px;
  }

  .home-page .review-featured::before {
    top: 12px;
    right: 16px;
    font-size: 116px;
  }

  .home-page .review-featured > p:not(.stars) {
    margin-block: 20px;
    font-size: 20px;
    line-height: 1.45;
  }

  .home-page .reviews-grid,
  .home-page .reviews-grid > div {
    gap: 16px;
  }

  .home-page .reviews-grid > div {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, auto);
  }

  .home-page .review-mini,
  .home-page .review-mini:first-child,
  .home-page .review-mini:last-child {
    min-height: 210px;
    padding: 24px;
  }

  .home-page .review-cta {
    margin-top: 32px;
    padding: 22px;
    gap: 20px;
  }

  .home-page .review-cta strong {
    max-width: 32ch;
    font-size: 17px;
  }
}

/* Consent Mode v2 interface: brand-aligned, compact, and fully keyboard operable. */
body.consent-dialog-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  z-index: var(--z-consent);
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 172px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: auto;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-frame);
  box-shadow: 0 6px 8px rgb(8 13 20 / 18%);
}

/* Keep the saved consent state hidden despite the banner's grid layout. */
.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__brand {
  min-height: 54px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
}

.cookie-banner__brand img {
  width: 148px;
  height: auto;
}

.cookie-banner__copy strong {
  margin-bottom: 5px;
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.cookie-banner__copy p {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-wrap: pretty;
}

.cookie-banner__copy a {
  min-height: 28px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 3px;
}

.cookie-banner__actions,
.cookie-dialog__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.consent-button {
  min-height: 46px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.consent-button--primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.consent-button--text {
  background: var(--soft);
}

.consent-button:hover {
  background: var(--soft);
  border-color: #9eb8dc;
}

.consent-button--primary:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.consent-button:active {
  transform: scale(0.98);
}

.cookie-dialog {
  z-index: var(--z-consent-modal);
  width: min(calc(100% - 32px), 570px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-frame);
  box-shadow: 0 6px 8px rgb(8 13 20 / 22%);
}

.cookie-dialog::backdrop {
  background: rgb(8 13 20 / 74%);
}

.cookie-dialog__form {
  padding: clamp(24px, 5vw, 36px);
}

.cookie-dialog__header {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cookie-dialog__header p {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-dialog__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 38px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.cookie-dialog__close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  font-size: 25px;
  line-height: 1;
}

.cookie-dialog__form > p {
  max-width: 58ch;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.cookie-options {
  border-top: 1px solid var(--line);
}

.cookie-option {
  min-height: 76px;
  padding-block: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.cookie-option--required {
  cursor: default;
}

.cookie-option > span:first-child {
  min-width: 0;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.cookie-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cookie-option__status {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: var(--navy);
  background: var(--soft);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.cookie-option__control {
  appearance: none;
  position: relative;
  width: 48px;
  height: 28px;
  flex: 0 0 48px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid #9eb8dc;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.cookie-option__control::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgb(8 13 20 / 22%);
  transition: transform 180ms var(--ease-out);
}

.cookie-option__control:checked {
  background: var(--blue);
  border-color: var(--blue);
}

.cookie-option__control:checked::after {
  transform: translateX(20px);
}

.cookie-dialog__actions {
  margin-top: 24px;
  justify-content: flex-end;
}

.cookie-dialog__actions .consent-button {
  min-width: 170px;
}

.cookie-manage {
  min-height: 28px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  text-decoration: none;
}

.cookie-manage:hover,
.cookie-manage:focus-visible {
  color: var(--white);
}

@media (max-width: 1100px) {
  .cookie-banner {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .cookie-banner__actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    width: min(calc(100% - 24px), var(--container));
    max-height: calc(100dvh - 24px);
    padding: 18px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 14px;
  }

  .cookie-banner__brand {
    min-height: 0;
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cookie-banner__brand img {
    width: 138px;
  }

  .cookie-banner__copy strong {
    font-size: 18px;
  }

  .cookie-banner__copy p {
    font-size: 12px;
  }

  .cookie-banner__actions {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner__actions .consent-button--text {
    grid-column: 1 / -1;
  }

  .consent-button {
    min-height: 48px;
    padding-inline: 10px;
    white-space: normal;
  }

  .cookie-dialog__header {
    gap: 14px;
  }

  .cookie-dialog__form > p {
    font-size: 13px;
  }

  .cookie-option {
    gap: 14px;
  }

  .cookie-dialog__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-dialog__actions .consent-button {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom .cookie-manage {
    min-height: 44px;
  }
}

/* Motion language: precise reveals and compact feedback for the inspection-led brand. */
@keyframes details-panel-enter {
  from {
    opacity: 0.25;
    transform: translate3d(0, -10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mobile-nav-item-enter {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes form-status-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 6px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.service-row[open]:not(.is-motion-managed) .service-row__body,
.faq-item[open]:not(.is-motion-managed) > div {
  animation: details-panel-enter 400ms var(--ease-out) both;
}

.form-status:not(:empty) {
  animation: form-status-enter 280ms var(--ease-out) both;
}

@media (max-width: 1199px) {
  .main-navigation.is-open a {
    animation: mobile-nav-item-enter 360ms var(--ease-out) both;
  }

  .main-navigation.is-open a:nth-child(2) {
    animation-delay: 30ms;
  }

  .main-navigation.is-open a:nth-child(3) {
    animation-delay: 60ms;
  }

  .main-navigation.is-open a:nth-child(4) {
    animation-delay: 90ms;
  }

  .main-navigation.is-open a:nth-child(5) {
    animation-delay: 120ms;
  }

  .main-navigation.is-open a:nth-child(6) {
    animation-delay: 150ms;
  }
}

@media (hover: hover) and (pointer: fine) {
  .place-list li:hover svg,
  .place-list a:focus-visible svg {
    transform: translate3d(0, -2px, 0) scale(1.06);
  }

  .footer-nav a:hover,
  .footer-nav a:focus-visible {
    transform: translate3d(3px, 0, 0);
  }
}

@media (hover: none) {
  .button:hover,
  .header-call:hover,
  .whatsapp:hover,
  .feature-grid .feature:hover,
  .proof-card:hover,
  .review-featured:hover,
  .documents:hover,
  .area-stat:hover {
    transform: none;
  }

  .feature-grid .feature:hover,
  .proof-card:hover,
  .review-featured:hover,
  .documents:hover,
  .area-stat:hover {
    box-shadow: none;
  }

  .orientation:hover {
    transform: none;
    box-shadow: 16px 16px 0 #dbe3f7;
  }
}

@media (max-width: 767px) and (hover: none) {
  .orientation:hover {
    box-shadow: 8px 8px 0 #dbe3f7;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline-color: Highlight;
  }

  .button,
  .header-call,
  .menu-toggle,
  .whatsapp {
    border: 1px solid ButtonText;
  }
}

@media (pointer: coarse) {
  .breadcrumb a,
  .contact-direct a,
  .footer-contact__links a {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
