:root {
  --bg: #ffffff;
  --ink: #555555;
  --accent: #DA1F3D;
  --panel: #ffffff;
  --muted: #888888;
  --line: #DADBDD;
  --top-bar-offset: 5.75rem;
}

html {
  font-size: 130%; /* zoom page by 30% total */
  background: #ffffff;
}

* { box-sizing: border-box; }

html { color: var(--ink); }

/* top bar with contact info similar to the reference site */
.top-bar {
  background: #555555;
  color: #f6fff9;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}

/* hero layout for two-column content */
.hero {
  /* use same radial gradient as body so the red→white fade spans full width */
  
  color: var(--ink);
  padding: 5rem 1.5rem 1rem;
  margin-bottom: 4rem; /* larger gap before the next section */
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 30px;
  justify-content: space-between;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 672px; /* 20% wider */
  text-align: left; /* center the title and buttons */
  position: relative;
}

.hero-text h1 {
  font-size: 3.2rem; /* larger size */
  line-height: 1.2;
  margin-bottom: 0.6rem;
  font-weight: 400; /* thinner appearance */
}

.subtitle {
  text-align: left;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.highlight {
  position: relative;
  display: inline-block;
  
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.12em;
  background: var(--blue);
  z-index: -1;
  transform-origin: left;
  transform: scaleX(0);
  animation: underline-reveal 700ms ease-out 350ms forwards;
}

@keyframes underline-reveal {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}



.hero-buttons .btn {
  display: inline-block;
  background: #da1f3d;
  color: #fff;
  padding: 1rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-right: 1rem;
  transition: all 0.3s;
  font-size: 1.05rem;
}

.hero-buttons .btn:hover {
  background: #A5182C;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1 1 620px;
  text-align: center;
  position: relative;
  perspective: 1800px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-image-epic {
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-image-card {
  position: relative;
  width: min(100%, 680px);
  padding: 1rem;
  border-radius: 2rem;
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(8deg);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 50px 100px rgba(85, 85, 85, 0.14),
    0 18px 40px rgba(85, 85, 85, 0.08);
  animation: hero-card-float 8s ease-in-out infinite;
  overflow: hidden;
}

.hero-image-card img {
  display: block;
  width: 100%;
  border-radius: 1.35rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 22px 50px rgba(11, 17, 25, 0.28);
}

.hero-image-aura {
  position: absolute;
  inset: 8% 10% 6%;
  border-radius: 50%;
  background: none;
  filter: blur(26px);
  opacity: 0;
  animation: hero-aura-pulse 7.5s ease-in-out infinite;
  z-index: 0;
}

.hero-image-grid,
.hero-image-glare,
.hero-image-orbit,
.hero-image-badge {
  pointer-events: none;
}

.hero-image-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mix-blend-mode: soft-light;
  transform: translateZ(18px);
  opacity: 0.5;
}

.hero-image-glare {
  position: absolute;
  inset: -10% auto auto -30%;
  width: 60%;
  height: 150%;
  z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  transform: translateZ(60px) rotate(14deg);
  filter: blur(6px);
  opacity: 0.7;
  animation: hero-glare-sweep 6.8s ease-in-out infinite;
}

.hero-image-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 42, 71, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.32) inset;
}

.hero-image-orbit::before {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(148, 163, 184, 0.32);
}

.hero-image-orbit-back {
  inset: 6% 2% auto auto;
  width: 82%;
  height: 82%;
  transform: rotate(-12deg);
  opacity: 0.5;
  z-index: 0;
  animation: hero-orbit-rotate 14s linear infinite;
}

.hero-image-orbit-back::before {
  top: 18%;
  left: 10%;
}

.hero-image-orbit-front {
  inset: auto auto 2% 6%;
  width: 68%;
  height: 68%;
  transform: rotate(18deg);
  border-color: rgba(85, 85, 85, 0.18);
  opacity: 0.7;
  z-index: 4;
  animation: hero-orbit-rotate 11s linear infinite reverse;
}

.hero-image-orbit-front::before {
  right: 14%;
  bottom: 18%;
}

.hero-image-badge {
  position: absolute;
  z-index: 5;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 36px rgba(85, 85, 85, 0.16);
  color: #555555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image-badge-top {
  top: 8%;
  left: 4%;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  transform: translateZ(100px) rotate(-8deg);
  animation: hero-badge-drift 7.5s ease-in-out infinite;
}

.hero-image-badge-bottom {
  right: 3%;
  bottom: 8%;
  padding: 0.9rem 1.1rem;
  border-radius: 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  transform: translateZ(90px) rotate(6deg);
  animation: hero-badge-drift 9s ease-in-out infinite reverse;
}

@keyframes hero-card-float {
  0%, 100% {
    transform: rotateY(-15deg) rotateX(8deg) translateY(0);
  }
  50% {
    transform: rotateY(-10deg) rotateX(12deg) translateY(-14px);
  }
}

@keyframes hero-aura-pulse {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes hero-glare-sweep {
  0%, 100% {
    transform: translate3d(-8%, 0, 60px) rotate(14deg);
    opacity: 0.2;
  }
  35% {
    opacity: 0.75;
  }
  55% {
    transform: translate3d(92%, -2%, 60px) rotate(14deg);
    opacity: 0.58;
  }
}

@keyframes hero-orbit-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-badge-drift {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

.page-visual-aura {
  position: absolute;
  inset: 12% 10% auto;
  height: 72%;
  border-radius: 50%;
  background: none;
  filter: blur(24px);
  opacity: 0;
  animation: hero-aura-pulse 7.5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.page-visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  pointer-events: none;
}

.page-visual-orbit::before {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(148, 163, 184, 0.28);
}

.page-visual-orbit-back {
  top: 6%;
  right: 4%;
  width: 72%;
  height: 72%;
  opacity: 0.48;
  z-index: 0;
  animation: hero-orbit-rotate 14s linear infinite;
}

.page-visual-orbit-back::before {
  top: 16%;
  left: 10%;
}

.page-visual-orbit-front {
  left: 6%;
  bottom: 4%;
  width: 58%;
  height: 58%;
  opacity: 0.68;
  z-index: 1;
  animation: hero-orbit-rotate 11s linear infinite reverse;
}

.page-visual-orbit-front::before {
  right: 14%;
  bottom: 18%;
}

.page-visual-chip {
  position: absolute;
  z-index: 2;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 28px rgba(8, 14, 24, 0.16);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.page-visual-chip-top {
  top: 1rem;
  right: 1rem;
  animation: hero-badge-drift 8s ease-in-out infinite;
}

.page-visual-chip-bottom {
  left: 1rem;
  bottom: 1rem;
  animation: hero-badge-drift 9s ease-in-out infinite reverse;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-aura,
  .hero-image-card,
  .hero-image-glare,
  .hero-image-orbit-back,
  .hero-image-orbit-front,
  .hero-image-badge-top,
  .hero-image-badge-bottom,
  .page-visual-aura,
  .page-visual-orbit-back,
  .page-visual-orbit-front,
  .page-visual-chip-top,
  .page-visual-chip-bottom {
    animation: none;
  }

  .hero-image-card {
    transform: rotateY(-10deg) rotateX(6deg);
  }
}

/* ensure nav buttons are styled like hero buttons */
.nav-btn {
  display: inline-block;
  color: #666666;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  position: relative;
  transition: color 0.2s;
}

.nav-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 3px;
  background: #DA1F3D;
  transition: width 0.3s ease;
}

.nav-btn:hover::after {
  width: 100%;
}

/* underline indicator for active link */
.nav-btn.nav-active::after {
  width: 100%;
}

/* keep the red button look for "buttons" used elsewhere */
.hero-buttons .btn,
.nav-btn.button-like {
  display: inline-block;
  background: #DA1F3D;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-right: 1rem;
  transition: background 0.3s;
}

.hero-buttons .btn:hover,
.nav-btn.button-like:hover {
  background: #A5182C;
}





body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

body.page-ready {
}

body.page-exit {
  pointer-events: none;
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease;
}

.page-transition-overlay.is-active {
  opacity: 1;
}

.page-transition-logo-scene {
  perspective: 1200px;
}

.page-transition-logo-card {
  display: grid;
  place-items: center;
  width: clamp(120px, 16vw, 176px);
  aspect-ratio: 1;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 28px 60px rgba(85, 85, 85, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform-style: preserve-3d;
}

.page-transition-logo {
  width: 72%;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(85, 85, 85, 0.18));
  backface-visibility: hidden;
}

.page-transition-overlay.is-intro .page-transition-logo-card {
  animation: gtue-logo-intro 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-transition-overlay.is-outro .page-transition-logo-card {
  animation: gtue-logo-outro 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes gtue-logo-intro {
  0% {
    opacity: 1;
    transform: rotateX(0deg) rotateY(0deg) scale(1);
  }

  45% {
    opacity: 1;
    transform: rotateX(12deg) rotateY(-18deg) scale(1.06);
  }

  100% {
    opacity: 0;
    transform: rotateX(-18deg) rotateY(24deg) scale(0.9);
  }
}

@keyframes gtue-logo-outro {
  0% {
    opacity: 0;
    transform: rotateX(-20deg) rotateY(28deg) scale(0.86);
  }

  55% {
    opacity: 1;
    transform: rotateX(10deg) rotateY(-12deg) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: rotateX(0deg) rotateY(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition-overlay,
  .page-transition-overlay.is-active {
    opacity: 0;
    transition: none;
  }

  .page-transition-overlay.is-intro .page-transition-logo-card,
  .page-transition-overlay.is-outro .page-transition-logo-card {
    animation: none;
  }
}

/* contact information row below the navigation */
.top-bar {
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 1rem 2rem;
  width: 100%;
  margin-top: var(--top-bar-offset);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.top-bar-left {
  flex: 0 1 auto;
  justify-self: end;
  min-width: 0;
}

.top-bar-center {
  flex: 0 1 auto;
  justify-content: center;
  justify-self: center;
  min-width: 0;
  border-left: none;
}

.top-bar-right {
  flex: 0 0 auto;
  justify-self: start;
  gap: 0.7rem;
}

.top-bar span {
  white-space: nowrap;
  position: relative;
  padding-right: 0.9rem;
}

.top-bar-left span:not(:last-child)::after,
.top-bar-center span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1rem;
  background: #d9e3dc;
}

.top-bar-center span:last-child {
  padding-right: 0;
}

.top-bar .address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: #DA1F3D;
}

.top-bar-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f4fbf7;
  border-radius: 50%;
  color: #da1f3d;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.top-bar-right a:hover {
  background: #da1f3d;
  color: #fff;
  transform: scale(1.1);
}

.top-bar a:hover {
  text-decoration: underline;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transform: translateY(0);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease;
  will-change: transform;
}

/* when scrolling down hide the navbar by moving it above viewport */
nav.nav-hidden {
  transform: translateY(calc(-100% - 8px));
}

/* add gentle shadow when navbar is visible (or after scrolling) */
nav.nav-scrolled {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 1rem;
  flex-wrap: nowrap;
}

.nav-links a {
  margin: 0 0.4rem;
}


nav .brand,
nav .partner {
  flex: 0 0 auto;
}

/* partner logo area on the right side of the navigation */
nav .partner {
  display: flex;
  align-items: center;
}

nav .partner img.logo {
  height: 2.2rem;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand img.logo {
  height: 2rem;
}

.nav-active {
  background: rgba(255, 255, 255, 0.18);
}

.hero-content {
  max-width: 760px;
  margin-top: 3rem;
}

.hero-short {
  min-height: 40vh;
}

.hero-alt {
  background: #ffffff;
}

h1, h2, h3 { font-family: "Space Grotesk", sans-serif; }

.tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}



main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1rem; /* prevent content from touching edges on narrow screens */
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.features article,
.booking {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 24px rgba(17, 34, 27, 0.07);
}

.booking { margin-top: 1rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.8rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 600;
}

input, select, textarea, button {
  font: inherit;
  border: 1px solid #c7d5ce;
  border-radius: 10px;
  padding: 0.64rem 0.72rem;
}

.slots-wrap {
  margin-top: 1rem;
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.slot {
  background: #f4fbf7;
  border: 1px solid #b8d5c8;
  cursor: pointer;
}

.slot.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

button[type="submit"] {
  margin-top: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.status {
  min-height: 1.5rem;
  color: var(--muted);
}

.verify {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(220px, 320px);
  gap: 0.7rem;
  align-items: end;
}

.verify.hidden {
  display: none;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.content-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(17, 34, 27, 0.07);
}

.content-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.content-card h3,
.content-card p {
  padding: 0 1rem;
}

.content-card p {
  padding-bottom: 1rem;
}

.info-strip,
.team-strip {
  margin-top: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 24px rgba(17, 34, 27, 0.07);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.steps div {
  background: #f4fbf7;
  border: 1px solid #c8ddd2;
  border-radius: 12px;
  padding: 0.8rem;
}

.banner-panel {
  margin-top: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 12px 24px rgba(17, 34, 27, 0.07);
}

.banner-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

/* Leistungen Page */
.leistungen-main {
  width: min(1320px, 96vw);
  margin-top: 0;
  padding: 0;
}

.leistungen-hero {
  min-height: auto;
  margin-bottom: 0.8rem;
  padding: 1.2rem 1.25rem 0;
}

.leistungen-hero-shell {
  width: min(1320px, 96vw);
  margin: 1.1rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 1.1rem;
  align-items: stretch;
}

.leistungen-hero-copy,
.leistungen-hero-panel {
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(63, 21, 33, 0.08);
}

.leistungen-hero-copy {
  background: #ffffff;
  padding: 2rem;
  text-align: left;
}

.leistungen-hero-copy .tag {
  margin-bottom: 0.45rem;
  color: #b21f3b;
  font-weight: 700;
}

.leistungen-hero-copy h1 {
  margin: 0 0 0.7rem;
  color: #555555;
  line-height: 1.08;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.leistungen-hero-lead {
  max-width: 650px;
  margin: 0;
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.65;
}

.leistungen-hero-actions,
.leistungen-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.services-page .btn {
  display: inline-block;
  background: #DA1F3D;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid #DA1F3D;
  padding: 0.8rem 1.16rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.services-page .btn:hover {
  background: #A5182C;
  border-color: #A5182C;
  transform: translateY(-2px);
}

.services-page .btn.btn-outline {
  background: #fff;
  color: #DA1F3D;
  border-color: #e3c6ce;
}

.services-page .btn.btn-outline:hover {
  background: #fff1f5;
  border-color: #DA1F3D;
}

.leistungen-hero-facts {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.leistungen-hero-facts div {
  background: #fff;
  border: 1px solid #efd5dc;
  border-radius: 14px;
  padding: 0.8rem;
}

.leistungen-hero-facts strong,
.leistungen-hero-facts span {
  display: block;
}

.leistungen-hero-facts span {
  margin-top: 0.22rem;
  color: #888888;
}

.leistungen-hero-visual {
  display: flex;
}

.leistungen-hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  color: #f8fbff;
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  align-content: space-between;
  transform-style: preserve-3d;
  box-shadow:
    0 26px 50px rgba(13, 22, 33, 0.22),
    0 14px 30px rgba(201, 42, 71, 0.14);
}

.leistungen-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(18, 28, 42, 0.82) 0%, rgba(30, 48, 70, 0.7) 100%),
    radial-gradient(circle at 82% 18%, rgba(110, 166, 228, 0.2), transparent 36%),
    url("https://media1.tenor.com/m/xmB64n05xL8AAAAd/car-banner.gif") center / cover no-repeat;
  transform: scale(1.03);
  z-index: -2;
}

.leistungen-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.08) 0%, rgba(8, 14, 24, 0.42) 100%);
  z-index: -1;
}

.leistungen-hero-panel > * {
  position: relative;
  z-index: 1;
}

.leistungen-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  box-shadow: 0 16px 28px rgba(7, 12, 18, 0.22);
  transform: translateZ(48px);
}

.leistungen-hero-logo img {
  width: 70px;
  height: auto;
}

.leistungen-mini-kicker,
.leistungen-kicker {
  display: inline-block;
  color: #b11f3a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}

.leistungen-mini-kicker {
  color: #ff9cb0;
}

.leistungen-hero-highlight h2 {
  margin: 0 0 0.7rem;
  color: #fff;
  line-height: 1.2;
}

.leistungen-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.leistungen-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #dbe6f2;
  padding: 0.72rem 0.78rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.leistungen-highlight-list i {
  color: #ff8ea5;
  margin-top: 0.18rem;
}

.leistungen-quick-overview {
  margin-top: 0.2rem;
}

.leistungen-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.leistungen-quick-card,
.leistungen-audience-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 10px 22px rgba(22, 34, 48, 0.06);
  text-align: left;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.leistungen-quick-card::before,
.leistungen-audience-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: none;
  transition: transform 300ms ease, opacity 300ms ease;
  opacity: 0;
}

.leistungen-quick-card i,
.leistungen-audience-card i {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffffff;
  color: #DA1F3D;
  font-size: 1.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 14px 22px rgba(85, 85, 85, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.leistungen-quick-card h3,
.leistungen-audience-card h3 {
  margin: 0.8rem 0 0.4rem;
  color: #555555;
}

.leistungen-quick-card p,
.leistungen-audience-card p {
  margin: 0;
  color: #888888;
  line-height: 1.55;
}

.leistungen-quick-card:hover,
.leistungen-audience-card:hover {
  transform: translateY(-8px);
  border-color: #d88ea0;
  box-shadow: 0 18px 34px rgba(114, 21, 46, 0.14);
}

.leistungen-quick-card:hover::before,
.leistungen-audience-card:hover::before {
  transform: scale(1.18);
  opacity: 1;
}

.leistungen-quick-card:hover i,
.leistungen-audience-card:hover i {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 28px rgba(201, 42, 71, 0.2);
}

.leistungen-services,
.leistungen-audience,
.leistungen-faq {
  margin-top: 1.15rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 14px 30px rgba(63, 21, 33, 0.06);
}

.leistungen-services-head,
.leistungen-section-head {
  margin-bottom: 1rem;
}

.leistungen-services-head h2,
.leistungen-section-head h2 {
  margin: 0;
}

.leistungen-services-head p,
.leistungen-section-head p {
  margin-top: 0.35rem;
  margin-bottom: 0;
  color: #888888;
}

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

.leistungen-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 12px 24px rgba(85, 85, 85, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.leistungen-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 14px 30px rgba(85, 85, 85, 0.12);
}

.leistungen-card h3 {
  margin-top: 0.85rem;
  margin-bottom: 0.45rem;
  color: #555555;
}

.leistungen-card p {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: #888888;
  line-height: 1.55;
}

.leistungen-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #DA1F3D 0%, #A5182C 100%);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 14px 24px rgba(169, 31, 59, 0.18);
}

.leistungen-card ul {
  margin: 0;
  padding-left: 1rem;
  color: #485463;
}

.leistungen-card li {
  margin-bottom: 0.4rem;
}

.leistungen-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.leistungen-flow {
  margin-top: 1.1rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(145deg, #555555 0%, #555555 100%);
  color: #eef7f2;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 14px 30px rgba(10, 23, 17, 0.2);
}

.leistungen-section-head-light h2,
.leistungen-section-head-light p,
.leistungen-flow h2 {
  color: #fff;
}

.leistungen-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.leistungen-steps div {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1rem 0.9rem 0.9rem;
}

.leistungen-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: #da1f3d;
  color: #fff;
  font-weight: 700;
}

.leistungen-steps i {
  display: block;
  margin-top: 0.9rem;
  color: #ff9cb0;
  font-size: 1.25rem;
}

.leistungen-steps h3 {
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.leistungen-steps p {
  margin: 0;
  color: #d5e6de;
}

.leistungen-faq {
  margin-top: 1.15rem;
}

.leistungen-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.leistungen-faq-grid article {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1rem;
}

.leistungen-faq-grid h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  color: #555555;
}

.leistungen-faq-grid p {
  margin: 0;
  color: #888888;
  line-height: 1.55;
}

.leistungen-cta {
  margin-top: 1.15rem;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #da1f3d 0%, #A5182C 100%);
  color: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 34px rgba(169, 31, 59, 0.18);
}

.leistungen-cta h2 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: #fff;
}

.leistungen-cta p {
  margin-top: 0;
  margin-bottom: 0;
  color: #ffeef2;
  max-width: 760px;
}

.leistungen-kicker-light {
  color: #ffd9e1;
}

.leistungen-cta .cta-link {
  background: #555555;
  color: #fff;
}

.leistungen-cta .cta-link-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.leistungen-cta .cta-link:hover {
  background: #111b27;
}

.leistungen-cta .cta-link-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.about-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 24px rgba(17, 34, 27, 0.07);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-grid span {
  background: #eef7f2;
  border: 1px solid #c8ddd2;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

.inspector-body {
  min-height: 100vh;
  padding: 0 0 1.4rem;
  background: #ffffff;
}

.inspector-page main {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.inspector-page main > .section-shell:first-child {
  margin-top: 1.1rem;
}

.inspector-layout {
  width: 100%;
  margin: 1.1rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 0.85rem;
}

.inspector-calendar-wrap,
.inspector-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 14px 32px rgba(12, 18, 25, 0.12);
}

.inspector-calendar-wrap {
  width: 100%;
  margin-inline: 0;
  justify-self: stretch;
}

.inspector-head h1 {
  margin: 0;
  color: #172131;
}

.inspector-head p {
  margin-top: 0.4rem;
  color: #888888;
}

.inspector-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.inspector-hints span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--blue-pale);
  color: var(--blue-dark);
  border: 1px solid rgba(0, 82, 180, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.inspector-form {
  display: grid;
  gap: 0.8rem;
}

.meta-line {
  color: var(--muted);
}

.danger-btn {
  background: #da1f3d;
  color: #fff;
  border: none;
  cursor: pointer;
}

.inspector-calendar-wrap #inspector-calendar {
  margin-top: 0.85rem;
  min-height: 780px;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.inspector-page .fc {
  --fc-border-color: rgba(16, 24, 40, 0.1);
  --fc-page-bg-color: #ffffff;
  --fc-today-bg-color: var(--amber-pale);
  --fc-neutral-bg-color: #f7f9fc;
  --fc-event-bg-color: var(--blue);
  --fc-event-border-color: var(--blue-dark);
  --fc-event-text-color: #ffffff;
}

.inspector-page .fc .fc-toolbar-title {
  color: #555555;
  font-size: 1.25rem;
}

.inspector-page .fc .fc-toolbar {
  gap: 0.5rem;
}

.inspector-page .fc .fc-toolbar-chunk {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.inspector-page .fc .fc-button-primary {
  background: var(--blue);
  border-color: var(--blue);
}

.inspector-page .fc .fc-button {
  white-space: nowrap;
}

.inspector-page .fc .fc-button-primary:hover,
.inspector-page .fc .fc-button-primary:focus {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.inspector-page .fc .fc-event {
  border-radius: 8px;
  padding: 1px 3px;
}

.inspector-page .fc .fc-event-title,
.inspector-page .fc .fc-list-event-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inspector-page .fc .fc-timegrid-event .fc-event-main-frame {
  min-width: 0;
}

.inspector-page .inspector-panel h2 {
  margin-top: 0.2rem;
}

.inspector-page #inspector-customer,
.inspector-page #inspector-service,
.inspector-page #inspector-empty {
  overflow-wrap: anywhere;
}

.inspector-page .top-bar {
  background: #555555;
  color: #f8fbff;
}

.inspector-page .top-bar a:hover {
  color: var(--amber);
}

.inspector-page .top-bar-right a {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--amber);
}

.inspector-page .top-bar-right a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #0c1219;
}

.inspector-page .inspector-form input,
.inspector-page .inspector-form textarea {
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #ffffff;
}

.inspector-page #reschedule-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
}

.inspector-page #reschedule-btn:hover {
  background: var(--blue-dark);
}

@media (max-width: 640px) {
  .hero { min-height: auto; }
  .verify {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .inspector-layout {
    grid-template-columns: 1fr;
  }

  .inspector-page .fc .fc-toolbar {
    flex-wrap: wrap;
  }

  .inspector-page .fc .fc-toolbar-chunk {
    flex-wrap: wrap;
  }

  .inspector-calendar-wrap #inspector-calendar {
    min-height: 660px;
  }

  .banner-panel {
    grid-template-columns: 1fr;
  }

  .booking-shell {
    grid-template-columns: 1fr;
  }

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

/* New Layout Styles */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  text-align: center;
  margin-left: -5rem;
}



.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand img.logo {
  height: 2rem;
}

/* Opening Hours Section */
.opening-hours {
  padding: 2rem 1.5rem 5rem;
  margin-left: 5%;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  padding-left: 1rem;
  width: fit-content;
  border-radius: 12px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hours-item .on {
  text-align: center;
  padding: 1rem;
  background: #f4fbf7;
  border-radius: 12px;
  border: 1px solid #c8ddd2;
  background-color: #6cbe6c;
  color: #ffffff;
}

.hours-item .off {
  text-align: center;
  padding: 1rem;
  background: #f4fbf7;
  border-radius: 12px;
  border: 1px solid #c8ddd2;
  background-color: #da1f3d;
}

.hours-item .on h3,
.hours-item .off h3 {
  color: white;
}

.hours-item h3 {
  margin: 0 0 0.5rem 0;
  color: var(--ink);
}

.hours-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.about-teaser {
  width: min(1640px, 98vw);
  margin: 1.6rem auto 1.2rem;
  margin-left: -25%;
  padding: 0 0rem;
  background: #fff;
}

.about-teaser-inner {
  margin: 0;
  width: 100%;
  padding: 1.8rem 1.6rem;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  text-align: left;
}

.about-teaser-copy {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  text-align: left;
}

.about-teaser-badge {
  display: inline-block;
  background: #f7dfe3;
  color: #da1f3d;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
}

.about-teaser-copy p {
  margin: 0;
  font-size: 1.05rem;
  color: #111;
}

.about-teaser-link {
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
  font-weight: 500;
}

.about-teaser-link > span:last-of-type {
  position: relative;
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(8px);
  transition:
    max-width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-teaser-link:hover > span:last-of-type,
.about-teaser-link:focus-visible > span:last-of-type {
  max-width: 220px;
  opacity: 1;
  transform: translateX(0);
}

.about-teaser-link > span:last-of-type::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 3px;
  background: #da1f3d;
  transition: width 0.3s ease;
}

.about-teaser-link > span:last-of-type:hover::after {
  width: 100%;
}

.about-teaser-icons {
  display: inline-flex;
  align-items: center;
}

.about-teaser-icons i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.42rem;
  color: #5f6368;
  margin-left: -14px;
  box-shadow: 0 4px 10px rgba(85, 85, 85, 0.12);
  transition: margin-left 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-teaser-icons i:first-child {
  margin-left: 0;
}

.about-teaser-icons:hover i {
  margin-left: 10px;
  transform: translateX(-2px);
}

.about-teaser-icons:hover i:first-child {
  margin-left: 0;
}

.about-teaser-link > .fa-chevron-right {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-teaser-link:hover > .fa-chevron-right,
.about-teaser-link:focus-visible > .fa-chevron-right {
  opacity: 1;
  transform: translateX(0);
}

.hours-section {
  --hours-bg: var(--bg);
  --hours-card: #ffffff;
  --hours-text: #555555;
  --hours-muted: #4b5563;
  --hours-border: #e5e7eb;

  background: var(--hours-bg);
  padding: 48px 16px;
}

.hours-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.hours-section h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--hours-text);
}

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

.hours-card {
  background: var(--hours-card);
  border: 1px solid var(--hours-border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.hours-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--hours-text);
}

.hours-card p {
  margin: 0;
  color: var(--hours-muted);
  font-size: 0.98rem;
}

@media (max-width: 800px) {
  .hours-grid {
    grid-template-columns: 1fr;
  }
}

.services {
  width: 100%;
  max-width: none;
  margin-left: 30%;
  position: relative;
  border-top: none;
  position: relative;
  margin-left: 15%;
  margin-right: auto;
  width: min(1200px, 92vw);
  text-align: center;
  margin-left: 5rem;
}
.services .container {
  
  width: min(1350px, 98vw);
}
/* Services Section */
.services,
.expert-services {
  padding: 2rem 1.5rem;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  padding-left: 1rem;
  width: fit-content;
  border-radius: 12px;
  padding: 3rem 1.5rem;
  background: var(--bg);
}

/* Keep the main services block centered, but nudge it slightly left. */
section.services:not(.quick-links) {
  margin-left: auto;
  margin-right: auto;
  width: min(1100px, 92vw);
  transform: translateX(-2rem);
}

section.services:not(.quick-links) .container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

section.services:not(.quick-links) .services-grid {
  margin-left: 0;
}

.services h2,
.expert-services h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
   margin-left: 20px;}

.service-card {
  position: relative;
  overflow: hidden;
  background: #DA1F3D;
  color: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.service-card::before,
.quick-link-card::before {
  content: "";
  position: absolute;
  inset: auto auto -36% -12%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0.75;
  transition: transform 320ms ease, opacity 320ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(17, 34, 27, 0.16);
}

.service-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  transition: color 0.25s ease;
}

.service-card p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.service-card i {
  font-size: 2.2rem;
  color: #fff;
  width: 4.3rem;
  height: 4.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 16px 24px rgba(0, 0, 0, 0.12);
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover i {
  color: #fff;
}

.service-card:hover::before,
.quick-link-card:hover::before {
  transform: scale(1.2);
  opacity: 1;
}

.service-card:hover i {
  transform: translateY(-4px) scale(1.04);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 20px 30px rgba(0, 0, 0, 0.16);
}

/* 4 quick cards under opening hours */
.quick-links .container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.quick-links {
  border-top: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: min(1640px, 98vw);
  transform: translateX(-18%);
}

.quick-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1300px, 92vw);
  border-top: 1px solid var(--line);
  transform: translateX(-50%);
}

.quick-links .services-grid {
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 2rem;
  transform: none;
}

.quick-links-intro {
  text-align: center;
  margin: 0 0 1.6rem;
}

.quick-links-intro h2 {
  margin: 0;
}

.quick-links-intro p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.quick-link-card {
  text-decoration: none;
  padding: 2.6rem 2rem;
  min-height: 300px;
  justify-content: center;
}

.quick-link-card i {
  font-size: 2.9rem;
}

.quick-link-card h3 {
  font-size: 1.45rem;
}

.quick-link-card p {
  font-size: 1.2rem;
  line-height: 1.45;
}

.quick-link-card:hover {
  transform: translateY(-10px);
}

/* Booking Section */
.booking-section {
  padding: 3rem 1.5rem;
  background: var(--panel);
}

.booking-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-form {
  max-width: 900px;
  margin: 0 auto;
}

.booking-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.booking-step-chip {
  border: 1px solid #efd4dc;
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #5a6572;
  font-weight: 700;
}

.booking-step-chip span {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4e7ec;
  color: #b51f3e;
  font-size: 0.82rem;
}

.booking-step-chip small {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.booking-step-chip.active {
  border-color: #DA1F3D;
  background: #ffffff;
  color: #555555;
}

.booking-step-chip.active span {
  background: #DA1F3D;
  color: #fff;
}

.booking-step-chip.done {
  border-color: #d8e6df;
  background: #f6fbf8;
}

.booking-step-chip.done span {
  background: #2f8a61;
  color: #fff;
}

.booking-step-panel {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(85, 85, 85, 0.06);
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
}

.booking-step-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  animation: booking-step-enter 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes booking-step-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.booking-step-panel h3 {
  margin: 0 0 0.35rem;
  color: #555555;
}

.booking-step-panel p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: #5a6572;
}

.booking-step-actions {
  margin-top: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
}

.booking-step-actions button {
  border: none;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-step-actions .step-next {
  margin-left: auto;
  background: #DA1F3D;
  color: #fff;
}

.booking-step-actions .step-next:hover {
  background: #A5182C;
}

.booking-step-actions .step-back {
  background: #eef1f5;
  color: #555555;
}

.booking-step-actions .step-back:hover {
  background: #e1e7ef;
}

@media (max-width: 960px) {
  .booking-stepper {
    grid-template-columns: 1fr;
  }
}

.booking-hero {
  min-height: auto;
  margin-bottom: 0.8rem;
  padding: 1.2rem 1.25rem 0;
}

.booking-hero-shell {
  width: min(1340px, 97vw);
  margin: 1.1rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 1.1rem;
  align-items: start;
}

.booking-hero-copy,
.booking-hero-board {
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(63, 21, 33, 0.08);
}

.booking-hero-copy {
  background: #ffffff;
  padding: 2rem;
  text-align: left;
}

.booking-hero-copy .tag {
  margin-bottom: 0.45rem;
  color: #b21f3b;
  font-weight: 700;
}

.booking-hero-copy h1 {
  margin: 0 0 0.7rem;
  color: #555555;
  line-height: 1.08;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
}

.booking-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.booking-page .btn.btn-outline {
  background: #fff;
  color: #DA1F3D;
  border-color: #e3c6ce;
}

.booking-page .btn.btn-outline:hover {
  background: #fff1f5;
  border-color: #DA1F3D;
}

.booking-hero-facts {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.booking-hero-facts div {
  background: #fff;
  border: 1px solid #efd5dc;
  border-radius: 14px;
  padding: 0.8rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.booking-hero-facts strong,
.booking-hero-facts span {
  display: block;
}

.booking-hero-facts span {
  margin-top: 0.22rem;
  color: #888888;
}

.booking-hero-subtitle {
  margin: 0;
  max-width: 760px;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.65;
}

.booking-benefits {
  width: min(1100px, 92vw);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.booking-benefit-card {
  background: #fff;
  border: 1px solid #f2ced5;
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(218, 31, 61, 0.08);
}

.booking-benefit-card i {
  color: #da1f3d;
  font-size: 1.4rem;
}

.booking-benefit-card h3 {
  margin: 0.7rem 0 0.4rem;
}

.booking-benefit-card p {
  margin: 0;
  color: #4b5563;
}

.booking-section-featured {
  width: min(1100px, 92vw);
  margin: 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(85, 85, 85, 0.08);
}

.booking-section-featured .container {
  margin-left: auto;
  width: min(920px, 95%);
}

.booking-section-featured .slots-wrap p {
  font-weight: 700;
}

.booking-section-featured button[type="submit"],
.booking-section-featured #confirm-btn {
  background: #DA1F3D;
}

.booking-section-featured button[type="submit"]:hover,
.booking-section-featured #confirm-btn:hover {
  background: #A5182C;
}

/* Booking Page */
.booking-page {
  --accent: #DA1F3D;
}

.booking-main {
  width: min(1340px, 97vw);
  max-width: none;
  margin: 1rem auto 3rem;
  padding: 0;
}

.booking-intro {
  margin-top: 0.2rem;
}

.booking-intro-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: 0 14px 30px rgba(85, 85, 85, 0.08);
}

.booking-kicker {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #b51f3e;
}

.booking-intro-card h2 {
  margin: 0 0 0.55rem;
}

.booking-intro-card p {
  margin: 0;
  color: #505a67;
}

.booking-metrics {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.booking-metrics div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem;
}

.booking-metrics strong,
.booking-metrics span {
  display: block;
}

.booking-metrics span {
  color: #5a6572;
  margin-top: 0.2rem;
}

.booking-page .booking-benefits {
  width: min(1260px, 96vw);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

.booking-page .booking-benefit-card {
  border-color: #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(85, 85, 85, 0.08);
}

.booking-shell {
  width: min(1340px, 97vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 1rem;
  align-items: start;
}

.booking-page .booking-section {
  padding: 0;
  background: transparent;
}

.booking-page .booking-section-featured {
  width: 100%;
  margin: 0;
}

.booking-page .booking-section-featured .container {
  width: 100%;
  margin: 0 auto;
}

.booking-page .booking-section-featured .slots-wrap {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem;
}

.booking-page .slot {
  background: #fff;
  border-color: #e8c5cf;
}

.booking-page .slot.active {
  background: #DA1F3D;
  border-color: #DA1F3D;
}

.booking-page .booking-section-featured button[type="submit"],
.booking-page .booking-section-featured #confirm-btn {
  background: #DA1F3D;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-page .booking-section-featured button[type="submit"]:hover,
.booking-page .booking-section-featured #confirm-btn:hover {
  background: #A5182C;
}

.booking-page .booking-section-featured button[type="submit"]:disabled,
.booking-page .booking-section-featured button[type="submit"].is-cooling-down {
  background: #cfd5de;
  color: #6b7280;
  cursor: not-allowed;
  box-shadow: none;
}

.booking-page .booking-section-featured button[type="submit"]:disabled:hover,
.booking-page .booking-section-featured button[type="submit"].is-cooling-down:hover {
  background: #cfd5de;
  transform: none;
}

.booking-page .status {
  min-height: 0;
  margin-top: 0.85rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #5a6572;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, padding 180ms ease;
}

.booking-page .status.is-visible {
  opacity: 1;
  transform: translateY(0);
  padding: 0.9rem 1rem;
}

.booking-page .status.is-visible::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  vertical-align: text-bottom;
}

.booking-page .status[data-status="neutral"] {
  background: #fff7fa;
  border-color: #efd7de;
  color: #6b4e59;
}

.booking-page .status[data-status="neutral"]::before {
  content: "i";
  background: #f6dbe3;
  color: #8a3550;
}

.booking-page .status[data-status="loading"],
.booking-page .status[data-status="sending"],
.booking-page .status[data-status="checking"] {
  background: #fff8ef;
  border-color: #f0dcc0;
  color: #8a5a16;
}

.booking-page .status[data-status="loading"]::before,
.booking-page .status[data-status="sending"]::before,
.booking-page .status[data-status="checking"]::before {
  content: "...";
  background: #f6e4c7;
  color: #8a5a16;
}

.booking-page .status[data-status="selected"],
.booking-page .status[data-status="sent"] {
  background: #f3f7ff;
  border-color: #d8e2f6;
  color: #244a84;
}

.booking-page .status[data-status="selected"]::before,
.booking-page .status[data-status="sent"]::before {
  content: "+";
  background: #dce8ff;
  color: #244a84;
}

.booking-page .status[data-status="success"] {
  background: #effaf3;
  border-color: #cfe9d6;
  color: #21633c;
}

.booking-page .status[data-status="success"]::before {
  content: "OK";
  background: #d9f1e1;
  color: #21633c;
}

.booking-page .status[data-status="error"] {
  background: #fff1f3;
  border-color: #f3c9d1;
  color: #a12640;
}

.booking-page .status[data-status="error"]::before {
  content: "!";
  background: #ffd9e0;
  color: #a12640;
}

.booking-side-panel {
  background: #fff;
  border: 1px solid #edd4db;
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 12px 24px rgba(37, 23, 28, 0.08);
}

.booking-side-panel h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #555555;
}

.booking-side-panel .booking-side-card-dark h3 {
  color: #f8fbff;
}

.booking-steps,
.booking-checklist {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: #4b5563;
}

.booking-steps li,
.booking-checklist li {
  margin-bottom: 0.5rem;
}

.booking-help-box {
  background: #fff5f8;
  border: 1px solid #efced8;
  border-radius: 12px;
  padding: 0.75rem;
}

.booking-help-box p {
  margin: 0.25rem 0;
  color: #4b5563;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.booking-help-box a {
  color: #A5182C;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.booking-page {
  --booking-navy: #555555;
  --booking-rose: #fff4f7;
}

.booking-intro-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.booking-intro-primary {
  position: relative;
  overflow: hidden;
}

.booking-intro-primary::after {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 85, 85, 0.1), transparent 68%);
  pointer-events: none;
}

.booking-intro-secondary {
  display: grid;
  gap: 1rem;
  background: #ffffff;
}

.booking-mini-panel {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1rem;
  background: #ffffff;
}

.booking-mini-panel strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #555555;
}

.booking-mini-panel p {
  margin: 0;
  color: #5b6673;
}

.booking-mini-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #b61f3e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.76rem;
}

.booking-shell-appointment {
  margin-top: 1rem;
}

.booking-shell-support {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.booking-appointment-board {
  overflow: hidden;
}

.booking-hero-board {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 24px 46px rgba(85, 85, 85, 0.08),
    0 12px 28px rgba(85, 85, 85, 0.04);
}

.booking-hero-board > * {
  position: relative;
  z-index: 1;
}

.booking-board-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 1.4rem 0;
}

.booking-board-head h2 {
  margin: 0 0 0.3rem;
  text-align: left;
}

.booking-board-head p {
  margin: 0;
  color: #56616e;
  max-width: 860px;
}

.booking-board-badges {
  display: grid;
  gap: 0.65rem;
  min-width: 240px;
}

.booking-board-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 244, 247, 0.9);
  border: 1px solid #efd2da;
  padding: 0.7rem 0.95rem;
  color: #7d1e37;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(114, 21, 46, 0.08);
}

.booking-hero-facts div:hover {
  transform: translateY(-5px);
  border-color: #de9cae;
  box-shadow: 0 16px 28px rgba(114, 21, 46, 0.12);
}

.booking-page .booking-section-featured .container {
  padding: 1.1rem 1.4rem 1.4rem;
}

.booking-form-appointment {
  max-width: none;
}

.booking-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.booking-summary-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1rem 3.4rem 0.95rem 1rem;
  box-shadow: 0 10px 22px rgba(85, 85, 85, 0.08);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}

.booking-summary-item::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #DA1F3D 0%, #C2C4C6 100%);
  opacity: 0.18;
  transition: opacity 200ms ease, transform 200ms ease;
  transform: scaleX(0.65);
  transform-origin: left;
}

.booking-summary-item.is-filled {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(85, 85, 85, 0.1);
  transform: translateY(-1px);
}

.booking-summary-item.is-filled::after {
  opacity: 1;
  transform: scaleX(1);
}

.booking-summary-item[data-summary-item="service"]::before,
.booking-summary-item[data-summary-item="vehicle"]::before,
.booking-summary-item[data-summary-item="slot"]::before {
  position: absolute;
  top: 0.9rem;
  right: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9a3d55;
  background: rgba(246, 224, 231, 0.95);
}

.booking-summary-item[data-summary-item="service"]::before {
  content: "L";
}

.booking-summary-item[data-summary-item="vehicle"]::before {
  content: "F";
}

.booking-summary-item[data-summary-item="slot"]::before {
  content: "T";
}

.booking-summary-item small {
  display: block;
  margin-bottom: 0.42rem;
  color: #8d5161;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.72rem;
}

.booking-summary-item strong {
  display: block;
  color: #555555;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.booking-summary-item strong.is-updating {
  animation: booking-summary-value-update 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes booking-summary-value-update {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-step-panel-appointment {
  border-radius: 18px;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.booking-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.booking-panel-head h3 {
  margin-bottom: 0;
}

.booking-panel-head p {
  max-width: 420px;
  margin-bottom: 0;
}

.booking-panel-step {
  display: inline-flex;
  margin-bottom: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #efd4dc;
  color: #a11e39;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.booking-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.booking-field-grid input,
.booking-field-grid select,
.booking-field-grid textarea,
.booking-date-label input,
.verify input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-color: #d1d5db;
  background: #ffffff;
  box-shadow: inset 0 1px 2px rgba(85, 85, 85, 0.04), 0 8px 18px rgba(85, 85, 85, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.booking-field-grid label {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
  padding: 0.9rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(85, 85, 85, 0.05);
  align-content: start;
}

.booking-field-grid input:focus,
.booking-field-grid select:focus,
.booking-field-grid textarea:focus,
.booking-date-label input:focus,
.verify input:focus {
  border-color: #DA1F3D;
  box-shadow: 0 0 0 4px rgba(201, 42, 71, 0.1), 0 12px 24px rgba(119, 25, 50, 0.08);
  transform: translateY(-1px);
}

.booking-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.booking-service-pills span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #5c6471;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 8px 18px rgba(85, 85, 85, 0.05);
}

.booking-date-row {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(240px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
  perspective: 1200px;
}

.booking-date-label {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow:
    0 18px 36px rgba(85, 85, 85, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: rotateX(2deg) translateZ(0);
}

.booking-date-label input {
  min-height: 56px;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.booking-date-label input:focus {
  transform: translateY(-2px);
}

.booking-date-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #586270;
  font-weight: 600;
  box-shadow:
    0 16px 34px rgba(85, 85, 85, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: rotateX(2deg) translateZ(0);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.booking-slots-card {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow:
    0 24px 44px rgba(85, 85, 85, 0.1),
    0 10px 20px rgba(85, 85, 85, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: perspective(1200px) rotateX(7deg) rotateY(-4deg) translateZ(0);
  transform-style: preserve-3d;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.booking-slots-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38) 0%, transparent 42%),
    linear-gradient(180deg, transparent 62%, rgba(85, 85, 85, 0.08) 100%);
  pointer-events: none;
}

.booking-slots-card::after {
  content: "";
  position: absolute;
  inset: auto 24px -18px 24px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(85, 85, 85, 0.18) 0%, rgba(85, 85, 85, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}

.booking-slots-card.is-loading {
  opacity: 0.72;
  transform: perspective(1200px) rotateX(7deg) rotateY(-4deg) translateY(4px);
}

.booking-slots-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.7rem;
}

.booking-slots-head p,
.booking-slots-head small {
  margin: 0;
}

.booking-page .slot {
  min-width: 96px;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-weight: 700;
  color: #233042;
  opacity: 0;
  background: #ffffff;
  box-shadow:
    0 10px 18px rgba(85, 85, 85, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(10px) translateZ(0) rotateX(-10deg) scale(0.98);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.slots.is-visible .slot {
  opacity: 1;
  transform: translateY(0) translateZ(0) rotateX(0deg) scale(1);
  animation: booking-slot-enter 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--slot-index, 0) * 40ms);
}

.booking-page .slot:hover {
  border-color: #DA1F3D;
  transform: translateY(-4px) rotateX(8deg) rotateY(-6deg);
  box-shadow:
    0 18px 28px rgba(85, 85, 85, 0.14),
    0 10px 18px rgba(201, 42, 71, 0.16);
}

.booking-page .slot.active {
  transform: translateY(-6px) rotateX(10deg) rotateY(-8deg) scale(1.03);
  box-shadow:
    0 22px 34px rgba(85, 85, 85, 0.16),
    0 14px 26px rgba(201, 42, 71, 0.24);
  animation: booking-slot-select 220ms ease;
}

@keyframes booking-slot-enter {
  from {
    opacity: 0;
    transform: translateY(10px) rotateX(-10deg) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

@keyframes booking-slot-select {
  0% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
  }

  60% {
    transform: translateY(-7px) rotateX(12deg) rotateY(-9deg) scale(1.04);
  }

  100% {
    transform: translateY(-6px) rotateX(10deg) rotateY(-8deg) scale(1.03);
  }
}

.booking-page .verify {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #efced8;
  background: #fff8fa;
}

.booking-side-panel-stacked {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.booking-side-card {
  background: #fff;
  border: 1px solid #edd4db;
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 12px 24px rgba(37, 23, 28, 0.08);
}

.booking-side-card-dark {
  background: linear-gradient(155deg, #555555 0%, #888888 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fbff;
}

.booking-side-card-dark h3,
.booking-side-card-dark p,
.booking-side-card-dark .booking-mini-kicker {
  color: inherit;
}

.booking-side-card-soft {
  background: #ffffff;
}

.booking-side-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.booking-side-link:hover {
  background: rgba(255, 255, 255, 0.14);
}

.team-showcase {
  width: min(1180px, 94vw);
  margin: 1.5rem auto 0;
}

.team-showcase .container {
  width: 100%;
  margin: 0 auto;
}

.team-showcase-header {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 2rem 2rem 1.8rem;
  box-shadow: 0 18px 40px rgba(85, 85, 85, 0.08);
}

.team-showcase-header::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 85, 85, 0.08), transparent 68%);
  pointer-events: none;
}

.team-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #b21f3b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.team-showcase-header h2 {
  margin: 0;
  color: #555555;
}

.team-showcase-header p {
  max-width: 760px;
  margin: 0.8rem auto 0;
  color: #888888;
  line-height: 1.6;
}

.team-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.team-member-card {
  position: relative;
  padding: 2rem 1.2rem 1.4rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(85, 85, 85, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-member-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 22px 38px rgba(85, 85, 85, 0.12);
}

.team-member-photo {
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 6px solid #ffffff;
  outline: 1px solid #e5e7eb;
  box-shadow:
    0 18px 35px rgba(85, 85, 85, 0.1),
    inset 0 0 0 1px rgba(85, 85, 85, 0.04);
  color: #DA1F3D;
}

.team-member-photo i {
  font-size: 2rem;
}

.team-member-photo span {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.team-member-card h3 {
  margin: 0;
  color: #555555;
  font-size: 1.2rem;
}

.team-member-card p {
  margin: 0.45rem 0 0;
  color: #b21f3b;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Footer */
.footer {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 2rem 1.5rem 1rem;
  margin-top: 3rem;
}

.footer .container {
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  justify-items: center;
  text-align: center;
}

.footer-col {
  max-width: 320px;
  margin: 0 auto;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #f6fff9;
}

.footer-col p {
  margin: 0.8rem 0;
  line-height: 1.6;
}

.footer-col a {
  color: #b5d3c7;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 0.8rem 0;
}

.footer-col ul li a {
  color: #b5d3c7;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #444;
  color: #888;
}

/* Startseite: harmonisierte Farbwelt */
.home-page {
  --ink: #555555;
  --accent: #DA1F3D;
  --muted: #888888;
  --line: #DADBDD;
}

.home-page .hero {
  background: #ffffff;
}

.home-page .top-bar {
  background: #555555;
  color: #f8fbff;
  margin-top: 0;
}

.home-page .top-bar a:hover {
  color: #C2C4C6;
}

.home-page .top-bar-right a {
  border-color: rgba(255, 255, 255, 0.24);
  color: #DADBDD;
}

.home-page .top-bar-right a:hover {
  background: #DA1F3D;
  border-color: #DA1F3D;
  color: #fff;
}

.home-page .hero-buttons .btn,
.home-page .nav-btn.button-like {
  background: #DA1F3D;
}

.home-page .hero-buttons .btn:hover,
.home-page .nav-btn.button-like:hover {
  background: #A5182C;
}

.home-page .nav-btn::after {
  background: #DA1F3D;
}

.home-page .about-teaser {
  background: #ffffff;
  border-color: #e5e7eb;
}

.home-page .about-teaser-link {
  background: #fff;
  border-color: #DADBDD;
}

.home-page .hours-section {
  --hours-bg: #ffffff;
  --hours-card: #ffffff;
  --hours-text: #555555;
  --hours-muted: #888888;
  --hours-border: #e5e7eb;
}

.home-page .quick-links {
  background: #ffffff;
}

.home-page .quick-links::before {
  border-top-color: #DADBDD;
}

.home-page .quick-link-card {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 12px 24px rgba(85, 85, 85, 0.08);
  color: #555555;
}

.home-page .quick-link-card i,
.home-page .service-card i {
  color: #DA1F3D;
}

.home-page .services,
.home-page .expert-services {
  background: #fff;
}

.home-page section.services:not(.quick-links) {
  background: #ffffff;
}

.home-page .service-card {
  border: 1px solid #DADBDD;
  background: #fff;
  box-shadow: 0 10px 20px rgba(22, 34, 48, 0.06);
  color: #555555;
}

.home-page .service-card:hover {
  border-color: #d46b82;
  box-shadow: 0 14px 26px rgba(114, 21, 46, 0.12);
}

.home-page .service-card h3,
.home-page .service-card p,
.home-page .quick-link-card h3,
.home-page .quick-link-card p {
  color: #555555;
}

.home-page .team-showcase {
  margin-top: 2rem;
}

.home-page .team-member-card p {
  color: #DA1F3D;
}

/* Leistungen: eigenstaendige, klarere Farbwelt */
.services-page {
  --ink: #555555;
  --accent: #DA1F3D;
  --muted: #888888;
  --line: #DADBDD;
  color: var(--ink);
  overflow-x: hidden;
  background: #ffffff;
}

.services-page .top-bar {
  background: #555555;
  color: #f8fbff;
}

.services-page .top-bar a:hover {
  color: #C2C4C6;
}

.services-page .top-bar-right a {
  border-color: rgba(255, 255, 255, 0.24);
  color: #DADBDD;
}

.services-page .top-bar-right a:hover {
  background: #DA1F3D;
  border-color: #DA1F3D;
  color: #fff;
}

.services-page .nav-btn::after {
  background: #DA1F3D;
}

.services-page .nav-active {
  background: rgba(255, 255, 255, 0.18);
}

/* Unternehmen: an Startseite angelehnte Optik */
.company-page {
  --company-ink: #555555;
  --company-muted: #888888;
  --company-accent: #DA1F3D;
  --company-border: #DADBDD;
  color: var(--company-ink);
  background: #ffffff;
}

.company-page .top-bar {
  background: #555555;
  color: #f8fbff;
  width: 100%;
  justify-content: center;
  padding-inline: max(1rem, 3vw);
  row-gap: 0.5rem;
  text-align: center;
  margin-left: 0;
}

.company-page .top-bar-left,
.company-page .top-bar-center,
.company-page .top-bar-right {
  flex-wrap: wrap;
}

.company-page .top-bar span {
  white-space: normal;
  padding-right: 0.45rem;
}

.company-page .top-bar-left {
  flex: 0 1 auto;
  justify-content: center;
}

.company-page .top-bar-center {
  flex: 0 1 auto;
  justify-content: center;
}

.company-page .top-bar-right {
  flex: 0 0 auto;
  justify-content: center;
}

.company-page .top-bar a:hover {
  color: #C2C4C6;
}

.company-page .top-bar-right a {
  border-color: rgba(255, 255, 255, 0.24);
  color: #DADBDD;
}

.company-page .top-bar-right a:hover {
  background: #DA1F3D;
  border-color: #DA1F3D;
  color: #fff;
}

.company-page .hero {
  margin-bottom: 1rem;
}

.company-hero {
  padding: 5rem 1.25rem 1.6rem;
}

.company-hero-inner {
  width: min(1260px, 95vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 1.1rem;
  align-items: stretch;
}

.company-hero-copy,
.company-hero-card {
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(63, 21, 33, 0.08);
}

.company-hero-copy {
  background: #ffffff;
  padding: 2rem;
}

.company-hero-visual {
  display: flex;
}

.company-hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  padding: 1.45rem;
  display: grid;
  gap: 0.9rem;
  align-content: end;
  color: #f8fbff;
  background:
    linear-gradient(165deg, rgba(18, 28, 42, 0.94) 0%, rgba(35, 56, 82, 0.9) 100%);
  box-shadow:
    0 24px 46px rgba(13, 22, 33, 0.2),
    0 14px 30px rgba(201, 42, 71, 0.12);
}

.company-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 142, 165, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  z-index: 0;
}

.company-hero-card > * {
  position: relative;
  z-index: 1;
}

.company-hero-metric {
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.company-hero-metric strong,
.company-hero-metric span {
  display: block;
}

.company-hero-metric strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.company-hero-metric span {
  margin-top: 0.28rem;
  color: rgba(244, 248, 255, 0.82);
  line-height: 1.55;
}

.company-hero h1 {
  max-width: none;
  margin-bottom: 0.7rem;
}

.company-lead {
  max-width: 840px;
  color: var(--company-muted);
  line-height: 1.62;
  margin-top: 0;
  margin-bottom: 1rem;
}

.company-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.company-page .btn {
  display: inline-block;
  background: var(--company-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid var(--company-accent);
  padding: 0.78rem 1.14rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.company-page .btn:hover {
  background: #A5182C;
  border-color: #A5182C;
  transform: translateY(-2px);
}

.company-page .btn.btn-outline {
  background: #fff;
  color: var(--company-accent);
  border-color: #e3c6ce;
}

.company-page .btn.btn-outline:hover {
  background: #fff3f7;
  color: #A5182C;
  border-color: #DA1F3D;
}

.company-main {
  width: min(1260px, 95vw);
  margin: 0 auto 2.4rem;
  padding: 0;
}

.company-panel {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--company-border);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: 0 12px 24px rgba(22, 34, 48, 0.06);
}

.company-section-head {
  margin-bottom: 0.9rem;
}

.company-kicker {
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #b21f3b;
}

.company-section-head h2 {
  margin: 0;
}

.company-grid {
  display: grid;
  gap: 0.85rem;
}

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

.company-grid.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.95rem;
  box-shadow: 0 10px 20px rgba(85, 85, 85, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.company-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: none;
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

.company-card i {
  color: var(--company-accent);
  font-size: 1.3rem;
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 14px 22px rgba(85, 85, 85, 0.08);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.company-card h3 {
  margin: 0.6rem 0 0.4rem;
}

.company-card p {
  margin: 0;
  color: var(--company-muted);
  line-height: 1.55;
}

.company-card:hover {
  transform: translateY(-8px);
  border-color: #cbd5e1;
  box-shadow: 0 18px 34px rgba(85, 85, 85, 0.12);
}

.company-card:hover::before {
  transform: scale(1.16);
  opacity: 1;
}

.company-card:hover i {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 26px rgba(201, 42, 71, 0.18);
}

.company-steps .step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--company-accent);
  color: #fff;
  font-weight: 700;
}

.company-proof {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
  align-items: start;
}

.company-proof p {
  margin: 0.45rem 0 0;
  color: var(--company-muted);
  line-height: 1.6;
}

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

.company-proof-list article {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #DA1F3D;
  border-radius: 12px;
  padding: 0.85rem;
}

.company-proof-list strong,
.company-proof-list span {
  display: block;
}

.company-proof-list span {
  margin-top: 0.2rem;
  color: #888888;
}

.company-faq-grid .company-card h3 {
  margin-top: 0;
}

.company-cta {
  margin-top: 1rem;
  background: linear-gradient(145deg, #DA1F3D 0%, #A5182C 100%);
  border-radius: 18px;
  padding: 1.4rem 1rem;
  text-align: center;
  color: #fff;
}

.company-cta h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.company-cta p {
  margin-top: 0;
  margin-bottom: 0.85rem;
  color: #ffeef2;
}

.company-cta .company-hero-actions {
  justify-content: center;
}

.company-cta .btn {
  background: #555555;
  border-color: #555555;
}

.company-cta .btn:hover {
  background: #111b27;
  border-color: #111b27;
}

.company-cta .btn.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.company-cta .btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 980px) {
  .leistungen-hero-shell,
  .booking-hero-shell,
  .company-hero-inner,
  .company-grid.three-col,
  .company-grid.four-col,
  .company-proof {
    grid-template-columns: 1fr 1fr;
  }

  .leistungen-hero-shell {
    grid-template-columns: 1fr;
  }

  .booking-hero-shell {
    grid-template-columns: 1fr;
  }

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

  .leistungen-quick-grid,
  .leistungen-grid,
  .leistungen-audience-grid,
  .leistungen-steps,
  .leistungen-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-intro-modern,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-side-panel-stacked {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-board-head,
  .booking-panel-head,
  .booking-date-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .booking-board-badges {
    min-width: 0;
  }

  .booking-summary-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --top-bar-offset: 4.8rem;
  }

  .services-page .top-bar {
    justify-content: center;
  }

  .services-page .top-bar-left,
  .services-page .top-bar-center,
  .services-page .top-bar-right {
    flex: 1 1 100%;
    justify-content: center;
  }

  .services-page .top-bar span {
    text-align: center;
    padding-right: 0;
  }

  .company-page .top-bar {
    justify-content: center;
  }

  .company-page .top-bar-left,
  .company-page .top-bar-center,
  .company-page .top-bar-right {
    flex: 1 1 100%;
    justify-content: center;
  }

  .company-page .top-bar span {
    text-align: center;
    padding-right: 0;
  }

  .booking-page .booking-section-featured .container,
  .booking-board-head,
  .booking-step-panel-appointment,
  .booking-side-card {
    padding: 1rem;
  }

  .booking-date-note,
  .booking-side-link {
    width: 100%;
  }

  .company-hero {
    padding-top: 4.3rem;
  }

  .company-grid.three-col,
  .company-grid.four-col,
  .company-proof {
    grid-template-columns: 1fr;
  }

  .company-panel {
    padding: 0.95rem;
    border-radius: 14px;
  }

  .company-cta {
    border-radius: 14px;
  }

  .about-teaser {
    margin: 1rem auto;
    padding: 0 0.6rem;
  }

  .about-teaser-inner {
    padding: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-teaser-copy p {
    font-size: 1.05rem;
  }

  .about-teaser-link {
    white-space: normal;
  }

  .about-teaser-icons i {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .services-grid,
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .booking-benefits {
    grid-template-columns: 1fr;
  }

  .booking-main,
  .booking-shell,
  .booking-page .booking-benefits {
    width: min(96vw, 1260px);
  }

  .booking-hero {
    padding: 0.5rem 0.8rem 0;
    margin-bottom: 0.5rem;
  }

  .booking-hero-copy {
    padding: 1rem;
    border-radius: 16px;
  }

  .booking-hero-board {
    border-radius: 16px;
  }

  .booking-intro-card,
  .booking-side-panel {
    border-radius: 14px;
    padding: 0.9rem;
  }

  .booking-metrics {
    grid-template-columns: 1fr;
  }

  .booking-field-grid {
    grid-template-columns: 1fr;
  }

  .booking-hero-facts {
    grid-template-columns: 1fr;
  }

  .booking-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .leistungen-hero {
    padding: 0.5rem 0.8rem 0;
    margin-bottom: 0.5rem;
  }

  .leistungen-hero-copy,
  .leistungen-hero-panel,
  .leistungen-services,
  .leistungen-audience,
  .leistungen-flow,
  .leistungen-faq,
  .leistungen-cta {
    padding: 1rem;
    border-radius: 16px;
  }

  .leistungen-hero-copy h1 {
    font-size: 2.2rem;
  }

  .leistungen-hero-facts,
  .leistungen-quick-grid,
  .leistungen-grid,
  .leistungen-audience-grid,
  .leistungen-faq-grid,
  .leistungen-steps {
    grid-template-columns: 1fr;
  }

  .leistungen-cta-actions,
  .leistungen-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .leistungen-hero-logo {
    width: 82px;
    height: 82px;
  }

  .quick-links .services-grid {
    transform: none;
    gap: 1rem;
  }

  .team-showcase-header {
    padding: 1.4rem 1rem 1.25rem;
    border-radius: 18px;
  }

  .team-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team-member-card {
    border-radius: 18px;
    padding: 1.5rem 1rem 1.2rem;
  }

  .team-member-photo {
    width: min(200px, 72vw);
  }

  .quick-link-card {
    min-height: 0;
    padding: 2rem 1.4rem;
  }

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

  nav {
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin: 0.2rem 0 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    transform: none;
  }

  nav .partner {
    display: none;
  }

  .nav-btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
  }

  .top-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin-top: 4.1rem;
  }

  .hero {
    padding: 3rem 1rem 3rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-image-epic {
    min-height: 360px;
  }

  .page-visual-chip {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .hero-image-card {
    width: min(100%, 560px);
    transform: rotateY(-8deg) rotateX(6deg);
  }

  .hero-image-badge {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .hero-image-badge-top {
    top: 4%;
    left: 2%;
  }

  .hero-image-badge-bottom {
    right: 2%;
    bottom: 4%;
  }

  .company-hero-copy,
  .company-hero-card {
    padding: 1.2rem;
    border-radius: 20px;
  }
}


