:root {
  --navy: #061a35;
  --navy-light: #0a2f5d;
  --blue: #0757b9;
  --blue-bright: #1680ef;
  --sky: #6bb6ff;
  --white: #fff;
  --ink: #12243a;
  --line: #dce6f1;
  --content-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

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

.topbar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}

.topbar span,
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

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

.topbar a:hover {
  color: var(--sky);
}

.topbar .fa-solid {
  width: 1rem;
  color: var(--sky);
  text-align: center;
}

.topbar__address {
  display: none !important;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(6, 26, 53, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  text-decoration: none;
}

.brand__logo {
  width: clamp(8.5rem, 42vw, 11rem);
  height: auto;
}

.menu-toggle {
  position: relative;
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid #d7e5f5;
  border-radius: 12px;
  color: var(--blue);
  background: #f4f8fe;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

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

.menu-toggle .fa-solid {
  position: absolute;
  font-size: 1.25rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle__close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.main-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 0.75rem 1rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 22px 36px rgba(6, 26, 53, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.main-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav a {
  padding: 0.8rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-bright);
}

.header__cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 64% center;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(3, 15, 31, 0.98) 0%, rgba(5, 28, 55, 0.9) 48%, rgba(5, 28, 55, 0.28) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 610px;
  padding-block: 4rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  background: var(--sky);
  content: "";
}

.hero h1 {
  max-width: 16ch;
  margin: 0 0 1.5rem;
  font-size: clamp(2.25rem, 10vw, 5.3rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--sky);
}

.hero__lead {
  max-width: 40rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.button,
.header__cta {
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button {
  display: inline-flex;
}

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

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

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

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.service-strip {
  color: var(--white);
  background: var(--blue);
}

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

.service-strip__grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 102px;
  padding: 0.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.service-strip__grid > div:nth-child(2n) {
  border-right: 0;
}

.service-strip strong {
  font-size: 1.05rem;
}

.service-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services {
  padding-block: 3.75rem;
  background: #f3f6fa;
}

.services__heading {
  max-width: 47rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  color: var(--blue);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label::before {
  width: 1.5rem;
  height: 2px;
  background: var(--blue);
  content: "";
}

.services h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.services__heading > p:last-child {
  margin: 0;
  color: #647487;
}

.services__grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-top: 4px solid transparent;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(6, 26, 53, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 22px 50px rgba(6, 26, 53, 0.14);
  transform: translateY(-5px);
}

.service-card__content {
  display: flex;
  min-height: 225px;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.25rem;
}

.service-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-card--featured h3 {
  color: var(--blue);
}

.service-card p {
  margin: 0 0 1rem;
  color: #667486;
  font-size: 0.94rem;
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  align-self: flex-start;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.service-card a span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #e8f2ff;
  transition: color 180ms ease, background 180ms ease;
}

.service-card a:hover span {
  color: var(--white);
  background: var(--blue);
}

.service-card__image {
  position: relative;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  object-position: 68% center;
  transition: transform 350ms ease;
}

.service-card:nth-child(2) .service-card__image img {
  object-position: 54% center;
}

.service-card__image--maintenance img {
  object-position: 83% center;
}

.service-card:hover .service-card__image img {
  transform: scale(1.035);
}

.service-card__icon {
  position: absolute;
  top: 0;
  right: 1rem;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-size: 1.65rem;
}

.service-card a span .fa-solid {
  font-size: 0.72rem;
}

.service-options {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  background: #f7f5f1;
}

.service-options::before {
  position: absolute;
  top: -8rem;
  right: -5rem;
  width: 31rem;
  height: 22rem;
  border: 5rem solid rgba(7, 87, 185, 0.035);
  transform: rotate(-22deg);
  content: "";
}

.service-options__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.service-options__intro h2 {
  max-width: 13ch;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 7vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.service-options__intro > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: #657487;
}

.company-contact {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  padding: 1.25rem;
  color: var(--white);
  background: var(--navy);
  font-style: normal;
  text-decoration: none;
}

.company-contact__item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.company-contact__item > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-size: 1rem;
}

.company-contact__item:nth-child(2) > span {
  background: #1fa855;
}

.company-contact__item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.company-contact__item small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.company-contact__item strong {
  overflow-wrap: anywhere;
  font-size: 0.88rem;
}

a.company-contact__item:hover strong {
  color: var(--sky);
}

.option-cards {
  display: grid;
  gap: 1rem;
}

.option-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.5rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 26, 53, 0.11);
}

.option-card--dark {
  color: var(--white);
  background: #142b46;
}

.option-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(105deg, var(--blue) 0 48%, var(--navy) 48% 52%, transparent 52%);
}

.option-card--dark .option-card__accent {
  background: linear-gradient(105deg, var(--blue-bright) 0 48%, #071729 48% 52%, transparent 52%);
}

.option-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.option-card__icon {
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 1.3rem;
}

.option-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.option-card__header p {
  margin: 0;
  color: #7b8998;
  font-size: 0.8rem;
}

.option-card--dark .option-card__header p {
  color: rgba(255, 255, 255, 0.58);
}

.option-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.option-card li {
  display: grid;
  grid-template-columns: 0.9rem 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px dotted #ccd6e0;
  color: #5f6e7e;
  font-size: 0.84rem;
}

.option-card--dark li {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.72);
}

.option-card li i {
  color: var(--blue-bright);
  font-size: 0.64rem;
}

.option-card__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-top: auto;
}

.option-card__footer p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.option-card__footer strong {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.option-card__footer span {
  color: #7b8998;
  font-size: 0.76rem;
}

.option-card--dark .option-card__footer span {
  color: rgba(255, 255, 255, 0.56);
}

.option-card__footer a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.option-card__footer a:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.option-card--dark .option-card__footer a {
  border-color: var(--blue-bright);
}

.work-process {
  padding-block: 4rem;
  background: #f3f6fa;
}

.work-process__heading {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.work-process__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.work-process__steps {
  display: grid;
  gap: 1.25rem;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-width: 0;
  padding: 1rem;
  background: var(--white);
}

.process-step__circle {
  position: relative;
  display: grid;
  width: 5.6rem;
  height: 5.6rem;
  place-items: center;
  border: 1px solid #d9e2eb;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  box-shadow: inset 0 0 0 0.55rem #f6f8fb;
  font-size: 1.65rem;
}

.process-step__circle span {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border: 3px solid #f3f6fa;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.62rem;
  font-weight: 900;
}

.process-step__copy h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.process-step__copy p {
  margin: 0;
  color: #657487;
  font-size: 0.84rem;
  line-height: 1.5;
}

.process-step__arrow {
  display: none;
}

.emergency-service {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(22, 128, 239, 0.3), transparent 38%),
    var(--navy);
}

.emergency-service::before {
  position: absolute;
  top: -8rem;
  left: -7rem;
  width: 20rem;
  height: 20rem;
  border: 3.5rem solid rgba(107, 182, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.emergency-service__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.emergency-service__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.emergency-service__content h2 {
  max-width: 12ch;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 9vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.emergency-service__lead {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.emergency-service__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.emergency-service__button {
  display: flex;
  min-width: 0;
  min-height: 4.4rem;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.emergency-service__button:hover,
.emergency-service__button:focus-visible {
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.emergency-service__button > i {
  display: grid;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 1.1rem;
}

.emergency-service__button--whatsapp > i {
  color: var(--white);
  background: #1fa855;
  font-size: 1.4rem;
}

.emergency-service__button span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.emergency-service__button small {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
}

.emergency-service__button strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.emergency-service__card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-top: 4px solid var(--blue-bright);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.emergency-service__card-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 1.35rem;
}

.emergency-service__card-label {
  margin: 0 0 0.35rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.emergency-service__card h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.emergency-service__card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.emergency-service__card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #4e6074;
  font-size: 0.9rem;
}

.emergency-service__card li i {
  margin-top: 0.3rem;
  color: var(--blue-bright);
  font-size: 0.72rem;
}

.emergency-service__card li a {
  color: inherit;
  font-weight: 750;
  text-decoration-color: rgba(20, 93, 160, 0.35);
  text-underline-offset: 0.18em;
}

.emergency-service__card li a:hover,
.emergency-service__card li a:focus-visible {
  color: var(--blue);
}

.emergency-service__note {
  display: flex;
  gap: 0.65rem;
  margin: 0;
  padding: 0.85rem;
  color: #294460;
  background: #edf6ff;
  font-size: 0.8rem;
  line-height: 1.45;
}

.emergency-service__note i {
  margin-top: 0.25rem;
  color: var(--blue);
}

.contact-request {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  background: #eef4fb;
}

.contact-request::before {
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(7, 87, 185, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(7, 87, 185, 0.035), 0 0 0 7rem rgba(7, 87, 185, 0.025);
  content: "";
}

.contact-request .container {
  position: relative;
  z-index: 1;
}

.contact-request__heading {
  max-width: 47rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.contact-request__heading h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 8vw, 3.35rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.contact-request__heading > p:last-child {
  margin: 0;
  color: #5e7085;
}

.contact-request__shell {
  max-width: 62rem;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #d9e5f2;
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 24px 65px rgba(6, 26, 53, 0.11);
}

.contact-request__banner {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1.2rem;
  color: var(--white);
  background: linear-gradient(115deg, var(--navy), var(--blue));
}

.contact-request__banner-icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.25rem;
}

.contact-request__banner div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.35;
}

.contact-request__banner strong {
  margin-bottom: 0.2rem;
  font-size: 0.96rem;
}

.contact-request__banner div span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.contact-request__step {
  display: none;
}

.contact-form {
  position: relative;
  padding: 1.2rem;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form__grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.form-field > span:first-child {
  color: #263b52;
  font-size: 0.8rem;
  font-weight: 800;
}

.form-field > span b {
  color: var(--blue);
}

.form-field > span small {
  color: #77899c;
  font-weight: 600;
}

.form-control {
  display: flex;
  min-width: 0;
  min-height: 3.2rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid #ccdbea;
  border-radius: 0.6rem;
  background: #fbfdff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-control:focus-within {
  border-color: var(--blue-bright);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 128, 239, 0.12);
}

.form-control > i {
  width: 2.9rem;
  min-width: 2.9rem;
  color: #6d87a2;
  text-align: center;
  font-size: 0.86rem;
}

.form-control input,
.form-control select,
.form-control textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
}

.form-control input,
.form-control select {
  height: 3.1rem;
  padding: 0 0.8rem 0 0;
}

.form-control--select select {
  cursor: pointer;
}

.form-control--textarea {
  min-height: 8.5rem;
  align-items: stretch;
}

.form-control textarea {
  min-height: 8.5rem;
  padding: 0.9rem;
  resize: vertical;
  line-height: 1.5;
}

.contact-form__upload-control {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  min-height: 5.4rem;
  padding: 0.8rem;
  overflow: hidden;
  border: 1px dashed #9ebbd8;
  border-radius: 0.7rem;
  color: var(--ink);
  background: #f6faff;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-form__upload-control:hover,
.contact-form__upload-control:focus-within {
  border-color: var(--blue);
  background: #edf6ff;
  box-shadow: 0 0 0 3px rgba(22, 128, 239, 0.1);
}

.contact-form__upload-control > i {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.65rem;
  color: var(--white);
  background: var(--blue);
  font-size: 1.15rem;
}

.contact-form__upload-control > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.35;
}

.contact-form__upload-control strong {
  font-size: 0.85rem;
}

.contact-form__upload-control small {
  color: #71859a;
  font-size: 0.7rem;
}

.contact-form__file-name {
  grid-column: 1 / -1;
  overflow: hidden;
  color: #5d7187;
  font-size: 0.72rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form__upload-control input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.contact-form__footer {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-form__photo-hint {
  display: flex;
  gap: 0.8rem;
  padding: 0.9rem;
  border-left: 3px solid var(--blue-bright);
  background: #edf6ff;
}

.contact-form__photo-hint > i {
  margin-top: 0.25rem;
  color: var(--blue);
}

.contact-form__photo-hint div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.contact-form__photo-hint strong {
  margin-bottom: 0.15rem;
  font-size: 0.8rem;
}

.contact-form__photo-hint span {
  color: #5e7085;
  font-size: 0.73rem;
}

.contact-form__consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #5e7085;
  font-size: 0.74rem;
  line-height: 1.45;
}

.contact-form__consent input {
  width: 1.05rem;
  min-width: 1.05rem;
  height: 1.05rem;
  margin: 0.12rem 0 0;
  accent-color: var(--blue);
}

.contact-form__submit {
  display: flex;
  width: 100%;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 0.65rem;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(7, 87, 185, 0.22);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 850;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #064b9f;
  box-shadow: 0 15px 34px rgba(7, 87, 185, 0.28);
  transform: translateY(-2px);
}

.contact-form__submit .fa-arrow-right {
  margin-left: auto;
}

.contact-form__status {
  min-height: 1.1rem;
  margin: -0.25rem 0 0;
  color: #315f91;
  font-size: 0.74rem;
  text-align: center;
}

.contact-form__status.is-error {
  color: #a72525;
  font-weight: 700;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

body.form-success-open {
  overflow: hidden;
}

.form-success-modal[hidden] {
  display: none !important;
}

.form-success-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  padding: 1rem;
  place-items: center;
}

.form-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 53, 0.72);
  backdrop-filter: blur(3px);
}

.form-success-modal__dialog {
  position: relative;
  width: min(34rem, 100%);
  padding: clamp(2rem, 6vw, 3.25rem);
  overflow: hidden;
  color: #53687a;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 24px 70px rgba(0, 14, 35, 0.34);
  text-align: center;
}

.form-success-modal__dialog::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.35rem;
  background: #0757b9;
  content: "";
}

.form-success-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  color: #4f6577;
  background: #edf3f7;
  font-size: 1.05rem;
  place-items: center;
  cursor: pointer;
}

.form-success-modal__close:hover,
.form-success-modal__close:focus-visible {
  color: #fff;
  background: #0757b9;
}

.form-success-modal__icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  color: #fff;
  background: #138a48;
  border-radius: 50%;
  font-size: 1.5rem;
  place-items: center;
}

.form-success-modal__eyebrow {
  margin: 0 0 0.45rem;
  color: #0757b9;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-success-modal h2 {
  margin: 0;
  color: #0b2d50;
  font-size: clamp(1.75rem, 6vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.form-success-modal__dialog > p:not(.form-success-modal__eyebrow) {
  max-width: 28rem;
  margin: 1rem auto 0;
  line-height: 1.65;
}

.form-success-modal__button {
  min-height: 3.2rem;
  margin-top: 1.6rem;
  padding: 0.75rem 1.4rem;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: #0757b9;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
}

.form-success-modal__button:hover,
.form-success-modal__button:focus-visible {
  background: #0b2d50;
}

@media (max-width: 560px) {
  .form-success-modal {
    padding: 0.75rem;
  }

  .form-success-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 1.5rem);
    padding: 2.25rem 1.25rem 1.5rem;
    overflow-y: auto;
  }

  .form-success-modal__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
  }

  .form-success-modal__button {
    width: 100%;
  }
}

.contact-request__quick-links {
  display: grid;
  gap: 0.75rem;
  max-width: 62rem;
  margin-top: 1.25rem;
  margin-inline: auto;
}

.contact-request__quick-links > * {
  display: flex;
  min-width: 0;
  min-height: 4.4rem;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid #d9e5f2;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.contact-request__quick-links > * > i {
  display: grid;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.9rem;
}

.contact-request__quick-links span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.35;
}

.contact-request__quick-links small {
  color: #74869a;
  font-size: 0.68rem;
}

.contact-request__quick-links strong {
  overflow-wrap: anywhere;
  font-size: 0.8rem;
}

.company-faq {
  padding-block: 4rem;
  background: var(--white);
}

.company-faq__layout {
  display: grid;
  gap: 1.5rem;
}

.company-faq__intro {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(107, 182, 255, 0.24), transparent 16rem),
    var(--navy);
}

.company-faq__intro::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border: 2.2rem solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.company-faq__intro .section-label {
  color: var(--sky);
}

.company-faq__intro .section-label::before {
  background: var(--sky);
}

.company-faq__intro h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 8vw, 3.25rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.company-faq__intro > p:last-of-type {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.company-faq__facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.company-faq__facts > span {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0 0.7rem;
  align-items: center;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.company-faq__facts i {
  grid-row: 1 / span 2;
  color: var(--sky);
  font-size: 1.05rem;
  text-align: center;
}

.company-faq__facts small,
.company-faq__facts strong {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.3;
}

.company-faq__facts small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.company-faq__facts strong {
  color: var(--white);
  font-size: 0.78rem;
}

.company-faq__list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #dbe6f1;
  border-radius: 0.75rem;
  background: #fbfdff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.faq-item[open] {
  border-color: #a9c9e9;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 26, 53, 0.07);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) 1rem;
  gap: 0.7rem;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary:focus-visible {
  outline: 3px solid rgba(22, 128, 239, 0.24);
  outline-offset: -3px;
}

.faq-item__icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 0.55rem;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 0.85rem;
}

.faq-item__chevron {
  color: #7890a8;
  font-size: 0.7rem;
  transition: color 180ms ease, transform 180ms ease;
}

.faq-item[open] .faq-item__chevron {
  color: var(--blue);
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 1rem 1.1rem 4.1rem;
}

.faq-item__answer p {
  margin: 0;
  color: #5d7085;
  font-size: 0.86rem;
  line-height: 1.65;
}

.faq-item__answer a {
  color: var(--blue);
  font-weight: 700;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(107, 182, 255, 0.2), transparent 21rem),
    linear-gradient(125deg, var(--navy), var(--navy-light));
}

.legal-hero::after {
  position: absolute;
  right: -5rem;
  bottom: -10rem;
  width: 22rem;
  height: 22rem;
  border: 4rem solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
}

.legal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.legal-breadcrumb a {
  color: var(--sky);
  text-decoration: none;
}

.legal-breadcrumb a:hover,
.legal-breadcrumb a:focus-visible {
  color: var(--white);
}

.legal-breadcrumb i {
  font-size: 0.55rem;
}

.legal-hero .eyebrow {
  margin-bottom: 0.65rem;
}

.legal-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.5rem, 13vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-hero__inner > p:last-child {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.legal-page {
  padding-block: 3.5rem;
  background: #eef4fb;
}

.legal-page__layout {
  display: grid;
  gap: 1.5rem;
  max-width: 58rem;
  margin-inline: auto;
}

.legal-card {
  overflow: hidden;
  border: 1px solid #d9e5f2;
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(6, 26, 53, 0.09);
}

.legal-card__heading {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1.3rem;
  color: var(--white);
  background: linear-gradient(115deg, var(--blue), var(--blue-bright));
}

.legal-card__heading > span {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.3rem;
}

.legal-card__heading p {
  margin: 0 0 0.15rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-card__heading h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-block {
  padding: 1.35rem;
  border-bottom: 1px solid #e3ebf4;
}

.legal-block:last-child {
  border-bottom: 0;
}

.legal-block h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.legal-block p,
.legal-block address {
  margin: 0;
  color: #53677c;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
}

.legal-block p + p {
  margin-top: 0.85rem;
}

.legal-block--tax {
  background: #f7fbff;
}

.legal-block--tax strong {
  color: var(--blue);
}

.legal-contact-list {
  display: grid;
  gap: 0.8rem;
}

.legal-contact-list > div {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.legal-contact-list > div > span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.8rem;
}

.legal-contact-list p {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.4;
}

.legal-contact-list small {
  color: #71859a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.protected-contact {
  min-width: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.protected-contact:hover,
.protected-contact:focus-visible {
  color: var(--blue);
}

.legal-noscript {
  margin-top: 1rem !important;
  padding: 0.8rem;
  background: #edf6ff;
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--sky));
  content: "";
}

.site-footer__main {
  padding-block: 3.5rem 3rem;
  background:
    radial-gradient(circle at 0 100%, rgba(22, 128, 239, 0.13), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 45%);
}

.site-footer__grid {
  display: grid;
  gap: 2.25rem;
}

.footer-brand > a:first-child {
  display: inline-flex;
}

.footer-brand img {
  width: 10.5rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 29rem;
  margin: 1.1rem 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-brand__whatsapp {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.5rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-brand__whatsapp i {
  color: #55d98a;
  font-size: 1.15rem;
}

.footer-brand__whatsapp:hover,
.footer-brand__whatsapp:focus-visible {
  border-color: #55d98a;
  background: rgba(31, 168, 85, 0.12);
  transform: translateY(-2px);
}

.footer-column {
  min-width: 0;
}

.footer-column h2 {
  position: relative;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.footer-column h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.25rem;
  height: 2px;
  background: var(--blue-bright);
  content: "";
}

.footer-column ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li,
.footer-column li a {
  min-width: 0;
}

.footer-column li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column li a i {
  color: var(--blue-bright);
  font-size: 0.65rem;
}

.footer-column li a:hover,
.footer-column li a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact address {
  display: grid;
  gap: 0.9rem;
  font-style: normal;
}

.footer-contact address > * {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-contact address > * > i {
  display: grid;
  width: 2.2rem;
  min-width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid rgba(107, 182, 255, 0.22);
  border-radius: 50%;
  color: var(--sky);
  background: rgba(22, 128, 239, 0.08);
  font-size: 0.78rem;
}

.footer-contact address span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow-wrap: anywhere;
}

.footer-contact address small {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-contact address a:hover,
.footer-contact address a:focus-visible {
  color: var(--white);
}

.site-footer__bottom {
  padding-block: 1.35rem 5.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #031226;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

.footer-credit {
  display: block;
  margin-top: 0.35rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-decoration: none;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--sky);
}

.whatsapp-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
  overflow: hidden;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: #1fa855;
  box-shadow: 0 14px 38px rgba(6, 26, 53, 0.3);
  text-decoration: none;
  transition: width 240ms ease, background 180ms ease, transform 180ms ease;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  background: #168f47;
  transform: translateY(-3px);
}

.whatsapp-widget__icon {
  display: grid;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  place-items: center;
}

.whatsapp-widget__icon .fa-whatsapp {
  font-size: 2.35rem;
}

.whatsapp-widget__copy,
.whatsapp-widget__arrow {
  display: none;
}

.whatsapp-widget.is-active {
  animation: whatsapp-nudge 1.25s ease-in-out;
}

.whatsapp-widget.is-missing-number {
  width: min(20rem, calc(100vw - 2rem));
  border-radius: 1rem;
}

.whatsapp-widget.is-missing-number .whatsapp-widget__copy {
  display: flex;
  min-width: 0;
  padding-right: 1rem;
}

.whatsapp-widget.is-missing-number small,
.whatsapp-widget.is-missing-number strong {
  display: none;
}

.whatsapp-widget em {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

@keyframes whatsapp-nudge {
  0%, 100% { transform: translateX(0) scale(1); }
  18% { transform: translateX(-9px) rotate(-2deg); }
  34% { transform: translateX(4px) rotate(2deg); }
  50% { transform: translateX(-6px) rotate(-1deg); }
  68% { transform: translateX(2px) rotate(1deg); }
  84% { transform: translateX(0) scale(1.06); }
}

@media (max-width: 559px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--content-width));
  }

  .header__inner {
    min-height: 66px;
    gap: 0.5rem;
  }

  .hero,
  .hero__content {
    min-height: 550px;
  }

  .hero__content {
    padding-block: 3.25rem;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(3, 15, 31, 0.97) 0%, rgba(5, 28, 55, 0.87) 67%, rgba(5, 28, 55, 0.55) 100%);
  }

  .eyebrow {
    gap: 0.55rem;
    margin-bottom: 1rem;
    font-size: 0.67rem;
    letter-spacing: 0.11em;
  }

  .eyebrow::before {
    width: 1.5rem;
  }

  .hero h1 {
    margin-bottom: 1.15rem;
    font-size: clamp(2.15rem, 10vw, 2.65rem);
  }

  .hero__lead {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .button {
    min-height: 48px;
  }

  .service-strip__grid > div {
    min-height: 86px;
    padding: 0.65rem 0.35rem;
  }

  .service-strip strong {
    font-size: 0.9rem;
  }

  .service-strip span {
    font-size: 0.61rem;
  }

  .services,
  .service-options,
  .work-process,
  .emergency-service,
  .contact-request,
  .company-faq {
    padding-block: 3.25rem;
  }

  .services__heading,
  .work-process__heading {
    margin-bottom: 2rem;
  }

  .services h2,
  .service-options__intro h2,
  .work-process__heading h2,
  .emergency-service__content h2,
  .contact-request__heading h2,
  .company-faq__intro h2 {
    font-size: 1.9rem;
  }

  .service-card__content {
    min-height: 0;
    padding: 1.25rem;
  }

  .service-card__image img {
    height: 145px;
  }

  .service-card__icon {
    width: 3.1rem;
    height: 3.1rem;
    font-size: 1.35rem;
  }

  .service-options__layout {
    gap: 1.5rem;
  }

  .company-contact {
    padding: 1rem;
  }

  .option-card {
    padding: 1.25rem;
  }

  .option-card__header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .option-card__icon {
    width: 3rem;
    height: 3rem;
  }

  .option-card li {
    padding-block: 0.58rem;
  }

  .process-step {
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.8rem;
  }

  .process-step__circle {
    width: 4.65rem;
    height: 4.65rem;
    font-size: 1.35rem;
  }

  .process-step__circle span {
    width: 1.7rem;
    height: 1.7rem;
  }
}

@media (max-width: 350px) {
  .brand__logo {
    width: 7.8rem;
  }

  .company-contact__item strong {
    font-size: 0.8rem;
  }
}

@media (min-width: 560px) {
  .hero__actions {
    flex-direction: row;
  }

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

  .service-strip__grid > div,
  .service-strip__grid > div:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .service-strip__grid > div:last-child {
    border-right: 0;
  }

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

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

  .form-field--wide {
    grid-column: 1 / -1;
  }

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

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

@media (min-width: 760px) {
  .container {
    width: min(calc(100% - 3rem), var(--content-width));
  }

  .topbar__inner {
    justify-content: space-between;
  }

  .topbar__address {
    display: inline-flex !important;
  }

  .hero,
  .hero__content {
    min-height: 650px;
  }

  .services {
    padding-block: 5rem;
  }

  .services__heading {
    margin-bottom: 2.75rem;
  }

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

  .service-card__content {
    min-height: 235px;
  }

  .service-card__image img {
    height: 175px;
  }

  .service-options {
    padding-block: 5rem;
  }

  .work-process {
    padding-block: 5rem;
  }

  .emergency-service {
    padding-block: 5rem;
  }

  .contact-request {
    padding-block: 5rem;
  }

  .contact-request__heading {
    margin-bottom: 2.75rem;
  }

  .company-faq {
    padding-block: 5rem;
  }

  .company-faq__intro {
    padding: 2.25rem;
  }

  .faq-item summary {
    grid-template-columns: 3rem minmax(0, 1fr) 1rem;
    min-height: 5rem;
    padding: 0.9rem 1.15rem;
    font-size: 0.96rem;
  }

  .faq-item__icon {
    width: 3rem;
    height: 3rem;
    font-size: 0.95rem;
  }

  .faq-item__answer {
    padding: 0 1.25rem 1.3rem 5.15rem;
  }

  .contact-request__banner {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    padding: 1.4rem 1.75rem;
  }

  .contact-request__banner-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.45rem;
  }

  .contact-request__step {
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-form__footer {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.7fr);
    align-items: start;
  }

  .contact-form__photo-hint,
  .contact-form__consent {
    grid-column: 1;
  }

  .contact-form__submit,
  .contact-form__status {
    grid-column: 2;
  }

  .contact-form__submit {
    grid-row: 1;
  }

  .contact-form__status {
    grid-row: 2 / span 2;
  }

  .site-footer__main {
    padding-block: 4.5rem 4rem;
  }

  .legal-hero {
    padding-block: 4.75rem;
  }

  .legal-page {
    padding-block: 5rem;
  }

  .legal-card__heading {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    padding: 1.6rem 1.8rem;
  }

  .legal-card__heading > span {
    width: 4.25rem;
    height: 4.25rem;
    font-size: 1.55rem;
  }

  .legal-card__heading h2 {
    font-size: 1.55rem;
  }

  .legal-block {
    padding: 1.6rem 1.8rem;
  }

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

  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .site-footer__bottom nav {
    justify-content: flex-end;
  }

  .footer-credit {
    display: inline;
    margin-top: 0;
    margin-left: 0.65rem;
  }

  .footer-credit::before {
    margin-right: 0.65rem;
    content: "•";
  }

  .emergency-service__card {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 1.25rem;
    padding: 2rem;
  }

  .emergency-service__card-icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.65rem;
  }

  .work-process__heading {
    margin-bottom: 3rem;
  }

  .work-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.5rem;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    background: transparent;
    text-align: center;
  }

  .process-step__circle {
    width: 7.25rem;
    height: 7.25rem;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 0 0 0.75rem #fff;
    font-size: 2rem;
  }

  .process-step__circle span {
    top: 0;
    right: 0;
  }

  .whatsapp-widget {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 19.5rem;
    height: auto;
    min-height: 4.5rem;
    border-radius: 1rem;
  }

  .whatsapp-widget__icon {
    width: 4.2rem;
    min-width: 4.2rem;
    height: 4.2rem;
  }

  .whatsapp-widget__copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding-block: 0.7rem;
    line-height: 1.2;
  }

  .whatsapp-widget__copy small {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
  }

  .whatsapp-widget__copy strong {
    font-size: 0.84rem;
  }

  .whatsapp-widget__arrow {
    display: block;
    padding: 0 1rem 0 0.5rem;
    font-size: 1.2rem;
  }

  .whatsapp-widget.is-missing-number {
    width: 19.5rem;
  }
}

/* Lokalne strony dla głównych dzielnic Hanau. */
.service-areas,
.location-answer,
.location-services,
.location-context,
.location-nearby {
  padding-block: 4.5rem;
}

.service-areas {
  background: var(--white);
}

.service-areas__layout,
.location-answer__layout,
.location-context__layout,
.location-nearby__layout {
  display: grid;
  gap: 2.5rem;
}

.service-areas h2,
.location-answer h2,
.location-services h2,
.location-context h2,
.location-nearby h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 6vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-areas__layout > div > p:last-child,
.location-answer__layout > div > p:last-child,
.location-context__layout > div > p:not(.section-label):last-child,
.location-nearby__layout > div > p:last-child {
  color: #5d6f7f;
  line-height: 1.7;
}

.service-areas__links,
.location-nearby__links {
  display: grid;
}

.service-areas__links a,
.location-nearby__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid #ccd5db;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.service-areas__links a:first-child,
.location-nearby__links a:first-child {
  border-top: 1px solid #ccd5db;
}

.service-areas__links i,
.location-nearby__links i {
  color: var(--blue);
}

.home-service-areas {
  background: #eef4f8;
}

.home-service-areas .service-areas__links a {
  min-height: 4.25rem;
  transition: color 180ms ease, padding 180ms ease;
}

.home-service-areas .service-areas__links a:hover,
.home-service-areas .service-areas__links a:focus-visible {
  padding-inline: 0.4rem;
  color: var(--blue);
}

.home-service-areas .service-areas__links span {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.home-service-areas .service-areas__links small {
  color: #7a8c9d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-service-areas__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.home-service-areas__contact:hover,
.home-service-areas__contact:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.network-cities {
  padding-block: 4.5rem;
  color: var(--white);
  background: var(--navy);
}

.network-cities__layout {
  display: grid;
  gap: 2.5rem;
}

.network-cities .section-label {
  color: var(--sky);
}

.network-cities__intro h2 {
  max-width: 13ch;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 7vw, 3.15rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.network-cities__intro > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.network-cities__links {
  display: grid;
}

.network-cities__links a {
  display: flex;
  min-width: 0;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.network-cities__links a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.network-cities__links a:hover,
.network-cities__links a:focus-visible {
  padding-inline: 0.4rem;
  color: var(--sky);
}

.network-cities__links span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
}

.network-cities__links small {
  margin-bottom: 0.18rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.network-cities__links i {
  flex: 0 0 auto;
  color: var(--sky);
}

@media (min-width: 900px) {
  .network-cities {
    padding-block: 6rem;
  }

  .network-cities__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: clamp(4rem, 9vw, 9rem);
  }
}

.location-answer {
  background: var(--white);
}

.location-answer__layout {
  max-width: 64rem;
}

.location-services {
  background: #f1f3f4;
}

.location-services__heading {
  max-width: 45rem;
  margin-bottom: 2.75rem;
}

.location-services__heading > p:last-child {
  color: #5d6f7f;
}

.location-service-links {
  display: grid;
}

.location-service-links article {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem 1rem;
  padding-block: 1.55rem;
}

.location-service-links article + article {
  border-top: 1px solid #cad3da;
}

.location-service-links article > i {
  margin-top: 0.25rem;
  color: var(--blue);
}

.location-service-links h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1.3rem;
}

.location-service-links p {
  margin: 0;
  color: #607284;
  line-height: 1.6;
}

.location-service-links a {
  grid-column: 2;
  justify-self: start;
  margin-top: 0.8rem;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.location-context {
  background: var(--white);
}

.location-context__points {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-context__points li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.7rem;
  color: #5d6f7f;
}

.location-context__points i {
  margin-top: 0.25rem;
  color: var(--blue);
}

.location-context__points strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--ink);
}

.location-nearby {
  background: #f7f5f1;
}

.location-faq-note {
  margin-top: 1rem;
  color: #607284;
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .service-areas__links,
  .location-nearby__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
  }

  .service-areas__links a:nth-child(2),
  .location-nearby__links a:nth-child(2) {
    border-top: 1px solid #ccd5db;
  }

  .location-service-links article {
    grid-template-columns: 2rem 1.8rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    padding-block: 1.9rem;
  }

  .location-service-links article > i {
    grid-column: 2;
  }

  .location-service-links article > div {
    grid-column: 3;
  }

  .location-service-links a {
    grid-column: 4;
    grid-row: 1;
    margin-top: 0;
    white-space: nowrap;
  }
}

@media (min-width: 900px) {
  .service-areas,
  .location-answer,
  .location-services,
  .location-context,
  .location-nearby {
    padding-block: 6rem;
  }

  .service-areas__layout,
  .location-context__layout,
  .location-nearby__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(4rem, 9vw, 9rem);
    align-items: start;
  }
}

@media (min-width: 900px) {
  .service-options {
    background: linear-gradient(to bottom, #f7f5f1 0 53%, var(--navy) 53% 100%);
  }

  .service-options__layout {
    grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 1.22fr);
    align-items: stretch;
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .service-options__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .company-contact {
    margin: 3rem 0 0;
    padding: 1.25rem 0;
    background: transparent;
  }

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

  .option-card {
    min-height: 470px;
  }

  .emergency-service__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .emergency-service__card {
    grid-template-columns: 1fr;
    padding: 2.25rem;
  }

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

  .company-faq__layout {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
  }

  .company-faq__intro {
    position: sticky;
    top: 7.5rem;
  }

  .company-faq__facts {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: minmax(15rem, 1.4fr) minmax(10rem, 0.8fr) minmax(9rem, 0.75fr) minmax(14rem, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

}

@media (min-width: 1020px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header__inner {
    min-height: 92px;
  }

  .brand {
    position: relative;
    align-self: stretch;
    min-width: 255px;
    margin-left: calc((100vw - min(calc(100vw - 3rem), var(--content-width))) / -2);
    padding-right: 2.2rem;
    padding-left: calc((100vw - min(calc(100vw - 3rem), var(--content-width))) / 2);
    color: var(--white);
    background: var(--blue);
  }

  .brand::after {
    position: absolute;
    top: 0;
    right: -28px;
    width: 29px;
    height: 100%;
    background: var(--blue);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    content: "";
  }

  .brand__logo {
    width: 10.5rem;
    filter: brightness(0) invert(1);
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.55vw, 1.7rem);
    margin-left: 2.4rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 0.7rem 0;
    border: 0;
    font-size: 0.78rem;
  }

  .header__cta {
    display: inline-flex;
    min-height: 48px;
    margin-left: auto;
    padding-inline: 1.1rem;
    color: var(--white);
    background: var(--blue);
    font-size: 0.8rem;
  }

  .hero,
  .hero__content {
    min-height: 665px;
  }

  .hero__image {
    object-position: center;
  }

  .hero__lead {
    font-size: 1.12rem;
  }

  .service-strip__grid > div {
    min-height: 120px;
  }

  .service-strip strong {
    font-size: 1.18rem;
  }

  .work-process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .process-step__arrow {
    position: absolute;
    top: 3.15rem;
    right: -1.35rem;
    display: block;
    color: var(--blue-bright);
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .whatsapp-widget.is-active {
    animation: none;
  }
}

/* Leistungen: eigenständige Übersichtsseite */
.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.services-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(107, 182, 255, 0.2), transparent 24rem),
    linear-gradient(135deg, #04162e 0%, var(--navy-light) 100%);
}

.services-page-hero::before {
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(107, 182, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(107, 182, 255, 0.035), 0 0 0 7rem rgba(107, 182, 255, 0.025);
  content: "";
}

.services-page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
}

.services-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
}

.services-breadcrumb a {
  text-decoration: none;
}

.services-breadcrumb a:hover,
.services-breadcrumb a:focus-visible {
  color: var(--sky);
}

.services-breadcrumb i {
  color: var(--sky);
  font-size: 0.65rem;
}

.services-page-hero h1 {
  max-width: 12ch;
  margin: 0 0 1.25rem;
  font-size: clamp(2.3rem, 11vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.services-page-hero__lead {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.services-page-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.services-page-hero__facts {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.services-page-hero__facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.79rem;
}

.services-page-hero__facts li > i {
  display: grid;
  width: 2.35rem;
  min-width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(107, 182, 255, 0.25);
  border-radius: 50%;
  color: var(--sky);
  background: rgba(107, 182, 255, 0.08);
}

.services-page-hero__facts strong {
  display: block;
  color: var(--white);
}

.services-page-hero__visual {
  position: relative;
  margin: 0;
}

.services-page-hero__visual::before {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 45%;
  height: 45%;
  border-top: 4px solid var(--blue-bright);
  border-right: 4px solid var(--blue-bright);
  content: "";
}

.services-page-hero__visual img {
  width: 100%;
  height: clamp(17rem, 72vw, 25rem);
  object-fit: cover;
  object-position: 66% center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.services-page-hero__visual figcaption {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: calc(100% - 1rem);
  margin: -2.25rem 0 0 1rem;
  padding: 1rem;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.76rem;
  line-height: 1.4;
}

.services-page-hero__visual figcaption > i {
  display: grid;
  width: 2.65rem;
  min-width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}

.services-page-hero__visual figcaption strong {
  display: block;
  font-size: 0.82rem;
}

.services-jump {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 26, 53, 0.06);
}

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

.services-jump a {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 0.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.services-jump a:nth-child(2n) {
  border-right: 0;
}

.services-jump a:hover,
.services-jump a:focus-visible {
  color: var(--blue);
  background: #f5f9fe;
}

.services-jump i {
  color: var(--blue-bright);
  font-size: 1rem;
}

.services-directory {
  padding-block: 3.75rem;
  background: #f3f6fa;
}

.services-directory__heading,
.inspection-points__heading {
  max-width: 47rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.services-directory__heading h2,
.inspection-points__heading h2,
.services-cta-band h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.95rem, 8vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.services-directory__heading > p:last-child,
.inspection-points__heading > p:last-child {
  margin: 0;
  color: #647487;
}

.services-directory__grid {
  display: grid;
  gap: 1rem;
}

.directory-card {
  scroll-margin-top: 7.5rem;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid #e2eaf3;
  border-top: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 26, 53, 0.07);
}

.directory-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.directory-card__number {
  color: #a8b5c4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.directory-card__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #edf6ff;
  font-size: 1.35rem;
}

.directory-card__label {
  margin: 0 0 0.35rem !important;
  color: var(--blue) !important;
  font-size: 0.69rem !important;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.directory-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.38rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.directory-card > p {
  margin: 0;
  color: #627286;
  font-size: 0.9rem;
}

.directory-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.directory-card li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #41556c;
  font-size: 0.82rem;
}

.directory-card li i {
  margin-top: 0.35rem;
  color: var(--blue-bright);
  font-size: 0.66rem;
}

.directory-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.55rem;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.directory-card__link:hover,
.directory-card__link:focus-visible {
  color: var(--blue-bright);
}

.directory-card--urgent {
  color: var(--white);
  border-color: var(--navy-light);
  border-top-color: var(--sky);
  background: linear-gradient(145deg, var(--navy-light), var(--navy));
}

.directory-card--urgent .directory-card__number {
  color: rgba(255, 255, 255, 0.45);
}

.directory-card--urgent .directory-card__icon {
  color: var(--white);
  background: var(--blue);
}

.directory-card--urgent .directory-card__label,
.directory-card--urgent .directory-card__link,
.directory-card--urgent li i {
  color: var(--sky) !important;
}

.directory-card--urgent > p,
.directory-card--urgent li {
  color: rgba(255, 255, 255, 0.72);
}

.directory-card__note {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: -0.15rem 0 1rem !important;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(107, 182, 255, 0.2);
  color: rgba(255, 255, 255, 0.64) !important;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem !important;
}

.inspection-points {
  padding-block: 3.75rem;
  background: var(--white);
}

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

.inspection-points__grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #f8fbff;
}

.inspection-points__grid i {
  color: var(--blue);
  font-size: 1.25rem;
}

.inspection-points__grid span {
  color: #6a7a8d;
  font-size: 0.7rem;
  line-height: 1.45;
}

.inspection-points__grid strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-size: 0.82rem;
}

.services-cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 3.75rem;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue) 0%, #063f87 100%);
}

.services-cta-band::after {
  position: absolute;
  top: -6rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border: 3rem solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
}

.services-cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
}

.services-cta-band .eyebrow {
  margin-bottom: 0.8rem;
}

.services-cta-band h2 {
  max-width: 16ch;
}

.services-cta-band p:last-child {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.services-cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

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

.services-cta-band .button--primary:hover {
  color: var(--navy);
  background: #edf6ff;
}

@media (min-width: 560px) {
  .services-page-hero__actions,
  .services-cta-band__actions {
    flex-direction: row;
    align-items: center;
  }

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

  .services-jump__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-jump a,
  .services-jump a:nth-child(2n) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .services-jump a:last-child {
    border-right: 0;
  }

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

@media (min-width: 760px) {
  .services-page-hero,
  .services-directory,
  .inspection-points,
  .services-cta-band {
    padding-block: 5rem;
  }

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

  .directory-card {
    padding: 1.75rem;
  }

  .inspection-points__grid > div {
    flex-direction: row;
    align-items: center;
    padding: 1.15rem;
  }
}

@media (min-width: 900px) {
  .services-page-hero {
    padding-block: 5.5rem;
  }

  .services-page-hero__grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(22rem, 0.97fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 5.5rem);
  }

  .services-page-hero__visual img {
    height: 32rem;
  }

  .services-page-hero__visual figcaption {
    width: calc(100% - 2.5rem);
    margin-left: 2.5rem;
    padding: 1.15rem;
  }

  .services-cta-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
  }

  .services-cta-band__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1020px) {
  .services-document .main-nav a {
    font-size: 0.75rem;
  }
}

/* Kontakt: eigenständige Kontakt- und Anfrageseite */
.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 5%, rgba(107, 182, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, #04162e 0%, var(--navy-light) 100%);
}

.contact-page-hero::after {
  position: absolute;
  bottom: -9rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(107, 182, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(107, 182, 255, 0.03), 0 0 0 6rem rgba(107, 182, 255, 0.02);
  content: "";
}

.contact-page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.contact-page-hero h1 {
  max-width: 12ch;
  margin: 0 0 1.15rem;
  font-size: clamp(2.35rem, 11vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.contact-page-hero__content > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-page-hero__panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact-page-hero__panel-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem;
  color: var(--white);
  background: var(--blue);
}

.contact-page-hero__panel-heading > span {
  display: grid;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
}

.contact-page-hero__panel-heading div,
.contact-page-hero__panel address span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-page-hero__panel-heading small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page-hero__panel-heading strong {
  font-size: 0.95rem;
}

.contact-page-hero__panel address {
  display: grid;
  padding: 0.35rem 1.15rem;
  font-style: normal;
}

.contact-page-hero__panel address > * {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.contact-page-hero__panel address > *:last-child {
  border-bottom: 0;
}

.contact-page-hero__panel address > * > i {
  display: grid;
  width: 2.45rem;
  min-width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #edf6ff;
}

.contact-page-hero__panel address small {
  color: #73869a;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-page-hero__panel address strong {
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-page-hero__panel address a:hover strong,
.contact-page-hero__panel address a:focus-visible strong {
  color: var(--blue);
}

.contact-page-hero__panel > p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.8rem 1.15rem;
  color: #5f7388;
  background: #f5f9fe;
  font-size: 0.72rem;
}

.contact-page-hero__panel > p i {
  color: var(--blue);
}

.contact-path {
  padding-block: 3.5rem;
  background: var(--white);
}

.contact-path h2 {
  max-width: 28rem;
  margin: 0 auto 2rem;
  font-size: clamp(1.8rem, 7vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-align: center;
}

.contact-path__grid {
  display: grid;
  gap: 0.85rem;
}

.contact-path__grid > div {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 0.15rem 0.85rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  background: #f8fbff;
}

.contact-path__grid > div > span {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  color: #b9c7d5;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.contact-path__grid i {
  grid-row: 1 / span 2;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.contact-path__grid strong {
  padding-right: 1.6rem;
  font-size: 0.92rem;
}

.contact-path__grid p {
  margin: 0;
  color: #64778b;
  font-size: 0.77rem;
  line-height: 1.5;
}

.contact-request--page {
  scroll-margin-top: 6rem;
}

.contact-form__consent a {
  color: var(--blue);
  font-weight: 700;
}

@media (min-width: 560px) {
  .contact-path__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-path__grid > div {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 1.25rem;
  }

  .contact-path__grid i {
    grid-row: auto;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 760px) {
  .contact-page-hero,
  .contact-path {
    padding-block: 5rem;
  }

  .contact-page-hero__panel-heading {
    padding: 1.35rem;
  }

  .contact-page-hero__panel address {
    padding-inline: 1.35rem;
  }
}

@media (min-width: 900px) {
  .contact-page-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.7fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .contact-page-hero__panel {
    transform: translateY(1rem);
  }
}

@media (min-width: 1020px) {
  .contact-document .main-nav a {
    font-size: 0.75rem;
  }
}

/* News & Ratgeber */
.news-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(107, 182, 255, 0.18), transparent 23rem),
    linear-gradient(135deg, #04162e 0%, var(--navy-light) 100%);
}

.news-page-hero::after {
  position: absolute;
  top: -9rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(107, 182, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(107, 182, 255, 0.03), 0 0 0 7rem rgba(107, 182, 255, 0.02);
  content: "";
}

.news-page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
}

.news-page-hero h1 {
  max-width: 13ch;
  margin: 0 0 1.2rem;
  font-size: clamp(2.3rem, 10.5vw, 4.65rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.news-page-hero__content > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.news-page-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.news-page-hero__visual {
  position: relative;
  margin: 0;
}

.news-page-hero__visual::before {
  position: absolute;
  top: -0.65rem;
  left: -0.65rem;
  width: 42%;
  height: 42%;
  border-top: 4px solid var(--blue-bright);
  border-left: 4px solid var(--blue-bright);
  content: "";
}

.news-page-hero__visual img {
  width: 100%;
  height: clamp(17rem, 72vw, 24rem);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.news-page-hero__visual figcaption {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: calc(100% - 1rem);
  margin: -2rem 0 0 1rem;
  padding: 1rem;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  line-height: 1.4;
}

.news-page-hero__visual figcaption > i {
  display: grid;
  width: 2.65rem;
  min-width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}

.news-page-hero__visual figcaption span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.news-page-hero__visual figcaption strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.news-topics {
  padding-block: 3.5rem;
  background: var(--white);
}

.news-topics__heading,
.news-guides__heading {
  max-width: 47rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.news-topics__heading h2,
.news-guides__heading h2,
.news-cta h2 {
  margin: 0;
  font-size: clamp(1.95rem, 8vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.news-topics__grid {
  display: grid;
  gap: 0.8rem;
}

.news-topics__grid > a {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr) 1rem;
  gap: 0.8rem;
  align-items: center;
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #f8fbff;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.news-topics__grid > a:hover,
.news-topics__grid > a:focus-visible {
  border-color: #a6caee;
  background: #edf6ff;
  transform: translateY(-2px);
}

.news-topics__grid > a > span {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.news-topics__grid > a > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.news-topics__grid strong {
  font-size: 0.88rem;
}

.news-topics__grid small {
  color: #6d7f92;
  font-size: 0.7rem;
  line-height: 1.45;
}

.news-topics__grid > a > i {
  color: var(--blue);
  font-size: 0.75rem;
}

.news-guides {
  scroll-margin-top: 6rem;
  padding-block: 3.75rem;
  background: #f3f6fa;
}

.news-guides__heading > p:last-child {
  margin: 1rem 0 0;
  color: #647487;
}

.news-guides__list {
  display: grid;
  gap: 1rem;
}

.guide-article {
  scroll-margin-top: 7.5rem;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0e9f2;
  border-top: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(6, 26, 53, 0.065);
}

.guide-article__number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-light), var(--navy));
}

.guide-article__number span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.guide-article__number i {
  color: var(--sky);
  font-size: 1.4rem;
}

.guide-article__content {
  padding: 1.25rem;
}

.guide-article__category {
  margin: 0 0 0.35rem !important;
  color: var(--blue) !important;
  font-size: 0.68rem !important;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-article h3 {
  margin: 0 0 0.9rem;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1.17;
}

.guide-article h4 {
  margin: 1.2rem 0 0.65rem;
  font-size: 0.85rem;
}

.guide-article__content > p:not(.guide-article__category):not(.guide-article__warning) {
  margin: 0;
  color: #5f7185;
  font-size: 0.88rem;
}

.guide-article ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-article li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #40556c;
  font-size: 0.8rem;
}

.guide-article li i {
  margin-top: 0.35rem;
  color: var(--blue-bright);
  font-size: 0.64rem;
}

.guide-article__warning {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 1.15rem 0 !important;
  padding: 0.75rem;
  border-left: 3px solid var(--blue);
  color: #536b83 !important;
  background: #edf6ff;
  font-size: 0.74rem !important;
}

.guide-article__warning i {
  margin-top: 0.2rem;
  color: var(--blue);
}

.guide-article__content > a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.guide-article__content > a:hover,
.guide-article__content > a:focus-visible {
  color: var(--blue-bright);
}

.news-cta {
  padding-block: 3.75rem;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue), #063f87);
}

.news-cta__inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.news-cta__icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.45rem;
}

.news-cta .eyebrow {
  margin-bottom: 0.65rem;
}

.news-cta h2 {
  margin-bottom: 0.75rem;
}

.news-cta p:last-child {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
}

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

.news-cta .button--primary:hover {
  color: var(--navy);
  background: #edf6ff;
}

@media (min-width: 560px) {
  .news-page-hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 760px) {
  .news-page-hero,
  .news-topics,
  .news-guides,
  .news-cta {
    padding-block: 5rem;
  }

  .news-topics__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .news-topics__grid > a {
    grid-template-columns: 3.2rem minmax(0, 1fr);
  }

  .news-topics__grid > a > i {
    display: none;
  }

  .guide-article {
    grid-template-columns: 7rem minmax(0, 1fr);
  }

  .guide-article__number {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }

  .guide-article__number i {
    font-size: 1.85rem;
  }

  .guide-article__content {
    padding: 1.75rem;
  }
}

@media (min-width: 900px) {
  .news-page-hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.88fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 5.5rem);
  }

  .news-page-hero__visual img {
    height: 30rem;
  }

  .news-cta__inner {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    gap: 1.5rem;
  }
}

@media (min-width: 1020px) {
  .news-document .main-nav a {
    font-size: 0.72rem;
  }
}

/*
  Ruhigeres, handwerkliches Erscheinungsbild.
  Weniger Effekte, flachere Flächen und bewusst unterschiedliche Seiteneinstiege.
*/
:root {
  --navy: #0b2743;
  --navy-light: #143b60;
  --blue: #145da0;
  --blue-bright: #287fbd;
  --sky: #9bc6e6;
  --ink: #172b3d;
  --line: #d7dee4;
}

body {
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  border-bottom: 1px solid #d8dee3;
  box-shadow: none;
}

.header__inner {
  min-height: 72px;
}

.brand {
  min-width: 0 !important;
  align-self: center !important;
  margin-left: 0 !important;
  padding: 0 !important;
  color: var(--blue) !important;
  background: transparent !important;
}

.brand::after {
  display: none !important;
}

.brand__logo {
  width: clamp(8.25rem, 36vw, 9.75rem);
  filter: none !important;
}

.header__cta,
.button,
.emergency-service__button,
.contact-form__submit {
  border-radius: 2px;
}

.header__cta {
  background: var(--navy);
}

.button:hover,
.header__cta:hover,
.service-card:hover,
.news-topics__grid > a:hover,
.news-topics__grid > a:focus-visible {
  transform: none;
}

.eyebrow,
.section-label,
.emergency-service__label {
  padding: 0;
  color: var(--blue);
  background: transparent;
  letter-spacing: 0.09em;
}

.eyebrow::before,
.section-label::before {
  width: 1.5rem;
  background: currentColor;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 6.2vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero .eyebrow,
.emergency-service .eyebrow,
.services-cta-band .eyebrow,
.news-cta .eyebrow {
  color: #c6ddeb;
}

.hero h1 span {
  color: #b9d9ef;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(5, 25, 43, 0.96) 0%, rgba(5, 25, 43, 0.84) 45%, rgba(5, 25, 43, 0.16) 100%);
}

.hero__content {
  max-width: 58rem;
}

.service-strip {
  background: #124f85;
}

.services,
.service-options,
.contact-request,
.news-guides,
.services-directory {
  background: #f2f3f3;
}

.services h2,
.service-options__intro h2,
.work-process__heading h2,
.emergency-service__content h2,
.contact-request__heading h2,
.company-faq__intro h2,
.services-directory__heading h2,
.inspection-points__heading h2,
.news-topics__heading h2,
.news-guides__heading h2 {
  font-size: clamp(1.9rem, 4.6vw, 2.75rem);
  font-weight: 750;
  letter-spacing: -0.025em;
}

.services__heading,
.work-process__heading,
.services-directory__heading,
.inspection-points__heading,
.news-topics__heading,
.news-guides__heading {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.services__heading > p:last-child,
.work-process__heading > p:last-child,
.services-directory__heading > p:last-child,
.inspection-points__heading > p:last-child,
.news-guides__heading > p:last-child {
  max-width: 48rem;
}

.contact-request__heading {
  width: min(100%, 62rem);
  max-width: none;
  text-align: left;
}

.service-card {
  border: 1px solid #d7dde2;
  border-radius: 0;
  box-shadow: none;
}

.service-card:hover {
  box-shadow: none;
}

.service-card__content {
  min-height: 0;
}

.service-card__image img,
.service-card:hover .service-card__image img {
  transform: none;
}

.service-card__icon {
  display: none;
}

.service-card a span {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-options::before,
.emergency-service::before,
.contact-request::before,
.company-faq__intro::after,
.services-page-hero::before,
.contact-page-hero::after,
.news-page-hero::after,
.services-cta-band::after {
  display: none;
}

.option-card,
.option-card--dark {
  min-height: 0;
  border: 1px solid #d6dde2;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.option-card__accent,
.option-card--dark .option-card__accent {
  height: 4px;
  background: var(--blue);
  clip-path: none;
}

.option-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0;
  color: var(--blue);
  background: #e9f0f5;
}

.option-card--dark .option-card__header p,
.option-card--dark li,
.option-card--dark .option-card__footer span {
  color: #607284;
}

.option-card--dark .option-card__footer a {
  color: #fff;
  background: var(--navy);
}

.work-process {
  background: #fff;
}

.process-step {
  border: 0;
  border-top: 2px solid #cad4dc;
  border-radius: 0;
  background: transparent;
}

.process-step__circle {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.9rem;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--navy);
  box-shadow: none;
  font-size: 1rem;
}

.process-step__circle span {
  top: -0.65rem;
  right: -0.65rem;
  width: 1.55rem;
  height: 1.55rem;
  border: 2px solid #fff;
  background: var(--blue);
  font-size: 0.55rem;
}

.process-step__arrow {
  display: none !important;
}

.emergency-service {
  background: var(--navy);
}

.emergency-service__card,
.emergency-service__button,
.emergency-service__note {
  border-radius: 0;
  box-shadow: none;
}

.emergency-service__card-icon,
.emergency-service__button > i {
  border-radius: 0;
}

.contact-request__shell {
  border: 1px solid #ccd6de;
  border-top: 4px solid var(--navy);
  border-radius: 0;
  box-shadow: none;
}

.contact-request__banner {
  background: var(--navy);
}

.contact-request__banner-icon,
.form-control,
.contact-form__upload-control,
.contact-request__quick-links > *,
.contact-form__submit {
  border-radius: 2px;
}

.contact-request__quick-links > * {
  background: #fff;
}

.company-faq__intro {
  border-radius: 0;
  background: var(--navy);
  box-shadow: none;
}

.company-faq__facts > span,
.faq-item,
.faq-item[open] {
  border-radius: 0;
  box-shadow: none;
}

.faq-item__icon {
  border-radius: 0;
}

.site-footer__main {
  background: transparent;
}

.footer-brand__whatsapp {
  border-radius: 2px;
}

.whatsapp-widget {
  width: 11.5rem;
  min-height: 3.4rem;
  height: 3.4rem;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(6, 26, 53, 0.22);
}

.whatsapp-widget__icon {
  width: 3.4rem;
  min-width: 3.4rem;
  height: 3.4rem;
}

.whatsapp-widget__icon .fa-whatsapp {
  font-size: 1.8rem;
}

.whatsapp-widget__copy {
  display: flex;
  min-width: 0;
  flex: 1;
  padding: 0.45rem 0.7rem 0.45rem 0;
}

.whatsapp-widget__copy small,
.whatsapp-widget__arrow {
  display: none;
}

.whatsapp-widget__copy strong {
  font-size: 0.72rem;
  line-height: 1.2;
}

/* Unterschiedliche, ruhigere Einstiege für Unterseiten */
.services-page-hero,
.contact-page-hero,
.news-page-hero,
.legal-hero {
  padding-block: 4rem;
  color: var(--ink);
  background: #f4f3ef;
}

.services-page-hero .services-breadcrumb,
.contact-page-hero .services-breadcrumb,
.news-page-hero .services-breadcrumb,
.legal-breadcrumb {
  color: #6f7e89;
}

.services-page-hero .services-breadcrumb i,
.contact-page-hero .services-breadcrumb i,
.news-page-hero .services-breadcrumb i,
.legal-breadcrumb i {
  color: var(--blue);
}

.services-page-hero h1,
.contact-page-hero h1,
.news-page-hero h1,
.legal-hero h1 {
  max-width: 15ch;
  color: var(--ink);
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.services-page-hero__lead,
.contact-page-hero__content > p:not(.eyebrow),
.news-page-hero__content > p:not(.eyebrow),
.legal-hero__inner > p:last-child {
  color: #5d6c78;
}

.services-page-hero .button--secondary,
.contact-page-hero .button--secondary,
.news-page-hero .button--secondary {
  border-color: #9ba8b2;
  color: var(--ink);
}

.services-page-hero .button--secondary:hover,
.contact-page-hero .button--secondary:hover,
.news-page-hero .button--secondary:hover {
  border-color: var(--ink);
  background: transparent;
}

.services-page-hero__facts li {
  color: #637380;
}

.services-page-hero__facts strong {
  color: var(--ink);
}

.services-page-hero__facts li > i {
  border: 0;
  border-radius: 0;
  color: var(--blue);
  background: #e3e9ed;
}

.services-page-hero__visual::before,
.news-page-hero__visual::before {
  display: none;
}

.services-page-hero__visual img,
.news-page-hero__visual img {
  box-shadow: none;
}

.services-page-hero__visual figcaption,
.news-page-hero__visual figcaption {
  position: static;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #ccd5dc;
  box-shadow: none;
}

.services-page-hero__visual figcaption > i,
.news-page-hero__visual figcaption > i {
  border-radius: 0;
  background: var(--navy);
}

.services-jump {
  box-shadow: none;
}

.directory-card,
.directory-card--urgent {
  border: 1px solid #d2dae0;
  border-left: 4px solid var(--blue);
  border-top-width: 1px;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.directory-card--urgent {
  border-left-color: var(--navy);
}

.directory-card--urgent .directory-card__number,
.directory-card--urgent > p,
.directory-card--urgent li,
.directory-card--urgent .directory-card__note {
  color: #617181 !important;
}

.directory-card--urgent .directory-card__label,
.directory-card--urgent .directory-card__link,
.directory-card--urgent li i {
  color: var(--blue) !important;
}

.directory-card__icon,
.directory-card--urgent .directory-card__icon {
  border-radius: 0;
  color: var(--blue);
  background: #e8eef2;
}

.directory-card__note {
  border: 0;
  border-left: 2px solid #9eb2c1;
  background: #f1f3f4;
}

.inspection-points__grid > div {
  border: 0;
  border-top: 2px solid #cbd5dc;
  background: transparent;
}

.services-cta-band,
.news-cta {
  background: var(--blue);
}

.contact-page-hero {
  background: #eef1f2;
}

.contact-page-hero__panel {
  border: 1px solid #bcc8d0;
  box-shadow: none;
}

.contact-page-hero__panel-heading {
  background: var(--navy);
}

.contact-page-hero__panel-heading > span,
.contact-page-hero__panel address > * > i {
  border-radius: 0;
}

.contact-path__grid > div {
  border: 0;
  border-top: 2px solid #c9d3da;
  background: transparent;
}

.contact-path__grid i {
  border-radius: 0;
  background: var(--navy);
}

.news-page-hero {
  background: #f1eee7;
}

.news-topics__grid > a {
  border: 0;
  border-top: 2px solid #cbd3d8;
  background: transparent;
}

.news-topics__grid > a:hover,
.news-topics__grid > a:focus-visible {
  border-color: var(--blue);
  background: transparent;
}

.news-topics__grid > a > span {
  border-radius: 0;
  background: var(--navy);
}

.guide-article {
  border: 1px solid #d2d9de;
  border-left: 4px solid var(--blue);
  border-top-width: 1px;
  border-radius: 0;
  box-shadow: none;
}

.guide-article__number {
  background: #e8ecef;
}

.guide-article__number span {
  color: #687987;
}

.guide-article__number i {
  color: var(--blue);
}

.guide-article__warning {
  background: #eef1f2;
}

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

.legal-card {
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 559px) {
  .whatsapp-widget {
    width: 3.5rem;
    height: 3.5rem;
    min-height: 3.5rem;
    border-radius: 50%;
  }

  .whatsapp-widget__copy {
    display: none;
  }

  .hero,
  .hero__content {
    min-height: 510px;
  }

  .services-page-hero,
  .contact-page-hero,
  .news-page-hero,
  .legal-hero {
    padding-block: 3rem;
  }
}

@media (min-width: 760px) {
  .service-card__content {
    min-height: 210px;
  }

  .service-card__image img {
    height: 165px;
  }

  .process-step {
    padding-inline: 0.5rem;
    text-align: left;
  }
}

@media (min-width: 900px) {
  .services-page-hero__visual img,
  .news-page-hero__visual img {
    height: 27rem;
  }

  .contact-page-hero__panel {
    transform: none;
  }
}

@media (min-width: 1020px) {
  .header__inner {
    min-height: 78px;
  }

  .main-nav {
    gap: clamp(0.65rem, 1.1vw, 1.15rem);
    margin-left: auto;
  }

  .main-nav a,
  .services-document .main-nav a,
  .contact-document .main-nav a,
  .news-document .main-nav a {
    font-size: 0.72rem;
  }

  .header__cta {
    margin-left: 1rem;
    padding-inline: 0.9rem;
  }

  .hero,
  .hero__content {
    min-height: 600px;
  }
}

/* Hero z czytelnym, jasnym polem tekstowym zamiast tekstu na przygaszonej fotografii. */
.hero {
  min-height: 0;
  color: var(--ink);
  background: var(--white);
}

.hero__image {
  position: relative;
  display: block;
  height: 270px;
  object-position: 64% center;
}

.hero__shade {
  display: none;
}

.hero__content {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 2.25rem 1.25rem 2.75rem;
  background: var(--white);
}

.hero .eyebrow {
  color: var(--blue);
}

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

.hero h1 span {
  color: var(--blue);
}

.hero__lead {
  color: var(--muted);
}

.hero .button--secondary {
  color: var(--ink);
  border-color: #aebbc6;
  background: transparent;
}

.hero .button--secondary:hover,
.hero .button--secondary:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

@media (min-width: 560px) {
  .hero__image {
    height: 360px;
  }

  .hero__content {
    width: min(calc(100% - 3rem), var(--content-width));
    margin-inline: auto;
    padding: 3rem 0 3.5rem;
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 620px;
    background: #eef2f5;
  }

  .hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 69% center;
  }

  .hero__shade {
    display: block;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 43%, rgba(255, 255, 255, 0.96) 52%, rgba(255, 255, 255, 0.68) 62%, rgba(255, 255, 255, 0) 76%);
  }

  .hero__content {
    min-height: 620px;
    padding-block: 4rem;
    background: transparent;
  }

  .hero h1,
  .hero__lead {
    max-width: 34rem;
  }
}

/* Czytelny blok kontaktowy na jasnym tle sekcji usług. */
.company-contact {
  gap: 1.2rem;
  margin-top: 2.25rem;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
}

.company-contact__item {
  grid-template-columns: 1.8rem minmax(0, 1fr);
  gap: 0.8rem;
  min-height: 0;
  padding: 0;
  border: 0;
}

.company-contact__item > span,
.company-contact__item:nth-child(2) > span {
  width: 1.8rem;
  height: 1.8rem;
  justify-content: flex-start;
  color: var(--blue);
  border-radius: 0;
  background: transparent;
  font-size: 1.05rem;
}

.company-contact__item:nth-child(2) > span {
  color: #138a48;
}

.company-contact__item small {
  margin-bottom: 0.12rem;
  color: #607284;
  font-weight: 700;
}

.company-contact__item strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

a.company-contact__item:hover strong,
a.company-contact__item:focus-visible strong {
  color: var(--blue);
}

/* Podstrona: Fensterreparatur in Hanau */
.detail-hero {
  padding-block: 3rem;
  background: #f1f3f4;
}

.detail-hero__grid {
  display: grid;
  gap: 2.25rem;
}

.detail-hero__content h1 {
  max-width: 12ch;
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: clamp(2.45rem, 9vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.detail-hero .services-breadcrumb,
.detail-hero .services-breadcrumb a,
.detail-hero .services-breadcrumb span,
.detail-hero .services-breadcrumb i {
  color: #5d7183;
}

.detail-hero .services-breadcrumb a:hover,
.detail-hero .services-breadcrumb a:focus-visible {
  color: var(--blue);
}

.detail-hero__lead {
  max-width: 42rem;
  margin: 0;
  color: #526678;
  font-size: 1.05rem;
  line-height: 1.7;
}

.detail-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.75rem;
}

.detail-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.detail-phone > i {
  color: var(--blue);
}

.detail-phone span {
  display: flex;
  flex-direction: column;
}

.detail-phone small {
  color: #607284;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-hero__image {
  margin: 0;
}

.detail-hero__image img {
  display: block;
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: 64% center;
}

.detail-signals {
  color: var(--white);
  background: var(--navy);
}

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

.detail-signals span {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.detail-signals i {
  color: var(--sky);
  font-size: 1rem;
}

.detail-intro,
.detail-problems,
.detail-scope,
.detail-process,
.detail-faq {
  padding-block: 4.5rem;
}

.detail-intro__grid,
.detail-scope__grid,
.detail-local__grid,
.detail-faq__grid {
  display: grid;
  gap: 2.25rem;
}

.detail-intro h2,
.detail-section-heading h2,
.detail-scope h2,
.detail-local h2,
.detail-faq h2,
.detail-cta h2 {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.detail-intro__grid > div > p:not(.section-label),
.detail-section-heading > p:last-child,
.detail-scope__content > p:last-child,
.detail-faq__intro > p:last-child {
  color: #5d6f7f;
  line-height: 1.75;
}

.detail-intro__aside {
  align-self: start;
  padding: 1.75rem;
  background: #e6eef4;
}

.detail-intro__aside > i {
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: 1.6rem;
}

.detail-intro__aside h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.detail-intro__aside p {
  margin: 0 0 1rem;
  color: #536779;
}

.detail-intro__aside a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.detail-problems {
  background: #f3f4f4;
}

.detail-section-heading {
  max-width: 47rem;
  margin-bottom: 2.75rem;
}

.detail-problems__grid {
  display: grid;
  gap: 2.25rem 2.75rem;
}

.detail-problems article {
  padding-right: 0.5rem;
}

.detail-problems article > i {
  margin-bottom: 1.15rem;
  color: var(--blue);
  font-size: 1.35rem;
}

.detail-problems h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 1.15rem;
}

.detail-problems article p {
  margin: 0;
  color: #607284;
  line-height: 1.65;
}

.detail-scope {
  background: var(--white);
}

.detail-scope__list {
  display: grid;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-scope__list li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.75rem;
  color: #607284;
}

.detail-scope__list i {
  margin-top: 0.25rem;
  color: var(--blue);
}

.detail-scope__list span,
.detail-scope__list strong {
  display: block;
}

.detail-scope__list strong {
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.detail-process {
  background: #eef1f2;
}

.detail-process__list {
  display: grid;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-process__list li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.9rem;
}

.detail-process__list li > span {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.detail-process__list h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 1.12rem;
}

.detail-process__list p {
  margin: 0;
  color: #607284;
  line-height: 1.6;
}

.detail-local {
  padding-block: 4.5rem;
  color: var(--white);
  background: var(--navy);
}

.detail-local .eyebrow,
.detail-local h2 {
  color: var(--white);
}

.detail-local > .container > div > p:last-child {
  max-width: 42rem;
  color: #cfdae3;
}

.detail-local address {
  display: grid;
  gap: 1.25rem;
  font-style: normal;
}

.detail-local address a {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.detail-local address i {
  margin-top: 0.2rem;
  color: var(--sky);
}

.detail-local address span,
.detail-local address small {
  display: block;
}

.detail-local address small {
  margin-bottom: 0.12rem;
  color: #aebdca;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-faq {
  background: #f7f5f1;
}

.detail-faq__items details {
  padding-block: 1.25rem;
  border-bottom: 1px solid #cbd4da;
}

.detail-faq__items details:first-child {
  padding-top: 0;
}

.detail-faq__items summary {
  position: relative;
  padding-right: 2rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.detail-faq__items summary::-webkit-details-marker {
  display: none;
}

.detail-faq__items summary::after {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--blue);
  content: "+";
  font-size: 1.25rem;
}

.detail-faq__items details[open] summary::after {
  content: "−";
}

.detail-faq__items details p {
  margin: 0.85rem 0 0;
  color: #607284;
  line-height: 1.65;
}

.detail-cta {
  padding-block: 4rem;
  color: var(--white);
  background: #0b4f83;
}

.detail-cta .eyebrow,
.detail-cta h2 {
  color: var(--white);
}

.detail-cta p:last-child {
  color: #d5e2eb;
}

.detail-cta__inner,
.detail-cta__inner > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 560px) {
  .detail-hero__actions,
  .detail-cta__inner > div:last-child {
    flex-direction: row;
    align-items: center;
  }

  .detail-signals__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-signals span {
    justify-content: center;
    font-size: 0.82rem;
  }

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

@media (min-width: 900px) {
  .detail-hero {
    padding-block: 4.5rem;
  }

  .detail-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6.5rem);
  }

  .detail-hero__image img {
    height: 34rem;
  }

  .detail-intro,
  .detail-problems,
  .detail-scope,
  .detail-process,
  .detail-faq {
    padding-block: 6.5rem;
  }

  .detail-intro__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: clamp(4rem, 8vw, 8rem);
  }

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

  .detail-scope__grid,
  .detail-local__grid,
  .detail-faq__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(4rem, 9vw, 9rem);
  }

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

  .detail-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .detail-cta__inner > div:first-child {
    max-width: 43rem;
  }
}

/* Leistungen: lista istniejących podstron usługowych. */
.services-directory--pages {
  background: #f2f3f3;
}

.services-directory--pages .services-directory__heading {
  max-width: 43rem;
}

.services-emergency-directory {
  padding-block: 4.75rem;
  color: #fff;
  background: #0b2d50;
}

.services-emergency-directory .services-directory__heading {
  max-width: 52rem;
}

.services-emergency-directory .section-label {
  color: #86c5ff;
}

.services-emergency-directory .services-directory__heading h2 {
  color: #fff;
}

.services-emergency-directory .services-directory__heading > p:last-child {
  color: #d5e1ec;
}

.services-emergency-directory .service-page-entry + .service-page-entry {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.services-emergency-directory .service-page-entry__number {
  color: #9fbed8;
}

.services-emergency-directory .service-page-entry__icon,
.services-emergency-directory .service-page-entry > div p {
  color: #86c5ff;
}

.services-emergency-directory .service-page-entry h3 {
  color: #fff;
}

.services-emergency-directory .service-page-entry > div > span {
  color: #d5e1ec;
}

.services-emergency-directory .service-page-entry > a {
  color: #fff;
}

.services-emergency-directory .service-page-entry > a:hover,
.services-emergency-directory .service-page-entry > a:focus-visible {
  color: #86c5ff;
}

.service-page-list {
  margin-top: 2.75rem;
}

.service-page-entry {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: start;
  padding-block: 1.75rem;
}

.service-page-entry + .service-page-entry {
  border-top: 1px solid #cbd4da;
}

.service-page-entry__number {
  color: #718393;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-page-entry__icon {
  display: none;
  color: var(--blue);
  font-size: 1.25rem;
}

.service-page-entry > div p {
  margin: 0 0 0.35rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page-entry h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: clamp(1.3rem, 5vw, 1.75rem);
  line-height: 1.2;
}

.service-page-entry > div > span {
  display: block;
  color: #5d6f7f;
  line-height: 1.6;
}

.service-page-entry > a {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: start;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.service-page-entry > a:hover,
.service-page-entry > a:focus-visible {
  color: var(--navy);
}

@media (min-width: 560px) {
  .services-document .services-jump__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .services-document .services-jump__inner {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .service-page-list {
    margin-top: 3.5rem;
  }

  .service-page-entry {
    grid-template-columns: 2.5rem 2.25rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    padding-block: 2.2rem;
  }

  .service-page-entry__icon {
    display: block;
  }

  .service-page-entry > a {
    grid-column: 3;
    justify-self: start;
    white-space: nowrap;
  }
}

/*
  Mobile polish: wspólne reguły końcowe dla wszystkich typów stron.
  Celowo znajdują się na końcu pliku, aby starsze warianty mobilne nie
  nadpisywały spójnego układu na małych ekranach.
*/
@media (max-width: 759px) {
  html {
    font-size: 16px;
  }

  body {
    min-width: 0;
    overflow-x: clip;
  }

  img,
  svg,
  video,
  iframe {
    max-width: 100%;
  }

  .container {
    width: calc(100% - 2.25rem);
  }

  .topbar__inner {
    min-height: 34px;
    justify-content: center;
    font-size: 0.78rem;
  }

  .header__inner {
    min-height: 68px;
  }

  .brand__logo {
    width: 8.8rem;
  }

  .menu-toggle {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border-color: #cbd8e2;
    border-radius: 6px;
    background: #f7fafc;
    box-shadow: none;
  }

  .main-nav {
    right: 1rem;
    left: 1rem;
    padding: 0.45rem 1rem 0.8rem;
    border: 1px solid #d4dde4;
    border-top: 3px solid var(--blue);
    box-shadow: 0 14px 30px rgba(11, 39, 67, 0.14);
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0.7rem 0;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header__cta {
    display: none;
  }

  .eyebrow,
  .section-label,
  .emergency-service__label {
    margin-bottom: 0.8rem;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .hero,
  .hero__content {
    min-height: 0;
  }

  .hero__image {
    height: 225px;
  }

  .hero__content {
    padding: 2rem 1.125rem 2.35rem;
  }

  .hero h1 {
    max-width: 15ch;
    margin-bottom: 1rem;
    font-size: clamp(2.05rem, 9.5vw, 2.35rem);
    line-height: 1.04;
  }

  .hero__lead {
    margin-bottom: 1.35rem;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero__actions {
    gap: 0.6rem;
  }

  .hero__actions .button,
  .services-page-hero__actions .button,
  .contact-page-hero .button,
  .news-page-hero__actions .button,
  .detail-hero__actions .button,
  .detail-cta__inner > div:last-child,
  .detail-cta__inner > div:last-child .button,
  .services-cta-band__actions,
  .services-cta-band__actions .button {
    width: 100%;
  }

  .button,
  .contact-form__submit,
  .option-card__footer a {
    min-height: 48px;
  }

  .service-strip__grid > div {
    min-height: 76px;
    padding: 0.55rem 0.35rem;
  }

  .service-strip strong {
    font-size: 0.88rem;
  }

  .service-strip span {
    font-size: 0.58rem;
  }

  .services,
  .service-options,
  .work-process,
  .emergency-service,
  .contact-request,
  .company-faq,
  .services-directory,
  .inspection-points,
  .contact-path,
  .news-topics,
  .news-guides,
  .service-areas,
  .location-answer,
  .location-services,
  .location-context,
  .location-nearby,
  .detail-intro,
  .detail-problems,
  .detail-scope,
  .detail-process,
  .detail-local,
  .detail-faq {
    padding-block: 3.25rem;
  }

  .services h2,
  .service-options__intro h2,
  .work-process__heading h2,
  .emergency-service__content h2,
  .contact-request__heading h2,
  .company-faq__intro h2,
  .services-directory__heading h2,
  .inspection-points__heading h2,
  .news-topics__heading h2,
  .news-guides__heading h2,
  .service-areas h2,
  .location-answer h2,
  .location-services h2,
  .location-context h2,
  .location-nearby h2,
  .detail-section-heading h2,
  .detail-intro h2,
  .detail-scope h2,
  .detail-local h2,
  .detail-faq h2 {
    font-size: clamp(1.75rem, 8vw, 2rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .services__heading,
  .work-process__heading,
  .services-directory__heading,
  .inspection-points__heading,
  .news-topics__heading,
  .news-guides__heading,
  .contact-request__heading {
    margin-bottom: 1.65rem;
  }

  .services__grid {
    gap: 1rem;
  }

  .service-card {
    overflow: hidden;
    border: 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(11, 39, 67, 0.07);
  }

  .service-card__content {
    padding: 1.15rem;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .service-card p {
    line-height: 1.55;
  }

  .service-card__image img {
    height: 170px;
  }

  .service-options__layout,
  .service-areas__layout,
  .location-answer__layout,
  .location-context__layout,
  .location-nearby__layout,
  .detail-faq__grid {
    gap: 2rem;
  }

  .company-contact {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .company-contact__item {
    grid-template-columns: 1.6rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .company-contact__item strong {
    overflow-wrap: anywhere;
    font-size: 0.88rem;
  }

  .option-cards {
    gap: 1rem;
  }

  .option-card,
  .option-card--dark {
    padding: 1.15rem;
    border: 0;
    border-top: 3px solid var(--blue);
    background: #fff;
  }

  .option-card__header {
    align-items: flex-start;
  }

  .option-card__icon {
    width: 2.65rem;
    min-width: 2.65rem;
    height: 2.65rem;
  }

  .option-card h3 {
    font-size: 1.12rem;
  }

  .option-card li {
    padding-block: 0.65rem;
    line-height: 1.45;
  }

  .option-card__footer {
    display: grid;
    gap: 0.85rem;
    align-items: start;
    margin-top: 1.25rem;
  }

  .option-card__footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    padding-inline: 1rem;
  }

  .work-process__steps {
    gap: 0;
  }

  .process-step {
    grid-template-columns: 3.15rem minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1rem 0;
    border-top: 1px solid #cbd5dc;
  }

  .process-step__circle {
    width: 2.8rem;
    height: 2.8rem;
    margin: 0;
    font-size: 0.95rem;
  }

  .process-step__circle span {
    top: -0.5rem;
    right: -0.5rem;
    width: 1.45rem;
    height: 1.45rem;
  }

  .process-step__copy h3 {
    font-size: 1rem;
  }

  .process-step__copy p {
    line-height: 1.45;
  }

  .emergency-service__layout {
    gap: 1.6rem;
  }

  .emergency-service__lead {
    line-height: 1.6;
  }

  .emergency-service__actions {
    gap: 0.65rem;
  }

  .emergency-service__button {
    min-height: 62px;
    padding: 0.7rem;
  }

  .emergency-service__card {
    padding: 1.25rem;
  }

  .emergency-service__card h3 {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .home-service-areas .service-areas__links a,
  .location-nearby__links a {
    min-height: 54px;
    padding-block: 0.75rem;
  }

  .contact-request__shell {
    border-right: 0;
    border-left: 0;
  }

  .contact-request__banner {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.7rem;
    padding: 1rem;
  }

  .contact-request__banner-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form__grid {
    gap: 0.9rem;
  }

  .form-control input,
  .form-control select,
  .form-control textarea {
    font-size: 16px;
  }

  .form-control,
  .form-control input,
  .form-control select {
    min-height: 48px;
  }

  .form-control--textarea,
  .form-control textarea {
    min-height: 7.5rem;
  }

  .contact-form__upload-control {
    min-height: 4.8rem;
  }

  .contact-form__footer {
    gap: 0.85rem;
  }

  .contact-request__quick-links {
    gap: 0.65rem;
  }

  .company-faq__layout {
    gap: 1rem;
  }

  .company-faq__intro {
    padding: 1.35rem;
  }

  .company-faq__facts {
    gap: 0.55rem;
    margin-top: 1.25rem;
  }

  .company-faq__facts > span {
    min-height: 0;
    padding: 0.75rem;
  }

  .faq-item summary {
    min-height: 56px;
    gap: 0.75rem;
    padding: 0.8rem;
    line-height: 1.35;
  }

  .faq-item__icon {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
  }

  .faq-item__answer {
    padding: 0 1rem 1rem 3.8rem;
  }

  .site-footer__main {
    padding-block: 3rem;
  }

  .site-footer__grid {
    gap: 2.25rem;
  }

  .footer-column h2 {
    margin-bottom: 1rem;
  }

  .site-footer__bottom-inner {
    gap: 0.8rem;
    padding-block: 1.2rem;
    text-align: center;
  }

  .site-footer__bottom nav {
    justify-content: center;
  }

  .whatsapp-widget {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 3.25rem;
    min-width: 3.25rem;
    height: 3.25rem;
    min-height: 3.25rem;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(11, 39, 67, 0.22);
  }

  .whatsapp-widget__icon {
    width: 3.25rem;
    min-width: 3.25rem;
    height: 3.25rem;
  }

  .whatsapp-widget__icon .fa-whatsapp {
    font-size: 1.65rem;
  }

  .services-page-hero,
  .contact-page-hero,
  .news-page-hero,
  .legal-hero {
    padding-block: 2.75rem;
  }

  .services-breadcrumb,
  .legal-breadcrumb {
    gap: 0.45rem;
    margin-bottom: 1.3rem;
    font-size: 0.72rem;
  }

  .services-page-hero h1,
  .contact-page-hero h1,
  .news-page-hero h1,
  .legal-hero h1 {
    max-width: 15ch;
    margin-bottom: 1rem;
    font-size: clamp(2.05rem, 9.5vw, 2.35rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .services-page-hero__lead,
  .contact-page-hero__content > p:not(.eyebrow),
  .news-page-hero__content > p:not(.eyebrow),
  .legal-hero__inner > p:last-child {
    margin-bottom: 1.35rem;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .services-page-hero__actions,
  .news-page-hero__actions {
    gap: 0.6rem;
  }

  .services-page-hero__facts {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .services-page-hero__visual img,
  .news-page-hero__visual img {
    height: 220px;
  }

  .services-page-hero__visual figcaption,
  .news-page-hero__visual figcaption {
    padding: 0.9rem;
  }

  .contact-page-hero__grid,
  .news-page-hero__grid,
  .services-page-hero__grid {
    gap: 1.75rem;
  }

  .contact-page-hero__panel-heading {
    padding: 1rem;
  }

  .contact-page-hero__panel address {
    padding-inline: 1rem;
  }

  .contact-page-hero__panel address > * {
    gap: 0.7rem;
    padding-block: 0.78rem;
  }

  .contact-page-hero__panel address > * > i {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
  }

  .contact-path__grid,
  .news-topics__grid {
    gap: 1rem;
  }

  .contact-path__grid > div,
  .news-topics__grid > a {
    padding: 1.15rem 0;
  }

  .guide-article {
    border: 0;
    border-top: 3px solid var(--blue);
  }

  .guide-article__content {
    padding: 1.2rem;
  }

  .news-cta__inner {
    gap: 1rem;
  }

  .legal-card {
    padding: 1.25rem;
  }

  .legal-card h2 {
    font-size: 1.45rem;
    overflow-wrap: anywhere;
  }

  .detail-hero {
    padding-block: 2.4rem;
  }

  .detail-hero__grid {
    gap: 1.7rem;
  }

  .detail-hero__content h1 {
    max-width: 15ch;
    margin-bottom: 1rem;
    font-size: clamp(2.05rem, 9.5vw, 2.35rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .detail-hero__lead {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .detail-hero__actions {
    gap: 0.75rem;
    margin-top: 1.35rem;
  }

  .detail-phone {
    min-height: 46px;
  }

  .detail-hero__image img {
    height: 220px;
  }

  .detail-signals span {
    min-height: 4.25rem;
    padding: 0.7rem 0.35rem;
    font-size: 0.7rem;
  }

  .detail-problems__grid,
  .detail-process__list,
  .location-service-links {
    gap: 0;
  }

  .detail-problems__grid article,
  .location-service-links article,
  .detail-process__list li {
    padding-block: 1.25rem;
  }

  .location-service-links article {
    gap: 0.7rem 0.85rem;
  }

  .location-context__points {
    gap: 1rem;
  }

  .detail-cta {
    padding-block: 3rem;
  }

  .detail-cta__inner {
    gap: 1.4rem;
  }

  .service-page-entry {
    grid-template-columns: 1.6rem minmax(0, 1fr);
    padding-block: 1.35rem;
  }

  .service-page-entry h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 379px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .brand__logo {
    width: 8.15rem;
  }

  .hero__content {
    padding-inline: 0.75rem;
  }

  .hero h1,
  .services-page-hero h1,
  .contact-page-hero h1,
  .news-page-hero h1,
  .legal-hero h1,
  .detail-hero__content h1 {
    font-size: 2rem;
  }

  .button {
    padding-inline: 0.85rem;
  }

  .company-contact__item strong,
  .contact-page-hero__panel address strong {
    font-size: 0.82rem;
  }
}

/* Naprawa kart lokalnych: kolejność elementów w DOM wymaga jawnego układu. */
@media (max-width: 759px) {
  .location-service-links article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.65rem 0.75rem;
  }

  .location-service-links article > span {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .location-service-links article > i {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .location-service-links article > div {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
  }

  .location-service-links article > a {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: 100%;
    margin-top: 0.25rem;
    white-space: normal;
    line-height: 1.4;
  }

  .location-service-links h3,
  .location-service-links p,
  .location-service-links a {
    overflow-wrap: anywhere;
  }
}

/*
  Zakres małego tabletu. Wcześniejsze reguły od 560 px uruchamiały układy
  wielokolumnowe zbyt wcześnie i ściskały treść tak jak na zgłoszonym zrzucie.
*/
@media (min-width: 560px) and (max-width: 759px) {
  .services-document .services-jump__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__actions,
  .services-page-hero__actions,
  .news-page-hero__actions,
  .detail-hero__actions,
  .detail-cta__inner > div:last-child {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button,
  .services-page-hero__actions .button,
  .news-page-hero__actions .button,
  .detail-hero__actions .button,
  .detail-cta__inner > div:last-child .button {
    width: 100%;
  }

  .detail-phone {
    width: 100%;
    padding-top: 0.25rem;
  }

  .service-strip__grid,
  .emergency-service__actions,
  .contact-form__grid,
  .company-faq__facts,
  .site-footer__grid,
  .services-page-hero__facts,
  .services-jump__inner,
  .inspection-points__grid,
  .contact-path__grid,
  .detail-signals__inner,
  .detail-problems__grid,
  .detail-process__list {
    grid-template-columns: 1fr;
  }

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

  .service-strip__grid > div,
  .service-strip__grid > div:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-strip__grid > div:nth-child(2n) {
    border-right: 0;
  }

  .service-strip__grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .services-jump a,
  .services-jump a:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-jump a:last-child {
    border-bottom: 0;
  }

  .contact-path__grid > div {
    grid-template-columns: 3rem minmax(0, 1fr);
    padding: 1rem 0;
  }

  .contact-path__grid i {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
}

/* Rozbudowane, redakcyjne treści lokalne bez wyglądu typowych kart. */
.location-guide {
  padding-block: 4.75rem;
  background: #fff;
}

.location-guide__intro {
  max-width: 52rem;
  margin-bottom: 2.75rem;
}

.location-guide__intro h2 {
  max-width: 19ch;
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.location-guide__intro > p:last-child {
  margin: 0;
  color: #5d6f7f;
  font-size: 1.02rem;
  line-height: 1.75;
}

.location-guide__body {
  display: grid;
  gap: 2.5rem;
}

.location-guide__body article {
  padding-top: 1.5rem;
  border-top: 2px solid #cad5dd;
}

.location-guide__body article:first-child {
  border-top-color: var(--blue);
}

.location-guide__body h3 {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.location-guide__body p {
  margin: 0;
  color: #53687a;
  line-height: 1.75;
}

.location-guide__body p + p {
  margin-top: 1rem;
}

.location-guide__body a {
  color: var(--blue);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.location-guide__body a:hover,
.location-guide__body a:focus-visible {
  color: var(--navy);
}

@media (min-width: 820px) {
  .location-guide {
    padding-block: 6.25rem;
  }

  .location-guide__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 7vw, 6.5rem);
  }
}

@media (max-width: 759px) {
  .location-guide {
    padding-block: 3.25rem;
  }

  .location-guide__intro {
    margin-bottom: 2rem;
  }

  .location-guide__intro h2 {
    font-size: clamp(1.75rem, 8vw, 2rem);
    overflow-wrap: anywhere;
  }

  .location-guide__intro > p:last-child {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .location-guide__body {
    gap: 2rem;
  }

  .location-guide__body article {
    padding-top: 1.25rem;
  }

  .location-guide__body h3 {
    font-size: 1.35rem;
  }

  .location-guide__body p {
    line-height: 1.65;
  }
}

/* Kompakter Kontaktbereich im Hero der Stadtteilseiten. */
.detail-hero__actions {
  flex-wrap: wrap;
  column-gap: 1.4rem;
  row-gap: 0.9rem;
}

.detail-hero__actions .button {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  min-height: 54px;
  padding-inline: 1.35rem;
  white-space: nowrap;
}

.detail-phone {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.detail-phone span {
  white-space: nowrap;
}

@media (max-width: 759px) {
  .detail-hero__actions {
    align-items: stretch;
  }

  .detail-hero__actions .button,
  .detail-phone {
    width: 100%;
  }

  .detail-hero__actions .button {
    white-space: normal;
  }

  .detail-phone {
    min-width: 0;
  }
}

@media (min-width: 900px) and (max-width: 1019px) {
  .detail-hero__grid,
  .service-areas__layout,
  .location-context__layout,
  .location-nearby__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .detail-hero__content h1 {
    max-width: 16ch;
    overflow-wrap: anywhere;
  }

  .detail-hero__image img {
    height: 28rem;
  }

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

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

/* Datenschutz-Einstellungen: links platziert, ohne die WhatsApp-Aktion zu verdecken. */
.privacy-settings[hidden],
.privacy-settings-trigger[hidden],
.privacy-settings [hidden] {
  display: none !important;
}

.privacy-settings-trigger {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: #0b2d50;
  box-shadow: 0 8px 22px rgba(6, 26, 53, 0.24);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.privacy-settings-trigger svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.privacy-settings-trigger:hover,
.privacy-settings-trigger:focus-visible {
  background: #0757b9;
}

.privacy-settings {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: min(29rem, calc(100vw - 2rem));
}

.privacy-settings__dialog {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  color: #23384a;
  background: #fff;
  box-shadow: 0 18px 55px rgba(6, 26, 53, 0.28);
}

.privacy-settings__dialog::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.3rem;
  background: #0757b9;
  content: "";
}

.privacy-settings__eyebrow {
  margin: 0 0 0.5rem;
  color: #0757b9;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-settings h2 {
  max-width: calc(100% - 2rem);
  margin: 0 0 0.8rem;
  color: #0b2d50;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.privacy-settings p {
  margin: 0;
  color: #53687a;
  font-size: 0.92rem;
  line-height: 1.6;
}

.privacy-settings__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  color: #36526b;
  background: #edf3f7;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}

.privacy-settings__close:hover,
.privacy-settings__close:focus-visible {
  color: #fff;
  background: #0757b9;
}

.privacy-settings__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.privacy-settings__button {
  min-height: 2.85rem;
  padding: 0.7rem 0.95rem;
  border: 0;
  border-radius: 2px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.privacy-settings__button--primary {
  color: #fff;
  background: #0757b9;
}

.privacy-settings__button--primary:hover,
.privacy-settings__button--primary:focus-visible {
  background: #0b2d50;
}

.privacy-settings__button--secondary {
  color: #0b2d50;
  background: #eaf1f6;
}

.privacy-settings__button--secondary:hover,
.privacy-settings__button--secondary:focus-visible {
  background: #dce8f0;
}

.privacy-settings__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin-top: 1rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid #dce5eb;
}

.privacy-settings__links a {
  color: #0757b9;
  font-size: 0.78rem;
  font-weight: 750;
  text-underline-offset: 0.16rem;
}

.privacy-settings__details {
  margin: 1rem 0 0;
  background: #f3f7fa;
}

.privacy-settings__details div {
  display: grid;
  grid-template-columns: 6.6rem minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.65rem 0.8rem;
}

.privacy-settings__details div + div {
  border-top: 1px solid #dce5eb;
}

.privacy-settings__details dt,
.privacy-settings__details dd {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.privacy-settings__details dt {
  color: #0b2d50;
  font-weight: 850;
}

.privacy-settings__details dd {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #53687a;
}

.privacy-settings__inactive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  padding: 0.75rem 0.8rem;
  color: #4d6173;
  background: #f3f7fa;
  font-size: 0.78rem;
}

.privacy-settings__inactive strong {
  color: #0b2d50;
}

@media (max-width: 560px) {
  .privacy-settings {
    right: auto;
    bottom: 0.65rem;
    left: 0.65rem;
    width: calc(100vw - 1.3rem);
    max-width: calc(100vw - 1.3rem);
    min-width: 0;
  }

  .privacy-settings__dialog {
    max-height: calc(100dvh - 1.3rem);
    overflow-y: auto;
    padding: 1.35rem;
  }

  .privacy-settings__actions {
    display: grid;
  }

  .privacy-settings__button {
    width: 100%;
  }

  .privacy-settings h2,
  .privacy-settings p,
  .privacy-settings__button {
    overflow-wrap: anywhere;
  }

  .privacy-settings__details div {
    grid-template-columns: 5.4rem minmax(0, 1fr);
  }

  .privacy-settings-trigger {
    left: 0.75rem;
    bottom: 0.75rem;
    width: 3.25rem;
    min-width: 3.25rem;
    height: 3.25rem;
    min-height: 3.25rem;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .privacy-settings-trigger span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-settings-trigger {
    transition: none;
  }
}
