:root {
  --ink: #091736;
  --deep: #091736;
  --orange: #f35748;
  --aqua: #4ab7c3;
  --paper: #f7fbfc;
  --mist: #e9f5f7;
  --line: #d9e7ea;
  --muted: #526176;
  --max: 1140px;
  --font-body: "Source Sans 3", Arial, sans-serif;
  --font-display: Manrope, Arial, sans-serif;
}

/* Service directory and individual service pages */
.subhero.service-hero {
  position: relative;
  overflow: hidden;
  background: #edf7f8;
}

.service-hero::after {
  position: absolute;
  right: max(-120px, calc((100vw - 1180px) / 2));
  bottom: -190px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(74, 183, 195, .36);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(74, 183, 195, .08), 0 0 0 105px rgba(74, 183, 195, .04);
  content: '';
  pointer-events: none;
}

.service-hero .wrap {
  position: relative;
  z-index: 1;
}

.service-article aside hr {
  width: 100%;
  margin: 9px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.service-related {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.service-directory__intro {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  margin-bottom: 48px;
}

.service-directory__intro h2 {
  margin: 0;
}

.service-directory__intro p:last-child {
  max-width: 640px;
  margin: 4px 0 0;
  color: #536176;
}

.service-directory__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-directory__grid article {
  min-height: 285px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-directory__grid article > span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--orange);
  font: 800 13px/1 var(--font-display);
  letter-spacing: .14em;
}

.service-directory__grid h2 {
  margin: 0 0 13px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.03em;
}

.service-directory__grid p {
  max-width: 500px;
  margin: 0 0 26px;
  color: #536176;
}

.service-directory__grid a {
  color: var(--deep);
  font-weight: 800;
  text-underline-offset: 5px;
}

.service-directory__grid article:hover {
  background: #f7fbfb;
}

@media (max-width: 760px) {
  .service-directory__intro,
  .service-directory__grid {
    grid-template-columns: 1fr;
  }

  .service-directory__intro {
    gap: 16px;
  }

  .service-directory__grid article {
    min-height: 0;
    padding: 26px 22px;
  }

  .service-directory__grid article > span {
    margin-bottom: 26px;
  }
}

body {
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.58;
}

h1, h2, h3, .brand, .local-proof b, .local-facts dd {
  font-family: var(--font-display);
  font-weight: 800;
}

.top {
  background: var(--deep);
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 30;
  background: #fff;
  box-shadow: 0 12px 34px rgba(9, 23, 54, .08);
}

.site-header nav {
  height: 104px;
  border-bottom: 1px solid rgba(9, 23, 54, .09);
}

.site-header .brand {
  display: inline-flex;
  width: 248px;
  flex: 0 0 248px;
  align-items: center;
}

.site-header .brand img {
  display: block;
  width: 240px;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.links a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}

.links a:hover, .text-link:hover {
  color: var(--orange);
}

.primary, .call {
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(243, 87, 72, .18);
}

.secondary {
  border-color: var(--ink);
  border-radius: 2px;
}

.subhero,
.loc-hero {
  padding: 76px 0 82px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.subhero .crumb,
.loc-hero .crumb {
  margin: 0 0 42px;
  color: #647286;
}

.subhero h1,
.loc-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 68px);
}

.subhero .lead,
.loc-hero .lead {
  color: #415168;
}

.article {
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: space-between;
  gap: 72px;
  padding-top: 92px;
  padding-bottom: 96px;
}

.article aside {
  position: static;
  padding: 28px;
  border-top-color: var(--aqua);
  background: #f7fafb;
  box-shadow: 0 18px 44px rgba(9, 23, 54, .07);
}

.article article h2 {
  color: var(--ink);
  font-family: var(--font-display);
}

.article article p,
.article article li {
  color: #405066;
}

.directory {
  padding-top: 90px;
  padding-bottom: 100px;
}

.directory > h2 {
  color: var(--ink);
}

.gridlinks {
  gap: 14px;
}

.gridlinks a {
  min-height: 86px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  transition: border-color .18s ease, transform .18s ease;
}

.gridlinks a:hover {
  border-color: var(--aqua);
  transform: translateY(-2px);
}

.gridlinks b {
  font-family: var(--font-display);
}

/* Reciprocal navigation between Düsseldorf and the surrounding-area directory */
.region-switch {
  padding: 0 0 104px;
  background: linear-gradient(to bottom, #fff 0 27%, #f7fbfc 27% 100%);
}

.region-switch__card {
  position: relative;
  display: grid;
  min-height: 246px;
  grid-template-columns: 136px minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: 42px 46px;
  background: var(--deep);
  box-shadow: 0 24px 64px rgba(9, 23, 54, .18);
  color: #fff;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

.region-switch__card::before {
  position: absolute;
  top: -190px;
  right: -110px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(74, 183, 195, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(74, 183, 195, .07), 0 0 0 108px rgba(74, 183, 195, .035);
  content: '';
  pointer-events: none;
}

.region-switch__card:hover {
  box-shadow: 0 30px 76px rgba(9, 23, 54, .24);
  transform: translateY(-3px);
}

.region-switch__card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.region-switch__metric {
  position: relative;
  z-index: 1;
  display: flex;
  width: 136px;
  height: 136px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-top: 5px solid var(--aqua);
  background: rgba(255, 255, 255, .07);
}

.region-switch__metric strong {
  font: 800 50px/.9 var(--font-display);
  letter-spacing: -.055em;
}

.region-switch__metric span {
  margin-top: 12px;
  color: #c9e9ed;
  font: 800 10px/1.2 var(--font-display);
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.region-switch__content {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.region-switch__content .eyebrow {
  color: #7bd1da;
}

.region-switch__content h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(29px, 3.4vw, 42px);
  letter-spacing: -.035em;
}

.region-switch__content > p:last-child {
  margin: 0;
  color: #cbd3e1;
  font-size: 16px;
  line-height: 1.65;
}

.region-switch__action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #fff !important;
  color: var(--deep);
  font: 800 14px/1.25 var(--font-display);
  text-align: center;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.region-switch__action::after {
  margin-left: 11px;
  content: '→';
  font-size: 18px;
  line-height: 1;
}

.region-switch__card:hover .region-switch__action {
  background: var(--orange);
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .region-switch__card {
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 38px;
  }

  .region-switch__metric {
    width: 112px;
    height: 112px;
  }

  .region-switch__metric strong {
    font-size: 43px;
  }

  .region-switch__action {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .region-switch {
    padding-bottom: 72px;
    background: #f7fbfc;
  }

  .region-switch__card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 28px 23px 30px;
  }

  .region-switch__card::before {
    top: -225px;
    right: -205px;
  }

  .region-switch__metric {
    width: max-content;
    height: auto;
    min-height: 50px;
    flex-direction: row;
    gap: 9px;
    padding: 8px 14px 9px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    border-left: 4px solid var(--aqua);
  }

  .region-switch__metric strong {
    font-size: 33px;
  }

  .region-switch__metric span {
    max-width: 90px;
    margin-top: 0;
    text-align: left;
  }

  .region-switch__content h2 {
    font-size: 29px;
    line-height: 1.08;
  }

  .region-switch__content > p:last-child {
    font-size: 15px;
  }

  .region-switch__action {
    width: 100%;
    grid-column: 1;
    justify-self: stretch;
  }
}

.contact {
  padding-top: 96px;
  padding-bottom: 100px;
}

.contact > div {
  padding: 36px;
  border-top: 4px solid var(--aqua);
  box-shadow: 0 18px 48px rgba(9, 23, 54, .08);
}

.contact aside {
  border-top: 4px solid var(--orange);
  background: var(--mist);
}

.contact h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
}

.legal {
  color: #405066;
}

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

.faq h2 {
  color: var(--ink);
}

.faq summary {
  color: var(--ink);
  font-family: var(--font-display);
}

.local-hero {
  padding: 68px 0 86px;
  background: var(--mist);
  overflow: hidden;
}

.local-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 68px;
  align-items: center;
}

.local-hero .crumb {
  margin: 0 0 46px;
  color: #647286;
}

.local-hero .crumb a {
  text-decoration-color: rgba(82, 97, 118, .4);
  text-underline-offset: 4px;
}

.local-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.local-hero__service,
.local-hero__place {
  display: block;
}

.local-hero__place {
  max-width: 680px;
  margin-top: .12em;
  font-size: .76em;
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}

@media (min-width: 901px) {
  .local-hero__title--extended .local-hero__place {
    max-width: 720px;
    font-size: .64em;
    line-height: 1.1;
  }
}

.local-hero .lead {
  max-width: 680px;
  color: #415168;
  font-size: clamp(18px, 2vw, 21px);
}

.local-hero__phone {
  margin: 14px 0 0;
  color: #5a687b;
  font-size: 14px;
}

.local-hero__phone a {
  color: var(--ink);
  font-weight: 800;
}

.local-hero__photo {
  position: relative;
  margin: 0;
}

.local-hero__photo::before {
  position: absolute;
  z-index: 0;
  inset: -34px -80px 48px 72px;
  background: var(--aqua);
  content: '';
}

.local-hero__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  object-position: 68% center;
  box-shadow: 0 28px 60px rgba(9, 23, 54, .16);
}

.local-hero__photo figcaption {
  position: relative;
  z-index: 2;
  width: calc(100% - 42px);
  margin: -38px 0 0 -26px;
  padding: 18px 22px;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 16px 36px rgba(9, 23, 54, .18);
}

.local-hero__photo figcaption b,
.local-hero__photo figcaption span {
  display: block;
}

.local-hero__photo figcaption b {
  font-family: var(--font-display);
}

.local-hero__photo figcaption span {
  margin-top: 3px;
  color: #cbd3e0;
  font-size: 13px;
}

.local-proof {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(9, 23, 54, .09);
}

.local-proof article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  min-height: 142px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.local-proof article:last-child {
  border-right: 0;
}

.local-proof article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.local-proof b {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.local-proof p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.local-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 100px;
  padding-top: 110px;
  padding-bottom: 104px;
}

.local-editorial__main {
  max-width: 760px;
}

.local-editorial h2,
.local-section-head h2,
.local-contact h2,
.local-nearby h2 {
  color: var(--ink);
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.12;
}

.local-editorial__main > p {
  color: #405066;
  font-size: 17px;
}

.local-editorial h3 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: -.02em;
}

.local-answer {
  margin-top: 42px;
  padding: 25px 28px;
  border-left: 4px solid var(--aqua);
  background: var(--mist);
}

.local-answer p {
  margin: 7px 0 0;
  color: #405066;
}

.local-facts {
  align-self: start;
  padding: 34px;
  border-top: 4px solid var(--aqua);
  background: #f7fafb;
  box-shadow: 0 18px 44px rgba(9, 23, 54, .07);
}

.local-facts h2 {
  margin-bottom: 22px;
  font-size: 28px;
}

.local-facts dl {
  margin: 0;
}

.local-facts dl > div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.local-facts dt {
  color: #6b788a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.local-facts dd {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.local-facts > p:not(.eyebrow) {
  color: #58677a;
  font-size: 14px;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
}

.local-brands {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.local-section-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 74px;
  align-items: end;
}

.local-section-head h2 {
  margin-bottom: 0;
}

.local-section-head > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.local-brands__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 50px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-brands__grid img {
  display: block;
  width: 100%;
  height: 45px;
  object-fit: contain;
}

.local-contact {
  padding: 96px 0;
  background: var(--mist);
}

.local-contact__grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 90px;
  align-items: start;
}

.local-contact__grid > div > p:not(.eyebrow) {
  color: #405066;
}

.local-contact__direct {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(9, 23, 54, .16);
}

.local-contact__direct a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
}

.local-contact__form {
  padding: 34px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(9, 23, 54, .1);
}

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

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #cbdadd;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form select {
  min-height: 52px;
  padding: 12px;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--aqua);
  outline: 3px solid rgba(74, 183, 195, .14);
}

.form .check {
  color: #4c5b6e;
  font-size: 12px;
}

.form .check input {
  width: auto;
}

.form button {
  min-height: 52px;
  cursor: pointer;
  font-family: Manrope, Arial, sans-serif;
}

.form button:disabled {
  cursor: wait;
  opacity: .65;
}

.status {
  min-height: 1.5em;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.status.is-error {
  color: #a62f25;
}

.status.is-success {
  color: #17663d;
}

.local-faq {
  max-width: 900px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.local-faq h2 {
  color: var(--ink);
}

.local-faq details {
  border-color: var(--line);
}

.local-faq summary {
  color: var(--ink);
  font-family: var(--font-display);
}

.local-faq details p {
  max-width: 760px;
  color: var(--muted);
}

.local-nearby {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 100px;
}

.local-nearby__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.local-nearby__links a {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.local-nearby__links a:hover {
  border-color: var(--aqua);
}

.local-nearby__links span {
  font-family: var(--font-display);
  font-weight: 700;
}

.local-nearby__links small {
  color: #687689;
}

@media (max-width: 1024px) {
  .site-header .links {
    display: none;
  }

  .site-header .menu {
    display: block;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
  }

  .site-header .links.open {
    position: absolute;
    z-index: 35;
    top: 104px;
    right: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    padding: 28px max(20px, calc((100% - var(--max)) / 2));
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 24px 44px rgba(9, 23, 54, .12);
  }
}

@media (max-width: 1024px) {
  .local-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
    gap: 42px;
  }

  .local-editorial {
    gap: 54px;
  }

  .local-brands__grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 34px;
  }

  .local-contact__grid {
    gap: 52px;
  }
}

@media (max-width: 900px) {
  .local-hero {
    padding-top: 54px;
  }

  .local-hero__grid,
  .local-editorial,
  .local-contact__grid,
  .local-nearby {
    grid-template-columns: 1fr;
  }

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

  .local-hero__copy {
    max-width: 680px;
  }

  .local-hero__photo {
    width: min(86%, 620px);
    margin: 22px 0 0 auto;
  }

  .local-proof {
    grid-template-columns: 1fr;
    width: min(calc(100% - 60px), 680px);
  }

  .local-proof article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .local-proof article:last-child {
    border-bottom: 0;
  }

  .local-editorial {
    gap: 50px;
  }

  .local-facts {
    width: min(100%, 620px);
  }

  .local-section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .local-contact__grid {
    gap: 45px;
  }

  .local-nearby {
    gap: 28px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: clip;
  }

  .site-header {
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .1);
  }

  .site-header nav {
    height: 78px;
    gap: 16px;
    padding-right: 5px;
    padding-left: 14px;
    border-bottom: 0;
  }

  .site-header .brand {
    width: clamp(176px, 51vw, 198px);
    flex-basis: clamp(176px, 51vw, 198px);
  }

  .site-header .brand img {
    width: clamp(172px, 50vw, 190px);
    transform: translateY(-2px);
  }

  .site-header .menu {
    display: inline-flex;
    width: 65px;
    min-width: 65px;
    height: 46px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    font-size: 14px;
  }

  .site-header .menu::before {
    width: 18px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
    content: '';
  }

  .site-header .links.open {
    position: fixed;
    z-index: 70;
    top: 78px;
    right: 0;
    left: 0;
    gap: 0;
    width: 100vw;
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0;
    border-top: 1px solid var(--line);
    box-shadow: 0 1px 60px rgba(0, 0, 0, .1);
  }

  .site-header .links.open a {
    display: flex;
    width: 100%;
    min-height: 49px;
    align-items: center;
    padding: 13px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
  }

  .local-hero {
    padding: 34px 0 54px;
  }

  .subhero,
  .loc-hero {
    padding: 38px 0 48px;
  }

  .subhero .crumb,
  .loc-hero .crumb {
    margin-bottom: 25px;
    font-size: 12px;
  }

  .subhero h1,
  .loc-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(35px, 9.5vw, 41px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .subhero .lead,
  .loc-hero .lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
  }

  .subhero .actions,
  .loc-hero .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 25px 0 0;
  }

  .subhero .actions a,
  .loc-hero .actions a,
  .local-hero .actions a {
    min-height: 52px;
    padding: 12px 13px;
    text-align: center;
  }

  .local-hero .crumb {
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 1.5;
  }

  .local-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(35px, 9.5vw, 41px);
    line-height: 1;
    overflow-wrap: normal;
  }

  .local-hero__place {
    margin-top: .14em;
    font-size: .84em;
    line-height: 1.08;
  }

  .local-hero__title--extended .local-hero__place {
    font-size: .78em;
  }

  .local-hero .lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .local-hero .actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0 18px;
  }

  .local-hero__grid {
    gap: 30px;
  }

  .local-hero__photo {
    width: 100%;
    margin-top: 2px;
  }

  .local-hero__photo::before {
    inset: -14px -42px 30px 42px;
  }

  .local-hero__photo figcaption {
    width: calc(100% - 24px);
    margin: -30px 0 0 -8px;
    padding: 14px 16px;
  }

  .local-hero__photo figcaption span {
    font-size: 12px;
  }

  .local-proof {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .local-proof::-webkit-scrollbar {
    display: none;
  }

  .local-proof article {
    min-height: 132px;
    padding: 21px 19px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 30px rgba(9, 23, 54, .07);
  }

  .local-editorial,
  .local-brands,
  .local-contact,
  .local-faq,
  .local-nearby {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .article,
  .directory,
  .contact,
  .legal,
  .faq {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .article {
    gap: 32px;
  }

  .article aside {
    padding: 20px;
  }

  .article article h2 {
    margin-top: 36px;
    font-size: 27px;
    line-height: 1.12;
  }

  .service-directory__intro {
    margin-bottom: 32px;
  }

  .service-directory__grid article {
    padding: 23px 19px;
  }

  .service-directory__grid article > span {
    margin-bottom: 20px;
  }

  .service-directory__grid h2 {
    font-size: 25px;
  }

  .gridlinks a {
    min-height: 76px;
    padding: 16px;
  }

  .contact > div {
    padding: 25px 18px;
  }

  .form {
    gap: 15px;
  }

  .form input,
  .form textarea,
  .form button {
    min-height: 50px;
    border-radius: 0;
    font-size: 16px;
  }

  .local-editorial h3 {
    font-size: 21px;
  }

  .local-facts,
  .local-contact__form {
    padding: 25px 20px;
  }

  .local-brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .local-brands__grid img {
    height: 42px;
  }

  .local-nearby__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 350px) {
  .subhero .actions,
  .loc-hero .actions {
    grid-template-columns: 1fr;
  }

  .subhero h1,
  .loc-hero h1,
  .local-hero h1 {
    font-size: 33px;
  }

  .local-proof {grid-template-columns: 1fr}
}

/* Refined service, city-contact and region-navigation modules */
.service-hero {
  border-bottom: 1px solid #ded8e8;
  background: linear-gradient(105deg, #f7f4fa 0%, #f7f4fa 68%, #eee8f4 68%) !important;
}

.service-hero::after { display: none; }

.service-hero .wrap {
  max-width: 980px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-top: 72px;
  padding-bottom: 78px;
}

.service-hero h1 { max-width: 850px; }
.service-hero .lead { max-width: 720px; font-size: 20px; }

.service-article {
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 78px;
  align-items: start;
  padding-top: 82px;
}

.service-article aside {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 28px;
  border: 1px solid #ded8e8;
  border-top: 5px solid #f08724;
  background: #fff;
  box-shadow: 0 16px 36px rgba(34, 24, 52, .08);
}

.service-aside__label {
  color: #6d5b79;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-article aside > b { margin-top: 8px; font-size: 19px; }
.service-aside__phone { color: #4d1766 !important; font-size: 23px; font-weight: 800; }
.service-article article { max-width: 760px; }
.service-article article > h2 { margin-top: 8px; font-size: clamp(31px, 3vw, 43px); }
.service-summary { max-width: 690px; color: #394255; font-size: 19px; line-height: 1.7; }

.service-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 54px;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 47px;
  border: 1px solid #e3ddea;
  background: #faf8fc;
  color: #222b3d;
  font-weight: 650;
}

.service-checklist li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4d1766;
  color: #fff;
  content: '✓';
  font-size: 12px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.service-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 38px;
  padding-top: 40px;
  border-top: 1px solid #ded8e8;
}

.service-copy h2 { margin: 0; font-size: 27px; }
.service-copy p { margin: 0; color: #4e5666; line-height: 1.72; }
.service-article .answer { margin-top: 44px; border-left: 5px solid #f08724; background: #f5f1f8; }

.local-contact {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: #21172d;
}

.local-contact::before {
  position: absolute;
  inset: 0 50% 0 auto;
  width: 1px;
  background: rgba(255,255,255,.1);
  content: '';
}

.local-contact__grid { position: relative; grid-template-columns: .82fr 1.18fr; gap: 92px; }
.local-contact .eyebrow { color: #f2a34f; }
.local-contact h2 { max-width: 470px; color: #fff; font-size: clamp(35px, 4vw, 52px); }
.local-contact__grid > div > p:not(.eyebrow) { max-width: 500px; color: #d9d2df; font-size: 18px; line-height: 1.7; }

.local-contact__direct {
  max-width: 390px;
  margin-top: 38px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.local-contact__direct b { color: #d9d2df; }
.local-contact__direct a { color: #fff; font-size: 28px; }

.local-contact__form {
  padding: 40px;
  border-top: 6px solid #f08724;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}

.local-contact__form label { color: #242033; font-size: 15px; font-weight: 750; }
.local-contact__form input,
.local-contact__form textarea,
.local-contact__form select { border-color: #d8d2df; background: #faf9fb; }
.local-contact__form input:focus,
.local-contact__form textarea:focus,
.local-contact__form select:focus { border-color: #6f3188; outline-color: rgba(111,49,136,.14); background: #fff; }
.local-contact__form button { min-height: 58px; background: #4d1766; font-size: 17px; }

.region-switch {
  padding: 64px 0;
  background: #f5f2f7;
}

.region-switch__card {
  min-height: 0;
  padding: 30px 34px;
  grid-template-columns: 115px minmax(0, 1fr) auto;
  gap: 32px;
  border: 1px solid #ddd6e5;
  border-left: 6px solid #4d1766;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(41, 25, 54, .07);
  color: #21172d;
}

.region-switch__card::before { display: none; }
.region-switch__card:hover { transform: translateY(-2px); border-color: #c8bdd1; box-shadow: 0 16px 34px rgba(41,25,54,.11); }
.region-switch__metric {
  width: auto;
  min-width: 0;
  height: auto;
  padding-right: 28px;
  border: 0;
  border-right: 1px solid #ddd6e5;
  border-radius: 0;
  background: transparent;
  color: #4d1766;
}
.region-switch__metric strong { font-size: 34px; }
.region-switch__metric span { color: #6b6371; font-size: 11px; }
.region-switch__content { max-width: 620px; }
.region-switch__content .eyebrow { color: #8b6428; }
.region-switch__content h2 { margin: 4px 0 7px; color: #21172d; font-size: clamp(27px, 3vw, 36px); }
.region-switch__content > p:last-child { color: #5d5662; }
.region-switch__action { min-width: 180px; padding: 14px 18px; border: 1px solid #4d1766; color: #4d1766; text-align: center; }
.region-switch__action::after { color: #4d1766; }

@media (max-width: 900px) {
  .service-hero .wrap { margin-left: auto; }
  .service-article { grid-template-columns: 1fr; gap: 38px; }
  .service-article aside { position: static; }
  .local-contact::before { display: none; }
  .local-contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .region-switch__card { grid-template-columns: 95px minmax(0,1fr); }
  .region-switch__action { grid-column: 2; justify-self: start; }
}

@media (max-width: 600px) {
  .service-hero .wrap { padding-top: 48px; padding-bottom: 54px; }
  .service-hero .lead { font-size: 18px; }
  .service-article { padding-top: 52px; }
  .service-checklist, .service-copy { grid-template-columns: 1fr; }
  .service-copy { gap: 14px; }
  .service-copy p + h2 { margin-top: 24px; }
  .local-contact { padding: 68px 0; }
  .local-contact__grid { gap: 36px; }
  .local-contact__form { padding: 28px 20px; }
  .region-switch { padding: 40px 0; }
  .region-switch__card { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 26px 22px; }
  .region-switch__metric { align-items: flex-start; padding: 0 0 16px; border-right: 0; border-bottom: 1px solid #ddd6e5; }
  .region-switch__action { grid-column: 1; min-width: 0; width: 100%; }
}

/* Dedicated contact page — intentionally separate from the generic subhero */
.contact-hero {
  padding: 70px 0 76px;
  border-bottom: 8px solid #f08724;
  background: #172238;
  color: #fff;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 84px;
  align-items: end;
}

.contact-hero .crumb { margin-bottom: 58px; color: #bec7d8; }
.contact-hero .eyebrow { color: #f5a047 !important; }
.contact-hero h1 { max-width: 820px; color: #fff; font-size: clamp(46px, 6vw, 76px); }
.contact-hero .lead { max-width: 690px; color: #d5dbe6; font-size: 20px; }

.contact-hero__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.25);
  list-style: none;
}

.contact-hero__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-hero__steps span { color: #f5a047; font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.contact-hero__steps b { font-size: 17px; }

.contact-page {
  grid-template-columns: minmax(0, 1.5fr) minmax(285px, .55fr);
  gap: 76px;
  align-items: start;
  padding-top: 92px;
}

.contact.contact-page > .contact-page__form {
  padding: 42px;
  border: 1px solid #dde1e9;
  border-top: 6px solid #26356f;
  background: #fff;
  box-shadow: 0 20px 48px rgba(23,34,56,.08);
}

.contact-page__form h2 { margin-bottom: 12px; }
.contact-page__intro { max-width: 650px; margin: 0 0 32px; color: #596273; }
.contact-page__form .form { gap: 20px; }
.contact-page__form .form label { color: #242b3b; font-size: 15px; }
.contact-page__form .form input,
.contact-page__form .form textarea { min-height: 54px; border: 1px solid #ccd2dd; background: #f8f9fb; }
.contact-page__form .form textarea { min-height: 150px; }
.contact-page__form .form input:focus,
.contact-page__form .form textarea:focus { border-color: #26356f; outline: 3px solid rgba(38,53,111,.12); background: #fff; }
.contact-page__form .form button { min-height: 58px; background: #f08724 !important; font-size: 17px; }

.contact-page > aside {
  padding: 34px;
  border: 0;
  border-top: 6px solid #f08724;
  background: #f2f4f8;
}

.contact-page > aside h2 { font-size: 31px; }
.contact-page__phone { display: block; margin: 18px 0 2px; color: #26356f; font-size: 29px; font-weight: 850; text-decoration: none; }
.contact-page > aside hr { margin: 28px 0; border: 0; border-top: 1px solid #ccd2dd; }
.contact-page > aside .note { margin-top: 30px; padding: 18px; border-left: 4px solid #f08724; background: #fff; }

@media (max-width: 900px) {
  .contact-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-hero .crumb { margin-bottom: 42px; }
  .contact-page { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 600px) {
  .contact-hero { padding: 46px 0 54px; }
  .contact-hero h1 { font-size: 42px; }
  .contact-hero .lead { font-size: 18px; }
  .contact-page { padding-top: 56px; }
  .contact.contact-page > .contact-page__form { padding: 28px 20px; }
  .contact-page > aside { padding: 28px 22px; }
}

/* Compact service hero: predictable with both short and long service names */
.subhero.service-hero {
  min-height: 0;
  border: 0;
  border-bottom: 6px solid #f08724;
  background: #172238 !important;
  color: #fff;
}

.service-hero::after {
  position: absolute;
  inset: 0 max(20px, calc((100vw - var(--max)) / 2)) 0 auto;
  display: block;
  width: 1px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.16);
  box-shadow: none;
  content: '';
}

.service-hero .wrap {
  width: min(calc(100% - 40px), var(--max));
  max-width: var(--max);
  margin: auto;
  padding: 54px 0 58px;
}

.service-hero .crumb { margin: 0 0 34px; color: #aeb8c9; }
.service-hero .crumb a { color: #dce2ec; }
.service-hero .eyebrow { color: #f5a047 !important; }
.service-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  color: #fff !important;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
}
.service-hero .lead { max-width: 780px; color: #d5dce8; font-size: 19px; line-height: 1.62; }
.service-hero .actions { margin: 26px 0 0; }
.service-hero .primary { min-height: 54px; background: #f08724 !important; }
.service-hero .secondary { min-height: 54px; border-color: rgba(255,255,255,.6); color: #fff; }

@media (max-width: 650px) {
  .service-hero::after { display: none; }
  .service-hero .wrap { padding: 42px 0 48px; }
  .service-hero .crumb { margin-bottom: 30px; }
  .service-hero h1 { font-size: 39px; }
  .service-hero .lead { font-size: 17px; }
}

/* Readable section labels and number-free editorial modules */
.dd-kicker,
.eyebrow {
  font-size: 14px !important;
  line-height: 1.35 !important;
  letter-spacing: .11em !important;
}

.dd-services small,
.dd-process li > b,
.local-proof article > span,
.faq__list summary > span,
.contact-hero__steps span,
.dd-site-footer__signal-no {
  display: none !important;
}

.dd-process li {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  padding-left: 0 !important;
}

.local-proof article {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.faq__list summary {
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 18px !important;
}

.faq__list summary::after { grid-column: 2 !important; }
.faq__list details p { padding-left: 4px !important; padding-right: 54px !important; }
.contact-hero__steps li { grid-template-columns: 1fr !important; gap: 0 !important; }

.dd-site-footer__signal-inner {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

@media (max-width: 600px) {
  .dd-kicker,
  .eyebrow { font-size: 13px !important; }
  .dd-site-footer__signal-inner { grid-template-columns: 1fr !important; }
  .dd-site-footer__signal a { grid-column: 1 !important; }
  .faq__list details p { padding-right: 36px !important; }
}

/* Clean reciprocal link between Düsseldorf and Umland directories */
.region-switch {
  padding: 58px 0 72px;
  background: #f4f5f8 !important;
}

.region-switch__card {
  display: grid;
  min-height: 0;
  padding: 38px 42px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: center;
  overflow: visible;
  border: 1px solid #dce0e8;
  border-top: 6px solid #f08724;
  border-left: 1px solid #dce0e8;
  background: #fff !important;
  box-shadow: 0 12px 32px rgba(23,34,56,.07);
  color: #172238 !important;
  text-decoration: none;
}

.region-switch__card::before { display: none !important; }
.region-switch__card:hover {
  border-color: #c9cfdb;
  border-top-color: #f08724;
  box-shadow: 0 17px 38px rgba(23,34,56,.11);
  transform: translateY(-2px);
}
.region-switch__content { max-width: 790px; }
.region-switch__content .eyebrow { margin-bottom: 8px; color: #bd6614 !important; }
.region-switch__content h2 { margin: 0 0 9px; color: #172238 !important; font-size: clamp(30px, 3.4vw, 42px); }
.region-switch__content > p:last-child { margin: 0; color: #5a6475 !important; font-size: 17px; line-height: 1.62; }
.region-switch__action {
  min-width: 235px;
  min-height: 56px;
  padding: 16px 20px;
  border: 0;
  background: #26356f !important;
  color: #fff !important;
  font-size: 15px;
}
.region-switch__action::after { color: #fff !important; }
.region-switch__card:hover .region-switch__action { background: #172238 !important; color: #fff !important; }

@media (max-width: 760px) {
  .region-switch { padding: 40px 0 52px; }
  .region-switch__card { grid-template-columns: 1fr; gap: 25px; padding: 29px 24px; }
  .region-switch__action { width: 100%; min-width: 0; grid-column: 1; justify-self: stretch; }
  .region-switch__content > p:last-child { font-size: 16px; }
}

.directory-overview {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 76px;
  padding-top: 84px;
  padding-bottom: 70px;
  border-bottom: 1px solid #dfe3eb;
}
.directory-overview h2 { max-width: 430px; margin: 0; color: #172238; }
.directory-overview > div:last-child { max-width: 720px; }
.directory-overview > div:last-child p { margin: 0 0 15px; color: #566174; font-size: 18px; line-height: 1.72; }
.location-directory { padding-top: 68px; }

@media (max-width: 760px) {
  .directory-overview { grid-template-columns: 1fr; gap: 26px; padding-top: 58px; padding-bottom: 48px; }
  .directory-overview > div:last-child p { font-size: 16px; }
  .location-directory { padding-top: 48px; }
}

/* Contextual service links on local landing pages */
.local-services {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 72px;
  padding: 82px 0;
  border-top: 1px solid #e1e5ef;
}
.local-services > div:first-child h2 { max-width: 480px; font-size: clamp(31px, 4vw, 46px); }
.local-services > div:first-child > p:last-child { max-width: 480px; color: #667087; }
.local-services__links { display: grid; gap: 12px; }
.local-services__links a {
  display: grid;
  padding: 22px 24px;
  grid-template-columns: minmax(160px, .7fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid #dfe3ed;
  color: #172238;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.local-services__links a:hover,
.local-services__links a:focus-visible {
  border-color: #535ee0;
  box-shadow: 0 12px 30px rgba(38, 53, 111, .08);
  transform: translateY(-2px);
}
.local-services__links b { font: 700 18px/1.3 Manrope, Arial, sans-serif; }
.local-services__links span { color: #667087; line-height: 1.5; }
.local-services__links em { color: #535ee0; font-style: normal; font-weight: 700; white-space: nowrap; }
.directory-group-title { margin-top: 70px; }

@media (max-width: 860px) {
  .local-services { grid-template-columns: 1fr; gap: 30px; padding: 64px 0; }
  .local-services__links a { grid-template-columns: 1fr auto; }
  .local-services__links a span { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 540px) {
  .local-services__links a { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .local-services__links a span,
  .local-services__links a em { grid-column: 1; grid-row: auto; white-space: normal; }
}

/* Semantic navigation and keyboard focus must not inherit the legacy nav bar. */
.crumb {
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 4px;
  background: #172238;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .15s ease;
}

.skip-link:focus { transform: translateY(0); }
.dd-site-header__link[aria-current="page"] { background: #f0f1ff; color: #535ee0; }
.dd-site-header__drawer a[aria-current="page"] { color: #ffad52; }

/* Number-free service directory. */
.service-directory__grid article {
  min-height: 235px;
  padding-top: 34px;
}
.service-directory__grid article > h2 { margin-top: 0; }

/* Compact, non-duplicating Einsatzgebiet hub. */
.area-hub {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 72px;
  padding: 88px 0 102px;
}
.area-hub__intro h2 { max-width: 440px; }
.area-hub__intro > p:last-child { max-width: 470px; color: #5b667a; font-size: 18px; }
.area-hub__cards { display: grid; gap: 16px; }
.area-hub__cards a {
  display: block;
  padding: 31px 34px;
  border: 1px solid #dce1eb;
  border-top: 5px solid #f08724;
  background: #fff;
  color: #172238;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.area-hub__cards a:hover,
.area-hub__cards a:focus-visible {
  border-color: #bfc7d8;
  border-top-color: #f08724;
  box-shadow: 0 16px 36px rgba(23,34,56,.1);
  transform: translateY(-2px);
}
.area-hub__cards small { color: #bd6614; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.area-hub__cards h2 { margin: 9px 0 11px; font-size: clamp(26px, 3vw, 36px); }
.area-hub__cards p { margin: 0 0 18px; color: #596579; }
.area-hub__cards strong { color: #535ee0; font-family: Manrope, Arial, sans-serif; }

.area-guide {
  padding: 92px 0 104px;
  border-top: 1px solid #dfe3eb;
  background: #f4f5f8;
}
.area-guide__heading {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 14px 76px;
  align-items: end;
  margin-bottom: 46px;
}
.area-guide__heading .eyebrow { grid-column: 1; }
.area-guide__heading h2 { grid-column: 1; margin: 0; }
.area-guide__heading > p:last-child { grid-column: 2; grid-row: 1 / 3; margin: 0; color: #566174; font-size: 18px; line-height: 1.72; }
.area-guide__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.area-guide__grid article { display: flex; min-width: 0; padding: 30px 28px; flex-direction: column; border: 1px solid #dce1eb; background: #fff; }
.area-guide__grid h3 { margin: 0 0 13px; color: #172238; font-size: 23px; }
.area-guide__grid p { margin: 0 0 23px; color: #596579; line-height: 1.68; }
.area-guide__grid a { margin-top: auto; color: #535ee0; font-family: Manrope, Arial, sans-serif; font-weight: 800; }

.service-guide { padding-top: 20px; padding-bottom: 100px; }
.service-guide__intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12px 72px; padding-top: 72px; border-top: 1px solid #dfe3eb; }
.service-guide__intro .eyebrow { grid-column: 1; }
.service-guide__intro h2 { grid-column: 1; margin: 0; }
.service-guide__intro > p:last-child { grid-column: 2; grid-row: 1 / 3; margin: 0; color: #566174; font-size: 18px; line-height: 1.72; }
.service-guide__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.service-guide__points article { padding: 28px; border-top: 4px solid #f08724; background: #f4f5f8; }
.service-guide__points h3 { margin: 0 0 12px; color: #172238; font-size: 22px; }
.service-guide__points p { margin: 0; color: #596579; line-height: 1.68; }

@media (max-width: 820px) {
  .area-hub { grid-template-columns: 1fr; gap: 30px; padding: 64px 0 76px; }
  .area-hub__intro > p:last-child { font-size: 16px; }
  .area-guide { padding: 68px 0 78px; }
  .area-guide__heading,
  .service-guide__intro { grid-template-columns: 1fr; gap: 18px; }
  .area-guide__heading .eyebrow,
  .area-guide__heading h2,
  .area-guide__heading > p:last-child,
  .service-guide__intro .eyebrow,
  .service-guide__intro h2,
  .service-guide__intro > p:last-child { grid-column: 1; grid-row: auto; }
  .area-guide__grid,
  .service-guide__points { grid-template-columns: 1fr; }
  .service-guide { padding-bottom: 78px; }
}

@media (max-width: 520px) {
  .area-hub__cards a { padding: 25px 22px; }
}
