@import url("reset.css");

@import url('https://fonts.googleapis.com/css?family=Hind+Vadodara:300,400,500,600,700&display=swap');

/* =================================================================
   LAZY LOADING STYLES FÜR ALLE SEITEN
   ================================================================= */

.lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lazy-image.loaded {
  opacity: 1;
}

.lazy-image.placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =================================================================
   CLOUDFLARE ROCKET LOADER KOMPATIBILITÄT
   =================================================================
   
   PROBLEM: Cloudflare's Rocket Loader verzögert JavaScript-Ladung,
   was dazu führt, dass IntersectionObserver-Animationen nicht 
   getriggert werden und Elemente unsichtbar bleiben.
   
   LÖSUNG:
   1. data-cfasync="false" auf alle Script-Tags
   2. CSS-Fallbacks: Elemente standardmäßig sichtbar
   3. .js-Klasse versteckt Elemente nur bei funktionierendem JavaScript
   4. Multiple JavaScript-Initialisierungsversuche
   5. NoScript-Fallbacks in HTML
   
   FUNKTIONSWEISE:
   - Ohne JavaScript: Elemente bleiben sichtbar (opacity: 1)
   - Mit JavaScript: Elemente werden versteckt und animiert
   - Bei JavaScript-Fehlern: Fallback sorgt für Sichtbarkeit
   
   ================================================================= */

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

body {
  font-family: 'Hind Vadodara', sans-serif;
  font-size: 1.4rem;
  color: #000;
  font-weight: 300;
}

[class*="__container"] {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #07233c 0%, #051d36 100%);
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 90rem;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link, .header__logo, .actions-header__button {
  color: #fff !important;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.menu__link::after, .header__logo::after, .actions-header__button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

.menu__link:hover::after, .menu__link:focus::after,
.header__logo:hover::after, .header__logo:focus::after,
.actions-header__button:hover::after, .actions-header__button:focus::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu__link:not(:hover):not(:focus)::after,
.header__logo:not(:hover):not(:focus)::after,
.actions-header__button:not(:hover):not(:focus)::after {
  transform: scaleX(0);
  transform-origin: left;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 60px;
}

/* *****************HOME**************** */

.main {
  background: url("../img/Leistungen/pexels-karolina-grabowska-4239103.jpg") center / cover no-repeat;
  min-height: 60vh;
}

.main_home {
  background: url("../img/home/Main_Bild.png") center / cover no-repeat;
}

.main_home .main__container {
  transform: none;
}

.main__container {
  padding-top: 16rem;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main__caption {
  margin-top: 10px;
  font-size: 2.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32);
  color: #fff;
  font-weight: 400;
}

.main__title {
  margin-top: 20px;
  margin-bottom: 0.5rem;
  font-size: 5.5rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32);
}

.main__text {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32);
}

.main__button {
  margin-top: 20px;
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  color: #fff;
  background: #07203b;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.main__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.main__button:hover::before {
  left: 100%;
}

.main__button:hover, .main__button:focus {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  outline: none;
}

.actions-header__button:hover, .actions-header__button:focus {
  background: #fff !important;
  color: #303a4d !important;
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  outline: none;
}

.outro_home {
  background: #e5e7eb;
  min-height: unset;
}

/* ************ABOUT**************** */

.main_about {
  background: url("../img/über uns/Main.png") center / cover no-repeat;
}

/* Technische Ausstattung Sektion */
.equipment-section {
  background: url("../img/über uns/Backmack.jpg") center / cover no-repeat !important;
}

/* Mobile Anpassung für Werte-Sektion */
@media (max-width: 768px) {
  .values-section .values__container > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.about__content {
  width: 100%;
}

.about__text {
  max-width: 100%;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
  color: #000;
  text-shadow: none;
}

/* Entfernte Bild-Styles */
/* .about__image, .about__image img { display: none; } */

.about__title {
  margin-bottom: 1.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../img/Leistungen/hero_placeholder.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../img/über uns/background_placeholder.png") center / cover no-repeat;
}

.services {
  background-color: #e1e4eb;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.item-services {
  width: 100%;
  max-width: unset;
  min-width: unset;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
}

.item-services__imgbox {
  width: 100%;
  height: 52%;
  background: #2196f3;
  border-radius: 32px 32px 0 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.item-services__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
  display: block;
}

.item-services__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 2.2rem 1.2rem 2.2rem 1.2rem;
  min-height: 140px;
}

.item-services__title {
  font-size: 1.2rem;
  font-family: 'Hind Vadodara', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 30px 0 0 0;
  color: #23272b;
}

.item-services__text {
  font-size: 1rem;
  color: #23272b;
  margin: 15px 0 0 0;
  text-align: center;
}

.item-services__link {
  display: block;
  width: 80%;
  margin: 30px auto 0 auto;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  font-size: 1.1rem;
  padding: 1.2rem 0;
  border-radius: 16px;
  background: url("../img/home/emdeer Desktop Logo - Kopie.png") center center / cover no-repeat, #303a4d;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.item-services__link:hover {
  background: #303a4d !important;
  color: #fff !important;
  transform: translateY(-2px) scale(1.07);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.item-services.fassaden .item-services__link:hover {
  text-decoration: none !important;
}

.item-services__top {
  pointer-events: none;
  cursor: default;
}

.outro_services {
  background: url("../img/über uns/hero_placeholder.jpg") center / cover no-repeat;
}

.item-services.buero {
  min-height: 420px;
}

.item-services.buero .item-services__image {
  height: 220px;
}

.item-services.buero .item-services__title {
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Hind Vadodara', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 2.2rem 0 1.2rem 0;
}

.item-services.buero .item-services__text {
  text-align: center;
  font-size: 1.1rem;
  color: #23272b;
  margin-bottom: 2.2rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.item-services.buero .item-services__link {
  color: #fff !important;
}

.item-services.buero .item-services__link:hover {
  color: #fff !important;
  text-decoration: none !important;
}

.item-services.bau {
  min-height: 420px;
}

.item-services.bau .item-services__image {
  margin-bottom: 0;
  max-width: 100%;
  width: 100%;
  height: 220px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.item-services.bau .item-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.item-services.bau .item-services__title {
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Hind Vadodara', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 2.2rem 0 1.2rem 0;
}

.item-services.bau .item-services__text {
  text-align: center;
  font-size: 1.1rem;
  color: #23272b;
  margin-bottom: 2.2rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.item-services.bau .item-services__link {
  color: #fff !important;
}

.item-services.bau .item-services__link:hover {
  color: #fff !important;
  text-decoration: none !important;
}

/* ************TESTIMONIAL**************** */

.testimonial {
  background: url("../img/home/Ablauf backgrund.png") center / cover no-repeat;
}

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  display: block;
  width: 30%;
  height: 48px;
  margin: 10px auto 30px auto;
  border-radius: 30px;
  background: #06213b;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
  line-height: 48px;
  text-decoration: none;
  cursor: pointer;
}

.outro__button:hover, .outro__button:focus {
  background: #fff !important;
  color: #303a4d !important;
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  outline: none;
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
  background: #191919;
  color: #fff;
}

.footer__container {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: start;
}

.footer__logo {
  justify-self: center;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
}

.footer__container a,
.footer__container {
  color: #fff !important;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 400px !important; /* Deutlich reduziert von 676px für kompaktere mobile Ansicht */
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../img/Kontakt/Main.jpg") center top / cover no-repeat;
}

/* Warum emdeer wählen? - Dunklerer Hintergrund */
.contact__container div[style*="background: #f8f9fa"] {
  background: #e9ecef !important;
}

/* Datenschutz & Impressum - Begrenzte Breite */
.datenschutz__content,
.impressum__content {
  max-width: 90rem !important;
  margin: 0 auto !important;
  padding: 120px 2.5rem 60px 2.5rem !important;
}

/* Datenschutz & Impressum - Einheitliche Schrift */
.datenschutz__content h2,
.impressum__content h2 {
  font-size: 2rem !important;
  font-weight: 600 !important;
  color: #07203b !important;
  margin-bottom: 2rem !important;
}

.datenschutz__content h2:not(:first-child),
.impressum__content h2:not(:first-child) {
  font-size: 1.5rem !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1.5rem !important;
}

.datenschutz__content p,
.impressum__content p {
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  color: #333 !important;
  margin-bottom: 1.5rem !important;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

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

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

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

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

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

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

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

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

/* Anker-Link Offset für bessere Positionierung */
html {
  scroll-padding-top: 250px;
  scroll-behavior: smooth;
}

/* Animation für Feature-Items */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item.animated {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-item {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Verzögerte Animation für aufeinanderfolgende Items */
.feature-item:nth-child(1).animated {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2).animated {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3).animated {
  animation-delay: 0.3s;
}

.feature-item:nth-child(4).animated {
  animation-delay: 0.4s;
}

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

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

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: rgba(0,0,0,0.85);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: #07203b;
    border-bottom: 1px solid #07203b;
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }

  .menu__link, .header__logo, .actions-header__button {
    color: #fff !important;
  }
  
  .menu__link {
    font-size: 3.14rem !important;
  }

  .actions-header__button {
    padding: 0.75rem;
    font-size: 1.73rem !important;
  }

  .main__container {
    padding-top: 12.5rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

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

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

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

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

/* Entferne Unterstreichungseffekt beim Logo und Schriftzug */
.header__logo::after {
  display: none !important;
}

/* Entferne Unterstreichungseffekt beim CTA-Button */
.actions-header__button::after, .main__button::after {
  display: none !important;
}

/* Invertiere die Farben beim Hover auf dem Button */
.main__button:hover, .main__button:focus, .actions-header__button:hover, .actions-header__button:focus {
  background: #fff !important;
  color: #303a4d !important;
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  outline: none;
}

.item-services.fassaden {
  min-height: 420px;
  padding: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.item-services.fassaden .item-services__image {
  margin-bottom: 0;
  max-width: 100%;
  width: 100%;
  height: 220px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  padding: 0;
}

.item-services.fassaden .item-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.item-services.fassaden .item-services__title {
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Hind Vadodara', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 2.2rem 0 1.2rem 0;
}

.item-services.fassaden .item-services__text {
  text-align: center;
  font-size: 1.1rem;
  color: #23272b;
  margin-bottom: 2.2rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.item-services.fassaden .item-services__link {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  text-align: center;
  font-size: 1.1rem;
}

.item-services.fassaden .item-services__link::after {
  content: ' \00bb';
  font-size: 1.1rem;
  margin-left: 0.3em;
}

.item-services.fassaden .item-services__link:hover {
  color: #fff !important;
  transform: translateY(-2px) scale(1.07);
  text-decoration: underline;
}

.item-services.fassaden .item-services__imgbox {
  height: 60%;
  min-height: 130px;
  max-height: 200px;
}

@media (max-width: 767px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .services__column {
    width: 90%;
    margin: 0 auto;
  }

  .item-services,
  .item-services.fassaden,
  .item-services.buero {
    min-height: auto;
    width: 100%;
    margin-bottom: 1rem;
  }

  .item-services__image,
  .item-services.fassaden .item-services__image,
  .item-services.buero .item-services__image {
    height: 280px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .item-services__image img,
  .item-services.fassaden .item-services__image img,
  .item-services.buero .item-services__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
  }

  .item-services__title,
  .item-services.fassaden .item-services__title,
  .item-services.buero .item-services__title {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
  }

  .item-services__text,
  .item-services.fassaden .item-services__text,
  .item-services.buero .item-services__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .item-services__link,
  .item-services.fassaden .item-services__link,
  .item-services.buero .item-services__link {
    width: 80%;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services__column {
    width: 95%;
  }

  .item-services__image,
  .item-services.fassaden .item-services__image,
  .item-services.buero .item-services__image {
    height: 240px;
  }
}

.map {
  text-align: center;
}

.map iframe {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.steps {
  background: #f7f8fa;
  padding: 120px 0 120px 0;
}

.steps__container {
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: calc(4rem + 20px);
  padding-right: calc(4rem + 20px);
}

.steps__title {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.steps__row {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
  flex-wrap: wrap;
  width: 100%;
}

.steps__item {
  background: #fff;
  color: #23272b;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  flex: 1 1 0;
  min-width: 120px;
  max-width: calc(100% - 5px);
  padding: 3.5rem 0.8rem 3.5rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  transform: scale(0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.steps__item.animated {
  animation: slideUpFadeIn 0.8s ease forwards;
}

.steps__item:nth-child(1).animated {
  animation: slideUpFadeInFirst 0.8s ease forwards;
}

@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(0.9);
  }
}

.steps__item:hover {
  transform: scale(0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.steps__item.hover-enabled:hover {
  transform: scale(0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.steps__item:first-child {
  background: #07203b;
  color: #e2b85f;
  padding: 2.5rem 0.8rem 2.5rem 0.8rem;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUpFadeInFirst 0.8s ease forwards;
}

@keyframes slideUpFadeInFirst {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.steps__item:first-child:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(7,32,59,0.25);
}

.steps__item:first-child.hover-enabled:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(7,32,59,0.25);
}

.steps__item:first-child .steps__number {
  display: none !important; /* Weiße Kreise entfernt */
}

.steps__item:first-child .steps__number {
  background: #0e3e72;
}

.steps__number {
  display: none !important; /* Weiße Kreise entfernt */
}

.steps__heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.steps__text {
  font-size: 1rem;
  color: #23272b;
}

@media (max-width: 900px) {
  .steps__row {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .steps__item {
    max-width: 100%;
    width: 100%;
    min-width: unset;
  }
}

.main__container,
.about__container,
.services__container,
.steps__container,
.testimonial__container,
.outro__container,
.contact__container,
.services-page__container,
.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 90rem;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media (max-width: 900px) {
  .main__container,
  .about__container,
  .services__container,
  .steps__container,
  .testimonial__container,
  .outro__container,
  .contact__container,
  .services-page__container,
  .footer__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 1200px) {
  .services__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .item-services {
    height: auto;
    min-height: 220px;
  }
  .item-services__imgbox {
    height: 120px;
    min-height: 80px;
    max-height: 140px;
  }
}

.item-services.fassaden .item-services__title,
.item-services:nth-child(4) .item-services__title, /* Grundreinigung */
.item-services:nth-child(6) .item-services__title  /* Unterhaltsreinigung */ {
  margin-top: 30px;
}

.item-services.fassaden .item-services__text,
.item-services:nth-child(4) .item-services__text,
.item-services:nth-child(6) .item-services__text {
  margin-top: 15px;
}

.item-services.fassaden .item-services__link,
.item-services:nth-child(4) .item-services__link,
.item-services:nth-child(6) .item-services__link {
  margin-top: 30px;
}

/* Leistungen-Demo: 6 Felder wie im Bild */
.leistungen-demo {
  background: #e5e7eb;
  padding: 60px 0 60px 0;
}
.leistungen-demo__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}
.leistungen-demo__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.leistungen-demo__item {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  height: 460px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}
.leistungen-demo__imgbox {
  width: 100%;
  height: 52%;
  background: #2196f3;
  border-radius: 32px 32px 0 0;
  padding: 0;
}
.leistungen-demo__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 30px 0 0 0;
  text-align: center;
  color: #23272b;
  letter-spacing: 0.02em;
}
.leistungen-demo__desc {
  font-size: 0.98rem;
  color: #23272b;
  margin: 15px 0 0 0;
  text-align: justify;
  line-height: 1.4;
  min-height: 100px;
  padding: 0 32px 24px 32px;
}
.leistungen-demo__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  height: 48px;
  margin: 10px auto 30px auto;
  border-radius: 12px;
  background: #06213b;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  text-align: center;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.leistungen-demo__button:hover {
  background: #0c3b69;
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
@media (max-width: 1200px) {
  .leistungen-demo__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .leistungen-demo__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .leistungen-demo__item {
    height: 220px;
    padding-bottom: 16px;
  }
  .leistungen-demo__button {
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
  }
}

.leistungen-demo__item:nth-child(2) .leistungen-demo__desc {
  padding-left: 7.5px !important;
  padding-right: 7.5px !important;
}

.outro__container, .outro__title, .outro__text {
  color: #fff;
}

/* ************LEISTUNGEN**************** */

.main_leistungen {
  background: url("../img/Leistungen/Main.jpg") center / cover no-repeat;
}

/* ************KARRIERE**************** */

.main_karriere {
  background: url("../img/Karriere/Main.jpg") center / cover no-repeat;
}

/* Animation für Überschrift im Leistungen-Bereich */
@keyframes popInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  80% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pop-up Animation für den Kontakt-Kasten */
@keyframes popUpContact {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Initialer Zustand für den Kontakt-Kasten */
.contact__container > div:last-child {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.pop-in-up {
  opacity: 0;
}

.pop-in-up.animated {
  animation: popInUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@media (max-width: 768px) {
  .whyus-demo__icons-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 3rem !important;
  }
  .whyus-demo__iconbox {
    margin: 0 0 2.5rem 0 !important;
    width: 100%;
    max-width: 400px;
  }
}

/* ************NEXT STEPS SECTION**************** */
.next-steps__button:hover, .next-steps__button:focus {
  background: #fff !important;
  color: #303a4d !important;
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  outline: none;
}

@media (max-width: 768px) {
  /* Navigation Container - Mobile */
  .nav-container__buttons {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .nav-button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 0.5rem 1rem !important;
  }
  
    /* Kontakt-Seite Mobile Layout */
  .contact__container > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Footer Mobile Layout */
  .footer__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 3.5rem !important;
  }
  
    .footer__container > div:first-child {
    order: 2 !important;
    text-align: center !important;
    flex: 1 !important;
  }

  .footer__container > div:nth-child(2) {
    order: 1 !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer__container > div:last-child {
    order: 3 !important;
    text-align: center !important;
    flex: 1 !important;
  }
  
  /* Erstelle eine obere Reihe für Kontakt und Rechtliches */
  .footer__container::before {
    content: '';
    order: 0;
    display: flex;
    width: 100%;
  }
  
     /* Mobile Footer Top Row */
   @supports (display: grid) {
     .footer__container {
       display: grid !important;
       grid-template-columns: 1fr 1fr !important;
       grid-template-rows: auto auto !important;
       gap: 3.5rem 2rem !important;
       align-items: start !important;
     }
    
    .footer__container > div:first-child {
      grid-column: 1 !important;
      grid-row: 1 !important;
      text-align: left !important;
      order: unset !important;
      flex: unset !important;
    }
    
    .footer__container > div:nth-child(2) {
      grid-column: 1 / -1 !important;
      grid-row: 2 !important;
      text-align: center !important;
      order: unset !important;
      width: unset !important;
    }
    
    .footer__container > div:last-child {
      grid-column: 2 !important;
      grid-row: 1 !important;
      text-align: right !important;
      order: unset !important;
      flex: unset !important;
    }
  }
  
  .next-steps__buttons {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .next-steps__button {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
  }
  
  .next-steps__title {
    font-size: 2rem !important;
  }
  
  .next-steps__text {
    font-size: 1.1rem !important;
    padding: 0 1rem;
  }
}

/* ===============================================================
   BUTTON GLANZ-EFFEKTE (aus HTML-Dateien übertragen)
   =============================================================== */

/* Glanz-Effekt für Buttons */
.main__button, .next-steps__button, .cta-button, .leistungen-demo__button {
  position: relative;
  overflow: hidden;
}

.main__button::before, .next-steps__button::before, .cta-button::before, .leistungen-demo__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.main__button:hover::before, .next-steps__button:hover::before, .cta-button:hover::before, .leistungen-demo__button:hover::before {
  left: 100%;
}

/* ===============================================================
   TEXT-REVEAL ANIMATIONEN (aus HTML-Dateien übertragen)
   =============================================================== */

/* Text-Reveal Animationen - Cloudflare-kompatibel */
.fade-in-up {
  /* Standardmäßig sichtbar für Cloudflare/NoJS Fallback */
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* Nur verstecken wenn JavaScript geladen ist */
.js .fade-in-up:not(.animated) {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Karriere-Seite Animationen - Cloudflare-kompatibel */
.slide-in-left {
  /* Standardmäßig sichtbar für Cloudflare/NoJS Fallback */
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* Nur verstecken wenn JavaScript geladen ist */
.js .slide-in-left:not(.animated) {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  /* Standardmäßig sichtbar für Cloudflare/NoJS Fallback */
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* Nur verstecken wenn JavaScript geladen ist */
.js .slide-in-right:not(.animated) {
  opacity: 0;
  transform: translateX(50px);
}

.slide-in-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  /* Standardmäßig sichtbar für Cloudflare/NoJS Fallback */
  opacity: 1;
  transform: scale(1);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* Nur verstecken wenn JavaScript geladen ist */
.js .scale-in:not(.animated) {
  opacity: 0;
  transform: scale(0.8);
}

.scale-in.animated {
  opacity: 1;
  transform: scale(1);
}

/* =================================================================
   LEISTUNGEN-SEITE SPEZIFISCHE STYLES
   ================================================================= */

/* Hero-Sektion Animationen */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Dekorative weiße Kreise entfernt */

/* Floating-Animation entfernt */

/* Popup-Animation für Main-Überschrift und Text */
@keyframes popInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up.animated {
  animation: popInUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Shimmer-Effekt für alle Haken */
.feature-item span:first-child {
  position: relative;
  overflow: hidden;
}

.feature-item span:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.feature-item:hover span:first-child::before {
  left: 100%;
}

/* Entferne abgerundete Ecken von allen Bildern */
.services-detailed__image img {
  border-radius: 0 !important;
}

/* Abgerundete Ecken für Zoom-Effekt */
.services-detailed__image img:hover {
  border-radius: 12px !important;
}

/* Mobile Layout für Service-Bereiche */
@media (max-width: 768px) {
  /* Container für jeden Service-Bereich */
  .services-detailed__item {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }
  
  /* Heading kommt immer zuerst */
  .services-detailed__heading {
    order: 1 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }
  
  /* Bild kommt als zweites */
  .services-detailed__image {
    order: 2 !important;
    flex: none !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  /* Content (Text) kommt als drittes */
  .services-detailed__content {
    order: 3 !important;
    flex: none !important;
    text-align: center !important;
  }
  
  /* Features (Haken) kommen als letztes */
  .services-detailed__features {
    order: 4 !important;
    margin-top: 1rem !important;
  }
  
  /* Zusätzliche Services kommen nach den Features */
  .services-detailed__additional {
    order: 5 !important;
  }
}

/* Kreative Animationen und Effekte für die Leistungen-Seite */

/* Glanz-Effekt für Buttons */
.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

/* Schwebende Animationen für Service-Karten - Hover-Effekte entfernt */
.services-detailed__item {
  position: relative;
}

/* Pulsierende Punkte für Navigation */
.nav-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #07203b;
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.nav-dot:nth-child(1) { animation-delay: 0s; }
.nav-dot:nth-child(2) { animation-delay: 0.5s; }
.nav-dot:nth-child(3) { animation-delay: 1s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.5); opacity: 0.8; }
}

/* Zoom-Effekt für Bilder beim Hover über den gesamten Bereich */
.services-detailed__item {
  position: relative;
  overflow: hidden;
}

.services-detailed__image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.services-detailed__image img {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.services-detailed__item:hover .services-detailed__image img {
  transform: scale(1.05);
}

/* Animierte Feature-Items - Hover-Effekte entfernt */
.feature-item {
  position: relative;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

.feature-item span:first-child {
  position: relative;
  overflow: hidden;
}

/* Animierte Scroll-Indikatoren */
.scroll-indicator {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scroll-dot {
  width: 12px;
  height: 12px;
  background: rgba(7,32,59,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.scroll-dot.active {
  background: #07203b;
  transform: scale(1.3);
}

.scroll-dot:hover {
  background: #07203b;
  transform: scale(1.2);
}

.scroll-dot::after {
  content: attr(data-service);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #07203b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.scroll-dot:hover::after {
  opacity: 1;
}

/* Schwebende Formen im Hintergrund */
.floating-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

/* Dekorative Floating-Shapes entfernt */

/* Überschriften ohne Unterstreichungseffekt */
.services-detailed__heading {
  position: relative;
  display: inline-block;
}

/* Verbesserte Zusatz-Informationen - Hover-Effekt entfernt */
.services-detailed__additional {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
  border-left: 4px solid #07203b;
}

/* Navigation Container */
.nav-container {
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #dee2e6;
}

.nav-container__buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  color: #fff;
  background: url('img/home/emdeer Desktop Logo - Kopie.png') center center / cover no-repeat, #303a4d;
  letter-spacing: 0.02em;
  font-size: 1rem;
  line-height: 110%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.nav-button:hover::before {
  left: 100%;
}

.nav-button:hover {
  background: #fff !important;
  color: #303a4d !important;
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  outline: none;
}



/* Responsive Anpassungen */
/* Mobile Floating-Shapes bereits entfernt */

/* Scroll-Margin für Leistungen-Ziel-Elemente */
#innen-aussenreinigung,
#bueroreinigung,
#bauendreinigung,
#grundreinigung,
#fahrzeugreinigung,
#unterhaltsreinigung {
  scroll-margin-top: 250px;
}

/* =================================================================
   MOBILE OPTIMIERUNG FÜR 150% SKALIERUNG
   =================================================================
   
   OPTIMIERUNGEN:
   - Alle Elemente um 33% verkleinert
   - Textgrößen reduziert für bessere Lesbarkeit
   - Abstände zwischen Sektionen minimiert
   - Buttons kompakter gestaltet
   - Header und Footer optimiert
   - Eingebettete Elemente vergrößert
   - Logos näher zusammengerückt
   
   ================================================================= */

/* ************MOBILE OPTIMIERUNGEN************ */

@media (max-width: 768px) {
  /* Grundlegende Text-Reduzierung um 33% */
  body {
    font-size: 0.93rem !important; /* Reduziert von 1.4rem */
  }
  
  /* Container-Padding reduzieren */
  [class*="__container"] {
    padding: 0 1rem !important;
  }
  
  /* Header-Optimierungen */
  .header__container {
    min-height: 4.5rem !important; /* Reduziert von 5.75rem */
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Logo-Größen reduzieren und näher zusammenrücken */
  .header__logo img:first-child {
    height: 48px !important; /* Reduziert von 72px */
  }
  
  .header__logo img:last-child {
    height: 32px !important; /* Reduziert von 48px */
    margin-left: -5px !important; /* Näher zusammen */
  }
  
  /* Navigation-Text reduzieren */
  .menu__link {
    font-size: 1.2rem !important; /* Reduziert von 1.82rem */
  }
  
  .actions-header__button {
    padding: 0.5rem 1rem !important; /* Reduziert von 0.75rem 1.5rem */
    font-size: 0.9rem !important;
  }
  
  /* Main-Sektion Optimierungen */
  .main__container {
    padding-top: 6rem !important; /* Weiter reduziert von 8rem für kompaktere mobile Ansicht */
  }
  
  .main__container_pages {
    padding-top: 120px !important; /* Deutlich reduziert von 200px für kompaktere mobile Ansicht */
  }
  
  .main__title {
    font-size: 1.8rem !important; /* Weiter reduziert von 2rem für kompaktere mobile Ansicht */
  }
  
  .main__caption {
    font-size: 1.3rem !important; /* Weiter reduziert von 1.5rem für kompaktere mobile Ansicht */
  }
  
  .main__text {
    font-size: 1.1rem !important; /* Weiter reduziert von 1.3rem für kompaktere mobile Ansicht */
    margin-bottom: 2rem !important; /* Weiter reduziert von 2.5rem für kompaktere mobile Ansicht */
  }
  
  .main__button {
    padding: 0.8rem 1.5rem !important; /* Weiter reduziert von 1rem 2rem für kompaktere mobile Ansicht */
    font-size: 1rem !important; /* Weiter reduziert von 1.1rem für kompaktere mobile Ansicht */
  }
  
  /* Titel-Größen reduzieren */
  .title {
    font-size: 1.3rem !important; /* Reduziert von 2rem */
  }
  
  /* About-Sektion */
  .about__container {
    padding-top: 3rem !important; /* Reduziert von 4.375rem */
    padding-bottom: 3rem !important;
    gap: 2.5rem !important; /* Reduziert von 4rem */
  }
  
  .about__title {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .about__text {
    margin-bottom: 2.5rem !important; /* Reduziert von 3.5rem */
  }
  
  /* Services-Sektion */
  .services__container {
    padding-top: 3rem !important; /* Reduziert von 4.375rem */
    padding-bottom: 3rem !important;
  }
  
  .services__title {
    margin-bottom: 3rem !important; /* Reduziert von 5rem */
  }
  
  .item-services {
    height: 280px !important; /* Reduziert von 420px */
    min-height: 280px !important;
  }
  
  .item-services__imgbox {
    height: 35% !important; /* Reduziert von 52% */
  }
  
  .item-services__content {
    padding: 1.5rem 1rem 1.5rem 1rem !important; /* Reduziert von 2.2rem 1.2rem */
    min-height: 95px !important; /* Reduziert von 140px */
  }
  
  .item-services__title {
    font-size: 0.9rem !important; /* Reduziert von 1.2rem */
    margin: 20px 0 0 0 !important; /* Reduziert von 30px */
  }
  
  .item-services__text {
    font-size: 0.8rem !important; /* Reduziert von 1rem */
    margin: 10px 0 0 0 !important; /* Reduziert von 15px */
  }
  
  .item-services__link {
    width: 70% !important; /* Reduziert von 80% */
    margin: 20px auto 0 auto !important; /* Reduziert von 30px */
    padding: 0.8rem 0 !important; /* Reduziert von 1.2rem */
    font-size: 0.9rem !important; /* Reduziert von 1.1rem */
  }
  
  /* Leistungen-Demo Optimierungen */
  .leistungen-demo {
    padding: 40px 0 40px 0 !important; /* Reduziert von 60px */
  }
  
  .leistungen-demo__container {
    padding: 0 2rem !important; /* Reduziert von 4rem */
  }
  
  .leistungen-demo__row {
    gap: 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .leistungen-demo__item {
    height: 310px !important; /* Reduziert von 460px */
    min-height: 310px !important;
  }
  
  .leistungen-demo__title {
    font-size: 0.9rem !important; /* Reduziert von 1.3rem */
    margin: 20px 0 0 0 !important; /* Reduziert von 30px */
  }
  
  .leistungen-demo__desc {
    font-size: 0.7rem !important; /* Reduziert von 0.98rem */
    margin: 10px 0 0 0 !important; /* Reduziert von 15px */
    min-height: 70px !important; /* Reduziert von 100px */
    padding: 0 20px 15px 20px !important; /* Reduziert von 32px 24px */
  }
  
  .leistungen-demo__button {
    width: 70% !important; /* Reduziert von 60% */
    height: 32px !important; /* Reduziert von 48px */
    margin: 7px auto 20px auto !important; /* Reduziert von 10px 30px */
    font-size: 0.9rem !important; /* Reduziert von 1.3rem */
  }
  
  /* Why-Us Sektion */
  .whyus-demo__container {
    padding: 50px 1.5rem !important; /* Reduziert von 80px 2.5rem */
  }
  
  .whyus-demo__title {
    font-size: 1.3rem !important; /* Reduziert von 2rem */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  .whyus-demo__icons-row {
    margin-top: 2.5rem !important; /* Reduziert von 3.5rem */
    margin-bottom: 2.5rem !important;
  }
  
  .whyus-demo__iconbox {
    margin: 0 50px !important; /* Reduziert von 100px */
  }
  
  .whyus-demo__iconbox lord-icon {
    width: 120px !important; /* Reduziert von 180px */
    height: 120px !important;
  }
  
  .whyus-demo__iconbox > div {
    margin: 1.2rem -30px 0 -30px !important; /* Reduziert von 1.8rem -50px */
  }
  
  .whyus-demo__iconbox > div > div:first-child {
    font-size: 1rem !important; /* Reduziert von 1.45rem */
  }
  
  .whyus-demo__iconbox > div > div:last-child {
    font-size: 0.8rem !important; /* Reduziert von 1.05rem */
  }
  
  .whyus-demo__text {
    font-size: 0.9rem !important; /* Reduziert von 1.2rem */
    padding: 1rem 1.5rem !important; /* Reduziert von 1.5rem 2rem */
    margin-top: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  /* Steps-Sektion */
  .steps__container {
    padding-top: 80px !important; /* Reduziert von 120px */
    padding-bottom: 80px !important;
    padding-left: calc(2rem + 10px) !important; /* Reduziert von 4rem + 20px */
    padding-right: calc(2rem + 10px) !important;
  }
  
  .steps__title {
    margin-bottom: 2.5rem !important; /* Reduziert von 3.5rem */
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
  }
  
  .steps__item {
    padding: 2.5rem 0.6rem 2.5rem 0.6rem !important; /* Reduziert von 3.5rem 0.8rem */
  }
  
  .steps__item:first-child {
    padding: 1.8rem 0.6rem 1.8rem 0.6rem !important; /* Reduziert von 2.5rem 0.8rem */
  }
  
  .steps__number {
    display: none !important; /* Weiße Kreise entfernt */
  }
  
  .steps__heading {
    font-size: 0.9rem !important; /* Reduziert von 1.2rem */
    margin-bottom: 0.6rem !important; /* Reduziert von 0.8rem */
  }
  
  .steps__text {
    font-size: 0.8rem !important; /* Reduziert von 1rem */
  }
  
  /* Next-Steps Sektion */
  .next-steps__container {
    padding: 0 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .next-steps__title {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .next-steps__text {
    font-size: 0.9rem !important; /* Reduziert von 1.2rem */
    margin-bottom: 2.5rem !important; /* Reduziert von 3.5rem */
  }
  
  .next-steps__buttons {
    gap: 1rem !important; /* Reduziert von 2rem */
  }
  
  .next-steps__button {
    padding: 1rem 2rem !important; /* Reduziert von 1.25rem 3rem */
    font-size: 1rem !important; /* Reduziert von 1.375rem */
  }
  
  /* CTA-Sektion */
  .cta-section {
    padding: 50px 0 !important; /* Reduziert von 80px */
  }
  
  .cta__container {
    padding: 0 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .cta__container h2 {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .cta__container p {
    font-size: 0.9rem !important; /* Reduziert von 1.2rem */
    margin-bottom: 2rem !important; /* Reduziert von 3rem */
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem !important; /* Reduziert von 1rem 2rem */
    font-size: 0.9rem !important; /* Reduziert von 1.2rem */
  }
  
  /* Footer-Optimierungen */
  .footer__container {
    padding: 2rem 1rem !important; /* Reduziert von 3rem 2.5rem */
    gap: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .footer__container > div {
    gap: 0.5rem !important; /* Reduziert von 1rem */
  }
  
  .footer__container > div > div:first-child {
    margin-bottom: 0.3rem !important; /* Reduziert von 0.5rem */
    font-size: 1.15rem !important; /* Vergrößert um 15% */
  }
  
  .footer__container a {
    font-size: 1.035rem !important; /* Vergrößert um 15% von 0.9rem */
  }
  
  .footer__container > div:last-child {
    gap: 0.3rem !important; /* Reduziert von 0.5rem */
  }
  
  /* Eingebettete Elemente vergrößern */
  iframe {
    height: 320px !important; /* Vergrößert von 482px um 33% */
  }
  
  /* Lord-Icons vergrößern */
  lord-icon {
    width: 120px !important; /* Vergrößert von 90px */
    height: 120px !important;
  }
  
  /* Services-Detailed Optimierungen */
  .services-detailed__container {
    padding: 50px 1rem !important; /* Reduziert von 80px 2.5rem */
  }
  
  .services-detailed__container > h2 {
    font-size: 1.3rem !important; /* Reduziert von 2rem */
    margin-bottom: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .nav-container {
    padding: 1rem !important; /* Reduziert von 1.5rem */
    margin-bottom: 3rem !important; /* Reduziert von 4rem */
  }
  
  .nav-button {
    padding: 0.5rem 1rem !important; /* Reduziert von 0.75rem 1.5rem */
    font-size: 0.8rem !important; /* Reduziert von 1rem */
  }
  
  .services-detailed__item {
    margin-bottom: 4rem !important; /* Reduziert von 6rem */
    gap: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .services-detailed__heading {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  .services-detailed__text {
    font-size: 0.9rem !important; /* Reduziert von 1.2rem */
  }
  
  .services-detailed__image img {
    height: 270px !important; /* Reduziert von 400px */
  }
  
  .services-detailed__features {
    padding: 1.5rem !important; /* Reduziert von 2rem */
    margin-bottom: 1.5rem !important; /* Reduziert von 2rem */
    gap: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .feature-item {
    padding: 0.4rem 0.7rem !important; /* Reduziert von 0.5rem 1rem */
  }
  
  .feature-item span:first-child {
    width: 24px !important; /* Reduziert von 32px */
    height: 24px !important;
    font-size: 1rem !important; /* Reduziert von 1.4rem */
  }
  
  .feature-item span:last-child {
    font-size: 0.8rem !important; /* Reduziert von 1rem */
  }
  
  .services-detailed__additional {
    padding: 1.5rem !important; /* Reduziert von 2rem */
    margin-bottom: 3rem !important; /* Reduziert von 4rem */
  }
  
  .services-detailed__additional-text {
    font-size: 0.8rem !important; /* Reduziert von 1.1rem */
  }
  
  /* Kontakt-Seite Optimierungen */
  .contact__container {
    padding-top: 90px !important; /* Reduziert von 140px */
    padding-bottom: 90px !important;
    gap: 35px !important; /* Reduziert von 109px */
  }
  
  .contact__title {
    margin-bottom: 32px !important; /* Reduziert von 48px */
    font-size: 27px !important; /* Reduziert von 40px */
  }
  
  .connect-contact {
    row-gap: 20px !important; /* Reduziert von 32px */
    margin-bottom: 25px !important; /* Reduziert von 40px */
    padding-bottom: 25px !important;
  }
  
  .connect-contact__item {
    gap: 15px !important; /* Reduziert von 24px */
  }
  
  .connect-contant__type {
    font-size: 12px !important; /* Reduziert von 18px */
  }
  
  .connect-contact__label {
    font-size: 15px !important; /* Reduziert von 22px */
  }
  
  .contact__text {
    font-size: 12px !important; /* Reduziert von 18px */
  }
  
  /* Datenschutz & Impressum */
  .datenschutz__content,
  .impressum__content {
    padding: 80px 1rem 40px 1rem !important; /* Reduziert von 120px 2.5rem 60px 2.5rem */
  }
  
  .datenschutz__content h2,
  .impressum__content h2 {
    font-size: 1.3rem !important; /* Reduziert von 2rem */
    margin-bottom: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .datenschutz__content h2:not(:first-child),
  .impressum__content h2:not(:first-child) {
    font-size: 1rem !important; /* Reduziert von 1.5rem */
    margin-top: 2rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  .datenschutz__content p,
  .impressum__content p {
    font-size: 0.8rem !important; /* Reduziert von 1.1rem */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  /* Über uns Seite Optimierungen */
  .values-section {
    padding: 50px 0 !important; /* Reduziert von 80px */
  }
  
  .values__container {
    padding: 0 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .values__container > h2 {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .values__container > p {
    font-size: 0.8rem !important; /* Reduziert von 1.1rem */
    margin-bottom: 2rem !important; /* Reduziert von 3rem */
  }
  
  .values__container > div {
    gap: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .values__container > div > div {
    padding: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .values__container lord-icon {
    width: 85px !important; /* Reduziert von 125px */
    height: 85px !important;
  }
  
  .values__container h3 {
    font-size: 1rem !important; /* Reduziert von 1.5rem */
    margin-bottom: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .values__container p {
    font-size: 0.8rem !important; /* Reduziert von 1rem */
  }
  
  /* Flexibilität Sektion */
  .flexibility-section {
    padding: 50px 0 !important; /* Reduziert von 80px */
  }
  
  .flexibility__container {
    padding: 0 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .flexibility__container > h2 {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 2.5rem !important; /* Reduziert von 4rem */
  }
  
  .flexibility__container > div {
    gap: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .flexibility-card {
    padding: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  /* Karriere Seite Optimierungen */
  .why-emdeer-section {
    padding: 50px 0 !important; /* Reduziert von 80px */
  }
  
  .why-emdeer__container {
    padding: 0 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .why-emdeer__container > h2 {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 2.5rem !important; /* Reduziert von 4rem */
  }
  
  .why-emdeer__container > div {
    gap: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .benefit-card {
    padding: 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .benefit-icon {
    width: 55px !important; /* Reduziert von 80px */
    height: 55px !important;
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
    font-size: 1.3rem !important; /* Reduziert von 2rem */
  }
  
  .benefit-card h3 {
    font-size: 1rem !important; /* Reduziert von 1.5rem */
    margin-bottom: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .benefit-card p {
    font-size: 0.8rem !important; /* Reduziert von 1rem */
  }
  
  /* Job Profile Sektion */
  .job-profile-section {
    padding: 50px 0 !important; /* Reduziert von 80px */
  }
  
  .job-profile__container {
    padding: 0 1.5rem !important; /* Reduziert von 2.5rem */
  }
  
  .job-profile__container > h2 {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 2.5rem !important; /* Reduziert von 4rem */
  }
  
  .profile-card {
    padding: 2rem !important; /* Reduziert von 3rem */
  }
  
  .profile-card h3 {
    font-size: 1.3rem !important; /* Reduziert von 1.8rem */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  .profile-card p {
    font-size: 0.9rem !important; /* Reduziert von 1.1rem */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  .task-list li,
  .qualification-list li {
    font-size: 0.8rem !important; /* Reduziert von 1rem */
    margin-bottom: 0.5rem !important; /* Reduziert von 0.8rem */
  }
  
  /* Kontakt Seite Optimierungen */
  .contact__container {
    padding: 50px 1.5rem !important; /* Reduziert von 80px 2.5rem */
  }
  
  .contact__container > h2 {
    font-size: 1.7rem !important; /* Reduziert von 2.5rem */
    margin-bottom: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .contact__container > div {
    gap: 2rem !important; /* Reduziert von 3rem */
  }
  
  .contact__container > div > div {
    padding: 2rem !important; /* Reduziert von 3rem */
  }
  
  .contact__container h3 {
    font-size: 1.3rem !important; /* Reduziert von 1.8rem */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  .contact__container > div > div > div {
    gap: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .contact-benefit-card {
    padding: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .contact-benefit-card h4 {
    font-size: 1rem !important; /* Reduziert von 1.2rem */
    margin-bottom: 0.4rem !important; /* Reduziert von 0.5rem */
  }
  
  .contact-benefit-card p {
    font-size: 0.8rem !important; /* Reduziert von 1rem */
  }
  
  /* Kontaktinformationen */
  .contact__container > div > div:last-child {
    padding: 2rem !important; /* Reduziert von 3rem */
  }
  
  .contact__container > div > div:last-child h3 {
    font-size: 1.3rem !important; /* Reduziert von 1.8rem */
    margin-bottom: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .contact__container > div > div:last-child > div {
    margin-bottom: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  .contact__container > div > div:last-child > div > div {
    padding: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .contact__container > div > div:last-child > div > div > div:first-child {
    width: 43px !important; /* Reduziert von 64px */
    height: 43px !important;
  }
  
  .contact__container > div > div:last-child > div > div > div:first-child lord-icon {
    width: 25px !important; /* Reduziert von 38px */
    height: 25px !important;
  }
  
  .contact__container > div > div:last-child > div > div > div:last-child > div:first-child {
    font-size: 0.8rem !important; /* Reduziert von 1rem */
    margin-bottom: 0.2rem !important; /* Reduziert von 0.25rem */
  }
  
  .contact__container > div > div:last-child > div > div > div:last-child > div:last-child {
    font-size: 0.9rem !important; /* Reduziert von 1.1rem */
  }
  
  /* Footer Mobile Layout Verbesserungen */
  .footer__container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 2rem 1rem !important; /* Reduziert von 3.5rem 2rem */
    align-items: start !important;
    padding: 1.5rem 1rem !important; /* Reduziert von 2rem 1rem */
  }
  
  .footer__container > div:first-child {
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: left !important;
    gap: 0.3rem !important; /* Reduziert von 0.5rem */
  }
  
  .footer__container > div:nth-child(2) {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    text-align: center !important;
  }
  
  .footer__container > div:last-child {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: right !important;
    gap: 0.3rem !important; /* Reduziert von 0.5rem */
  }
  
  .footer__container > div > div:first-child {
    margin-bottom: 0.2rem !important; /* Reduziert von 0.3rem */
    font-size: 0.92rem !important; /* Vergrößert um 15% von 0.8rem */
  }
  
  .footer__container a {
    font-size: 0.92rem !important; /* Vergrößert um 15% von 0.8rem */
  }
  
  .footer__container > div > div:last-child {
    font-size: 0.805rem !important; /* Vergrößert um 15% von 0.7rem */
  }
  
  /* Eingebettete Elemente weiter vergrößern */
  iframe {
    height: 350px !important; /* Weiter vergrößert für bessere Sichtbarkeit */
  }
  
  /* Lord-Icons weiter vergrößern */
  lord-icon {
    width: 140px !important; /* Weiter vergrößert von 120px */
    height: 140px !important;
  }
  
  /* Spezielle Lord-Icon Anpassungen */
  .whyus-demo__iconbox lord-icon {
    width: 140px !important; /* Vergrößert von 120px */
    height: 140px !important;
  }
  
  .values__container lord-icon {
    width: 100px !important; /* Vergrößert von 85px */
    height: 100px !important;
  }
  
  .benefit-icon lord-icon {
    width: 70px !important; /* Vergrößert von 55px */
    height: 70px !important;
  }
  
  /* Navigation Container Mobile */
  .nav-container__buttons {
    flex-direction: column !important;
    gap: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .nav-button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 0.4rem 0.8rem !important; /* Reduziert von 0.5rem 1rem */
    font-size: 0.7rem !important; /* Reduziert von 0.8rem */
  }
  
  /* Mobile Menu Optimierungen */
  .menu__body {
    padding: 6rem 0.7rem 1.5rem 0.7rem !important; /* Reduziert von 9.375rem 0.938rem 1.875rem 0.938rem */
    row-gap: 3rem !important; /* Reduziert von 5rem */
  }
  
  .menu__item:not(:last-child) {
    margin-bottom: 1rem !important; /* Reduziert von 1.563rem */
  }
  
  .menu__link {
    font-size: 1.2rem !important; /* Reduziert von 1.82rem */
  }
  
  .actions-header__button {
    padding: 0.5rem !important; /* Reduziert von 0.75rem */
    font-size: 0.8rem !important; /* Reduziert von 0.9rem */
  }
  
  /* Icon-Menu Optimierungen */
  .icon-menu {
    width: 1.5rem !important; /* Reduziert von 1.875rem */
    height: 0.9rem !important; /* Reduziert von 1.125rem */
  }
  
  /* Scroll-Padding anpassen */
  html {
    scroll-padding-top: 200px !important; /* Reduziert von 250px */
  }
  
  /* Services-Detailed Mobile Layout */
  .services-detailed__item {
    flex-direction: column !important;
    gap: 1rem !important; /* Reduziert von 1.5rem */
    align-items: stretch !important;
  }
  
  .services-detailed__heading {
    order: 1 !important;
    margin-bottom: 0.7rem !important; /* Reduziert von 1rem */
    text-align: center !important;
  }
  
  .services-detailed__image {
    order: 2 !important;
    flex: none !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  .services-detailed__content {
    order: 3 !important;
    flex: none !important;
    text-align: center !important;
  }
  
  .services-detailed__features {
    order: 4 !important;
    margin-top: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .services-detailed__additional {
    order: 5 !important;
  }
  
  /* Services-Detailed Features Mobile */
  .services-detailed__features {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important; /* Reduziert von 0.7rem */
  }
  
  .feature-item {
    width: 100% !important;
    max-width: 300px !important;
    justify-content: center !important;
  }
  
  /* Next-Steps Buttons Mobile */
  .next-steps__buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .next-steps__button {
    width: 100% !important;
    max-width: 250px !important; /* Reduziert von 300px */
    margin-bottom: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  /* CTA Buttons Mobile */
  .cta__container > div {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .cta-button {
    width: 100% !important;
    max-width: 250px !important;
    text-align: center !important;
    margin-bottom: 0.7rem !important;
  }
  
  /* Why-Us Demo Mobile Layout */
  .whyus-demo__icons-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important; /* Reduziert von 3rem */
  }
  
  .whyus-demo__iconbox {
    margin: 0 0 2rem 0 !important; /* Reduziert von 0 0 2.5rem 0 */
    width: 100% !important;
    max-width: 350px !important; /* Reduziert von 400px */
  }
  
  .whyus-demo__iconbox > div {
    margin: 1rem -20px 0 -20px !important; /* Reduziert von 1.2rem -30px */
  }
  
  .whyus-demo__iconbox > div > div:first-child {
    font-size: 0.9rem !important; /* Reduziert von 1rem */
  }
  
  .whyus-demo__iconbox > div > div:last-child {
    font-size: 0.7rem !important; /* Reduziert von 0.8rem */
  }
  
  /* Steps Mobile Layout */
  .steps__row {
    flex-direction: column !important;
    gap: 1.5rem !important; /* Reduziert von 2.5rem */
    align-items: stretch !important;
  }
  
  .steps__item {
    max-width: 100% !important;
    width: 100% !important;
    min-width: unset !important;
  }
  
  /* Services Row Mobile */
  .services__row {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important; /* Reduziert von 2rem */
    padding: 0 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .services__column {
    width: 95% !important; /* Reduziert von 90% */
  }
  
  .item-services,
  .item-services.fassaden,
  .item-services.buero {
    min-height: auto !important;
    width: 100% !important;
    margin-bottom: 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .item-services__image,
  .item-services.fassaden .item-services__image,
  .item-services.buero .item-services__image {
    height: 200px !important; /* Reduziert von 280px */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .item-services__title,
  .item-services.fassaden .item-services__title,
  .item-services.buero .item-services__title {
    font-size: 1.1rem !important; /* Reduziert von 1.3rem */
    margin: 1rem 0 0.7rem 0 !important; /* Reduziert von 1.5rem 0 1rem 0 */
  }
  
  .item-services__text,
  .item-services.fassaden .item-services__text,
  .item-services.buero .item-services__text {
    font-size: 0.9rem !important; /* Reduziert von 1rem */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
    padding: 0 0.7rem !important; /* Reduziert von 1rem */
  }
  
  .item-services__link,
  .item-services.fassaden .item-services__link,
  .item-services.buero .item-services__link {
    width: 85% !important; /* Reduziert von 80% */
    padding: 0.8rem 0 !important; /* Reduziert von 1rem 0 */
    margin-bottom: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  /* Leistungen Demo Mobile */
  .leistungen-demo__row {
    grid-template-columns: 1fr !important;
    gap: 1rem !important; /* Reduziert von 1.5rem */
  }
  
  .leistungen-demo__item {
    height: 250px !important; /* Reduziert von 310px */
    min-height: 250px !important;
    padding-bottom: 0.7rem !important; /* Reduziert von 16px */
  }
  
  .leistungen-demo__button {
    height: 28px !important; /* Reduziert von 32px */
    line-height: 28px !important;
    margin-top: 1rem !important; /* Reduziert von 20px */
  }
  
  /* Kontakt Grid Mobile */
  .contact__container > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important; /* Reduziert von 2rem */
  }
  
  /* Footer Copyright */
  .footer__container + div {
    padding: 0.7rem 1rem !important; /* Reduziert von 1rem 2.5rem */
  }
  
  .footer__container + div > div {
    font-size: 0.7rem !important; /* Reduziert von 0.9rem */
  }
}

/* Zusätzliche Optimierungen für sehr kleine Bildschirme */
@media (max-width: 480px) {
  .header__logo img:first-child {
    height: 40px !important;
  }
  
  .header__logo img:last-child {
    height: 28px !important;
    margin-left: -3px !important;
  }
  
  .main__title {
    font-size: 1.6rem !important; /* Weiter reduziert für sehr kleine Bildschirme */
  }
  
  .main__text {
    font-size: 1rem !important; /* Weiter reduziert für sehr kleine Bildschirme */
  }
  
  .leistungen-demo__item {
    height: 280px !important;
    min-height: 280px !important;
  }
  
  .leistungen-demo__button {
    width: 80% !important;
    height: 28px !important;
  }
  
  .whyus-demo__iconbox lord-icon {
    width: 100px !important;
    height: 100px !important;
  }
  
  .steps__item {
    padding: 2rem 0.5rem 2rem 0.5rem !important;
  }
  
  .steps__item:first-child {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem !important;
  }
  
  .steps__number {
    display: none !important; /* Weiße Kreise entfernt */
  }
}

/* ===============================================================
   BESTEHENDE MOBILE STYLES BEIBEHALTEN
   =============================================================== */

/* Footer: Lord-Icons um 50% verkleinern */
.footer__container lord-icon {
  width: 16px !important;
  height: 16px !important;
}

@media (max-width: 768px) {
  .footer__container lord-icon {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 768px) {
  /* Überschrift Qualitätskontrolle für Kundenzufriedenheit wie Über uns */
  .quality-content h2 {
    font-size: 1.7rem !important;
    margin-bottom: 1rem !important;
  }
  /* Zahlen/Kreise unter Qualitätskontrolle für Kundenzufriedenheit ausblenden */
  .quality-step .step-number {
    display: none !important;
  }
  
  /* Karriere-Seite: Überschriften auf gleiche Größe wie "Erfahre mehr über emdeer" */
  .why-emdeer__container > h2,
  .job-profile__container > h2,
  .benefits-section h2,
  .next-steps__title {
    font-size: 1.7rem !important; /* Gleiche Größe wie about__title */
    margin-bottom: 1.5rem !important; /* Gleicher Abstand wie about__title */
  }
  
  /* Karriere-Seite: Alle lord-icon-Elemente um 25% verkleinern (außer Footer) */
  .why-emdeer-section lord-icon,
  .benefits-section lord-icon,
  .page__benefits lord-icon {
    width: 84.375px !important; /* Reduziert von 112.5px um 25% */
    height: 84.375px !important; /* Reduziert von 112.5px um 25% */
  }
  
  /* Über-uns-Seite: Flexibilität & Kundenservice lord-icon-Elemente um 25% verkleinern */
  .flexibility-section lord-icon {
    width: 75.469px !important; /* Reduziert von 100.625px um 25% */
    height: 75.469px !important; /* Reduziert von 100.625px um 25% */
  }
  
  /* Index-Seite: lord-icon-Element unter "Wie geht es jetzt weiter?" um 25% verkleinern */
  .next-steps__container lord-icon {
    width: 75px !important; /* Reduziert von 100px um 25% */
    height: 75px !important; /* Reduziert von 100px um 25% */
  }
  
  /* Footer lord-icon-Elemente bleiben unverändert */
  .footer__container lord-icon {
    width: 20px !important;
    height: 20px !important;
  }
}

/* =================================================================
   INDEX.HTML SPEZIFISCHE MOBILE TEXTVERGRÖSSERUNG
   ================================================================= */

/* Mobile Textvergrößerung nur für index.html */
@media (max-width: 768px) {
  /* Hero-Sektion Texte */
  .main__caption {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  .main__title {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .main__text {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Dienstleistungsbeschreibungen */
  .leistungen-demo__desc {
    font-size: 1.08rem !important; /* Vergrößert um 20% */
  }
  
  /* Why-us Sektion Texte */
  .whyus-demo__iconbox > div > div:first-child {
    font-size: 1.74rem !important; /* Vergrößert um 20% von 1.45rem */
  }
  
  .whyus-demo__iconbox > div > div:last-child {
    font-size: 1.26rem !important; /* Vergrößert um 20% von 1.05rem */
  }
  
  /* Steps Sektion Texte */
  .steps__heading {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  .steps__text {
    font-size: 1.08rem !important; /* Vergrößert um 20% */
  }
  
  /* Kästen höher und Knöpfe weiter nach unten */
  .leistungen-demo__item {
    height: 420px !important; /* Höher gemacht (von 280px) */
    min-height: 420px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  .leistungen-demo__desc {
    flex-grow: 1 !important; /* Beschreibungstext nimmt verfügbaren Platz ein */
    margin-bottom: 1.5rem !important; /* Mehr Abstand zum Button */
  }
  
  /* Mehr erfahren Knöpfe weiter nach unten */
  .leistungen-demo__button {
    height: 44px !important; /* Höher gemacht (von 28px) */
    padding: 12px 24px !important; /* Mehr Padding für bessere Proportionen */
    margin-top: auto !important; /* Button wird ans Ende geschoben */
    font-size: 1rem !important; /* Größere Schrift für bessere Lesbarkeit */
    line-height: 1.2 !important; /* Bessere Zeilenhöhe */
    align-self: flex-end !important; /* Button am Ende ausrichten */
  }
}

/* =================================================================
   LEISTUNGEN.HTML SPEZIFISCHE MOBILE TEXTVERGRÖSSERUNG
   ================================================================= */

/* Mobile Textvergrößerung nur für Leistungen.html */
@media (max-width: 768px) {
  /* Hero-Sektion Texte */
  .main__title {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .main__text {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Entdecke unsere Leistungen Text (nur +10%) */
  .services-detailed__container > h2 {
    font-size: 2.2rem !important; /* Vergrößert um 10% von 2rem */
  }
  
  /* Dienstleistungsbeschreibungen */
  .services-detailed__text {
    font-size: 1.44rem !important; /* Vergrößert um 20% von 1.2rem */
  }
  
  /* Zusätzliche Services */
  .services-detailed__additional-text {
    font-size: 0.88rem !important; /* Verkleinert um 20% von 1.1rem */
  }
  
  /* CTA Text am Ende */
  .cta__container p {
    font-size: 1.296rem !important; /* Verkleinert um 10% von 1.44rem */
  }
}

/* =================================================================
   ÜBER UNS.HTML SPEZIFISCHE MOBILE TEXTVERGRÖSSERUNG
   ================================================================= */

/* Mobile Textvergrößerung nur für Über uns.html */
@media (max-width: 768px) {
  /* Hero-Sektion Texte */
  .main__title {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .main__text {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Qualität & Zuverlässigkeit Sektion */
  .values__container > h2 {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .values__container > p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  .values__container h3 {
    font-size: 1.8rem !important; /* Vergrößert um 20% */
  }
  
  .values__container p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Flexibilität Sektion */
  .flexibility__container > h2 {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .flexibility-card {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Warum emdeer Sektion */
  .why-emdeer__container > h2 {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .benefit-card h3 {
    font-size: 1.8rem !important; /* Vergrößert um 20% */
  }
  
  .benefit-card p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* CTA Text (nur +10%) */
  .cta__container p {
    font-size: 1.188rem !important; /* Vergrößert um 10% von 1.08rem */
  }
  
  /* Karriere Button größer */
  .main__button {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
    padding: 1.2rem 2.4rem !important; /* Mehr Padding für bessere Proportionen */
  }
}

/* =================================================================
   KONTAKT.HTML SPEZIFISCHE MOBILE TEXTVERGRÖSSERUNG
   ================================================================= */

/* Mobile Textvergrößerung nur für Kontakt.html */
@media (max-width: 768px) {
  /* Kontakt Benefits */
  .contact-benefit-card h4 {
    font-size: 1.8rem !important; /* Vergrößert um 20% */
  }
  
  .contact-benefit-card p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Kontakt Haupttext mit Schatten */
  .contact__container > h2 {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
    text-shadow: 0 2px 4px rgba(0,0,0,0.1) !important; /* Leichter Schatten */
  }
  
  .contact__container > p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
}

/* =================================================================
   DATENSCHUTZ.HTML SPEZIFISCHE MOBILE TEXTVERGRÖSSERUNG
   ================================================================= */

/* Mobile Textvergrößerung nur für Datenschutz.html */
@media (max-width: 768px) {
  /* Datenschutz Haupttext */
  .datenschutz__content h1 {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .datenschutz__content h2 {
    font-size: 2rem !important; /* Vergrößert um 20% */
  }
  
  .datenschutz__content p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  .datenschutz__content li {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
}

/* =================================================================
   IMPRESSUM.HTML SPEZIFISCHE MOBILE TEXTVERGRÖSSERUNG
   ================================================================= */

/* Mobile Textvergrößerung nur für Impressum.html */
@media (max-width: 768px) {
  /* Impressum Haupttext */
  .impressum__content h1 {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .impressum__content h2 {
    font-size: 2rem !important; /* Vergrößert um 20% */
  }
  
  .impressum__content p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  .impressum__content address {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
}

/* =================================================================
   INDEX.HTML SPEZIFISCHE MOBILE TEXTVERGRÖSSERUNG ERWEITERT
   ================================================================= */

/* Mobile Textvergrößerung nur für index.html - Erweiterung */
@media (max-width: 768px) {
  /* About Sektion Text */
  .about__text {
    font-size: 1.1rem !important; /* Vergrößert um 10% von 1rem */
  }
}

/* =================================================================
   KARRIERE.HTML SPEZIFISCHE MOBILE TEXTVERGRÖSSERUNG
   ================================================================= */

/* Mobile Textvergrößerung nur für Karriere.html */
@media (max-width: 768px) {
  /* Hero-Sektion Texte */
  .main__title {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .main__text {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Job Profile Sektion */
  .job-profile__container > h2 {
    font-size: 2.4rem !important; /* Vergrößert um 20% */
  }
  
  .profile-card h3 {
    font-size: 1.8rem !important; /* Vergrößert um 20% */
  }
  
  .profile-card p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Benefits Sektion */
  .benefits-section h2 {
    font-size: 2.16rem !important; /* Verkleinert um 10% von 2.4rem */
  }
  
  .benefit-card h3 {
    font-size: 1.8rem !important; /* Vergrößert um 20% */
  }
  
  .benefit-card p {
    font-size: 1.2rem !important; /* Vergrößert um 20% */
  }
  
  /* Task List und Qualifikationen */
  .task-list li {
    font-size: 0.96rem !important; /* Verkleinert um 20% von 1.2rem */
  }
  
  .qualifications-list li {
    font-size: 1.44rem !important; /* Vergrößert um 20% von 1.2rem */
  }
  
  /* CTA Text (nur +10%) */
  .cta__container p {
    font-size: 1.188rem !important; /* Vergrößert um 10% von 1.08rem */
  }
}