/* ═══════════════════════════════════════════════════════
   DUAL Kälte- und Klimatechnik – Global Stylesheet
   Clean, refined, professional. DM Sans + DM Serif Display.
   Mobile-First Update
═══════════════════════════════════════════════════════ */

:root {
  --blue: #0057FF;
  --blue-dark: #003ECC;
  --blue-light: #EEF3FF;
  --navy: #0A1628;
  --red: #E53935;
  --red-light: #FFEEEE;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #DDE4EF;
  --gray-400: #8BA0C4;
  --gray-600: #4A5E78;
  --gray-800: #1C2B3A;
  --text: #1C2B3A;
  --text-light: #4A5E78;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .07);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .12);
  --transition: all .22s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

/* ─── UTILITY ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 75px 48px;
}

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

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 48px;
  padding: 0 20px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: var(--transition);
  border: 2px solid var(--blue);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 87, 255, .25);
}

.btn-primary.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--navy);
  transition: var(--transition);
  cursor: pointer;
}

.btn-ghost-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: var(--transition);
  cursor: pointer;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .2s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 8px 12px;
}

.brand-mark {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -.01em;
}

.brand-sub {
  font-size: .65rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--gray-100);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white) !important;
  font-size: .88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  margin-left: 8px;
  transition: var(--transition);
}

.btn-book:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 87, 255, .25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── MOBILE NAV ──────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  flex-direction: column;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .13);
  padding: 6px 0 12px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 15px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.mobile-nav a.btn-book {
  margin: 10px 16px 0;
  border-radius: 8px;
  text-align: center;
  justify-content: center;
  display: block;
  background: var(--blue);
  color: white !important;
  font-weight: 600;
  padding: 14px 20px;
  border-bottom: none;
}

.mobile-nav a.btn-book:hover {
  background: var(--blue-dark);
}

.mobile-nav-close {
  display: none;
}

/* ─── EMERGENCY BANNER ────────────────────────────────── */
.emergency-banner {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 190;
  background: #C62828;
  padding: 9px 48px;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.emergency-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.emergency-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.emergency-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
  animation: epulse 1.8s ease-in-out infinite;
}

@keyframes epulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
  }

  60% {
    opacity: .7;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
}

.emergency-left strong {
  color: white;
  font-size: .88rem;
  font-weight: 700;
}

.emergency-left span {
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  margin-left: 4px;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #C62828;
  font-weight: 700;
  font-size: .85rem;
  padding: 7px 16px;
  border-radius: 6px;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.emergency-btn:hover {
  background: var(--off-white);
  transform: scale(1.02);
}

/* Mobile: hide banner, show button next to hamburger */
.navbar-emergency-btn {
  display: none;
}

@media (max-width: 900px) {
  .emergency-banner {
    display: none;
  }

  .navbar-emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #C62828;
    color: white;
    font-size: .78rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 7px;
    margin-right: 8px;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
  }

  .navbar-emergency-btn svg {
    flex-shrink: 0;
  }

  .navbar {
    padding: 0 16px;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar>.nav-links {
    display: none;
  }
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 148px 48px 100px;
  background: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.dot-live {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

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

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

.hero-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.trust-item span {
  font-size: .72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

.hero-visual {
  position: relative;
  height: 95%;
  width: 95%;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--gray-100);
}

/* ─── SCROLL DOWN ARROW ───────────────────────────────── */
.hero-scroll-btn {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.55;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 10;
  text-decoration: none;
}

.hero-scroll-btn:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(4px);
}

.hero-scroll-btn .scroll-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-scroll-btn .scroll-arrow {
  width: 38px;
  height: 38px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* ─── HERO SLIDER ─────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.slider-dot.active {
  background: white;
  transform: scale(1.3);
}

/* ─── FEATURES STRIP ──────────────────────────────────── */
.features-strip {
  background: var(--navy);
  padding: 44px 48px;
}

.features-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feat-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feat-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.feat-text span {
  font-size: .8rem;
  color: var(--gray-400);
}

/* ─── SERVICES OVERVIEW ───────────────────────────────── */
.services-overview {
  padding: 80px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-featured {
  border-color: var(--blue);
  border-width: 2px;
}

.sc-img {
  display: flex;
  justify-content: center;
}

.sc-img svg {
  width: 80px;
  height: 80px;
}

.sc-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sc-img-blue {
  background: var(--blue-light);
}

.sc-img-accent {
  background: #E8F0FF;
}

.sc-img-red {
  background: var(--red-light);
}

.sc-body {
  padding: 8px 24px 24px;
}

.sc-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.sc-tag-blue {
  color: var(--blue);
  background: var(--blue-light);
}

.sc-tag-red {
  color: var(--red);
  background: var(--red-light);
}

.sc-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.sc-body p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sc-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.sc-link:hover {
  color: var(--blue-dark);
}

.sc-link-red {
  color: var(--red);
}

.sc-link-red:hover {
  color: #C62828;
}

.services-cta {
  text-align: center;
}

/* ─── WHY DUAL ────────────────────────────────────────── */
.why-dual {
  padding: 80px 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 440px;
}

.why-text .btn-ghost-dark {
  margin-top: 8px;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 8px;
}

.why-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-card p {
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── CTA SECTION ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0D3B6E 100%);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  max-width: 420px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: .88rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 12px;
}

.footer-nav h5,
.footer-contact h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: .88rem;
  color: var(--gray-400);
  margin-bottom: 10px;
  transition: color .2s;
  line-height: 1.5;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

/* ─── PAGE HEADER ─────────────────────────────────────── */
.page-header {
  padding: 140px 48px 72px;
  background: linear-gradient(160deg, var(--navy) 0%, #0D3B6E 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 87, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-header-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 87, 255, .2) 0%, transparent 70%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, .3);
}

.page-header h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header h1 em {
  font-style: italic;
  color: #7EB6FF;
}

.page-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── LEISTUNGEN PAGE ─────────────────────────────────── */
.leistungen-section {
  padding: 0;
  overflow-x: hidden;
}

.leistungen-section:nth-child(even) {
  background: var(--white);
}

.leistung-block {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--blue-light);
}

.leistung-block1 {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.leistung-block.reverse {
  direction: rtl;
}

.leistung-block.reverse>* {
  direction: ltr;
}

.leistung-block1.reverse {
  direction: rtl;
}

.leistung-block1.reverse>* {
  direction: ltr;
}

.leistung-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-light);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leistung-visual1 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leistung-visual img,
.leistung-visual1 img {
  max-width: 75%;
  display: block;
}

.leistung-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.1;
}

.leistung-text p {
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.leistung-text .section-eyebrow {
  margin-bottom: 6px;
}

/* ─── ÜBER UNS PAGE ───────────────────────────────────── */
.about-section {
  padding: 80px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-intro-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.dual-meaning {
  background: linear-gradient(135deg, var(--navy) 0%, #0D3B6E 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: white;
}

.dual-meaning h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 14px;
}

.dual-meaning p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 18px;
}

.dual-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.dual-pillar {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 18px;
}

.dual-pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.dual-pillar strong {
  display: block;
  font-size: .88rem;
  color: white;
  margin-bottom: 4px;
}

.dual-pillar span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.legal-notice {
  background: var(--off-white);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 32px;
}

.legal-notice h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.legal-notice p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.legal-notice a {
  color: var(--blue);
  text-decoration: underline;
}

/* ─── TERMIN PAGE ─────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
  align-items: start;
}

.steps {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 6px;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  opacity: .45;
}

.step.active {
  opacity: 1;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.step.done {
  opacity: .7;
  cursor: pointer;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--text-light);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.step.active .step-num {
  background: var(--blue);
  color: white;
}

.step.done .step-num {
  background: #22C55E;
  color: white;
}

.step-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-section {
  display: none;
}

.form-section.visible {
  display: block;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.form-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-section-sub {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-option {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.service-label:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.service-option:checked+.service-label {
  border-color: var(--blue);
  background: var(--blue-light);
}

.svc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.svc-info strong {
  display: block;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 700;
}

.svc-info span {
  font-size: .74rem;
  color: var(--gray-400);
}

/* Calendar */
.calendar-wrap {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}

.cal-nav button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cal-nav button:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.cal-month {
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-dow {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .06em;
  padding: 10px 0 8px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
}

.cal-day:hover:not(.empty):not(.past) {
  background: var(--blue-light);
  color: var(--blue);
}

.cal-day.today {
  font-weight: 700;
  color: var(--blue);
}

.cal-day.selected {
  background: var(--blue) !important;
  color: white !important;
  border-radius: 8px;
}

.cal-day.available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 5px;
  height: 5px;
  background: #22C55E;
  border-radius: 50%;
}

.cal-day.limited::after {
  background: var(--red);
}

.cal-day.past {
  color: var(--gray-200);
  cursor: not-allowed;
}

.cal-day.empty {
  cursor: default;
}

.slots-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.slot-btn {
  padding: 10px 6px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: white;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.slot-btn:hover:not(.full) {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.slot-btn.selected {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.slot-btn.full {
  background: var(--gray-100);
  color: var(--gray-400);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: white;
  transition: border-color .2s;
  outline: none;
  /* Prevent iOS zoom on focus */
  font-size: max(.9rem, 16px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, .08);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.5;
}

.req {
  color: var(--red);
}

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.privacy-row label {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.privacy-row a {
  color: var(--blue);
  text-decoration: underline;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  margin-top: 8px;
}

.btn-back {
  background: none;
  border: 1.5px solid var(--gray-200);
  color: var(--text-light);
  padding: 11px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-back:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-next {
  background: var(--blue);
  border: 2px solid var(--blue);
  color: white;
  padding: 11px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-next:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-next:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.btn-submit {
  background: #16A34A !important;
  border-color: #16A34A !important;
}

.btn-submit:hover {
  background: #15803D !important;
  border-color: #15803D !important;
}

/* Success / Error */
.success-view,
.error-view {
  display: none;
  text-align: center;
  padding: 36px 16px;
}

.success-view.visible,
.error-view.visible {
  display: block;
  animation: fadeIn .3s ease;
}

.success-icon,
.error-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.success-icon {
  background: #DCFCE7;
  color: #16A34A;
}

.error-icon {
  background: var(--red-light);
  color: var(--red);
}

.success-view h2,
.error-view h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.success-view p,
.error-view p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.booking-ref {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 8px 20px;
  margin-bottom: 24px;
  letter-spacing: .05em;
}

/* Booking sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.info-card-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 22px;
}

.info-card-header h3 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
}

.info-card-body {
  padding: 18px 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row .label {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.summary-row .value {
  font-size: .86rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

.summary-row .value.empty {
  color: var(--gray-400);
  font-weight: 400;
  font-style: italic;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-item strong {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.info-item span {
  font-size: .78rem;
  color: var(--gray-400);
  line-height: 1.4;
}

.info-item a {
  font-size: .78rem;
  color: var(--blue);
  transition: color .2s;
}

.info-item a:hover {
  color: var(--blue-dark);
}

/* ─── IMPRESSUM ───────────────────────────────────────── */
.impressum-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
  align-items: start;
}

.impressum-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impressum-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.impressum-card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 24px;
}

.impressum-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  padding: 18px 24px 0;
}

.impressum-grid {
  padding: 10px 24px 20px;
}

.impressum-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
}

.impressum-row:last-child {
  border-bottom: none;
}

.impressum-key {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-top: 2px;
}

.impressum-val {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.6;
}

.impressum-val a {
  color: var(--blue);
  transition: color .2s;
}

.impressum-val a:hover {
  color: var(--blue-dark);
}

.impressum-text {
  padding: 18px 24px 24px;
}

.impressum-text p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.impressum-text p:last-child {
  margin-bottom: 0;
}

.impressum-text a {
  color: var(--blue);
}

.impressum-sidebar {
  position: sticky;
  top: 100px;
}

/* Footer for sub-pages */
.footer-termin {
  background: var(--navy);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

.footer-termin-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-termin-links a {
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.footer-termin-links a:hover {
  color: white;
}

/* ─── FAST MENU ───────────────────────────────────────── */
#fastmenu {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.fastmenu-tab {
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  background: var(--blue);
  color: white;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  box-shadow: -4px 0 16px rgba(0, 87, 255, .25);
  cursor: pointer;
  transition: background .2s;
}

.fastmenu-tab:hover {
  background: var(--blue-dark);
}

.fastmenu-tab svg {
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

#fastmenu.open .fastmenu-tab svg {
  transform: rotate(180deg);
}

.fastmenu-inner {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-right: none;
  border-radius: 12px 0 0 12px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, .12);
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-width .35s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
  white-space: nowrap;
}

#fastmenu.open .fastmenu-inner {
  max-width: 260px;
  opacity: 1;
  pointer-events: auto;
}

.fastmenu-inner a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  border-bottom: 1px solid var(--gray-100);
  transition: background .18s, color .18s;
  text-decoration: none;
}

.fastmenu-inner a:last-child {
  border-bottom: none;
}

.fastmenu-inner a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.fastmenu-inner a .fm-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fastmenu-inner a .fm-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.fastmenu-inner a.fm-emergency {
  color: #C62828;
}

.fastmenu-inner a.fm-emergency:hover {
  background: #FFF0F0;
  color: #C62828;
}

@media (max-width: 600px) {
  #fastmenu {
    top: auto;
    bottom: 80px;
    transform: none;
  }

  .fastmenu-tab {
    top: 50%;
    transform: translateY(-50%);
  }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  /* hide scroll arrow when hero is short */
  .hero-scroll-btn {
    display: none;
  }

  .features-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }

  .sidebar {
    position: static;
  }

  .impressum-layout {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }

  .impressum-sidebar {
    position: static;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dual-pillars {
    grid-template-columns: 1fr 1fr;
  }

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

  .leistung-block,
  .leistung-block1 {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .leistung-block.reverse,
  .leistung-block1.reverse {
    direction: ltr;
  }

  .leistung-visual,
  .leistung-visual1 {
    aspect-ratio: 16/9;
  }
}

/* ── Mobile (≤768px) ───────────────────────────────── */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    padding: 110px 20px 60px;
    align-items: flex-start;
  }

  .hero-h1 {
    font-size: 2.4rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }

  .hero-trust {
    gap: 16px;
  }

  .trust-item strong {
    font-size: 1.3rem;
  }

  /* Emergency banner */
  .emergency-banner {
    padding: 10px 20px;
  }

  /* Features strip */
  .features-strip {
    padding: 36px 20px;
  }

  .features-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .feat-text strong {
    font-size: .88rem;
  }

  .feat-text span {
    font-size: .75rem;
  }

  /* Services */
  .services-overview {
    padding: 56px 0;
  }

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

  .service-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .sc-img img {
    height: 180px;
  }

  /* Why Dual */
  .why-dual {
    padding: 56px 0;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 20px 18px;
  }

  /* CTA */
  .cta-section {
    padding: 52px 0;
  }

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

  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-ghost-white {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 44px 0 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-termin {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-termin-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Page header */
  .page-header {
    padding: 110px 20px 52px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  /* Leistungen */
  .leistungen-section {
    padding: 44px 0;
  }

  .leistung-block,
  .leistung-block1 {
    padding: 36px 20px;
    gap: 24px;
  }

  .leistung-text h2 {
    font-size: 1.6rem;
  }

  /* Über uns */
  .about-section {
    padding: 56px 0;
  }

  .dual-pillars {
    grid-template-columns: 1fr;
  }

  .dual-meaning {
    padding: 28px 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Termin */
  .booking-layout {
    padding: 32px 16px;
    gap: 24px;
  }

  .steps {
    padding: 4px;
  }

  .step {
    padding: 10px 8px;
    gap: 6px;
  }

  .step-label {
    font-size: .75rem;
  }

  .form-card {
    padding: 20px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

  .form-footer {
    gap: 12px;
  }

  .btn-back,
  .btn-next {
    padding: 12px 16px;
    font-size: .85rem;
  }

  /* Impressum */
  .impressum-layout {
    padding: 32px 16px;
  }

  .impressum-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .impressum-key {
    font-size: .72rem;
  }
}

/* ── Small Mobile (≤480px) ─────────────────────────── */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2rem;
  }

  .hero-eyebrow {
    font-size: .68rem;
    padding: 6px 12px;
  }

  .features-strip-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feat {
    align-items: flex-start;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 12px;
  }

  .trust-divider {
    display: none;
  }

  .service-label {
    padding: 12px 14px;
  }

  .svc-info strong {
    font-size: .82rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .booking-layout {
    padding: 24px 12px;
  }

  .form-card {
    padding: 16px 14px;
  }

  .cta-text h2 {
    font-size: 1.5rem;
  }

  .footer-termin-links img {
    height: 80px !important;
    width: 80px !important;
  }
}
