.notdienst-call {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.15rem;
  padding: 0.8rem 1rem 0.8rem 0.85rem;
  border: none;
  border-radius: 0.65rem;
  background: linear-gradient(90deg, #fff 0 18%, #2dc0e4 18% 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -3px 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.notdienst-call:hover {
  border-color: transparent;
  background: linear-gradient(90deg, #fff 0 18%, #2dc0e4 18% 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -3px 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  transform: none;
}

.notdienst-call:focus-visible {
  outline: 3px solid rgba(45, 192, 228, 0.55);
  outline-offset: 3px;
}

.notdienst-call__icon {
  display: block;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
}

.notdienst-call__text {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

.notdienst-call__hours {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.82;
}

.notdienst-call__service {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.notdienst-call__action {
  display: block;
  margin-top: 0.14rem;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.94;
}

.notdienst-call__phone {
  margin-left: 0.28rem;
  font-weight: 700;
}

/* Dedicated locksmith service section on the homepage */
.schluesseldienst-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.75rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(45, 192, 228, 0.16), transparent 28rem),
    linear-gradient(125deg, #171c20 0%, #242b30 54%, #182126 100%);
  color: #fff;
}

.schluesseldienst-section::before {
  position: absolute;
  top: -10rem;
  right: 12%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(45, 192, 228, 0.14);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.schluesseldienst-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.82fr);
  align-items: center;
  gap: clamp(2.75rem, 7vw, 7.5rem);
}

.schluesseldienst-copy {
  max-width: 38rem;
}

.schluesseldienst-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.6rem;
  color: #71dcf3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.schluesseldienst-kicker-line {
  display: block;
  width: 2.75rem;
  height: 1px;
  background: #2dc0e4;
}

.schluesseldienst-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.schluesseldienst-copy h2 span {
  color: #2dc0e4;
}

.schluesseldienst-lead {
  max-width: 31rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.schluesseldienst-points {
  display: grid;
  gap: 0.7rem;
  margin: 2rem 0 2.25rem;
}

.schluesseldienst-point {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
}

.schluesseldienst-point-icon {
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 1px solid rgba(45, 192, 228, 0.8);
  border-radius: 50%;
  color: #71dcf3;
  font-size: 0.75rem;
  font-weight: 700;
}

.schluesseldienst-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 16rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(113, 220, 243, 0.55);
  border-radius: 0.45rem;
  background: #2dc0e4;
  box-shadow: 0 0.65rem 1.75rem rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.schluesseldienst-cta:hover {
  background: #22afd2;
  box-shadow: 0 0.85rem 2rem rgba(45, 192, 228, 0.24);
  color: #fff;
  transform: translateY(-2px);
}

.schluesseldienst-cta:focus-visible {
  outline: 3px solid rgba(113, 220, 243, 0.65);
  outline-offset: 3px;
}

.schluesseldienst-cta-icon {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.schluesseldienst-cta-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.schluesseldienst-cta-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.15rem;
}

.schluesseldienst-cta-copy strong {
  font-size: 0.85rem;
}

.schluesseldienst-cta-copy small {
  font-size: 0.78rem;
  opacity: 0.88;
}

.schluesseldienst-cta-arrow {
  font-size: 1.35rem;
  line-height: 1;
}

.schluesseldienst-visual {
  position: relative;
  min-height: clamp(24rem, 43vw, 35rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f1518;
  box-shadow: 1.25rem 1.25rem 0 rgba(45, 192, 228, 0.1);
}

.schluesseldienst-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.schluesseldienst-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 21, 24, 0.04) 24%, rgba(15, 21, 24, 0.86) 100%);
}

.schluesseldienst-badge {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(23, 28, 32, 0.74);
  backdrop-filter: blur(8px);
}

.schluesseldienst-badge-time {
  color: #71dcf3;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.schluesseldienst-badge-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.schluesseldienst-visual-caption {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.schluesseldienst-visual-caption > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.schluesseldienst-visual-caption strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.schluesseldienst-visual-caption small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.schluesseldienst-key-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(113, 220, 243, 0.7);
  border-radius: 50%;
  color: #71dcf3;
}

.schluesseldienst-key-mark svg {
  width: 1.4rem;
  height: 1.4rem;
}

@media (prefers-reduced-motion: reduce) {
  .notdienst-call {
    animation: none;
  }
}

@media (max-width: 520px) {
  .notdienst-call {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.6rem;
    max-width: calc(100vw - 1.5rem);
    padding: 0.65rem 0.85rem 0.65rem 0.75rem;
  }

  .notdienst-call__icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .notdienst-call__service {
    font-size: 0.84rem;
  }

  .notdienst-call__action {
    font-size: 0.68rem;
  }

  .schluesseldienst-section {
    padding: 4rem 0;
  }

  .schluesseldienst-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .schluesseldienst-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  .schluesseldienst-visual {
    min-height: 25rem;
  }

  .schluesseldienst-cta {
    width: 100%;
  }
}