/* I.M. Dienstleistungen – Lean Landing Page */

:root {
  /* Elementor Kit 4 – Original-Farben 1:1 */
  --color-navy: #000080;
  --color-navy-dark: #000049;
  --color-blue-bright: #0909ff;
  --color-green: #60e032;
  --color-green-dark: #3a9a17;
  --color-green-light: #9aeb7c;
  --color-purple: #80007f;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-heading: #33312e;
  --color-gray: #e5e4e2;
  --color-bg-alt: #f7f7f7;
  --color-bg-light: #fbfbfb;

  /* Aliase für Komponenten */
  --color-primary: var(--color-navy);
  --color-primary-dark: var(--color-navy-dark);
  --color-primary-light: var(--color-green-light);
  --color-accent: var(--color-green);
  --color-accent-hover: var(--color-green-dark);
  --color-text: var(--color-black);
  --color-text-muted: var(--color-heading);
  --color-bg: var(--color-white);
  --color-border: var(--color-gray);

  --font-body: "Catamaran", sans-serif;
  --font-heading: "Maven Pro", sans-serif;
  --font-display: "Exo", sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --radius: 3px;
  --header-height: 90px;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.5rem);
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.611;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
  color: var(--color-navy-dark);
}

.btn-secondary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--color-blue-bright);
  border-color: var(--color-blue-bright);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

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

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn svg {
  flex-shrink: 0;
}

/* ── Header ── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-navy-dark);
  border-bottom: none;
}

/* Auf der Startseite: transparent, fließt in den Hero */
body:has(.hero) .header {
  background: transparent;
}

body:has(.hero) .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 73, 0.62) 0%, rgba(0, 0, 128, 0.22) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.header__logo img {
  width: auto;
  height: auto;
  max-height: 70px;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.header__nav a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--color-green);
}

.header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header__actions .btn {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}

.header__actions .btn-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.header__actions .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(0, 0, 73, 0.98) 0%, rgba(0, 0, 90, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.25rem 1.5rem;
  z-index: 99;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mobile-nav.is-open {
  display: block;
  animation: mobileNavIn 0.22s ease-out;
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 0.75rem;
}

.mobile-nav__links a {
  display: flex;
  align-items: center;
  padding: 0.95rem 0.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s, padding-left 0.15s;
}

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

.mobile-nav__links a:hover,
.mobile-nav__links a:focus-visible {
  color: var(--color-green);
  padding-left: 0.4rem;
  outline: none;
}

.mobile-nav__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.mobile-nav__ctas-label {
  margin: 0 0 0.15rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
}

.mobile-nav__cta span {
  display: block;
  line-height: 1.2;
}

.mobile-nav__cta svg {
  flex-shrink: 0;
}

.mobile-nav__cta:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.mobile-nav__cta--phone {
  background: var(--color-green);
  color: var(--color-navy-dark);
  box-shadow: 0 4px 14px rgba(96, 224, 50, 0.28);
}

.mobile-nav__cta--phone:hover {
  background: var(--color-green-light);
  color: var(--color-navy-dark);
}

.mobile-nav__cta--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.mobile-nav__cta--whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.mobile-nav__cta--email {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.mobile-nav__cta--email:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* ── Hero ── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 85vh, 900px);
  padding: calc(var(--header-height) + 1.75rem) 0 4rem;
  color: var(--color-white);
  overflow: hidden;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider__track {
  position: absolute;
  inset: 0;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero-slider__slide.is-active img {
  transform: scale(1.08);
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(0, 0, 73, 0.72) 0%, rgba(0, 0, 128, 0.48) 42%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  animation: heroContentIn 1s ease-out both;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 4;
  display: flex;
  gap: 0.65rem;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.hero-slider__dot:hover {
  border-color: var(--color-green);
  transform: scale(1.1);
}

.hero-slider__dot.is-active {
  background: var(--color-green);
  border-color: var(--color-green);
  transform: scale(1.15);
}

.hero__badge {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: var(--color-green);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero__title span {
  color: var(--color-green);
}

.hero__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero__cta-mobile {
  display: inline-flex;
  width: 100%;
  max-width: 360px;
}

.hero__cta-desktop {
  display: none;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__trust-item svg {
  color: var(--color-green);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide {
    transition: none;
  }

  .hero-slider__slide img {
    transform: none !important;
    transition: none;
  }

  .hero__content {
    animation: none;
  }
}

/* ── Sections ── */

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy-dark);
  margin-bottom: 0.75rem;
}

#google-bewertungen .section__label {
  text-transform: none;
  letter-spacing: normal;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 35px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-heading);
  margin-bottom: 0.875rem;
}

.section__subtitle {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.611;
}

/* ── Google Reviews Embed ── */
.google-reviews {
  max-width: 1020px;
  margin: 0 auto;
}

.google-reviews__iframe-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.google-reviews__iframe-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 720px) {
  .google-reviews__iframe-wrap iframe {
    height: 300px;
  }
}

/* ── Google Review Tiles ── */
.google-review-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-tile {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.review-tile__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.review-tile__author {
  color: var(--color-heading);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
}

.review-tile__rating {
  color: var(--color-green-dark);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.review-tile__text {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .google-review-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .google-review-tiles {
    grid-template-columns: 1fr;
  }
}

/* ── Services ── */

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.service-card__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.service-card__text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--color-green-light);
  color: var(--color-navy-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius);
}

/* ── Benefits ── */

.benefits-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.benefits__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.benefits__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefits__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefits__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-dark);
}

.benefits__item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.benefits__item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ── Before/After ── */

.compare {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  user-select: none;
  touch-action: none;
}

.compare__container {
  position: relative;
  aspect-ratio: 768 / 346;
  overflow: hidden;
}

.compare__before,
.compare__after {
  position: absolute;
  inset: 0;
}

.compare__before img,
.compare__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__after {
  clip-path: inset(0 0 0 50%);
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 2;
}

.compare__handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-green);
}

.compare__labels {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1.25rem;
  z-index: 3;
  pointer-events: none;
}

.compare__labels span {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
}

/* ── Process ── */

.process-grid {
  display: grid;
  gap: 1.5rem;
}

.process-step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ── About ── */

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

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

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: var(--color-green-light);
  border-radius: var(--radius);
}

.stat__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-green-dark);
}

.stat__label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ── Einsatzgebiet ── */

.area-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.area__content p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.area__places {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.area__places li {
  padding: 0.45rem 0.85rem;
  background: var(--color-green-light);
  color: var(--color-navy-dark);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
}

.area__map-link a {
  font-weight: 600;
  color: var(--color-navy);
}

.area__map {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  background: var(--color-gray);
  min-height: 280px;
}

.area__map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

@media (min-width: 768px) {
  .area-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .area__map iframe {
    height: 360px;
  }
}

/* ── FAQ ── */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  line-height: 1.35;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-top: -0.2rem;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.faq-item__question:hover {
  color: var(--color-navy);
}

.faq-item__answer {
  padding: 0 1.15rem 1.15rem;
}

.faq-item__answer p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

/* ── CTA Banner ── */

.cta-banner {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 35px);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

.cta-banner .btn-primary {
  background: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.cta-banner .btn-primary:hover {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
  color: var(--color-navy-dark);
}

.hero .btn-outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.hero .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

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

/* ── Footer ── */

.footer {
  background: var(--color-bg-alt);
  color: var(--color-heading);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand img {
  width: 300px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-heading);
}

.footer h4 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.875rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--color-heading);
  font-size: 16px;
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-green-dark);
}

.footer__bottom {
  border-top: 1px solid var(--color-gray);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 16px;
  color: var(--color-heading);
}

/* ── Floating Call / WhatsApp (Mobile) ── */

.fab-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
}

.fab-call {
  display: flex;
  width: 56px;
  height: 56px;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(96, 224, 50, 0.45);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.fab-call--whatsapp {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.fab-call:hover {
  background: var(--color-green-dark);
  transform: scale(1.05);
  color: var(--color-white);
  text-decoration: none;
}

.fab-call--whatsapp:hover {
  background: #1ebe57;
}

/* ── Legal Pages ── */

.legal-page {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 600;
  color: var(--color-heading);
  margin: 2rem 0 0.75rem;
}

.legal-page h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-page a {
  word-break: break-word;
}

.legal-page__lead {
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.legal-page__back {
  margin-top: 2.5rem;
}

.legal-toc {
  margin: 0 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-navy);
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-toc li {
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

.legal-toc a {
  word-break: normal;
  color: var(--color-navy);
}

.footer__cookie-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.footer__cookie-link:hover {
  color: var(--color-green);
}

/* ── Cookie Consent ── */

.cookie-consent {
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-navy-dark);
  color: var(--color-white);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
}

.cookie-consent__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.cookie-consent__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--color-white);
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-consent__text a {
  color: var(--color-green-light);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.cookie-consent__btn {
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  font-size: 0.9375rem;
}

.cookie-consent .btn-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.cookie-consent .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  text-decoration: none;
}

.cookie-consent .btn-primary:hover {
  text-decoration: none;
}

body:has(.cookie-consent.is-visible) .fab-stack {
  bottom: calc(1.25rem + min(42vh, 14rem));
}

@media (max-width: 640px) {
  .cookie-consent {
    padding: 0.75rem;
  }

  .cookie-consent__inner {
    padding: 1.1rem 1.15rem;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1 1 auto;
  }
}

/* ── Responsive ── */

@media (max-width: 767px) {
  :root {
    --header-height: 60px;
  }

  .header__logo img {
    max-height: 50px;
  }
}

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

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

@media (min-width: 768px) {
  .hero__cta-mobile {
    display: none;
  }

  .hero__cta-desktop {
    display: inline-flex;
  }

  .hero {
    padding: calc(var(--header-height) + 2.5rem) 0 5rem;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 1.611;
    margin-bottom: 2rem;
  }

  .hero__ctas {
    margin-bottom: 2rem;
  }

  .hero__trust {
    gap: 1.5rem;
  }

  .hero__trust-item {
    font-size: 0.875rem;
    gap: 0.5rem;
  }

  .hero__trust-item svg {
    width: 18px;
    height: 18px;
  }

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

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

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Desktop-Nav erst ab 1100px, damit Menütexte nicht umbrechen */
@media (min-width: 1100px) {
  .header__nav,
  .header__actions {
    display: flex;
  }

  .header__burger {
    display: none;
  }

  .fab-stack {
    display: none;
  }

  .header__nav {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
