/* =============================================
   BARWICH DACH — Clean White + Red Design
   Primary: #b80000 (matching logo red)
   Background: White
   Font: Inter
   ============================================= */

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

:root {
  --white:      #ffffff;
  --off:        #fafafa;
  --gray-50:    #f5f5f5;
  --gray-100:   #eeeeee;
  --gray-200:   #e0e0e0;
  --gray-400:   #9e9e9e;
  --gray-600:   #5a5a5a;
  --gray-800:   #2a2a2a;
  --black:      #111111;
  --red:        #b80000;
  --red-h:      #9a0000;
  --red-light:  #fdf0f0;
  --red-dim:    rgba(184, 0, 0, 0.08);
  --red-border: rgba(184, 0, 0, 0.2);
  --gray-500:   #757575;
  --gray-700:   #424242;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.1);
  --max-w:      1200px;
  --r-sm:       6px;
  --r-md:       10px;
  --r-lg:       16px;
  --r-xl:       24px;
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ===== FOCUS ===== */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 112px 0; }

/* ===== TYPE ===== */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}

h1, h2, h3 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section__header { margin-bottom: 64px; }

.section__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--black);
  margin-bottom: 16px;
}

.section__header p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,0,0,0.3);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(184,0,0,0.2);
}

.btn--white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.btn--white:hover {
  background: rgba(255,255,255,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, top 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }

.nav__logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  image-rendering: auto;
}

.nav__links {
  display: flex;
  gap: 24px;
  flex: 1;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__links a:hover { color: var(--red); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.nav-active { color: var(--red); }
.nav__links a.nav-active::after { width: 100%; }

.nav__tel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__tel:hover { color: var(--red); }

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

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid transparent;
  background: #fff;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s,
              padding 0.3s,
              border-color 0.2s;
}

.nav__drawer.open {
  max-height: 600px;
  opacity: 1;
  padding: 20px 28px 28px;
  border-top-color: var(--gray-100);
}

.nav__drawer ul { display: flex; flex-direction: column; gap: 4px; }

.nav__drawer li a {
  display: block;
  font-size: 16px;
  color: var(--gray-800);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s, padding-left 0.2s;
}

.nav__drawer li:last-child a { border-bottom: none; }
.nav__drawer li a:hover { color: var(--red); padding-left: 6px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,0.45) 0%, rgba(5,5,5,0.34) 50%, rgba(5,5,5,0.10) 100%),
    linear-gradient(to top, rgba(5,5,5,0.55) 0%, transparent 45%);
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* Inhalt oben + Statistiken unten -> Mitte der Aufnahme bleibt frei */
  justify-content: space-between;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero__content { max-width: 760px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero__dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}


.hero__title {
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, #ff6666 0%, #ff3333 40%, #ff8888 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-em-shift 5s ease-in-out infinite alternate;
}

@keyframes hero-em-shift {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title em {
    animation: none;
    background: none;
    -webkit-text-fill-color: #ff4444;
    color: #ff4444;
  }
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  gap: 0;
}

.hero__stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.hero__stat strong {
  display: block;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero__stat span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s, opacity 0.4s ease;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--red-border);
}

.service-card__img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 24px 26px 28px;
}

.service-card__icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  margin-bottom: 14px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card__icon {
  transform: scale(1.2) rotate(-8deg);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.service-card__body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.service-card:hover .service-card__link {
  gap: 8px;
}

/* ===== ABOUT ===== */
.about { background: var(--gray-50); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% 30%;
  transition: transform 0.6s ease;
}

.about__images:hover .about__img-main img {
  transform: scale(1.03);
}

.about__img-secondary {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 52%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge-float {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about__badge-float img {
  width: 58px;
  height: auto;
  object-fit: contain;
  margin-bottom: 6px;
}

.about__badge-float span {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  white-space: nowrap;
}

.about__badge-float em {
  font-size: 11px;
  font-style: normal;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.about__content h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  margin-bottom: 24px;
}

.about__content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__content p strong { color: var(--black); font-weight: 600; }

.checklist {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  transition: transform 0.2s ease;
}

.checklist li:hover { transform: translateX(4px); }

.check {
  width: 20px;
  height: 20px;
  background: var(--red-dim);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== REFERENZEN ===== */
.referenzen { background: var(--gray-50); }

.gallery__item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--gray-100);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery__item:hover .gallery__label {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHY US ===== */
.why { background: var(--white); border-top: 1px solid var(--gray-100); }

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

.why__img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__img-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.why__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 12px;
  margin: 0 -12px;
  border-bottom: 1px solid var(--gray-100);
  border-radius: var(--r-sm);
  transition: background 0.2s;
}

.why-item:hover {
  background: var(--red-dim);
}

.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }

.why-item__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.5;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-top: 3px;
  min-width: 24px;
}

.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.why-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process { background: var(--gray-50); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

/* Horizontal dashed connector between process step numbers */
.process__steps::before {
  content: '';
  position: absolute;
  top: 56px; /* vertically centered on 48px circle: 32px top-padding + 24px */
  left: 13%;   /* approximate center of col 1 */
  right: 13%;  /* approximate center of col 4 */
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--red-border) 0,
    var(--red-border) 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 0;
  pointer-events: none;
}


.process__step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 32px 24px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}

.process__step:hover {
  border-color: var(--red-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.process__num {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(184,0,0,0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.process__step:hover .process__num {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(184,0,0,0.45);
}

.process__step h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.process__step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact { background: var(--gray-50); }

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

.contact__left h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  margin-bottom: 16px;
}

.contact__left > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

a.contact__info-item:hover {
  background: var(--red-light);
  border-color: var(--red-border);
}

.contact__info-ico {
  width: 38px;
  height: 38px;
  background: var(--red-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.contact__info-item strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.contact__info-item span {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.5;
}

.contact__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
}

.contact__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.contact__img:hover img {
  transform: scale(1.04);
}

/* ===== FORM ===== */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact__form { display: flex; flex-direction: column; gap: 18px; }

.contact__form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form__group { display: flex; flex-direction: column; gap: 7px; }

.form__group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.form__group input,
.form__group select,
.form__group textarea {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--black);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--gray-400);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--red);
  background: var(--white);
}

.form__group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239e9e9e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  background-color: var(--gray-50);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form__note {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: -4px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(184,0,0,0.1);
}

input.error, select.error, textarea.error {
  border-color: var(--red) !important;
  background: var(--red-light);
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background: #1a0808;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/cta-haus.jpg');
  background-size: cover;
  background-position: center 38%;
  opacity: 0.18;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.cta-band:hover .cta-band__bg {
  transform: scale(1);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-band__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.cta-band__text h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cta-band__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn--solid-white {
  background: #fff;
  color: var(--red);
  font-weight: 700;
}

.btn--solid-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.25);
}

@media (max-width: 720px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* ===== GOOGLE BEWERTUNGEN ===== */
.reviews { background: var(--white); }

.reviews__header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 16px;
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__rating {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
}

.reviews__stars {
  font-size: 22px;
  color: #f4b400;
  letter-spacing: 2px;
  line-height: 1;
}

.reviews__count {
  font-size: 13px;
  color: var(--gray-400);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--red);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
}

.review-card__quote {
  font-size: 56px;
  line-height: 1;
  color: var(--red);
  opacity: 0.12;
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  right: 22px;
  pointer-events: none;
  user-select: none;
}

.review-card__date {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 14px;
  display: block;
}

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

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__head strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.review-card__stars {
  font-size: 13px;
  color: #f4b400;
  letter-spacing: 1px;
  margin-top: 2px;
}

.review-card__google {
  margin-left: auto;
  flex-shrink: 0;
}

.review-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ===== GALLERY FILTER ===== */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.gallery-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.gallery-filter__btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.gallery-filter__btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.gallery-filter__count {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.7;
}

/* ===== GALLERY GRID (flat, filterable, CSS columns) ===== */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
}

.gallery-grid .gallery__item {
  break-inside: avoid;
  display: block;
  margin-bottom: 14px;
  min-height: 0;
  height: auto;
}

.gallery-grid .gallery__item img {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
}

.gallery-grid .gallery__item.filter-hidden {
  display: none;
}

.gallery-empty {
  text-align: center;
  color: var(--gray-400);
  font-size: 15px;
  padding: 48px 0;
}

/* ===== REVIEWS STARS IMG ===== */
.reviews__stars-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* ===== EINSATZGEBIET ===== */
.einsatz__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.einsatz__content h2 { margin-bottom: 16px; }
.einsatz__content p { color: var(--gray-600); margin-bottom: 28px; }

.einsatz__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.city-tag svg { color: var(--red); }

.city-tag:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.city-tag:hover svg { color: #fff; }

.city-tag--more {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 600;
}

.einsatz__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.einsatz__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.einsatz__img-wrap:hover img { transform: scale(1.04); }

.einsatz__radius-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.einsatz__radius-badge strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.einsatz__radius-badge span {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 860px) {
  .einsatz__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}

.faq__item:first-child {
  border-top: 1px solid var(--gray-100);
}

.faq__item:has([aria-expanded="true"]) {
  background: var(--red-light);
  border-radius: var(--r-sm);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  font-family: inherit;
  transition: color 0.2s;
}

.faq__question:hover { color: var(--red); }

.faq__question[aria-expanded="true"] { color: var(--red); }

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  color: var(--gray-400);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  color: var(--red);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq__answer p {
  padding: 0 8px 22px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 680px;
}

/* ===== FOOTER ===== */
.footer { color: #fff; }

.footer__top {
  background: var(--red);
  padding: 40px 0;
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__cta h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.footer__cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.footer__cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn--white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn--red {
  background: #fff;
  color: var(--red);
  font-weight: 700;
}

.btn--red:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.footer__main {
  position: relative;
  background: #1a0808;
  background-image: url('img/IyD1dq4V5Xj67afFR6CFXXoHAsM.jpg');
  background-size: cover;
  background-position: center 60%;
  padding: 64px 0 36px;
  overflow: hidden;
}

.footer__main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,10,10,0.78) 0%,
    rgba(20,8,8,0.72) 50%,
    rgba(15,5,5,0.88) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.footer__main > .container {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 9px; }

.footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__col a:hover { color: #fff; }

.footer__addr {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  cursor: default;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer__bottom a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

/* ===== SERVICE CARD BADGE ===== */
.service-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(184,0,0,0.35);
}

.service-card__badge--urgent {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.service-card__badge--premium {
  background: linear-gradient(135deg, #7c6000, #c49a00);
  box-shadow: 0 2px 8px rgba(196,154,0,0.4);
}

.service-card__badge--kfw {
  background: #005a96;
  box-shadow: 0 2px 8px rgba(0,90,150,0.4);
}

/* ===== SERVICE CARD DETAIL HINT ===== */
.service-card__detail-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(184,0,0,0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

.service-card:hover .service-card__detail-hint {
  transform: translateY(0);
}

/* Show detail hint on touch devices where hover isn't available */
@media (hover: none), (pointer: coarse) {
  .service-card__detail-hint {
    transform: translateY(0);
    background: rgba(184,0,0,0.8);
  }
  .gallery__label {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SERVICE DETAIL MODAL ===== */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
}

.service-modal.open {
  pointer-events: auto;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s, backdrop-filter 0.35s;
}

.service-modal.open .service-modal__backdrop {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-modal__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(520px, 100vw);
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.service-modal.open .service-modal__panel {
  transform: translateX(0);
}

.service-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.35);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.service-modal__close:hover { background: rgba(0,0,0,0.55); }

.service-modal__img-wrap {
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.service-modal__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal__body {
  padding: 36px 40px 48px;
  flex: 1;
}

.service-modal__icon {
  width: 44px;
  height: 44px;
  background: var(--red-dim);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}

.service-modal__icon svg {
  width: 22px;
  height: 22px;
}

.service-modal__body h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--black);
}

.service-modal__desc p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.service-modal__benefits {
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-modal__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-800);
}

.service-modal__benefits li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 600px) {
  .service-modal__panel { width: 100vw; }
  .service-modal__body { padding: 28px 24px 40px; }
  .service-modal__img-wrap { height: 220px; }
}

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
  position: fixed;
  bottom: 152px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 20px 12px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 800;
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1),
              transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.2s;
  pointer-events: none;
}

.whatsapp-cta.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.whatsapp-cta:hover {
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .whatsapp-cta span { display: none; }
  .whatsapp-cta { padding: 14px; border-radius: 50%; bottom: 140px; right: 16px; }
}

/* Hide floats on mobile — replaced by sticky CTA bar */
@media (max-width: 860px) {
  .float-cta, .whatsapp-cta { display: none !important; }
  .back-to-top { bottom: calc(76px + env(safe-area-inset-bottom)); right: 16px; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--red), #ff5555);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(184,0,0,0.4);
}

/* ===== TRUST BAR ===== */
.trustbar {
  position: relative;
  padding: 64px 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trustbar__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.trustbar__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.trustbar__num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  display: inline;
}

.trustbar__plus {
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  margin-top: -8px;
}

.trustbar__icon {
  margin-bottom: 4px;
}

.trustbar__icon svg {
  color: var(--red);
}

.trustbar__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trustbar { padding: 48px 0; }
  .trustbar__num { font-size: 40px; }
}

@media (max-width: 520px) {
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trustbar { padding: 32px 0; }
  .trustbar__num { font-size: 32px; }
  .trustbar__card { padding: 20px 12px; }
  .trustbar__label { font-size: 11px; }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 48px 9px 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
  flex-wrap: wrap;
  text-align: center;
}
.announce-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
}
.announce-bar a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.2s;
}
.announce-bar a:hover { color: #ff6666; }
.announce-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color 0.2s;
}
.announce-bar__close:hover { color: white; }
.announce-bar.hidden { display: none; }

@media (max-width: 520px) {
  .announce-bar { font-size: 12px; gap: 6px; }
  .announce-bar span { display: none; }
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 88px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 20px 12px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 20px rgba(184,0,0,0.45);
  text-decoration: none;
  z-index: 800;
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1),
              transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.2s;
  pointer-events: none;
}

.float-cta.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.float-cta:hover {
  box-shadow: 0 6px 28px rgba(184,0,0,0.6);
  transform: translateY(-2px);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gray-800);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover { background: var(--red); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox__inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.lightbox__inner img.loading {
  opacity: 0;
  transform: scale(0.96);
}

.lightbox__caption {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-align: center;
}

.lightbox__counter {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9001;
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9001;
  line-height: 1;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.25); }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal--left  { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.42s; }

/* ===== JS HELPERS ===== */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin { animation: spin 0.8s linear infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process__steps::before { display: none; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .einsatz__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__images { padding-bottom: 32px; }
  .about__img-secondary { right: 0; bottom: 0; }
  .about__badge-float { left: 0; top: 16px; }
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__img { aspect-ratio: 16/9; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { columns: 2; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 64px 0; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__tel, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(38px, 10vw, 60px); }
  /* Text bleibt oben (klart die fixe Navi -> Eyebrow nicht abgeschnitten),
     Buttons + Statistiken rutschen nach ganz unten -> Mitte der Aufnahme bleibt frei */
  .hero__container { padding-top: 116px; padding-bottom: 36px; justify-content: flex-start; text-align: center; }
  .hero__img { object-position: center 42%; }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .hero__stat-sep { display: none; }
  .hero__stat {
    text-align: center;
    padding: 10px 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
  }
  .hero__stat strong { font-size: 21px; }
  .hero__stat span { font-size: 10px; margin-top: 2px; }

  /* Mobile: Text oben, Buttons + Statistiken nach unten (freie Mitte) */
  .hero__content { display: contents; }
  .hero__eyebrow {
    justify-content: center;
    font-size: 10.5px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    flex-wrap: wrap;
    line-height: 1.5;
  }
  .hero__title { margin-bottom: 16px; }
  .hero__sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .hero__actions { justify-content: center; margin-top: auto; padding-top: 28px; }
  .hero__stats { margin-top: 14px; }

  .services__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer__cta { flex-direction: column; align-items: flex-start; }
  .contact__form-wrap { padding: 28px 24px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process__steps::before { display: none; }
  /* Reviews laufen per Auto-Scroll-Script (Basis-Styles weiter unten) — auf Handy NICHT als Snap-Flex ueberschreiben */
  .reviews__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section__header { max-width: 100%; }
  .faq__question { font-size: 15px; }
  .einsatz__cities { gap: 8px; }
}

@media (max-width: 520px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  /* Hero kompakt: weniger Hoehe -> echter Freiraum in der Mitte der Aufnahme */
  .hero__title { font-size: clamp(30px, 8vw, 46px); margin-bottom: 10px; }
  .hero__eyebrow { font-size: 9.5px; margin-bottom: 10px; }
  .hero__sub { font-size: 13.5px; line-height: 1.45; margin-bottom: 0; }
  .hero__actions { flex-direction: row; gap: 8px; }
  .hero__actions .btn { flex: 1 1 0; width: auto; justify-content: center; padding: 12px 8px; font-size: 13px; }
  .hero__stats { margin-top: 10px; gap: 6px; }
  .hero__stat { padding: 7px 6px; }
  .hero__stat strong { font-size: 16px; }
  .hero__stat span { font-size: 9px; }
  .gallery-grid { columns: 1; }
  .gallery-filter { gap: 6px; }
  .gallery-filter__btn { padding: 7px 14px; font-size: 12px; }
  .float-cta span { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; bottom: 76px; right: 16px; }
  .back-to-top { bottom: calc(76px + env(safe-area-inset-bottom)); right: 16px; }
  .service-card__img { height: 180px; }
  .about__img-secondary { display: none; }
  .about__badge-float { position: static; margin-top: 16px; flex-direction: row; align-items: center; gap: 12px; width: fit-content; }
  .section__header h2 { font-size: clamp(26px, 7vw, 36px); }
  .cta-band { padding: 52px 0; }
  .cta-band__text h2 { font-size: clamp(24px, 6vw, 36px); }
  .process__steps { grid-template-columns: 1fr; gap: 10px; }
  .footer__cta-actions { flex-direction: column; width: 100%; }
  .footer__cta-actions .btn { justify-content: center; width: 100%; }
  .service-modal__body { padding: 24px 20px 40px; }
  .service-modal__img-wrap { height: 200px; }
  .einsatz__img-wrap { aspect-ratio: 16/9; }
}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-section { background: var(--off); }

.ba-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ba-tab {
  padding: 8px 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  background: transparent;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: inherit;
}
.ba-tab:hover { border-color: var(--red); color: var(--red); }
.ba-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.ba-panel { display: none; }
.ba-panel.active { display: block; }

.ba-slider {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 720px) {
  .ba-slider { aspect-ratio: 4/3; border-radius: var(--r-lg); }
}

.ba-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-img-before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba-img-before-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  display: block;
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  width: 3px;
  background: white;
  z-index: 2;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
}
.ba-slider.dragging .ba-handle {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transform: translate(-50%, -50%) scale(1.1);
}
.ba-lbl {
  position: absolute;
  top: 16px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  color: white;
  border-radius: 100px;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-lbl--before { left: 16px; }
.ba-lbl--after { right: 16px; }

/* ===== MOBILE STICKY CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.mobile-cta-bar.visible { transform: translateY(0); }

@media (max-width: 860px) {
  .mobile-cta-bar { display: flex; }
}

.mobile-cta-bar__call {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.mobile-cta-bar__call:hover { border-color: var(--red); color: var(--red); }

.mobile-cta-bar__book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: var(--red);
  color: white;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.mobile-cta-bar__book:active { transform: scale(0.97); background: var(--red-h); }

/* ===== POLISH: GALLERY LABELS ON TOUCH ===== */
@media (hover: none), (pointer: coarse) {
  .gallery__label {
    opacity: 0.92;
    transform: none;
  }
}

/* ===== POLISH: HERO CTA PULSE ===== */
@keyframes hero-btn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,0,0,0.5), 0 8px 28px rgba(184,0,0,0.3); }
  70%  { box-shadow: 0 0 0 14px rgba(184,0,0,0), 0 8px 28px rgba(184,0,0,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(184,0,0,0), 0 8px 28px rgba(184,0,0,0.3); }
}
.hero__actions .btn--primary {
  animation: hero-btn-pulse 1.8s ease-out 2s 3;
}
@media (prefers-reduced-motion: reduce) {
  .hero__actions .btn--primary { animation: none; }
}

/* ===== POLISH: SERVICE CARD IMAGE OVERLAY ===== */
.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 40%,
    rgba(184,0,0,0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-card__img::after { opacity: 1; }

/* ===== POLISH: PROCESS STEP ICON ===== */
.process__step-icon {
  width: 38px;
  height: 38px;
  background: var(--red-dim);
  color: var(--red);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.25s, color 0.25s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.process__step:hover .process__step-icon {
  background: var(--red);
  color: white;
  transform: scale(1.1) rotate(-6deg);
}

/* ===== POLISH: REVIEWS CTA ===== */
.reviews__cta {
  text-align: center;
  margin-top: 52px;
}
.reviews__cta .btn--outline {
  gap: 10px;
}

/* ===== POLISH: CTA BAND BACKGROUND ===== */
.cta-band__bg { opacity: 0.24; }

/* ===== POLISH: IMAGE LOADING SHIMMER ===== */
@keyframes img-shimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}
.gallery__item,
.service-card__img {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: img-shimmer 1.6s infinite linear;
}
@media (prefers-reduced-motion: reduce) {
  .gallery__item, .service-card__img { animation: none; }
}

/* ===== POLISH: CHECKLIST ICON ===== */
.check {
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
}
.checklist li:hover .check {
  transform: scale(1.2);
  background: var(--red);
  color: white;
}

/* ===== POLISH: FAQ ITEM OPEN INDICATOR ===== */
.faq__item:has([aria-expanded="true"]) .faq__question {
  color: var(--red);
}

/* ===== POLISH: GALLERY FILTER ACTIVE SHADOW ===== */
.gallery-filter__btn.active {
  box-shadow: 0 4px 16px rgba(184,0,0,0.28);
}

/* ===== POLISH: FOOTER ADDRESS MAP LINK ===== */
.footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s;
}
.footer__map-link:hover { color: rgba(255,255,255,0.75); }

/* ===== POLISH: SUBTLE DOT PATTERN ON GRAY SECTIONS ===== */
.process,
.contact {
  background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.ba-section {
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ===== POLISH: WHY-ITEM NUMBER PROMINENCE ===== */
.why-item__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.why-item:hover .why-item__num { opacity: 1; }

/* ===== POLISH BATCH 3 ===== */

/* Review avatars — distinct colors per reviewer */
.reviews__grid .review-card:nth-child(2) .review-card__avatar { background: #1a73e8; }
.reviews__grid .review-card:nth-child(3) .review-card__avatar { background: #0f9d58; }
.reviews__grid .review-card:nth-child(4) .review-card__avatar { background: #673ab7; }
.reviews__grid .review-card:nth-child(5) .review-card__avatar { background: #e67700; }
.reviews__grid .review-card:nth-child(6) .review-card__avatar { background: #1565c0; }

/* Label line entrance animation */
.reveal .label::before {
  width: 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}
.reveal.visible .label::before {
  width: 18px;
}

/* ===== REVIEWS AUTO-SCROLL (transform-Laufband) ===== */
.reviews__grid {
  display: block;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}
.reviews__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}
.reviews__track .review-card {
  flex: 0 0 340px;
  width: 340px;
  margin-right: 20px;
}
@media (max-width: 520px) {
  .reviews__track .review-card { flex-basis: 280px; width: 280px; margin-right: 16px; }
}

/* ===== GALLERY: UNIFORM TILES + ROTATOR ===== */
.gallery-grid {
  columns: initial !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid .gallery__item {
  margin-bottom: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-radius: var(--r-lg);
}
.gallery-grid .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.55s ease;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery__item { aspect-ratio: 16 / 10; }
}

/* Contact info icon pop on hover */
.contact__info-ico {
  transition: background 0.25s, color 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
a.contact__info-item:hover .contact__info-ico {
  background: var(--red);
  color: white;
  transform: scale(1.12) rotate(-5deg);
}


/* Why section image tag hover lift + star spin */
.why__img-tag {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.why__img:hover .why__img-tag {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 20px rgba(184,0,0,0.4);
}
.why__img-tag svg {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why__img:hover .why__img-tag svg {
  transform: rotate(72deg) scale(1.15);
}

/* Einsatz radius badge hover lift */
.einsatz__radius-badge {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.einsatz__img-wrap:hover .einsatz__radius-badge {
  transform: scale(1.06) translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Button trailing arrow translates right on hover */
.btn svg:last-child {
  transition: transform 0.2s ease;
}
.btn:hover svg:last-child {
  transform: translateX(3px);
}

/* Review avatar spring scale on card hover */
.review-card__avatar {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.review-card:hover .review-card__avatar {
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

/* Review card hover — red top border glow */
.review-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 -3px 14px rgba(184,0,0,0.12);
}

/* Nav logo spring hover */
.nav__logo-img {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.06);
}

/* About badge float hover lift */
.about__badge-float {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.about__badge-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 520px) {
  .about__badge-float { transition: none; }
  .about__badge-float:hover { transform: none; }
}

/* Hero stat number glow after count completes */
@keyframes stat-count-done {
  0%   { text-shadow: 0 0 0 rgba(255,255,255,0); }
  40%  { text-shadow: 0 0 24px rgba(255,255,255,0.45); }
  100% { text-shadow: 0 0 0 rgba(255,255,255,0); }
}
.hero__stat.counted strong {
  animation: stat-count-done 1s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .hero__stat.counted strong { animation: none; }
}

/* Form label turns red when field is focused */
.form__group:has(input:focus) label,
.form__group:has(select:focus) label,
.form__group:has(textarea:focus) label {
  color: var(--red);
  transition: color 0.2s;
}

/* City tag staggered entrance — uses @keyframes to avoid delaying hover transitions */
@keyframes city-tag-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.reveal.visible .einsatz__cities .city-tag {
  animation: city-tag-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.footer__credit { font-size: 12px; opacity: 0.7; margin-top: 4px; }
.footer__credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer__credit a:hover { opacity: 1; color: #fff; }
