:root {
  --yellow: #f6c02d;
  --yellow-dark: #d89b00;
  --ink: #101522;
  --muted: #687083;
  --line: #eceef3;
  --panel: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 21, 34, 0.1);
  --site-frame: min(1410px, calc(100% - 72px));
  --nav-frame: min(1180px, calc(100% - 48px));
  --frame-max: 1410px;
  --frame-gutter: 36px;
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}

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

.site-header {
  position: relative;
  z-index: 10;
  padding: 24px 24px 0;
}

.nav {
  position: relative;
  z-index: 11;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: var(--nav-frame);
  margin: 0 auto;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 40px rgba(16, 21, 34, 0.04);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  display: block;
  width: 142px;
  height: auto;
}

.nav__links {
  display: flex;
  gap: 30px;
  justify-self: end;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav__item--dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 18px;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav__trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav__item:hover .nav__trigger::after,
.nav__item:focus-within .nav__trigger::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav__trigger[aria-current="page"] {
  color: var(--yellow-dark);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 220px;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  backdrop-filter: blur(16px);
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav__dropdown a {
  display: block;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
  white-space: nowrap;
}

.nav__dropdown a:hover,
.nav__dropdown a:focus-visible {
  background: #fff7dc;
}

.nav__toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(16, 21, 34, 0.06);
}

.nav__toggle span {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav__toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav__toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  min-height: clamp(680px, calc(100svh - 98px), 820px);
  margin: 0 auto;
  padding: 48px 0 62px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  display: none;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: var(--site-frame);
  max-width: none;
  margin: 0 auto;
  padding-top: 8px;
  transform: translate(-80px, -4px);
  grid-column: 1;
  grid-row: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow-dark);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.75rem, 3.35vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

h1 span {
  color: var(--yellow-dark);
}

.hero-title__desktop,
.hero-title__mobile {
  color: inherit;
}

.hero-title__mobile {
  display: none;
}

.subheadline {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.45;
}

.hero__actions,
.proof {
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.button--primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 14px 34px rgba(246, 192, 45, 0.34);
}

.button--secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 10px;
}

.proof span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2f3645;
  font-size: 0.84rem;
  font-weight: 850;
}

.proof__avatars,
.proof__google {
  display: flex;
  align-items: center;
  margin-right: 2px;
}

.proof__google {
  width: 31px;
  height: 31px;
  justify-content: center;
}

.proof__google img {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(16, 21, 34, 0.14));
}

.proof__avatars img {
  display: block;
  width: 25px;
  height: 25px;
  margin-left: -7px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #eef1f6;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 5px 14px rgba(16, 21, 34, 0.16);
}

.proof__avatars img:first-child {
  margin-left: 0;
}

.proof__stars {
  color: var(--yellow-dark) !important;
  letter-spacing: 0;
}

.proof__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink) !important;
  font-weight: 900;
}

.proof__badge img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.proof__badge--stadt img {
  width: 118px;
}

.hero__visual {
  position: absolute;
  top: 54%;
  right: 0;
  left: auto;
  z-index: 0;
  width: min(960px, 50vw);
  height: min(660px, calc(100% - 64px));
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.92) 8%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, var(--white) 100%);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(270deg, var(--white) 0%, rgba(255, 255, 255, 0) 12%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 34%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: none;
  background: transparent;
  object-fit: cover;
  object-position: left center;
}

.hero-video--mobile {
  display: none;
}

.service-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.service-page main::after {
  display: none;
}

.service-hero {
  position: relative;
  display: grid;
  min-height: 84svh;
  align-items: center;
  overflow: hidden;
  padding: 132px 24px 32px 0;
  background: var(--white);
}

.service-hero__background {
  position: absolute;
  top: 50%;
  right: max(-90px, calc((1320px - 100vw) / 2));
  z-index: 0;
  width: min(1280px, 74vw);
  height: auto;
  transform: translateY(-46%);
  object-fit: contain;
  object-position: right center;
  opacity: 1;
  pointer-events: none;
}

.no-parking-page .service-hero__background {
  right: max(-210px, calc((1180px - 100vw) / 2));
  width: min(1180px, 66vw);
  transform: translateY(-43%);
}

.no-parking-page .service-hero h1 {
  max-width: 870px;
}

.service-hero__content {
  position: relative;
  z-index: 1;
  width: min(1620px, calc(100% - 48px));
  margin: 0 auto;
}

.service-hero__content .eyebrow,
.service-hero h1,
.service-hero__content > p:not(.eyebrow),
.service-hero__proof {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 32px rgba(255, 255, 255, 0.86),
    0 2px 16px rgba(16, 21, 34, 0.18);
}

.service-hero h1 {
  max-width: 940px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.55rem, 3.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
  white-space: normal;
}

.service-hero h1 span {
  display: block;
  color: var(--yellow-dark);
  white-space: nowrap;
  text-wrap: balance;
}

.service-hero__content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 28px;
  color: #3b4353;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  font-weight: 700;
  line-height: 1.5;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.service-hero__proof {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 18px;
  max-width: 560px;
}

.service-hero__proof span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-hero__proof span::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(245, 178, 25, 0.22);
}

.service-hero__proof span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  margin-left: 5px;
  margin-top: -2px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

.service-hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  max-width: 620px;
  margin-top: 14px;
}

.service-hero__credential {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(16, 21, 34, 0.08);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.1;
}

.service-hero__credential img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.service-hero__credential--stadt img {
  width: 112px;
  height: auto;
}

.service-flow {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 86px;
  background: var(--white);
}

.problem-relief {
  padding: 0 0 44px;
}

.problem-relief__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 64px;
  padding: 0;
}

.problem-relief h2 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.85vw, 2.95rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.problem-relief__copy {
  align-self: end;
}

.problem-relief__copy p {
  max-width: 580px;
  margin: 0 0 18px;
  color: #4d5668;
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 1.55;
}

.problem-relief__copy ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-relief__copy li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 30px;
  padding-left: 30px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.problem-relief__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--yellow);
}

.problem-relief__copy li::after {
  content: "";
  position: absolute;
  left: 5px;
  width: 8px;
  height: 4px;
  margin-top: -2px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

.core-services {
  padding: 42px 0 0;
  border-top: 1px solid rgba(16, 21, 34, 0.08);
}

.process-section.service-process {
  width: 100%;
  margin: 0;
  padding: 42px 0 44px;
  border-top: 1px solid rgba(16, 21, 34, 0.08);
}

.process-section.service-process .process-section__header {
  gap: 48px;
  margin-bottom: 20px;
}

.process-section.service-process .process-section__header .eyebrow {
  margin-bottom: -30px;
}

.process-section.service-process h2 {
  font-size: clamp(1.95rem, 3vw, 3.35rem);
  line-height: 1.02;
  text-wrap: balance;
}

.process-section.service-process .process-section__header > p:last-child {
  max-width: 500px;
  margin-bottom: 4px;
  font-weight: 750;
}

.process-section.service-process .process-steps {
  gap: 28px;
}

.process-section.service-process .process-steps li::after {
  top: 68px;
  right: -22px;
}

.process-section.service-process .process-steps img {
  height: 116px;
  margin-bottom: 14px;
}

.process-section.service-process .process-steps h3 {
  margin: 14px 0 7px;
  font-size: 1.05rem;
}

.process-section.service-process .process-steps p {
  font-size: 0.9rem;
  line-height: 1.42;
}

.core-services__inner {
  width: 100%;
  margin: 0;
}

.core-services__header {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.core-services h2 {
  max-width: 660px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.core-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.core-service-card {
  display: grid;
  min-height: 224px;
  align-content: start;
  gap: 9px;
  padding: 0;
  background: transparent;
}

.core-service-card img,
.core-service-card video {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: contain;
  object-position: center;
}

.core-service-card h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.core-service-card p {
  margin: 0;
  color: #5e6676;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.42;
}

.no-parking-page .process-section.service-process .process-steps {
  grid-template-columns: repeat(3, 1fr);
}

.no-parking-page .process-section.service-process .process-steps li::after {
  right: -22px;
}

.no-parking-page .core-services__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.senior-page .service-hero__background {
  right: max(-260px, calc((1100px - 100vw) / 2));
  width: min(1160px, 67vw);
  transform: translateY(-44%);
}

.senior-page .service-hero h1 {
  max-width: 1120px;
  font-size: clamp(2.55rem, 3.45vw, 4rem);
}

.senior-page .service-hero h1 span {
  white-space: nowrap;
}

.senior-page .service-hero__content > p:not(.eyebrow) {
  max-width: 620px;
}

.international-page .service-hero__background {
  right: max(-210px, calc((1160px - 100vw) / 2));
  width: min(1200px, 68vw);
  transform: translateY(-44%);
}

.international-page .service-hero h1 {
  max-width: 1080px;
}

.international-page .service-hero h1 span {
  white-space: nowrap;
}

.international-page .process-section.service-process .process-steps {
  grid-template-columns: repeat(3, 1fr);
}

.international-page .process-section.service-process .process-steps li::after {
  right: -22px;
}

.lift-page .service-hero__background {
  right: max(-210px, calc((1160px - 100vw) / 2));
  width: min(1200px, 68vw);
  transform: translateY(-44%);
}

.lift-page .service-hero h1 {
  max-width: 1160px;
}

.lift-page .service-hero h1 span {
  white-space: nowrap;
}

.lift-page .core-services__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.lift-page .core-services__header {
  justify-items: start;
  text-align: left;
}

.lift-page .core-services h2 {
  margin-inline: 0;
}

.final-cta__lead {
  max-width: 620px;
  margin: -8px 0 22px;
  color: #4d5668;
  font-size: 1.06rem;
  font-weight: 750;
  line-height: 1.5;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.trust-ribbon,
main::after {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

main::after {
  content: "";
  display: block;
  min-height: 18px;
}

.trust-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -38px;
  overflow: hidden;
  padding: 34px 28px;
  border: 1px solid rgba(236, 238, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(16, 21, 34, 0.07);
  backdrop-filter: blur(18px);
}

.trust-ribbon__item {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 18px;
  padding: 0 12px;
  border-right: 0;
}

.trust-ribbon__item[aria-hidden="true"] {
  display: none;
}

.trust-ribbon__item div {
  display: grid;
  gap: 7px;
}

.trust-ribbon__mark {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--yellow-dark);
  font-size: 1.55rem;
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(16, 21, 34, 0.08);
}

.trust-ribbon__mark img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.trust-ribbon__mark--plain {
  background: transparent;
  box-shadow: none;
}

.trust-ribbon__mark--plain img {
  width: 58px;
  height: 58px;
}

.trust-ribbon strong {
  max-width: 220px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.trust-ribbon__item span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.services-section {
  position: relative;
  width: 100%;
  margin: 66px auto 0;
  padding: 34px 0 44px;
  background: #f7f8fa;
}

.services-section__header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: 56px;
  align-items: end;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 18px;
}

.services-section__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
  font-size: 0.72rem;
}

.services-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 3.35vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.services-section h2 span {
  color: var(--yellow-dark);
}

.services-section__header > p:last-child {
  max-width: 420px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-card {
  display: flex;
  min-height: 334px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(216, 155, 0, 0.28);
  box-shadow: 0 20px 54px rgba(16, 21, 34, 0.08);
  transform: translateY(-2px);
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 18px;
}

.service-card h3 {
  max-width: 300px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.12;
}

.service-card p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.38;
}

.service-card a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.process-section {
  width: min(1320px, calc(100% - 48px));
  margin: 104px auto 0;
  padding-bottom: 104px;
}

.process-section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 34px;
}

.process-section__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
  font-size: 0.72rem;
}

.process-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.2vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.process-section h2 span {
  color: var(--yellow-dark);
}

.process-section__header > p:last-child {
  max-width: 430px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 0;
  padding: 0;
}

.process-steps li::after {
  content: "";
  position: absolute;
  top: 92px;
  right: -26px;
  width: 20px;
  height: 1px;
  background: var(--line);
}

.process-steps li:last-child::after {
  display: none;
}

.process-steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.process-steps img {
  display: block;
  width: 100%;
  height: 170px;
  margin: 0 0 20px;
  object-fit: contain;
}

.process-steps h3 {
  margin: 20px 0 9px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.12;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.process-section__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.process-section__footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.reviews-section {
  width: 100%;
  margin: 0 auto;
  padding: 96px 0 110px;
  overflow: hidden;
}

.reviews-section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: 72px;
  align-items: end;
  width: min(1320px, calc(100% - 48px));
  margin-bottom: 34px;
  margin-inline: auto;
}

.reviews-section__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
  font-size: 0.72rem;
}

.reviews-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.2vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.reviews-section h2 span {
  color: var(--yellow-dark);
}

.location-page .reviews-section h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 3.45vw, 3.85rem);
  line-height: 1.02;
}

.rating-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px 16px;
  justify-self: end;
  width: min(100%, 520px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rating-summary__logo {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 21, 34, 0.08);
}

.rating-summary img {
  width: 32px;
  height: 32px;
}

.rating-summary strong {
  display: block;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.rating-summary span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.rating-summary__content {
  min-width: 0;
}

.rating-summary__credentials {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: nowrap;
  gap: 8px 10px;
  align-items: center;
}

.rating-summary__badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink) !important;
  box-shadow: 0 10px 28px rgba(16, 21, 34, 0.06);
  font-size: 0.82rem !important;
  font-weight: 950;
  line-height: 1.1 !important;
  white-space: nowrap;
}

.rating-summary__badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.rating-summary__badge--stadt img {
  width: 112px;
  height: auto;
}

.proof-number {
  display: inline-flex;
  align-items: center;
  color: var(--yellow-dark);
  font-size: 1rem;
  font-weight: 1000;
  line-height: 1;
}

.rating-summary__badge .proof-number {
  display: inline-flex;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 0.9;
}

.about-page main {
  overflow: hidden;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  width: min(1500px, calc(100% - 72px));
  min-height: calc(100svh - 120px);
  gap: 46px;
  margin: 0 auto;
  padding: 74px 0 86px;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 8% 42% 0 -12%;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 74%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.about-hero__copy,
.about-hero__visual {
  position: relative;
}

.about-hero__copy {
  z-index: 1;
}

.about-hero__visual {
  z-index: 0;
}

.about-hero h1,
.about-intro h2,
.about-partnership h2,
.about-values h2,
.about-cta h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 0.98;
}

.about-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.35vw, 4.7rem);
}

.about-hero h1 span,
.about-intro h2 span,
.about-values h2 span {
  color: var(--yellow-dark);
}

.about-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #3f4757;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 750;
  line-height: 1.5;
}

.about-hero__visual {
  min-height: 520px;
}

.about-hero__visual img {
  position: absolute;
  right: max(-180px, calc((1320px - 100vw) / 2));
  bottom: 4px;
  width: min(820px, 57vw);
  max-width: none;
  height: auto;
  object-fit: contain;
}

.about-intro,
.about-partnership,
.about-values,
.about-cta {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 72px;
  align-items: start;
  padding: 84px 0 52px;
  border-top: 1px solid var(--line);
}

.about-intro h2,
.about-values h2,
.about-cta h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.about-intro__copy {
  display: grid;
  gap: 18px;
}

.about-intro__copy p,
.about-partnership p,
.about-cta p {
  margin: 0;
  color: #424a5b;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1320px, calc(100% - 48px));
  gap: 1px;
  margin: 42px auto 88px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: 0 28px 70px rgba(16, 21, 34, 0.06);
}

.about-stats div {
  display: grid;
  gap: 8px;
  min-height: 162px;
  align-content: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.about-stats strong {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
}

.about-stats span {
  color: #5f6878;
  font-size: 1rem;
  font-weight: 900;
}

.about-partnership {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: center;
  padding: 72px;
  border-radius: 18px;
  background: #f7f8fa;
}

.about-partnership__mark {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 250px;
  padding: 36px;
  border: 1px solid rgba(229, 232, 238, 0.96);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(16, 21, 34, 0.08);
}

.about-partnership__mark span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
}

.about-partnership__mark img {
  width: min(100%, 360px);
  height: auto;
}

.about-partnership h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4vw, 4.35rem);
}

.about-values {
  padding: 100px 0 94px;
}

.about-values__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.45fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 42px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.about-values article {
  display: grid;
  align-content: start;
  min-height: 280px;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(16, 21, 34, 0.05);
}

.about-values article img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.about-values h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.about-values article p {
  margin: 0;
  color: #5f6878;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-bottom: 92px;
  padding: 52px;
  border: 1px solid rgba(246, 191, 38, 0.44);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 248, 226, 0.9), rgba(255, 255, 255, 0.96));
}

.about-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
}

.about-cta__actions {
  display: flex;
  gap: 12px;
}

.legal-hero {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 56px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 4.35vw, 4.7rem);
  line-height: 0.98;
  white-space: normal;
}

.legal-hero h1 span {
  color: var(--yellow-dark);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #3f4757;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 750;
  line-height: 1.55;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

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

.legal-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(16, 21, 34, 0.05);
}

.legal-card--highlight {
  grid-column: 1 / -1;
  min-height: auto;
  border-color: rgba(246, 191, 38, 0.45);
  background: linear-gradient(135deg, rgba(255, 248, 226, 0.92), rgba(255, 255, 255, 0.98));
}

.legal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.legal-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.25;
}

.legal-card p {
  margin: 0;
  color: #4a5364;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

.legal-card a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(216, 155, 0, 0.48);
  text-underline-offset: 3px;
}

.review-card {
  display: flex;
  flex: 0 0 400px;
  min-height: 460px;
  flex-direction: column;
  padding: 32px;
  border-radius: 16px;
  background: #f2f2f3;
}

.review-card div {
  margin-top: auto;
  display: grid;
  gap: 4px;
}

.review-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.review-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.review-stars {
  margin-bottom: 24px;
  color: var(--yellow-dark);
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: 0;
}

.review-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.review-card > p:not(.review-stars) {
  margin: 0;
  color: #202637;
  font-size: 1.3rem;
  line-height: 1.32;
}

.reviews-marquee {
  --review-gap: 32px;
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 32px;
  overflow: hidden;
}

.reviews-marquee--reverse {
  margin-top: 32px;
}

.reviews-section__mobile-credentials {
  display: none;
}

.reviews-track {
  display: flex;
  flex: 0 0 auto;
  gap: var(--review-gap);
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.reviews-section__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1320px, calc(100% - 48px));
  margin: 46px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.reviews-section__footer p {
  max-width: 670px;
  margin: 0;
  color: #202637;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.45;
}

.pricing-section {
  position: relative;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 52px;
  overflow: visible;
}

.pricing-section__background {
  position: absolute;
  top: 32px;
  right: calc((100% - 100vw) / 2);
  z-index: 0;
  width: min(1120px, 86vw);
  height: calc(100% - 32px);
  object-fit: cover;
  object-position: right center;
  opacity: 0.3;
  pointer-events: none;
}

.pricing-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc((100% - 100vw) / 2);
  bottom: 0;
  left: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.74) 36%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.7) 100%);
  pointer-events: none;
}

.pricing-section__header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 18px;
}

.pricing-section__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.pricing-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.65vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-section h2 span {
  color: var(--yellow-dark);
}

.pricing-section__header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.55;
}

.pricing-options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pricing-option {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 470px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(16, 21, 34, 0.07);
}

.pricing-option--fixed {
  border-color: rgba(216, 155, 0, 0.34);
}

.pricing-option--hourly {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.pricing-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--yellow-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-option h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2vw, 2.12rem);
  line-height: 1;
}

.pricing-option h3 span {
  display: inline;
  margin-top: 5px;
  color: var(--yellow-dark);
}

.pricing-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.55;
}

.pricing-fit {
  min-height: 66px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.pricing-fit span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-fit strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.pricing-option ul {
  display: grid;
  gap: 0;
  align-self: start;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pricing-option li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: #202637;
  font-weight: 850;
  line-height: 1.35;
}

.pricing-option li::before {
  content: "✓";
  color: var(--yellow-dark);
}

.pricing-option__intro {
  max-width: 650px;
}

.fixed-price-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  align-self: end;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.fixed-price-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

.fixed-price-summary strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.85rem, 2.35vw, 2.5rem);
  line-height: 1;
}

.pricing-options--single,
.no-parking-page .pricing-options--single {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.pricing-options--single .pricing-option,
.no-parking-page .pricing-options--single .pricing-option {
  min-height: 0;
  grid-template-rows: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.82fr);
  gap: 18px 32px;
  padding: 24px;
}

.pricing-options--single .pricing-option__intro,
.no-parking-page .pricing-options--single .pricing-option__intro {
  max-width: none;
}

.pricing-options--single .pricing-fit,
.no-parking-page .pricing-options--single .pricing-fit {
  min-height: 0;
  margin: 0;
  align-self: start;
}

.pricing-options--single .pricing-option ul,
.no-parking-page .pricing-options--single .pricing-option ul {
  margin-top: 0;
}

.pricing-options--single .fixed-price-summary,
.no-parking-page .pricing-options--single .fixed-price-summary {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 18px;
}

.rate-table {
  display: grid;
  gap: 0;
  align-self: start;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.rate-table label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.rate-table label:hover span::before {
  transform: scale(1.08);
}

.rate-table input {
  position: absolute;
  opacity: 0;
  accent-color: var(--yellow);
}

.rate-table span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.rate-table span::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.rate-table label:has(input:checked) span::before {
  background: var(--yellow);
}

.rate-table label:has(input:checked) span {
  color: var(--ink);
}

.rate-table strong {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1;
}

.price-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  align-self: end;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(246, 192, 45, 0.46);
  border-radius: 8px;
  background: #fffaf0;
}

.price-calculator__control label,
.price-calculator__result span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.price-calculator__control div {
  display: inline-grid;
  grid-template-columns: 34px 50px 34px;
  gap: 8px;
  height: 36px;
  overflow: hidden;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
}

.price-calculator button,
.price-calculator input {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: center;
}

.price-calculator button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(246, 192, 45, 0.28);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.price-calculator button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(246, 192, 45, 0.34);
}

.price-calculator input {
  width: 50px;
  height: 36px;
  border-bottom: 3px solid var(--yellow);
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1;
}

.price-calculator input::-webkit-outer-spin-button,
.price-calculator input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.price-calculator input[type="number"] {
  appearance: textfield;
}

.price-calculator__result {
  min-width: 144px;
  text-align: right;
}

.price-calculator__result strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.95rem, 2.65vw, 2.65rem);
  line-height: 1;
}

.pricing-note {
  max-width: 600px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.55;
}

.pricing-trust {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 0 0 9px;
  border-bottom: 2px solid var(--yellow);
  color: var(--ink) !important;
  font-size: 0.86rem !important;
  font-weight: 950 !important;
}

.faq-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10px 0 108px;
}

.faq-section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.5fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}

.faq-section__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -46px;
}

.faq-section h2,
.faq-section__toggle {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.faq-section__toggle {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: default;
}

.faq-section__toggle i {
  display: none;
  font-style: normal;
}

.faq-list {
  display: block;
  column-count: 2;
  column-gap: 56px;
}

.faq-item {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.faq-question span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 950;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.faq-question:hover span,
.faq-item.is-open .faq-question span {
  background: var(--yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 220ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 0.36;
}

.faq-item.is-open .faq-question span {
  transform: rotate(180deg);
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 56px 24px 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.6;
}

.service-faq {
  padding-top: 76px;
}

.service-faq .faq-section__header {
  align-items: center;
  margin-bottom: 0;
}

.service-faq .faq-section__toggle {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: default;
}

.service-faq .faq-section__toggle i {
  display: none;
}

.service-faq.is-open .faq-section__toggle i {
  transform: rotate(180deg);
}

.service-faq .faq-list {
  max-height: none;
  overflow: visible;
  opacity: 1;
  margin-top: 28px;
}

.service-faq.is-open .faq-list {
  max-height: none;
}

.service-faq .faq-answer p + p {
  padding-top: 0;
}

.service-faq .faq-answer strong {
  color: var(--ink);
  font-weight: 950;
}

.service-faq .faq-item.is-open .faq-answer {
  max-height: 560px;
  opacity: 1;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding-top: 30px;
}

.faq-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.final-cta {
  --cta-truck-width: min(820px, 52vw);
  --cta-edge-offset: calc((100% - 100vw) / 2);
  position: relative;
  display: flex;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  min-height: 500px;
  margin: 0 auto;
  padding: 86px 0 46px;
  overflow: visible;
}

.final-cta__visual {
  position: absolute;
  right: var(--cta-edge-offset);
  bottom: 0;
  z-index: 0;
  width: var(--cta-truck-width);
  pointer-events: none;
}

.final-cta__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-info {
  position: absolute;
  top: 176px;
  right: -42px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  width: min(560px, 36vw);
  margin: 0;
  font-style: normal;
}

.contact-info__intro {
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--yellow);
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 950;
  line-height: 1.08;
}

.contact-info__item {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 0;
}

.contact-info__item--highlight {
  margin: -8px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(246, 191, 38, 0.72);
  border-radius: 10px;
  background: rgba(255, 248, 226, 0.92);
  box-shadow: 0 16px 40px rgba(246, 191, 38, 0.14);
}

.contact-info__item--wide {
  grid-column: 1 / -1;
  justify-items: center;
  text-align: center;
}

.contact-info span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-info a {
  color: var(--ink);
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  font-weight: 950;
  line-height: 1.15;
  overflow-wrap: normal;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.final-cta__layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  width: min(760px, 100%);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 3.35vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.request-form {
  display: grid;
  gap: 20px;
  width: min(650px, 100%);
  padding: 34px;
  border: 1px solid rgba(246, 192, 45, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(16, 21, 34, 0.1);
  backdrop-filter: blur(16px);
}

.request-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label span {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 750;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dde1e8;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.request-form input,
.request-form select {
  padding: 0 14px;
}

.request-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8b93a1 50%),
    linear-gradient(135deg, #8b93a1 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 51%,
    calc(100% - 16px) 51%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.request-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px;
}

.request-form textarea::placeholder {
  color: #626a78;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(246, 192, 45, 0.2);
}

.request-form__submit {
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 14px 34px rgba(246, 192, 45, 0.28);
}

.request-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.request-form__status {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.request-form__status[data-type="success"] {
  color: #127447;
}

.request-form__status[data-type="error"] {
  color: #b42318;
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 1000;
  padding: 18px;
  pointer-events: none;
}

.cookie-consent__panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(16, 21, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 80px rgba(16, 21, 34, 0.22);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-consent__intro {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.cookie-consent__badge {
  display: inline-flex;
  min-width: 64px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(246, 192, 45, 0.18);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cookie-consent h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.15;
}

.cookie-consent p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.cookie-consent__note {
  font-size: 0.86rem !important;
  color: #697283 !important;
}

.cookie-consent__settings {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 21, 34, 0.08);
}

.cookie-consent__choice {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(16, 21, 34, 0.08);
  border-radius: 6px;
  background: var(--white);
}

.cookie-consent__choice--locked {
  background: #f7f8fb;
}

.cookie-consent__choice-copy {
  display: grid;
  gap: 4px;
}

.cookie-consent__choice strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.cookie-consent__choice span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.45;
}

.cookie-consent__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-consent__switch {
  position: relative;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #c7ceda;
  transition: background 160ms ease;
}

.cookie-consent__switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(16, 21, 34, 0.18);
  transition: transform 160ms ease;
}

.cookie-consent__choice input:checked + .cookie-consent__switch {
  background: var(--yellow-dark);
}

.cookie-consent__choice input:checked + .cookie-consent__switch::after {
  transform: translateX(20px);
}

.cookie-consent__choice input:focus-visible + .cookie-consent__switch {
  box-shadow: 0 0 0 3px rgba(246, 192, 45, 0.28);
}

.cookie-consent__locked {
  flex: 0 0 auto;
  color: #697283 !important;
  font-size: 0.82rem !important;
}

.cookie-consent__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 21, 34, 0.08);
}

.cookie-consent__button-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-consent__button {
  min-height: 44px;
  padding: 0 18px;
}

.cookie-consent__link,
.site-footer__bottom button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.cookie-consent__link {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__bottom button {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 0;
}

.site-footer__bottom button:hover {
  color: var(--yellow);
}

@media (max-width: 620px) {
  .cookie-consent {
    padding: 12px;
  }

  .cookie-consent__panel {
    padding: 18px;
  }

  .cookie-consent__intro {
    display: grid;
    gap: 12px;
  }

  .cookie-consent__badge {
    width: max-content;
  }

  .cookie-consent__choice {
    align-items: flex-start;
  }

  .cookie-consent__actions,
  .cookie-consent__button-group {
    display: grid;
    width: 100%;
  }

  .cookie-consent__button,
  .cookie-consent__link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: 58px 24px 24px;
}

.site-footer__background {
  position: absolute;
  left: 50%;
  bottom: -78px;
  z-index: 0;
  width: min(1983px, 100vw);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.72;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.site-footer__brand a {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
}

.site-footer__brand img {
  display: block;
  width: 190px;
  height: auto;
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  max-width: 420px;
  color: #ffffff;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}

.site-footer__brand p {
  max-width: 430px;
  margin-top: 14px;
  color: #eef2f8;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.site-footer__nav div {
  display: grid;
  align-content: start;
  gap: 11px;
  min-width: 0;
}

.site-footer h3 {
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__nav span,
.site-footer__bottom a,
.site-footer__bottom p {
  color: #f4f7fb;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.68);
}

.site-footer__nav a {
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__bottom a:hover {
  color: var(--yellow);
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: min(1320px, 100%);
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__credit {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #dce3ee !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  line-height: 1;
  text-transform: none;
  box-shadow: none;
}

.site-footer__credit span {
  color: #c7cfdd;
  white-space: nowrap;
}

.site-footer__credit img {
  display: block;
  width: 34px;
  height: auto;
  transform: translateY(1px);
}

.site-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-self: end;
  justify-content: flex-end;
}

@keyframes reviewScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes reviewScrollRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1320px) {
  :root {
    --site-frame: min(1120px, calc(100% - 48px));
    --nav-frame: min(1120px, calc(100% - 48px));
    --frame-max: 1120px;
    --frame-gutter: 24px;
  }

  .site-header {
    padding: 18px 18px 0;
  }

  .nav {
    padding: 12px 16px;
  }

  .brand img {
    width: 132px;
  }

  .nav__links {
    gap: 20px;
    font-size: 0.88rem;
  }

  .hero {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: clamp(640px, calc(100svh - 90px), 780px);
    gap: 0;
    padding: 44px 0 58px;
    overflow: hidden;
  }

  .hero::after {
    inset: 0 30% 0 0;
    background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 58%, rgba(255, 255, 255, 0) 100%);
  }

  .hero__copy {
    width: var(--site-frame);
    max-width: none;
    transform: none;
  }

  h1 {
    font-size: clamp(2.35rem, 4.6vw, 3.05rem);
    white-space: normal;
  }

  .subheadline {
    max-width: 420px;
  }

  .hero__visual::before {
    left: 0;
    width: 56%;
    height: 100%;
  }

  .hero__visual {
    right: 0;
    width: min(700px, 50vw);
    height: min(590px, calc(100% - 66px));
  }

  .hero-video {
    opacity: 1;
    object-fit: cover;
    object-position: left center;
  }

  .proof {
    max-width: 520px;
  }

  .trust-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -42px;
  }

  .services-section__header,
  .process-section__header,
  .reviews-section__header,
  .pricing-section__header,
  .faq-section__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-section__header .eyebrow,
  .process-section__header .eyebrow,
  .reviews-section__header .eyebrow,
  .pricing-section__header .eyebrow,
  .faq-section__header .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .services-section h2,
  .process-section h2,
  .reviews-section h2,
  .location-page .reviews-section h2,
  .pricing-section h2,
  .faq-section h2,
  .faq-section__toggle {
    max-width: 760px;
    font-size: clamp(2.1rem, 5.2vw, 3.25rem);
    line-height: 1.02;
    white-space: normal;
  }

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

  .service-card {
    min-height: 300px;
  }

  .process-section {
    margin-top: 72px;
    padding-bottom: 72px;
  }

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

  .process-steps li::after {
    display: none;
  }

  .reviews-section {
    padding: 72px 0 82px;
  }

  .rating-summary {
    justify-self: start;
  }

  .pricing-section {
    width: min(980px, calc(100% - 48px));
    padding-top: 34px;
  }

  .pricing-section__background {
    width: min(760px, 82vw);
    opacity: 0.2;
  }

  .pricing-options {
    grid-template-columns: 1fr;
  }

  .pricing-option {
    min-height: 0;
  }

  .pricing-options--single .pricing-option,
  .no-parking-page .pricing-options--single .pricing-option {
    grid-template-columns: 1fr;
  }

  .faq-list {
    column-gap: 32px;
  }

  .final-cta {
    --cta-truck-width: min(640px, 54vw);
    min-height: 430px;
    padding-top: 62px;
  }

  .contact-info {
    right: 0;
    width: min(460px, 42vw);
  }

  .request-form {
    width: min(560px, 100%);
  }

  .service-hero {
    min-height: 720px;
    padding: 128px 24px 72px;
  }

  .service-hero__content {
    width: min(1080px, calc(100% - 24px));
  }

  .service-hero__background,
  .senior-page .service-hero__background,
  .international-page .service-hero__background,
  .lift-page .service-hero__background,
  .no-parking-page .service-hero__background {
    right: -220px;
    width: min(860px, 78vw);
    opacity: 0.6;
    transform: translateY(-43%);
  }

  .lift-page .service-hero__background,
  .no-parking-page .service-hero__background {
    right: -260px;
    opacity: 0.38;
  }

  .service-hero h1,
  .senior-page .service-hero h1,
  .international-page .service-hero h1,
  .lift-page .service-hero h1,
  .no-parking-page .service-hero h1 {
    max-width: min(820px, 72vw);
    font-size: clamp(2.05rem, 4.7vw, 3.05rem);
  }

  .service-hero h1 span,
  .senior-page .service-hero h1 span,
  .international-page .service-hero h1 span,
  .lift-page .service-hero h1 span {
    white-space: normal;
  }

  .service-hero__content > p:not(.eyebrow),
  .senior-page .service-hero__content > p:not(.eyebrow) {
    max-width: min(540px, 58vw);
  }

  .service-hero__proof {
    grid-template-columns: 1fr;
    max-width: min(540px, 58vw);
  }

  .service-flow {
    width: min(1080px, calc(100% - 48px));
  }

  .problem-relief__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-section.service-process .process-section__header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-section.service-process .process-section__header .eyebrow {
    margin-bottom: 0;
  }

  .process-section.service-process .process-steps,
  .no-parking-page .process-section.service-process .process-steps,
  .international-page .process-section.service-process .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .core-services__grid,
  .no-parking-page .core-services__grid,
  .lift-page .core-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .core-service-card {
    min-height: 190px;
  }

  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    width: min(1080px, calc(100% - 48px));
    min-height: auto;
    padding: 80px 0;
  }

  .about-hero h1 {
    font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  }
}

@media (max-width: 1024px) {
  :root {
    --site-frame: min(860px, calc(100% - 40px));
    --nav-frame: min(860px, calc(100% - 40px));
    --frame-max: 860px;
    --frame-gutter: 20px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    overflow: visible;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 60;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: min(72svh, 560px);
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(16, 21, 34, 0.1);
    justify-self: stretch;
    justify-items: stretch;
    overflow-y: auto;
    backdrop-filter: blur(16px);
  }

  .nav.is-open .nav__links {
    display: grid;
  }

  .nav__links a {
    width: 100%;
    padding: 13px 12px;
    border-radius: 6px;
  }

  .nav__links a:hover {
    background: var(--panel);
  }

  .nav__item {
    position: relative;
    display: grid;
    width: 100%;
    align-items: stretch;
  }

  .nav__item--dropdown::after {
    display: none;
  }

  .nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
    border-radius: 6px;
  }

  .nav__trigger:hover,
  .nav__trigger:focus-visible {
    background: var(--panel);
  }

  .nav__item:hover .nav__trigger::after,
  .nav__item:focus-within .nav__trigger::after {
    transform: rotate(45deg) translateY(-2px);
  }

  .nav__item.is-expanded .nav__trigger::after {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .nav__dropdown {
    position: static;
    display: grid;
    min-width: 0;
    gap: 2px;
    width: 100%;
    padding: 0 0 6px;
    margin: -2px 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    pointer-events: none;
    overflow: hidden;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
    backdrop-filter: none;
  }

  .nav__item:hover .nav__dropdown,
  .nav__item:focus-within .nav__dropdown {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav__item.is-expanded .nav__dropdown {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
    padding: 6px;
    margin: 0 0 8px;
    border: 1px solid #eceef3;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(16, 21, 34, 0.02);
  }

  .nav__dropdown a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 10px 12px;
    color: #101522;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.2;
    opacity: 1;
    visibility: visible;
    white-space: normal;
  }

  .nav__dropdown a:hover,
  .nav__dropdown a:focus-visible {
    background: #fff7dc;
  }

  .nav__toggle {
    display: grid;
  }

  .hero,
  .trust-ribbon {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: clamp(620px, calc(100svh - 86px), 740px);
    width: 100%;
    padding: 42px 0 52px;
  }

  .hero::after {
    inset: -10px 6% -10px 0;
  }

  .hero__copy {
    width: var(--site-frame);
    max-width: none;
  }

  .hero-video {
    opacity: 1;
    object-fit: cover;
    object-position: left center;
  }

  .trust-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }

  .trust-ribbon__item {
    padding: 8px;
  }

  .services-section__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-section__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-section__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-section__header .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .process-section__header .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .reviews-section__header .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .rating-summary {
    justify-self: start;
  }

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

  .about-hero,
  .about-intro,
  .about-partnership,
  .about-values__header,
  .about-cta {
    grid-template-columns: 1fr;
  }

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

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 28px;
  }

  .process-steps li::after {
    display: none;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta__layout {
    width: min(700px, 100%);
  }

  .contact-info {
    position: relative;
    top: auto;
    right: auto;
    width: min(700px, 100%);
    margin: 0 0 28px;
  }

  .request-form {
    max-width: 700px;
  }

}

@media (min-width: 621px) and (max-width: 1024px) {
  .site-header {
    padding: 16px 20px 0;
  }

  .nav {
    min-height: 84px;
    padding: 14px 18px;
  }

  .brand img {
    width: 128px;
  }

  .hero {
    width: 100%;
    min-height: min(960px, calc(100svh - 24px));
    padding: 0 0 58px;
    align-items: start;
  }

  .hero::after {
    display: block;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.46) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.16) 40%, rgba(255, 255, 255, 0.86) 100%);
    opacity: 0;
    transition: opacity 3s ease;
  }

  .hero.is-mobile-video-complete::after {
    opacity: 1;
  }

  .hero__copy {
    width: min(680px, calc(100% - 56px));
    max-width: none;
    justify-self: center;
    text-align: center;
    padding-top: clamp(250px, 29svh, 330px);
    transform: none;
  }

  .hero__copy h1 {
    margin-inline: auto;
    max-width: 640px;
    font-size: clamp(2.35rem, 5.15vw, 3.05rem);
    line-height: 1.02;
  }

  .hero__copy .subheadline {
    margin-inline: auto;
    max-width: 450px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 26px;
  }

  .hero__visual {
    inset: 0;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .hero__visual::before,
  .hero__visual::after {
    display: none;
  }

  .hero-video--desktop {
    display: none;
  }

  .hero-video--mobile {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    transform: none;
    opacity: 1;
    object-fit: cover;
    object-position: center top;
  }

  .proof {
    justify-content: center;
    max-width: 650px;
    margin-inline: auto;
    margin-top: 22px;
    gap: 9px 10px;
  }

  .proof__badge {
    min-height: 30px;
  }

  .trust-ribbon {
    width: min(900px, calc(100% - 48px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
    padding: 18px 16px;
  }

  .trust-ribbon__item {
    min-height: 86px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 6px;
  }

  .trust-ribbon__mark {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .trust-ribbon__mark img {
    width: 26px;
    height: 26px;
  }

  .trust-ribbon__mark--plain img {
    width: 42px;
    height: 42px;
  }

  .trust-ribbon__item div {
    gap: 4px;
  }

  .trust-ribbon strong {
    max-width: 150px;
    font-size: 0.9rem;
  }

  .trust-ribbon__item span:last-child {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .services-section {
    margin-top: 34px;
  }
}

@media (max-width: 1100px) {
  .core-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 14px 0;
  }

  .nav {
    padding: 12px;
  }

  .hero {
    width: 100%;
  }

  .process-section {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 10px;
    min-height: min(820px, calc(100svh - 8px));
    padding: 0 0 48px;
    align-items: start;
  }

  .hero__copy {
    width: min(100% - 40px, 380px);
    min-width: 0;
    max-width: calc(100% - 40px);
    padding-top: clamp(166px, 27svh, 232px);
    text-align: center;
    transform: none;
  }

  .hero__copy h1,
  .hero__copy .subheadline,
  .hero__copy .proof {
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92),
      0 10px 32px rgba(255, 255, 255, 0.88),
      0 2px 14px rgba(16, 21, 34, 0.16);
  }

  .hero__copy .subheadline {
    color: var(--ink);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.62rem, 6.7vw, 1.9rem);
    line-height: 1.04;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-title__mobile {
    display: inline;
    white-space: normal;
  }

  .hero__copy h1 > span:last-child {
    white-space: normal;
  }

  .hero__actions {
    display: grid;
  }

  .hero__copy .subheadline {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .proof {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 7px;
    row-gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
  }

  .proof__google {
    grid-column: 1;
    order: 0;
    width: 30px;
    height: 30px;
    margin-right: 0;
  }

  .proof__stars {
    grid-column: 2;
    order: 0;
    align-self: center;
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
  }

  .proof__rating {
    grid-column: 3;
    order: 0;
    align-self: center;
    min-width: 0;
    font-size: clamp(0.78rem, 3vw, 0.84rem);
    line-height: 1;
    white-space: nowrap;
  }

  .proof__desktop-extra {
    display: none;
  }

  .proof span:last-child {
    min-width: 0;
    max-width: 100%;
    line-height: 1;
  }

  .proof__badge {
    grid-column: 1 / -1;
    justify-self: center;
    order: 4;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    line-height: 1.1;
  }

  .proof__badge img {
    width: 34px;
    height: 34px;
  }

  .proof__badge--stadt {
    display: inline-flex;
    align-items: center;
    transform: none;
  }

  .proof__badge--stadt img {
    width: auto;
    height: 13px;
    flex: 0 0 auto;
    transform: none;
  }

  .button {
    width: 100%;
  }

  .hero::after {
    display: block;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.74) 54%, rgba(255, 255, 255, 0.36) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.84) 100%);
    opacity: 0;
    transition: opacity 3s ease;
  }

  .hero.is-mobile-video-complete::after {
    opacity: 0.9;
  }

  .hero-video--desktop {
    display: none;
  }

  .hero__visual {
    inset: 0;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .hero__visual::before,
  .hero__visual::after {
    display: none;
  }

  .hero-video--mobile {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
  }

  .hero-title__desktop {
    display: none;
  }

  .about-page .site-header {
    position: relative;
  }

  .about-hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    gap: 18px;
    padding: 34px 0 46px;
  }

  .about-hero::after {
    inset: 0 -14px;
    background: rgba(255, 255, 255, 0.64);
  }

  .about-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
    line-height: 1.04;
  }

  .about-hero__copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .about-hero__visual {
    min-height: 250px;
    margin-top: 12px;
    overflow: hidden;
  }

  .about-hero__visual img {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: 520px;
    margin-left: -18px;
    opacity: 0.78;
  }

  .about-intro,
  .about-partnership,
  .about-values,
  .about-cta,
  .about-stats {
    width: min(100% - 28px, 1180px);
  }

  .about-intro {
    gap: 22px;
    padding: 48px 0 34px;
  }

  .about-intro h2,
  .about-values h2,
  .about-cta h2,
  .about-partnership h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.06;
  }

  .about-intro__copy p,
  .about-partnership p,
  .about-cta p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .legal-hero {
    width: calc(100% - 28px);
    padding: 52px 0 34px;
  }

  .legal-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1;
  }

  .legal-hero p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .legal-content {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    gap: 14px;
    padding: 34px 0 58px;
  }

  .legal-card,
  .legal-card--highlight {
    grid-column: auto;
    min-height: auto;
    padding: 22px;
    border-radius: 10px;
  }

  .legal-card h2 {
    font-size: 1.2rem;
  }

  .legal-card h3 {
    font-size: 1rem;
  }

  .legal-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    margin: 28px auto 48px;
    border-radius: 12px;
  }

  .about-stats div {
    min-height: 116px;
    padding: 18px;
  }

  .about-stats strong {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .about-stats span {
    font-size: 0.78rem;
  }

  .about-partnership {
    gap: 24px;
    padding: 24px;
    border-radius: 14px;
  }

  .about-partnership__mark {
    min-height: 150px;
    padding: 22px;
  }

  .about-partnership__mark img {
    max-width: 260px;
  }

  .about-values {
    padding: 56px 0 54px;
  }

  .about-values__header {
    gap: 16px;
    margin-bottom: 24px;
  }

  .about-values__grid {
    gap: 14px;
  }

  .about-values article {
    min-height: 0;
    gap: 12px;
    padding: 20px;
  }

  .about-values article img {
    width: 54px;
    height: 54px;
  }

  .about-values h3 {
    font-size: 1.08rem;
  }

  .about-values article p {
    font-size: 0.9rem;
  }

  .about-cta {
    gap: 22px;
    margin-bottom: 54px;
    padding: 24px;
  }

  .about-cta__actions {
    display: grid;
  }

  .service-hero {
    min-height: 92svh;
    padding: 118px 14px 56px;
  }

  .service-hero__background {
    top: 54%;
    right: -360px;
    width: 900px;
    opacity: 1;
  }

  .no-parking-page .service-hero {
    min-height: 760px;
    overflow: hidden;
    padding: 112px 14px 34px;
  }

  .no-parking-page .service-hero__background {
    top: auto;
    right: -560px;
    bottom: -70px;
    width: 790px;
    transform: none;
    object-position: right bottom;
  }

  .no-parking-page .service-hero__content {
    width: min(100% - 28px, 360px);
  }

  .no-parking-page .service-hero__content .eyebrow,
  .no-parking-page .service-hero h1,
  .no-parking-page .service-hero__content > p:not(.eyebrow),
  .no-parking-page .service-hero__proof {
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98),
      0 6px 18px rgba(255, 255, 255, 0.94),
      0 2px 12px rgba(16, 21, 34, 0.22);
  }

  .no-parking-page .service-hero h1 {
    max-width: 340px;
    font-size: clamp(1.56rem, 7.75vw, 1.88rem);
    line-height: 1.04;
  }

  .no-parking-page .service-hero__content > p:not(.eyebrow) {
    max-width: 306px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .senior-page .service-hero__background {
    right: -330px;
    width: 880px;
  }

  .international-page .service-hero__background {
    right: -330px;
    width: 880px;
  }

  .international-page .service-hero {
    min-height: 760px;
    overflow: hidden;
    padding: 112px 14px 34px;
  }

  .international-page .service-hero__content {
    width: min(100% - 28px, 360px);
  }

  .international-page .service-hero__background {
    top: auto;
    right: -520px;
    bottom: -44px;
    width: 800px;
    transform: none;
    object-position: right bottom;
  }

  .international-page .service-hero__content .eyebrow,
  .international-page .service-hero h1,
  .international-page .service-hero__content > p:not(.eyebrow),
  .international-page .service-hero__proof {
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98),
      0 6px 18px rgba(255, 255, 255, 0.94),
      0 2px 12px rgba(16, 21, 34, 0.22);
  }

  .international-page .service-hero h1 {
    max-width: 318px;
    font-size: clamp(1.42rem, 6.9vw, 1.66rem);
    line-height: 1.04;
  }

  .international-page .service-hero h1 span {
    display: inline;
    white-space: normal;
  }

  .international-page .service-hero__content > p:not(.eyebrow) {
    max-width: 306px;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .international-page .service-hero__actions,
  .international-page .service-hero__proof {
    max-width: 324px;
  }

  .international-page .service-hero__actions .button {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.75rem;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .lift-page .service-hero__background {
    right: -330px;
    width: 880px;
  }

  .lift-page .service-hero {
    min-height: 760px;
    overflow: hidden;
    padding: 112px 14px 34px;
  }

  .lift-page .service-hero__content {
    width: min(100% - 28px, 360px);
  }

  .lift-page .service-hero__background {
    top: auto;
    right: -540px;
    bottom: -46px;
    width: 810px;
    transform: none;
    object-position: right bottom;
  }

  .lift-page .service-hero__content .eyebrow,
  .lift-page .service-hero h1,
  .lift-page .service-hero__content > p:not(.eyebrow),
  .lift-page .service-hero__proof {
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98),
      0 6px 18px rgba(255, 255, 255, 0.94),
      0 2px 12px rgba(16, 21, 34, 0.22);
  }

  .lift-page .service-hero h1 {
    max-width: 326px;
    font-size: clamp(1.42rem, 6.9vw, 1.66rem);
    line-height: 1.04;
  }

  .lift-page .service-hero h1 span {
    display: inline;
    white-space: normal;
  }

  .lift-page .service-hero__content > p:not(.eyebrow) {
    max-width: 306px;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .lift-page .service-hero__actions,
  .lift-page .service-hero__proof {
    max-width: 324px;
  }

  .lift-page .service-hero__actions .button {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.75rem;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .service-hero h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 1.78rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .service-hero h1 br {
    display: none;
  }

  .service-hero h1 span {
    display: inline;
    white-space: normal;
    text-wrap: balance;
  }

  .service-hero__content > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .service-hero__actions {
    display: grid;
  }

  .service-hero__proof {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
  }

  .service-hero__credentials {
    gap: 6px;
    max-width: 100%;
    margin-top: 10px;
  }

  .service-hero__credential {
    min-height: 34px;
    gap: 6px;
    padding: 5px 9px;
    font-size: 0.72rem;
  }

  .service-hero__credential img {
    width: 32px;
    height: 32px;
  }

  .service-hero__credential--stadt img {
    width: 86px;
    height: auto;
  }

  .service-flow {
    width: min(100% - 28px, 1180px);
    padding-bottom: 62px;
  }

  .problem-relief {
    padding: 0 0 34px;
  }

  .problem-relief__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .problem-relief h2 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
    line-height: 1.08;
  }

  .service-page .problem-relief h2 br,
  .service-page .process-section.service-process h2 br,
  .service-page .core-services h2 br,
  .service-page .pricing-section h2 br,
  .service-page .reviews-section h2 br,
  .service-page .final-cta h2 br {
    display: none;
  }

  .service-page .problem-relief h2,
  .service-page .process-section.service-process h2,
  .service-page .core-services h2,
  .service-page .pricing-section h2,
  .service-page .reviews-section h2,
  .service-page .final-cta h2 {
    font-size: clamp(1.45rem, 6.6vw, 1.8rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .problem-relief__copy {
    align-self: auto;
  }

  .problem-relief__copy p {
    font-size: 1rem;
  }

  .process-section.service-process {
    width: 100%;
    margin: 0;
    padding: 34px 0;
  }

  .process-section.service-process .process-section__header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .process-section.service-process .process-section__header .eyebrow {
    margin-bottom: 0;
  }

  .process-section.service-process h2 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
    line-height: 1.08;
  }

  .process-section.service-process .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .no-parking-page .process-section.service-process .process-steps,
  .international-page .process-section.service-process .process-steps,
  .no-parking-page .core-services__grid,
  .lift-page .core-services__grid,
  .senior-page .core-services__grid {
    grid-template-columns: 1fr;
  }

  .process-section.service-process .process-steps li {
    display: grid;
    grid-template-columns: 82px 34px 1fr;
    gap: 6px 14px;
    align-items: center;
  }

  .process-section.service-process .process-steps li::after {
    display: none;
  }

  .process-section.service-process .process-steps img {
    grid-row: span 2;
    height: 72px;
    margin: 0;
  }

  .process-section.service-process .process-steps h3 {
    margin: 0;
  }

  .process-section.service-process .process-steps p {
    grid-column: 3;
  }

  .core-services {
    padding: 34px 0 0;
  }

  .core-services__header {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
  }

  .core-services h2 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
    line-height: 1.08;
  }

  .core-services__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .core-service-card {
    min-height: auto;
    grid-template-columns: 86px 1fr;
    gap: 8px 14px;
    padding: 0;
  }

  .core-service-card img,
  .core-service-card video {
    grid-row: span 2;
    height: 82px;
  }

  .pricing-options--single {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .pricing-options--single .pricing-option,
  .no-parking-page .pricing-options--single .pricing-option {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .pricing-options--single .fixed-price-summary,
  .no-parking-page .pricing-options--single .fixed-price-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta__lead {
    margin-top: -4px;
    font-size: 1rem;
  }

  .trust-ribbon {
    display: flex;
    width: 100%;
    max-width: none;
    margin-top: 14px;
    gap: 10px;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 10px 14px;
    border-width: 1px 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    scroll-snap-type: none;
  }

  .services-section {
    width: 100%;
    margin-top: 42px;
    padding: 34px 0 44px;
  }

  .services-section__header,
  .service-grid {
    width: min(100% - 28px, 1180px);
  }

  .services-section h2 {
    font-size: clamp(2rem, 9vw, 2.32rem);
    line-height: 1.02;
  }

  .services-section__header {
    gap: 10px;
    margin-bottom: 14px;
  }

  .services-section__header > p:last-child {
    display: none;
  }

  .process-section {
    margin-top: 44px;
    padding-bottom: 48px;
  }

  .process-section h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.02;
  }

  .process-section__header {
    margin-bottom: 24px;
  }

  .process-section__header > p:last-child {
    display: none;
  }

  .reviews-section {
    width: 100%;
    padding: 42px 0 48px;
  }

  .reviews-section__header,
  .reviews-section__footer {
    width: min(100% - 28px, 1180px);
  }

  .reviews-section__footer {
    display: none;
  }

  .reviews-section h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.25rem);
    line-height: 1.02;
  }

  .reviews-section__header {
    gap: 12px;
    margin-bottom: 18px;
  }

  .rating-summary {
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    gap: 8px 10px;
  }

  .rating-summary__logo {
    width: 42px;
    height: 42px;
  }

  .rating-summary img {
    width: 24px;
    height: 24px;
  }

  .rating-summary strong {
    font-size: 1.25rem;
  }

  .rating-summary span {
    font-size: 0.78rem;
  }

  .rating-summary__credentials {
    display: none;
  }

  .rating-summary__badge {
    min-height: 36px;
    gap: 6px;
    padding: 5px 9px;
    font-size: 0.72rem !important;
  }

  .rating-summary__badge img {
    width: 34px;
    height: 34px;
  }

  .rating-summary__badge--stadt img {
    width: 90px;
    height: auto;
  }

  .proof-number {
    font-size: 0.92rem;
  }

  .rating-summary__badge .proof-number {
    font-size: 0.92rem;
  }

  .reviews-section__mobile-credentials {
    display: flex;
    width: min(100% - 28px, 1180px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 18px auto 0;
  }

  .reviews-marquee {
    --review-gap: 14px;
    margin-top: 16px;
  }

  .reviews-marquee--reverse {
    margin-top: 14px;
  }

  .pricing-section {
    width: calc(100% - 28px);
    overflow: hidden;
    padding: 34px 0 44px;
  }

  .pricing-section__background {
    top: 18px;
    right: -18%;
    width: 92%;
    height: 280px;
    object-position: right top;
    opacity: 0.1;
  }

  .pricing-section::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 30%, var(--white) 100%);
  }

  .pricing-section__header,
  .pricing-options,
  .price-calculator {
    grid-template-columns: 1fr;
  }

  .pricing-options {
    gap: 14px;
    padding-top: 14px;
    width: 100%;
    min-width: 0;
  }

  .pricing-section__header {
    gap: 10px;
  }

  .pricing-section__header .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .pricing-section h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.2rem);
    line-height: 1.02;
    white-space: normal;
  }

  .pricing-section__header > p:last-child {
    display: none;
  }

  .faq-section {
    width: calc(100% - 28px);
    padding: 2px 0 52px;
  }

  .faq-section__header,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-section__header {
    gap: 8px;
    margin-bottom: 20px;
  }

  .faq-section__header .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .faq-section__toggle {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    cursor: pointer;
  }

  .service-faq .faq-section__toggle {
    grid-template-columns: minmax(0, 1fr);
    cursor: default;
  }

  .faq-section__toggle span {
    font-size: clamp(1.9rem, 8.5vw, 2.25rem);
    line-height: 1.05;
  }

  .faq-section__toggle i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 950;
  }

  .service-faq .faq-section__toggle i {
    display: none;
  }

  .faq-list {
    display: grid;
    column-count: auto;
    column-gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 260ms ease, opacity 200ms ease;
  }

  .faq-item {
    display: block;
  }

  .faq-section.is-open .faq-list {
    max-height: 1200px;
    opacity: 1;
  }

  .service-faq .faq-list,
  .service-faq.is-open .faq-list {
    max-height: none;
    overflow: visible;
    opacity: 1;
  }

  .faq-question {
    min-height: 58px;
    gap: 12px;
    padding: 14px 0;
  }

  .faq-question h3 {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .faq-question span {
    width: 28px;
    height: 28px;
    font-size: 1.05rem;
  }

  .faq-item.is-open .faq-answer {
    max-height: 240px;
    opacity: 1;
  }

  .faq-answer p {
    padding-right: 0;
    padding-bottom: 16px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .faq-cta {
    display: none;
  }

  .final-cta {
    --cta-truck-width: min(760px, 108vw);
    width: calc(100% - 28px);
    min-height: auto;
    padding: 12px 0 58px;
  }

  .final-cta__visual {
    display: none;
  }

  .contact-info {
    position: relative;
    top: auto;
    right: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid rgba(236, 238, 243, 0.88);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(16, 21, 34, 0.08);
  }

  .contact-info__item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }

  .contact-info__intro {
    padding-bottom: 10px;
    border-bottom: 0;
    font-size: 1.18rem;
    line-height: 1.15;
  }

  .contact-info__item--wide {
    grid-column: auto;
    justify-items: stretch;
    text-align: left;
  }

  .contact-info span {
    font-size: 0.66rem;
  }

  .contact-info a {
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .final-cta__layout {
    width: 100%;
    gap: 18px;
  }

  .final-cta h2 {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
    line-height: 1.05;
  }

  .request-form {
    gap: 16px;
    padding: 22px;
  }

  .request-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .request-form input,
  .request-form select {
    min-height: 46px;
  }

  .request-form textarea {
    min-height: 132px;
  }

  .site-footer {
    padding: 44px 14px 22px;
  }

  .site-footer__background {
    left: 50%;
    right: auto;
    bottom: -36px;
    width: 760px;
    opacity: 0.28;
    transform: translateX(-50%);
  }

  .site-footer::after {
    background: transparent;
  }

  .site-footer__inner,
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    gap: 32px;
  }

  .site-footer__nav {
    gap: 26px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
    margin-top: 26px;
    padding-top: 16px;
    text-align: center;
  }

  .site-footer__bottom div {
    gap: 12px;
    justify-self: center;
    justify-content: center;
  }

  .site-footer__bottom a,
  .site-footer__bottom p {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .site-footer__credit {
    gap: 4px;
    justify-self: center;
    font-size: 0.72rem !important;
  }

  .site-footer__credit img {
    width: 30px;
  }

  .pricing-option {
    width: 100%;
    min-width: 0;
    min-height: auto;
    grid-template-rows: auto;
    padding: 16px;
    box-shadow: 0 14px 36px rgba(16, 21, 34, 0.06);
  }

  .pricing-option--fixed {
    padding-right: 22px;
  }

  .pricing-option--hourly {
    padding-left: 22px;
    border-left: 0;
  }

  .pricing-option h3 {
    font-size: clamp(1.45rem, 7vw, 1.75rem);
  }

  .pricing-option p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .pricing-fit {
    display: none;
  }

  .pricing-option ul {
    display: none;
  }

  .pricing-option li {
    padding: 7px 0;
    font-size: 0.86rem;
  }

  .rate-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
    border-top: 0;
  }

  .rate-table label {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.78);
  }

  .rate-table label:has(input:checked) {
    border-color: rgba(216, 155, 0, 0.45);
    background: #fff8e8;
  }

  .rate-table span {
    gap: 8px;
    font-size: 0.86rem;
  }

  .rate-table strong {
    font-size: 1.08rem;
  }

  .price-calculator {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
  }

  .price-calculator__control div {
    grid-template-columns: 32px 42px 32px;
    gap: 6px;
  }

  .price-calculator button {
    width: 32px;
    height: 32px;
  }

  .price-calculator input {
    width: 42px;
  }

  .fixed-price-summary {
    grid-template-columns: 1fr;
    justify-items: start;
    margin-top: 10px;
    padding-top: 10px;
  }

  .fixed-price-summary .button {
    width: 100%;
  }

  .price-calculator__result {
    min-width: 112px;
    text-align: right;
  }

  .fixed-price-summary strong,
  .price-calculator__result strong {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
  }

  .pricing-note {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: none;
  }

  .service-card {
    min-height: 0;
    padding: 0;
  }

  .service-card img {
    aspect-ratio: 1.25 / 1;
  }

  .service-card__body {
    padding: 10px;
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .service-card p {
    display: none;
  }

  .service-card a {
    min-height: auto;
    justify-content: flex-start;
    margin-top: 0;
    background: transparent;
    color: var(--yellow-dark);
    font-size: 0.75rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .review-card {
    flex-basis: 250px;
    min-height: 265px;
    padding: 18px;
    border-radius: 10px;
  }

  .review-stars {
    margin-bottom: 12px;
    font-size: 1.15rem;
  }

  .review-card h3 {
    margin-bottom: 10px;
    font-size: 0.82rem;
  }

  .review-card > p:not(.review-stars) {
    font-size: 0.98rem;
    line-height: 1.32;
  }

  .review-card strong {
    font-size: 0.86rem;
  }

  .review-card span {
    font-size: 0.74rem;
  }

  .process-steps li {
    min-height: auto;
    padding: 0;
    text-align: center;
  }

  .process-steps img {
    height: 76px;
    margin-bottom: 8px;
  }

  .process-steps h3 {
    margin: 8px 0 0;
    font-size: 0.94rem;
  }

  .process-steps p {
    display: none;
  }

  .process-steps li::after {
    display: none;
  }

  .process-steps span {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .process-section__footer {
    display: none;
  }

  .trust-ribbon__item,
  .trust-ribbon__item:nth-child(2) {
    flex: 0 0 min(76vw, 300px);
    min-height: 58px;
    gap: 10px;
    border-right: 0;
    border-bottom: 0;
    padding: 8px 10px;
    scroll-snap-align: start;
  }

  .trust-ribbon__item {
    animation: trustRibbonLoop 22s linear infinite;
    will-change: transform;
  }

  .trust-ribbon__item[aria-hidden="true"] {
    display: flex;
  }

  .trust-ribbon__mark {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .trust-ribbon__mark img {
    width: 26px;
    height: 26px;
  }

  .trust-ribbon__mark--plain img {
    width: 38px;
    height: 38px;
  }

  .trust-ribbon strong {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .trust-ribbon__item span:last-child {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  @keyframes trustRibbonLoop {
    to {
      transform: translate3d(calc(-400% - 40px), 0, 0);
    }
  }

}

@media (max-width: 620px) {
  .senior-page .service-hero {
    min-height: 760px;
    overflow: hidden;
    padding: 112px 14px 34px;
  }

  .senior-page .service-hero__content {
    width: min(100% - 28px, 360px);
    margin-inline: auto;
  }

  .senior-page .service-hero__background {
    top: auto;
    right: -330px;
    bottom: 28px;
    width: 780px;
    transform: none;
    object-position: right bottom;
  }

  .senior-page .service-hero__content .eyebrow,
  .senior-page .service-hero h1,
  .senior-page .service-hero__content > p:not(.eyebrow),
  .senior-page .service-hero__proof {
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98),
      0 6px 18px rgba(255, 255, 255, 0.92),
      0 2px 12px rgba(16, 21, 34, 0.24);
  }

  .senior-page .service-hero h1 {
    max-width: 348px;
    font-size: clamp(1.48rem, 7.35vw, 1.72rem);
    line-height: 1.02;
  }

  .senior-page .service-hero h1 br {
    display: none;
  }

  .senior-page .service-hero h1 span {
    display: inline;
    white-space: normal;
  }

  .senior-page .service-hero__content > p:not(.eyebrow) {
    max-width: 310px;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .senior-page .service-hero__actions {
    max-width: 310px;
    gap: 8px;
    margin-bottom: 14px;
  }

  .senior-page .service-hero__actions .button {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.75rem;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .senior-page .service-hero__proof {
    max-width: 310px;
    gap: 6px;
  }

  .senior-page .service-hero__proof span {
    min-height: 22px;
    font-size: 0.75rem;
  }

  .senior-page .service-hero__proof span::before {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .senior-page .final-cta h2 {
    max-width: 330px;
    font-size: clamp(1.55rem, 7vw, 1.8rem);
  }
}

.reviews-section__mobile-credentials {
  display: none !important;
}

@media (max-width: 1024px) {
  .nav.is-open .nav__item.is-expanded > .nav__dropdown {
    position: static !important;
    left: auto !important;
    right: auto !important;
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 520px !important;
    gap: 2px !important;
    padding: 6px !important;
    margin: 0 0 8px !important;
    border: 1px solid #e2e6ee !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(16, 21, 34, 0.08) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    overflow: visible !important;
    backdrop-filter: none !important;
  }

  .nav.is-open .nav__item.is-expanded > .nav__dropdown > a {
    display: flex !important;
    width: 100% !important;
    min-height: 38px !important;
    align-items: center !important;
    padding: 10px 12px !important;
    border-radius: 6px !important;
    color: #101522 !important;
    -webkit-text-fill-color: #101522 !important;
    font-size: 0.92rem !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    white-space: normal !important;
  }

  .nav.is-open .nav__item.is-expanded > .nav__dropdown > a:hover,
  .nav.is-open .nav__item.is-expanded > .nav__dropdown > a:focus-visible {
    background: #fff3c4 !important;
    color: #101522 !important;
    -webkit-text-fill-color: #101522 !important;
  }
}

@media (max-width: 620px) {
  .reviews-section .reviews-section__mobile-credentials {
    display: flex !important;
    width: min(100% - 28px, 1180px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 18px auto 0;
  }

  .reviews-section__mobile-credentials .rating-summary__badge {
    min-height: 38px;
    gap: 6px;
    padding: 5px 9px;
    font-size: 0.72rem !important;
  }

  .reviews-section__mobile-credentials .rating-summary__badge img {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain;
  }

  .reviews-section__mobile-credentials .rating-summary__badge--stadt img {
    width: 96px !important;
    height: auto !important;
  }

  .reviews-section__mobile-credentials .rating-summary__badge .proof-number {
    font-size: 0.92rem;
  }
}

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