.neighborhood-page {
  background: #f7faf6;
}

.neighborhood-page main {
  overflow: hidden;
}

.route-hero {
  position: relative;
  isolation: isolate;
  padding: 72px 0 76px;
  overflow: hidden;
  color: #fff;
  background: #0d281f;
}

.route-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 25, 18, 0.97) 0%, rgba(7, 25, 18, 0.91) 48%, rgba(7, 25, 18, 0.58) 100%),
    radial-gradient(circle at 82% 18%, rgba(255, 176, 0, 0.3), transparent 25%),
    url("../images/hero.jpg") right center / min(52vw, 650px) auto no-repeat;
}

.route-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 54px;
}

.route-hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

.route-hero .lead {
  max-width: 720px;
}

.hero-cta {
  margin-top: 14px;
  min-width: 220px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eafff2;
  font-weight: 800;
}

.hero-checks li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: #08251a;
  background: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
}

.trash-reassurance {
  max-width: 650px;
  margin: 22px 0 0;
  border-left: 4px solid var(--accent);
  padding: 10px 14px;
  color: #eafff2;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.trash-reassurance strong {
  color: #fff;
}

.route-card {
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  scroll-margin-top: 84px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.route-card-label {
  margin-bottom: 8px;
  color: #bfe6cf;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card h2 {
  font-size: 2.7rem;
}

.route-details {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.route-details div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 12px;
}

.route-details dt {
  color: #bfe6cf;
  font-size: 0.86rem;
  font-weight: 700;
}

.route-details dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.spots-badge {
  display: inline-flex;
  margin: 0;
  border-radius: 999px;
  padding: 9px 13px;
  color: #2b1a00;
  background: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}

.route-card-note {
  margin: 16px 0 0;
  color: #d6f2e1;
  font-size: 0.9rem;
}

.choose-route-cta {
  display: none;
}

.route-unselected .choose-route-cta {
  display: inline-flex;
}

.route-unselected .reserve-cta,
.route-unselected .route-spots-status {
  display: none !important;
}

.route-chooser {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
}

.route-chooser > p {
  margin-bottom: 10px;
  color: #d6f2e1;
  font-size: 0.86rem;
  font-weight: 800;
}

.route-chooser-links {
  display: grid;
  gap: 8px;
}

.route-chooser-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.route-chooser-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.route-chooser-links small {
  color: #c9ead9;
}

.route-finder-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.route-finder-actions .btn {
  width: 100%;
}

.route-secondary-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.location-status {
  min-height: 1.25em;
  margin: 10px 0 0;
  color: #d6f2e1;
  font-size: 0.82rem;
  font-weight: 750;
}

.location-status.error {
  color: #ffd8cf;
}

.manual-route-form {
  margin-top: 12px;
}

.manual-route-form label {
  display: block;
  margin-bottom: 6px;
  color: #eafff2;
  font-size: 0.8rem;
  font-weight: 900;
}

.manual-route-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.manual-route-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.manual-route-form .btn {
  min-height: 44px;
  padding-right: 14px;
  padding-left: 14px;
}

.neighborhood-suggestions {
  display: grid;
  gap: 5px;
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
}

.neighborhood-suggestions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.neighborhood-suggestions button:hover,
.neighborhood-suggestions button:focus-visible {
  border-color: rgba(255, 176, 0, 0.75);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.neighborhood-suggestions button strong {
  font-size: 0.88rem;
}

.neighborhood-suggestions button small {
  color: #c9ead9;
  font-size: 0.7rem;
}

.neighborhood-search-status {
  min-height: 1.2em;
  margin: 8px 0 0;
  color: #c9ead9;
  font-size: 0.76rem;
  font-weight: 700;
}

.neighborhood-search-status.error {
  color: #ffd8cf;
}

.configured-routes-label {
  margin-top: 16px;
}

.location-privacy {
  display: block;
  margin-top: 12px;
  color: #aed5bf;
  font-size: 0.68rem;
  line-height: 1.35;
}

.route-unselected .pricing-reserve-section,
.route-unselected .route-summary,
.route-unselected .mobile-reserve-bar {
  display: none;
}

.route-summary {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 33, 25, 0.06);
}

.route-summary-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.route-summary-inner > div {
  display: grid;
}

.summary-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-text {
  color: var(--danger);
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .section-copy {
  margin-right: auto;
  margin-left: auto;
}

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

.benefit-item {
  border: 1px solid rgba(16, 25, 22, 0.09);
  border-radius: 12px;
  padding: 22px 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.benefit-item h3 {
  min-height: 2.35em;
  font-size: 1.03rem;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.icon-shell {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 13px;
  color: var(--primary-dark);
  background: #eaf8ef;
}

.icon-shell svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.comparison-section {
  background: #eef7f1;
}

.comparison-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  margin-bottom: 32px;
  color: var(--primary-dark);
  font-weight: 900;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.before-after figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 25, 22, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.before-after img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.before-after figcaption {
  padding: 16px 18px;
  color: #26332f;
  font-weight: 800;
}

.photo-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-label {
  background: rgba(78, 56, 37, 0.9);
}

.after-label {
  color: #08251a;
  background: rgba(255, 176, 0, 0.94);
}

.neighborhood-how {
  background: #fff;
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route-step;
}

.route-steps li {
  position: relative;
  display: grid;
  gap: 18px;
  border-top: 3px solid var(--primary);
  padding: 24px 8px 0 0;
}

.route-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -18px;
  width: 18px;
  height: 3px;
  background: var(--primary);
}

.route-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #10251f;
  background: var(--accent);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 176, 0, 0.24);
}

.route-steps p {
  margin: 0;
  color: var(--muted);
}

.pricing-reserve-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 176, 0, 0.14), transparent 22%),
    linear-gradient(135deg, #e9f7ee 0%, #f8fbf8 55%, #edf8f1 100%);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  align-items: start;
  gap: 58px;
}

.pricing-copy {
  position: sticky;
  top: 106px;
}

.pricing-copy h2 {
  max-width: 540px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.price-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(16, 25, 22, 0.12);
  padding: 0 0 13px;
}

.price-list span {
  color: #33423d;
  font-weight: 700;
}

.price-list strong {
  color: var(--primary-dark);
  font-size: 1.16rem;
  white-space: nowrap;
}

.trust-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.trust-note > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.trust-note p {
  margin: 0;
}

.routine-cleaning-cta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid rgba(20, 108, 148, 0.2);
  border-radius: 10px;
  padding: 18px;
  background: #f2f8fb;
  box-shadow: var(--shadow-soft);
}

.routine-cleaning-cta h3 {
  margin: 0;
  color: #0f516f;
  font-size: 1.18rem;
}

.routine-cleaning-cta p {
  margin: 0;
  color: #425b65;
  font-size: 0.9rem;
}

.routine-cleaning-cta .btn {
  justify-self: start;
}

.missed-route-cta {
  border-color: rgba(11, 143, 97, 0.22);
  background: #f2fbf5;
}

.missed-route-cta h3 {
  color: #146c4f;
}

.missed-route-cta p {
  color: #405d50;
}

.referral-promo {
  margin-top: 18px;
  border: 1px solid rgba(11, 143, 97, 0.18);
  border-radius: 10px;
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.referral-promo h3 {
  color: var(--primary-dark);
  font-size: 1.22rem;
}

.referral-promo p:not(.eyebrow) {
  color: #33423d;
  font-size: 0.93rem;
}

.referral-promo ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.referral-promo li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.referral-promo li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-dark);
  font-weight: 900;
}

.booking-shell {
  scroll-margin-top: 92px;
  border: 1px solid rgba(16, 25, 22, 0.1);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.booking-heading {
  padding: 20px 20px 18px;
}

.booking-heading h2 {
  font-size: 2.6rem;
}

.booking-heading > p:not(.eyebrow):not(.booking-availability) {
  margin: 0;
  color: var(--muted);
}

.booking-availability {
  display: inline-flex;
  margin: 10px 0 0;
  border-radius: 999px;
  padding: 6px 10px;
  color: #8d250f;
  background: #fff0ec;
  font-size: 0.8rem;
  font-weight: 900;
}

.route-form {
  max-width: none;
  border-radius: 12px;
  box-shadow: none;
}

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

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

.route-form label > span small {
  color: var(--muted);
  font-weight: 600;
}

.route-autofill {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border-radius: 10px;
  padding: 12px 14px;
  color: #164733;
  background: #eaf8ef;
}

.route-autofill > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
}

.route-autofill p {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.9rem;
}

.route-autofill button {
  flex: 0 0 auto;
  border: 0;
  padding: 4px;
  color: var(--primary-dark);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.can-picker {
  margin: 18px 0 0;
  border: 0;
  padding: 0;
}

.can-picker legend {
  margin-bottom: 9px;
  color: #26332f;
  font-weight: 900;
}

.can-picker-note {
  margin: -2px 0 12px;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.can-picker-note[hidden] {
  display: none;
}

.can-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.can-options label {
  position: relative;
  cursor: pointer;
}

.can-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.can-options label > span {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  height: 100%;
  min-height: 96px;
  border: 2px solid #cad9d0;
  border-radius: 10px;
  padding: 10px 6px;
  color: #26332f;
  background: #fbfefb;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.can-options label:hover > span {
  border-color: rgba(11, 143, 97, 0.5);
}

.can-options input:checked + span {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: #eaf8ef;
  box-shadow: 0 0 0 3px var(--ring);
  transform: translateY(-1px);
}

.can-options input:focus-visible + span {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.can-options label.recommended > span {
  border-color: rgba(255, 176, 0, 0.78);
}

.can-options small {
  color: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.can-recommendation-badge {
  border-radius: 999px;
  padding: 3px 7px;
  color: #2b1a00;
  background: var(--accent);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.can-recommendation-badge[hidden],
.can-option-reason[hidden] {
  display: none;
}

.can-options .can-option-reason {
  max-width: 11ch;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.25;
}

.optional-email {
  margin: 14px 0 0;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.optional-email summary {
  display: inline-flex;
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.optional-email summary span {
  margin-left: 4px;
  color: var(--muted);
  font-weight: 650;
}

.optional-email label {
  margin-top: 10px;
}

.referral-code-panel {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  border: 1px solid rgba(11, 143, 97, 0.2);
  border-radius: 10px;
  padding: 15px;
  background: #f2fbf5;
}

.referral-code-panel[hidden] {
  display: none;
}

.referral-code-help,
.referral-code-status {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.referral-code-help {
  color: var(--muted);
}

.referral-code-status {
  min-height: 1.2em;
  color: #164733;
}

.referral-code-status.error {
  color: #a32d18;
}

.route-consent input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--primary);
}

.booking-total {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  background: #102b22;
}

.booking-total > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.booking-total > div > span {
  font-weight: 800;
}

.booking-total strong {
  color: #ffd166;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
}

.booking-total small {
  color: #cde8d8;
}

.route-consent {
  border: 1px solid rgba(11, 143, 97, 0.22);
  border-radius: 10px;
  padding: 14px;
  background: #f2fbf5;
  font-size: 0.79rem;
  font-weight: 650 !important;
  line-height: 1.45;
}

.route-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  font-size: 1.02rem;
}

.route-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.route-form-message {
  min-height: 1.4em;
  margin: 12px 0 0;
  text-align: center;
  font-weight: 800;
}

.route-form-message.success {
  color: #066241;
}

.route-form-message.error {
  color: #a32d18;
}

.form-reassurance {
  margin: 6px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.76rem;
}

.urgency-banner {
  padding: 30px 0;
  color: #fff;
  background: linear-gradient(110deg, #9f2c17, #d14828);
}

.urgency-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.urgency-inner h2 {
  margin-bottom: 5px;
  font-size: 1.7rem;
}

.urgency-inner p {
  margin: 0;
  color: #ffede8;
}

.urgency-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.btn-light {
  color: #8e260f;
  background: #fff;
  box-shadow: 0 12px 30px rgba(61, 11, 0, 0.22);
}

.trust-section {
  background: #fff;
}

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

.trust-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 17px;
  background: #f9fcfa;
}

.trust-grid li span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 0.78rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  border-radius: 14px;
  padding: 26px;
  color: #fff;
  background: #102b22;
}

.final-cta p {
  margin: 0;
  font-size: 1.08rem;
}

.final-cta p strong {
  color: #ffd166;
}

.mobile-reserve-bar {
  display: none;
}

@media (max-width: 980px) {
  .route-hero-grid,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .route-card {
    max-width: 620px;
  }

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

  .pricing-copy {
    position: static;
  }

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

@media (max-width: 760px) {
  .route-hero {
    padding: 60px 0 44px;
  }

  .route-hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 25, 18, 0.92) 0%, rgba(7, 25, 18, 0.84) 100%),
      url("../images/hero.jpg") center bottom / cover no-repeat;
  }

  .route-hero-grid {
    gap: 36px;
  }

  .route-summary-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .route-summary-inner .btn {
    grid-column: 1 / -1;
  }

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

  .route-steps {
    grid-template-columns: 1fr;
  }

  .route-steps li {
    grid-template-columns: auto 1fr;
    align-items: start;
    border-top: 0;
    border-left: 3px solid var(--primary);
    padding: 0 0 22px 22px;
  }

  .route-steps li:not(:last-child)::after {
    display: none;
  }

  .route-step-number {
    margin-left: -45px;
  }

  .urgency-inner {
    grid-template-columns: auto 1fr;
  }

  .urgency-inner .btn {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .neighborhood-page {
    padding-bottom: 76px;
  }

  .route-hero h1 {
    font-size: 2.75rem;
  }

  .route-card {
    padding: 17px;
  }

  .route-card h2 {
    font-size: 1.9rem;
  }

  .route-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 13px 0;
  }

  .route-details div {
    display: grid;
    justify-content: start;
    gap: 2px;
    padding-bottom: 8px;
  }

  .route-details dd {
    text-align: left;
  }

  .route-card-note {
    display: none;
  }

  .manual-route-form > div {
    grid-template-columns: 1fr;
  }

  .manual-route-form .btn {
    width: 100%;
  }

  .route-summary {
    display: none;
  }

  .hero-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .benefit-grid,
  .form-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .benefit-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
  }

  .benefit-item .icon-shell {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .benefit-item h3 {
    min-height: 0;
    margin-bottom: 6px;
  }

  .comparison-heading {
    align-items: start;
    flex-direction: column;
  }

  .before-after {
    gap: 8px;
  }

  .before-after figure {
    border-radius: 9px;
  }

  .before-after figcaption {
    padding: 10px 8px;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .photo-label {
    top: 8px;
    left: 8px;
    padding: 5px 8px;
    font-size: 0.65rem;
  }

  .text-link {
    margin: -18px 0 26px;
  }

  .pricing-layout {
    gap: 36px;
  }

  .booking-shell {
    margin-right: -5px;
    margin-left: -5px;
    padding: 7px;
  }

  .booking-heading {
    padding: 17px 13px;
  }

  .booking-heading h2 {
    font-size: 2.2rem;
  }

  .urgency-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .urgency-icon {
    margin: 0 auto;
  }

  .mobile-reserve-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(170px, 1fr);
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(16, 25, 22, 0.12);
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(10, 33, 25, 0.14);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }

  .mobile-reserve-bar > div {
    display: grid;
    line-height: 1.2;
  }

  .mobile-reserve-bar small {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-reserve-bar strong {
    color: var(--danger);
    font-size: 0.8rem;
  }

  .mobile-reserve-bar .btn {
    min-height: 48px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.84rem;
  }
}
