/* ===================================================
   AY Facility & Service GmbH – Stylesheet
   =================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --color-navy: #16357A;
  --color-blue: #2558A8;
  --color-silver: #8F9AAB;
  --color-silver-light: #C4CAD3;
  --color-bg: #FFFFFF;
  --color-bg-subtle: #F4F6F9;
  --color-text: #1A2B4A;
  --color-text-muted: #5A6678;
  --font-family: 'Outfit', sans-serif;
  --shadow-heading: 1px 2px 4px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
  --container-max: 1200px;
  --container-wide: 1400px;
  --section-py: clamp(4rem, 7vw, 6rem);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-navy); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-navy);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); text-shadow: var(--shadow-heading); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); text-shadow: var(--shadow-heading); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* --- Container --- */
.container { width: 90%; max-width: var(--container-max); margin: 0 auto; }
.container--wide { max-width: var(--container-wide); }

/* --- Utility --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn--primary {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}
.btn--primary:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.btn--outline:hover {
  background: var(--color-blue);
  color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
}
.btn--white:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.85);
  color: var(--color-navy);
}
.btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--white-outline:hover {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
}
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }

/* --- Section Spacing --- */
.section { padding: 4rem 0; }
.section--lg { padding: 5.5rem 0; }
.section--navy { background: var(--color-navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--subtle { background: var(--color-bg-subtle); }

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}
.section--navy .section__label { color: var(--color-silver-light); }
.section__title { margin-bottom: 1rem; }
.section__subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section--navy .section__subtitle { color: var(--color-silver-light); }

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 0;
}
.header__logo { grid-column: 1; }
.nav-toggle { grid-column: 3; justify-self: end; }
.nav { grid-column: 3; justify-self: end; }
.header__logo img {
  height: 64px;
  width: auto;
}
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.nav__link:hover, .nav__link--active {
  color: var(--color-blue);
  background: var(--color-bg-subtle);
}

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.nav__dropdown-toggle svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: background var(--transition);
}
.nav__dropdown-menu a:hover {
  background: var(--color-bg-subtle);
  color: var(--color-blue);
}

.nav__cta { margin-left: 0.75rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle--open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle--open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle--open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================
   HERO – Diagonal Split
   =================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
}
.hero__navy {
  position: relative;
  background: var(--color-navy);
  color: #fff;
  width: 55%;
  padding: 4rem 0 4rem;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.hero__navy-inner {
  width: 85%;
  max-width: 600px;
  margin-left: auto;
  margin-right: 4rem;
  padding-left: 2rem;
}
.hero__title {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-shadow: var(--shadow-heading);
}
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-silver-light);
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ===================================================
   TRUST STRIP
   =================================================== */
.trust-strip {
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.trust-strip__item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-silver-light);
}
.trust-strip__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-strip__label {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}
.trust-strip__sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-silver-light);
  opacity: 0.85;
}

/* ===================================================
   SERVICE CARDS – Asymmetric grid
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-silver-light);
  border-radius: 10px;
  padding: 2.25rem 2rem 1.75rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(22,53,122,0.12);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__bg-icon {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 110px;
  height: 110px;
  color: var(--color-navy);
  opacity: 0.04;
  pointer-events: none;
  transition: opacity var(--transition);
}
.service-card__bg-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-card__bg-icon { opacity: 0.07; }
.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--color-blue);
  background: linear-gradient(135deg, rgba(37,88,168,0.08), rgba(22,53,122,0.04));
  border-radius: 10px;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, rgba(37,88,168,0.14), rgba(22,53,122,0.08));
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--color-navy);
}
.service-card__text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.service-card__link svg { width: 15px; height: 15px; transition: transform var(--transition); }
.service-card:hover .service-card__link { color: var(--color-navy); gap: 0.6rem; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ===================================================
   ZIELGRUPPEN
   =================================================== */
.target-section {
  background: var(--color-navy);
  padding: 5rem 0;
}
.target-intro {
  margin-bottom: 3rem;
}
.target-intro__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  margin-top: 0.5rem;
  text-shadow: var(--shadow-heading);
  max-width: 600px;
}
.section__label--light {
  color: var(--color-silver-light);
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.target-item {
  padding: 2.5rem 2rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.target-item:first-child { border-left: none; }
.target-item:hover {
  background: rgba(255,255,255,0.04);
}
.target-item__icon {
  width: 48px;
  height: 48px;
  color: var(--color-silver-light);
  margin-bottom: 1.5rem;
  display: block;
  transition: color var(--transition);
}
.target-item:hover .target-item__icon {
  color: #fff;
}
.target-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}
.target-item__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   USP – Left text, right accent
   =================================================== */
.usp-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.usp-section__content { }
.usp-section__title { margin-bottom: 1.25rem; }
.usp-section__text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.usp-list { margin-bottom: 2rem; }
.usp-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.usp-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}
.usp-section__image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(22,53,122,0.14);
}
.usp-section__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: var(--color-navy);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 3px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p {
  color: var(--color-silver-light);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ===================================================
   PAGE HERO (Service/Interior pages)
   =================================================== */
.page-hero {
  background: var(--color-navy);
  color: #fff;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border: 3px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: var(--color-silver-light); max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--color-silver);
}
.breadcrumb a { color: var(--color-silver-light); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { margin: 0 0.4rem; }

/* ===================================================
   CONTENT LAYOUT (Service pages)
   =================================================== */
.content-section { padding: 3.5rem 0; }
.content-section + .content-section { padding-top: 0; }

.content-block {
  margin-bottom: 3rem;
}
.content-block h2 {
  margin-bottom: 1rem;
}
.content-block p {
  color: var(--color-text-muted);
  max-width: 780px;
}
.content-block--with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.content-block--with-image.content-block--reverse {
  direction: rtl;
}
.content-block--with-image.content-block--reverse > * {
  direction: ltr;
}
.content-block__image img {
  border-radius: 8px;
  width: 100%;
}

/* --- Intro Split (Leistungsseiten) --- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}
.intro-split__image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(22,53,122,0.12);
}
.intro-split__image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-navy), var(--color-blue));
  z-index: 1;
}
.intro-split__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.intro-split__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.intro-split__tags span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  background: rgba(37,88,168,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}
.intro-split__content h2 {
  margin-bottom: 1.25rem;
}
.intro-split__content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.intro-split__content .btn {
  margin-top: 0.75rem;
}

/* Two-column list with icons */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.feature-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-list__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color-bg-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
}
.feature-list__icon svg { width: 22px; height: 22px; }
.feature-list__title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.feature-list__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* --- Scope List (Leistungsumfang als horizontale Zeilen) --- */
.scope-list {
  margin-top: 2rem;
  border-top: 1px solid var(--color-silver-light);
}
.scope-item {
  display: grid;
  grid-template-columns: 4rem 3rem 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-silver-light);
  position: relative;
  transition: background var(--transition);
  cursor: default;
}
.scope-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-navy), var(--color-blue));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.scope-item:hover::before {
  transform: scaleY(1);
}
.scope-item:hover {
  background: rgba(37,88,168,0.03);
  padding-left: 1rem;
}
.scope-item__num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy);
  opacity: 0.12;
  line-height: 1;
  transition: opacity var(--transition);
  font-variant-numeric: tabular-nums;
}
.scope-item:hover .scope-item__num {
  opacity: 0.25;
}
.scope-item__icon {
  width: 36px;
  height: 36px;
  color: var(--color-blue);
  flex-shrink: 0;
}
.scope-item__icon svg { width: 100%; height: 100%; }
.scope-item__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}
.scope-item__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* --- Timeline --- */
.timeline-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.timeline-section__intro h2 {
  margin: 0.5rem 0 1rem;
}
.timeline-section__intro p {
  color: var(--color-text-muted);
  line-height: 1.75;
}
.timeline {
  position: relative;
  padding-left: 1.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-blue) 70%, rgba(37,88,168,0.15) 100%);
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding-bottom: 2.5rem;
  align-items: start;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-left: -2.45rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--color-bg-subtle);
  transition: transform var(--transition), box-shadow var(--transition);
}
.timeline__marker--accent {
  background: var(--color-blue);
}
.timeline__marker svg { width: 18px; height: 18px; }
.timeline__item:hover .timeline__marker {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(37,88,168,0.15);
}
.timeline__time {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-blue);
  margin-bottom: 0.3rem;
}
.timeline__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
.timeline__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* --- Region Section (München Skyline) --- */
.region-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 4rem 0 0;
}
.region-section__skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 220px;
  pointer-events: none;
}
.region-skyline {
  width: 100%;
  height: 100%;
  color: #8F9AAB;
  opacity: 0.25;
}
.region-section__content {
  position: relative;
  z-index: 2;
  padding-bottom: 14rem;
}
.region-section__text {
  max-width: 640px;
}
.region-section__title {
  color: var(--color-navy);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0.5rem 0 1.25rem;
}
.region-section__body {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.region-section__places {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.region-section__places span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
  background: rgba(22,53,122,0.06);
  border: 1px solid rgba(22,53,122,0.12);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* --- Glass Split (Innen / Außen) --- */
.glass-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 500px;
}
.glass-split__side {
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
}
.glass-split__side--innen {
  background: #fff;
}
.glass-split__side--aussen {
  background: var(--color-navy);
}
.glass-split__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.glass-split__side--innen .glass-split__label { color: var(--color-blue); }
.glass-split__side--aussen .glass-split__label { color: var(--color-silver-light); }
.glass-split__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: none;
}
.glass-split__side--innen .glass-split__title { color: var(--color-navy); }
.glass-split__side--aussen .glass-split__title { color: #fff; }
.glass-split__text {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.glass-split__side--innen .glass-split__text { color: var(--color-text-muted); }
.glass-split__side--aussen .glass-split__text { color: rgba(255,255,255,0.65); }
.glass-split__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.glass-split__list li {
  font-size: 0.875rem;
  padding-left: 1.25rem;
  position: relative;
}
.glass-split__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.glass-split__side--innen .glass-split__list li { color: var(--color-text); }
.glass-split__side--innen .glass-split__list li::before { background: var(--color-blue); }
.glass-split__side--aussen .glass-split__list li { color: rgba(255,255,255,0.8); }
.glass-split__side--aussen .glass-split__list li::before { background: var(--color-silver-light); }
.glass-split__divider {
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff 0%, var(--color-navy) 100%);
  gap: 0;
  position: relative;
}
.glass-split__divider-line {
  flex: 1;
  width: 1px;
  background: rgba(143,154,171,0.3);
}
.glass-split__divider-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  flex-shrink: 0;
  margin: 1rem 0;
  box-shadow: 0 4px 16px rgba(22,53,122,0.1);
}
.glass-split__divider-icon svg { width: 20px; height: 20px; }

/* --- Dual Panel (Bauendreinigung + Sonderreinigung) --- */
.dual-panel {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: #fff;
  min-height: 480px;
}
.dual-panel__divider {
  background: var(--color-silver-light);
  margin: 3rem 0;
}
.dual-panel__item {
  padding: 4rem 3.5rem;
  position: relative;
  transition: background var(--transition);
}
.dual-panel__item:hover {
  background: var(--color-bg-subtle);
}
.dual-panel__item--accent {
  background: var(--color-bg-subtle);
}
.dual-panel__item--accent:hover {
  background: #edf0f5;
}
.dual-panel__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.dual-panel__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.dual-panel__icon svg { width: 24px; height: 24px; }
.dual-panel__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-silver);
}
.dual-panel__title {
  color: var(--color-navy);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  text-shadow: none;
  line-height: 1.3;
}
.dual-panel__text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.dual-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.dual-panel__tags span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-navy);
  background: rgba(22,53,122,0.06);
  border: 1px solid rgba(22,53,122,0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  transition: background var(--transition), border-color var(--transition);
}
.dual-panel__tags span:hover {
  background: rgba(22,53,122,0.12);
  border-color: rgba(22,53,122,0.22);
}

/* --- Preise Banner --- */
.preise-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
  padding: 3rem 0;
}
.preise-banner__inner {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 2rem;
  align-items: center;
}
.preise-banner__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.preise-banner__icon svg { width: 30px; height: 30px; }
.preise-banner__title {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-shadow: none;
}
.preise-banner__text {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* Simple bullet list */
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

/* Target audience pills */
.target-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.target-pills__item {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-silver-light);
  border-radius: 6px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy);
}

/* ===================================================
   ÜBER UNS – Values
   =================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--color-bg-subtle);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--color-blue);
}
.value-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.value-card__text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* ===================================================
   SECTOR-PANELS (Industrie-Bereiche)
   =================================================== */
.sector-panels {
  padding: var(--section-py) 0;
  background: #f4f6fb;
}
.sector-panels__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.sector-panel {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(22,53,122,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.sector-panel:hover {
  box-shadow: 0 12px 48px rgba(22,53,122,0.14);
  transform: translateY(-4px);
}
.sector-panel__top {
  background: linear-gradient(145deg, #16357A 0%, #2558A8 100%);
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.sector-panel__top::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.04);
  top: -80px;
  right: -80px;
  pointer-events: none;
}
.sector-panel__top::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 20px solid rgba(255,255,255,0.05);
  bottom: -30px;
  left: 2rem;
  pointer-events: none;
}
.sector-panel__icon {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.sector-panel__icon svg { width: 34px; height: 34px; }
.sector-panel__header {
  flex: 1;
  position: relative;
  z-index: 1;
}
.sector-panel__label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}
.sector-panel__title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-shadow: none;
}
.sector-panel__body {
  padding: 2rem 2.5rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sector-panel__desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}
.sector-panel__items {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid rgba(22,53,122,0.08);
  padding-top: 1.25rem;
  margin-top: auto;
}
.sector-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.45;
}
.sector-panel__item-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(37,88,168,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.sector-panel__item-check svg {
  width: 10px;
  height: 10px;
  color: var(--color-blue);
}
@media (max-width: 768px) {
  .sector-panels__grid { grid-template-columns: 1fr; }
}

/* ===================================================
   ÜBER UNS — Werte
   =================================================== */
.werte-section {
  padding: var(--section-py) 0;
  background: #f4f6fb;
}
.werte-section__header { margin-bottom: 2.5rem; }
.werte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.wert-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(22,53,122,0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.wert-card:hover {
  box-shadow: 0 10px 36px rgba(22,53,122,0.13);
  transform: translateY(-4px);
}
.wert-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.wert-card__icon svg { width: 26px; height: 26px; }
.wert-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  text-shadow: none;
}
.wert-card__text {
  color: var(--color-text-muted);
  font-size: 0.855rem;
  line-height: 1.75;
  margin: 0;
}

/* ===================================================
   ÜBER UNS — Geschäftsführung
   =================================================== */
.gf-section {
  padding: var(--section-py) 0;
  background: #fff;
  overflow: hidden;
}
.gf-inner {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 820px;
}
.gf-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.03em;
  box-shadow: 0 8px 28px rgba(22,53,122,0.22);
}
.gf-quote-icon {
  width: 36px;
  height: 36px;
  color: rgba(22,53,122,0.15);
  margin-bottom: 1rem;
  display: block;
}
.gf-quote {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1.25rem;
}
.gf-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  display: block;
}
.gf-role {
  font-size: 0.8rem;
  color: var(--color-silver);
  display: block;
  margin-bottom: 1.25rem;
}
.gf-text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(22,53,122,0.08);
}

/* ===================================================
   ÜBER UNS — Trust (Betriebshaftpflicht)
   =================================================== */
.trust-band {
  background: var(--color-navy);
  padding: var(--section-py) 0;
}
.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-band__item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.trust-band__item:last-child { border-right: none; }
.trust-band__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.trust-band__icon svg { width: 24px; height: 24px; }
.trust-band__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: none;
}
.trust-band__text {
  color: rgba(255,255,255,0.55);
  font-size: 0.845rem;
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   ÜBER UNS — Jobs / Team
   =================================================== */
.jobs-section {
  padding: var(--section-py) 0;
  background: #f4f6fb;
}
.jobs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.jobs-left__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-navy);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
  text-shadow: none;
}
.jobs-left__text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 0 0.5rem;
}
.jobs-left__note {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-style: italic;
  margin: 0;
}
.jobs-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.jobs-right {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.jobs-point {
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(22,53,122,0.06);
}
.jobs-point__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.jobs-point__icon svg { width: 18px; height: 18px; }
.jobs-point__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
}

/* ===================================================
   ÜBER UNS — Einzugsgebiet
   =================================================== */
.region-area {
  padding: var(--section-py) 0;
  background: #fff;
}
.region-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.region-area__stat {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.75rem 0 0.5rem;
}
.region-area__num {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.05em;
}
.region-area__unit {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-blue);
}
.region-area__sub {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.region-area__desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}
.region-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.region-area__city {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  background: #f4f6fb;
  border: 1px solid rgba(22,53,122,0.1);
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  transition: background var(--transition), border-color var(--transition);
}
.region-area__city:hover {
  background: rgba(22,53,122,0.08);
  border-color: rgba(22,53,122,0.2);
}
.region-area__city svg {
  width: 13px;
  height: 13px;
  color: var(--color-blue);
}

@media (max-width: 960px) {
  .werte-grid { grid-template-columns: 1fr 1fr; }
  .trust-band__grid { grid-template-columns: 1fr; }
  .trust-band__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-band__item:last-child { border-bottom: none; }
  .jobs-inner,
  .region-area__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .werte-grid { grid-template-columns: 1fr; }
  .gf-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 2rem;
}
.contact-info__item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--color-bg-subtle);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.contact-info__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; }
.form__group--row { flex-direction: row; gap: 1.25rem; }
.form__group--row > .form__group { flex: 1; }
.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}
.form__label .required { color: #c0392b; }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-silver-light);
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 0.92rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(37,88,168,0.1);
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.form__checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--color-blue);
}
.form__honeypot { position: absolute; left: -9999px; }

.form__message {
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
}
.form__message--success {
  display: block;
  background: #eafaf1;
  border: 1px solid #27ae60;
  color: #1e7e34;
}
.form__message--error {
  display: block;
  background: #fdecea;
  border: 1px solid #c0392b;
  color: #a93226;
}

/* ===================================================
   LEGAL PAGES (Impressum / Datenschutz)
   =================================================== */
.legal-content {
  max-width: 780px;
  padding: 3rem 0 4rem;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p, .legal-content li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li { margin-bottom: 0.35rem; }
.legal-content a { text-decoration: underline; }

/* ===================================================
   404 PAGE
   =================================================== */
.error-page {
  text-align: center;
  padding: 6rem 0;
}
.error-page__code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-silver-light);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--color-navy);
  color: #fff;
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  color: var(--color-silver);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-silver-light);
  transition: background var(--transition);
}
.footer__social a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.footer__social svg { width: 18px; height: 18px; }

.footer__heading {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
  color: var(--color-silver);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--color-silver);
  font-size: 0.9rem;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--color-silver-light);
}
.footer__contact-item a {
  color: var(--color-silver);
}
.footer__contact-item a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-silver);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  color: var(--color-silver);
  font-size: 0.85rem;
}
.footer__legal a:hover { color: #fff; }

/* ===================================================
   COOKIE BANNER
   =================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  font-size: 0.9rem;
}
.cookie-banner p { margin: 0; color: var(--color-text-muted); }
.cookie-banner a { text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ===================================================
   ANIMATIONS (scroll-triggered)
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero__navy { width: 60%; clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%); }
  .hero__image { width: 45%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .target-item { border-left: 1px solid rgba(255,255,255,0.1); }
  .target-item:nth-child(odd) { border-left: none; }
  .usp-section { grid-template-columns: 1fr; }
  .usp-section__image img { height: 260px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .content-block--with-image { grid-template-columns: 1fr; }
  .intro-split { grid-template-columns: 1fr; gap: 2rem; }
  .timeline-section { grid-template-columns: 1fr; gap: 2rem; }
  .preise-banner__inner { grid-template-columns: 1fr; text-align: center; }
  .preise-banner__icon { margin: 0 auto; }
  .dual-panel { grid-template-columns: 1fr; }
  .dual-panel__divider { width: 100%; height: 1px; margin: 0; }
  .dual-panel__item { padding: 3rem 2rem; }
  .glass-split { grid-template-columns: 1fr; }
  .glass-split__divider { width: 100%; height: 60px; flex-direction: row; background: linear-gradient(90deg, #fff 0%, var(--color-navy) 100%); }
  .glass-split__divider-line { width: auto; height: 1px; flex: 1; }
  .glass-split__side { padding: 3rem 2rem; }
  .intro-split__image img { height: 260px; }
  .feature-list { grid-template-columns: 1fr; }
  .scope-item { grid-template-columns: 3rem 2.5rem 1fr; gap: 1rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right var(--transition);
    align-items: stretch;
    overflow-y: auto;
  }
  .nav--open { right: 0; }
  .nav__link { padding: 0.75rem 0; font-size: 1rem; }
  .nav__cta { margin-left: 0; margin-top: 1rem; }
  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 1rem;
    display: none;
  }
  .nav__dropdown.nav__dropdown--open .nav__dropdown-menu { display: block; }

  .hero { flex-direction: column; min-height: auto; }
  .hero__navy {
    width: 100%;
    clip-path: none;
    padding: 3rem 0;
  }
  .hero__navy-inner {
    margin: 0 auto;
    padding: 0 1rem;
  }
  .hero__image {
    position: relative;
    width: 100%;
    height: 250px;
  }

  .trust-strip__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .target-grid { grid-template-columns: 1fr; }
  .target-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .target-item:first-child { border-top: none; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .form__group--row { flex-direction: column; gap: 1.25rem; }
  .content-block--with-image.content-block--reverse { direction: ltr; }
}

@media (max-width: 480px) {
  .trust-strip__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
